DMap implements a single-hop distributed hash table.
| 34 | |
| 35 | // DMap implements a single-hop distributed hash table. |
| 36 | type DMap struct { |
| 37 | name string |
| 38 | fragmentName string |
| 39 | s *Service |
| 40 | engine storage.Engine |
| 41 | config *dmapConfig |
| 42 | } |
| 43 | |
| 44 | // Name exposes name of the DMap. |
| 45 | func (dm *DMap) Name() string { |
nothing calls this directly
no outgoing calls
no test coverage detected