-------------------------------------------------------- OpenCollection opens a collection based on a store. Applications should open at most a single collection per store for performing read/write work.
(options StoreOptions, persistOptions StorePersistOptions)
| 354 | // should open at most a single collection per store for performing |
| 355 | // read/write work. |
| 356 | func (s *Store) OpenCollection(options StoreOptions, |
| 357 | persistOptions StorePersistOptions) (Collection, error) { |
| 358 | return s.openCollection(options, persistOptions) |
| 359 | } |
| 360 | |
| 361 | // -------------------------------------------------------- |
| 362 |
no test coverage detected