ClusterDMap implements a client for DMaps.
| 56 | |
| 57 | // ClusterDMap implements a client for DMaps. |
| 58 | type ClusterDMap struct { |
| 59 | name string |
| 60 | newEntry func() storage.Entry |
| 61 | config *dmapConfig |
| 62 | client *server.Client |
| 63 | clusterClient *ClusterClient |
| 64 | } |
| 65 | |
| 66 | // Name exposes name of the DMap. |
| 67 | func (dm *ClusterDMap) Name() string { |
nothing calls this directly
no outgoing calls
no test coverage detected