Open is called when a new stream is created. It may be used to ensure that the underlying data structure for the stream is initialized, making it ready to store and replay event streams.
(_ context.Context, sessionID, streamID string)
| 166 | // the underlying data structure for the stream is initialized, making it |
| 167 | // ready to store and replay event streams. |
| 168 | Open(_ context.Context, sessionID, streamID string) error |
| 169 | |
| 170 | // Append appends data for an outgoing event to given stream, which is part of the |
| 171 | // given session. |
no outgoing calls
no test coverage detected