| 53 | var _ Store = (*ClusterStore)(nil) |
| 54 | |
| 55 | type ClusterStore struct { |
| 56 | e engine.Engine |
| 57 | |
| 58 | locks sync.Map |
| 59 | eventNotifyCh chan EventPayload |
| 60 | quitCh chan struct{} |
| 61 | } |
| 62 | |
| 63 | func NewClusterStore(e engine.Engine) *ClusterStore { |
| 64 | return &ClusterStore{ |
nothing calls this directly
no outgoing calls
no test coverage detected