The ReadTransaction interface specifies the operations on read-only transactions. Every ReadTransaction must be released when no longer required.
| 39 | // transactions. Every ReadTransaction must be released when no longer |
| 40 | // required. |
| 41 | type ReadTransaction interface { |
| 42 | Reader |
| 43 | Release() |
| 44 | } |
| 45 | |
| 46 | // The WriteTransaction interface specifies the operations on writable |
| 47 | // transactions. Every WriteTransaction must be either committed or released |
nothing calls this directly
no outgoing calls
no test coverage detected