mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-04 06:54:45 +08:00
13 lines
281 B
Go
13 lines
281 B
Go
package cluster
|
|
|
|
type OperType int
|
|
|
|
type FunDelNode func (nodeId string,immediately bool)
|
|
type FunSetNodeInfo func(nodeInfo *NodeInfo)
|
|
|
|
type IServiceDiscovery interface {
|
|
InitDiscovery(localNodeId string,funDelNode FunDelNode,funSetNodeInfo FunSetNodeInfo) error
|
|
OnNodeStop()
|
|
}
|
|
|