EnumNodeKey builds the key for enum node
(namespace, table string, incarnation int, columnID, nodeID int)
| 88 | |
| 89 | // EnumNodeKey builds the key for enum node |
| 90 | func EnumNodeKey(namespace, table string, incarnation int, columnID, nodeID int) string { |
| 91 | return path.Join(EnumNodeListKey(namespace, table, incarnation, columnID), strconv.Itoa(nodeID)) |
| 92 | } |
| 93 | |
| 94 | // SubscriberServiceName builds the subscriber service name |
| 95 | func SubscriberServiceName(namespace string) string { |