(e engine.Engine)
| 61 | } |
| 62 | |
| 63 | func NewClusterStore(e engine.Engine) *ClusterStore { |
| 64 | return &ClusterStore{ |
| 65 | e: e, |
| 66 | eventNotifyCh: make(chan EventPayload, 100), |
| 67 | quitCh: make(chan struct{}), |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | func (s *ClusterStore) IsReady(ctx context.Context) bool { |
| 72 | return s.e.IsReady(ctx) |
no outgoing calls