mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-07 15:03:09 -06:00
Fix comments
This commit is contained in:
parent
1ef475c0a3
commit
43846a0d42
|
|
@ -15,10 +15,10 @@ type RoomEventDatabase interface {
|
|||
// Returns a sorted list of state entries.
|
||||
StateEntriesForEventIDs(eventIDs []string) ([]types.StateEntry, error)
|
||||
// Lookup the numeric IDs for a list of string event state keys.
|
||||
// Returns a sorted list of state entries.
|
||||
// Returns a map from string state key to numeric ID for the state key.
|
||||
EventStateKeyNIDs(eventStateKeys []string) (map[string]int64, error)
|
||||
// Lookup the Events for a list of numeric event IDs.
|
||||
// Returns a sorted list of state entries.
|
||||
// Returns a sorted list of events.
|
||||
Events(eventNIDs []int64) ([]types.Event, error)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue