forked from matrix-org/gomatrixserverlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transaction.go
36 lines (33 loc) · 1.66 KB
/
transaction.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package gomatrixserverlib
import "encoding/json"
// A Transaction is used to push data from one matrix server to another matrix
// server.
type Transaction struct {
// The ID of the transaction.
TransactionID TransactionID `json:"transaction_id"`
// The server that sent the transaction.
Origin ServerName `json:"origin"`
// The server that should receive the transaction.
Destination ServerName `json:"destination"`
// The millisecond posix timestamp on the origin server when the
// transaction was created.
OriginServerTS Timestamp `json:"origin_server_ts"`
// The IDs of the most recent transactions sent by the origin server to
// the destination server. Multiple transactions can be sent by the origin
// server to the destination server in parallel so there may be more than
// one previous transaction.
PreviousIDs []TransactionID `json:"previous_ids,omitempty"`
// The room events pushed from the origin server to the destination server
// by this transaction. The events should either be events that originate
// on the origin server or be join m.room.member events.
PDUs []json.RawMessage `json:"pdus"`
// The ephemeral events pushed from origin server to destination server
// by this transaction. The events must orginate at the origin server.
EDUs []EDU `json:"edus,omitempty"`
}
// A TransactionID identifies a transaction sent by a matrix server to another
// matrix server. The ID must be unique amongst the transactions sent from the
// origin server to the destination, but doesn't have to be globally unique.
// The ID must be safe to insert into a URL path segment. The ID should have a
// format matching '^[0-9A-Za-z\-_]*$'
type TransactionID string