Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrReminderOpActorNotHosted = errors.New("operations on actor reminders are only possible on hosted actor types") ErrReminderStorageNotSet = errors.New("reminder storage is not configured") )
TODO: @joshvanl: move errors package
Functions ¶
This section is empty.
Types ¶
type Interface ¶ added in v1.15.0
type Interface interface {
// Get retrieves an actor reminder.
Get(ctx context.Context, req *api.GetReminderRequest) (*api.Reminder, error)
// Create creates an actor reminder.
Create(ctx context.Context, req *api.CreateReminderRequest) error
// Delete deletes an actor reminder.
Delete(ctx context.Context, req *api.DeleteReminderRequest) error
}
Click to show internal directories.
Click to hide internal directories.