pub trait TaskPoolCallbacks {
type OnAdd: EmptyCallback;
type OnDelete: EmptyCallback;
}Expand description
Represents store of task pool’s action callbacks.
Required Associated Types§
Sourcetype OnAdd: EmptyCallback
type OnAdd: EmptyCallback
Callback on success add.
Sourcetype OnDelete: EmptyCallback
type OnDelete: EmptyCallback
Callback on success delete.