mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
b189edf4f4
Replaced with types.HeaderedEvent _for now_. In reality we want to move them all to gmsl.Event and only use HeaderedEvent when we _need_ to bundle the version/event ID with the event (seriailsation boundaries, and even then only when we don't have the room version). Requires https://github.com/matrix-org/gomatrixserverlib/pull/373
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
package caching
|
|
|
|
import (
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
)
|
|
|
|
// FederationCache contains the subset of functions needed for
|
|
// a federation event cache.
|
|
type FederationCache interface {
|
|
GetFederationQueuedPDU(eventNID int64) (event *types.HeaderedEvent, ok bool)
|
|
StoreFederationQueuedPDU(eventNID int64, event *types.HeaderedEvent)
|
|
EvictFederationQueuedPDU(eventNID int64)
|
|
|
|
GetFederationQueuedEDU(eventNID int64) (event *gomatrixserverlib.EDU, ok bool)
|
|
StoreFederationQueuedEDU(eventNID int64, event *gomatrixserverlib.EDU)
|
|
EvictFederationQueuedEDU(eventNID int64)
|
|
}
|
|
|
|
func (c Caches) GetFederationQueuedPDU(eventNID int64) (*types.HeaderedEvent, bool) {
|
|
return c.FederationPDUs.Get(eventNID)
|
|
}
|
|
|
|
func (c Caches) StoreFederationQueuedPDU(eventNID int64, event *types.HeaderedEvent) {
|
|
c.FederationPDUs.Set(eventNID, event)
|
|
}
|
|
|
|
func (c Caches) EvictFederationQueuedPDU(eventNID int64) {
|
|
c.FederationPDUs.Unset(eventNID)
|
|
}
|
|
|
|
func (c Caches) GetFederationQueuedEDU(eventNID int64) (*gomatrixserverlib.EDU, bool) {
|
|
return c.FederationEDUs.Get(eventNID)
|
|
}
|
|
|
|
func (c Caches) StoreFederationQueuedEDU(eventNID int64, event *gomatrixserverlib.EDU) {
|
|
c.FederationEDUs.Set(eventNID, event)
|
|
}
|
|
|
|
func (c Caches) EvictFederationQueuedEDU(eventNID int64) {
|
|
c.FederationEDUs.Unset(eventNID)
|
|
}
|