This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-16 20:41:39 +00:00
|
|
|
package ak
|
|
|
|
|
2023-01-23 19:36:30 +00:00
|
|
|
import "context"
|
|
|
|
|
2021-01-16 20:41:39 +00:00
|
|
|
type Outpost interface {
|
|
|
|
Start() error
|
2023-01-23 19:36:30 +00:00
|
|
|
Stop() error
|
2021-01-16 20:41:39 +00:00
|
|
|
Refresh() error
|
2023-01-23 19:36:30 +00:00
|
|
|
TimerFlowCacheExpiry(context.Context)
|
2021-09-16 08:14:51 +00:00
|
|
|
Type() string
|
2021-01-16 20:41:39 +00:00
|
|
|
}
|