ObjectWatcher is what is returned when doing a watch.
| 113 | |
| 114 | // ObjectWatcher is what is returned when doing a watch. |
| 115 | type ObjectWatcher interface { |
| 116 | // Updates returns a channel to read any updates to entries. |
| 117 | Updates() <-chan *ObjectInfo |
| 118 | // Stop will stop this watcher. |
| 119 | Stop() error |
| 120 | } |
| 121 | |
| 122 | var ( |
| 123 | ErrObjectConfigRequired = errors.New("nats: object-store config required") |
nothing calls this directly
no outgoing calls
no test coverage detected