Documentation ¶
Index ¶
- type B
- type Backend
- func (b *Backend) Close()
- func (b *Backend) CountEvents(c context.T, f *filter.T) (count int, err error)
- func (b *Backend) DeleteEvent(c context.T, ev *event.T) (err error)
- func (b *Backend) Init() (err error)
- func (b *Backend) QueryEvents(c context.T, f *filter.T) (ch event.C, err error)
- func (b *Backend) SaveEvent(c context.T, ev *event.T) (err error)
- type E
- type N
- type S
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Backend ¶
type Backend struct { Ctx context.T WG *sync.WaitGroup IC *agent.Backend Inf *relayinfo.T CanisterAddr string CanisterId string PrivateCanister bool SecKey string }
Backend is a pure Internet Computer Protocol based event store. All queries are performed to a remote data store.
func (*Backend) Close ¶
func (b *Backend) Close()
Close the connection to the database. This is a no-op because the queries are stateless.
func (*Backend) CountEvents ¶
CountEvents returns the number of events found matching the filter. This is synchronous.
func (*Backend) DeleteEvent ¶
DeleteEvent removes an event from the event store. This is synchronous.
func (*Backend) QueryEvents ¶
QueryEvents searches for events that match a filter and returns them asynchronously over a provided channel.
This is asynchronous, it will never return an error.
Click to show internal directories.
Click to hide internal directories.