QueryLatestEventsAndState implements api.RoomserverInternalAPI
( ctx context.Context, request *api.QueryLatestEventsAndStateRequest, response *api.QueryLatestEventsAndStateResponse, )
| 44 | |
| 45 | // QueryLatestEventsAndState implements api.RoomserverInternalAPI |
| 46 | func (r *Queryer) QueryLatestEventsAndState( |
| 47 | ctx context.Context, |
| 48 | request *api.QueryLatestEventsAndStateRequest, |
| 49 | response *api.QueryLatestEventsAndStateResponse, |
| 50 | ) error { |
| 51 | return helpers.QueryLatestEventsAndState(ctx, r.DB, request, response) |
| 52 | } |
| 53 | |
| 54 | // QueryStateAfterEvents implements api.RoomserverInternalAPI |
| 55 | func (r *Queryer) QueryStateAfterEvents( |
nothing calls this directly
no test coverage detected