(ctx context.Context, appServiceID string, event *gomatrixserverlib.HeaderedEvent)
| 22 | |
| 23 | type Database interface { |
| 24 | StoreEvent(ctx context.Context, appServiceID string, event *gomatrixserverlib.HeaderedEvent) error |
| 25 | GetEventsWithAppServiceID(ctx context.Context, appServiceID string, limit int) (int, int, []gomatrixserverlib.HeaderedEvent, bool, error) |
| 26 | CountEventsWithAppServiceID(ctx context.Context, appServiceID string) (int, error) |
| 27 | UpdateTxnIDForEvents(ctx context.Context, appserviceID string, maxID, txnID int) error |
no outgoing calls
no test coverage detected