CreateStream creates a new stream with the given config and returns an interface to operate on it. If stream with given name already exists and its configuration differs from the provided one, ErrStreamNameAlreadyInUse is returned.
(ctx context.Context, cfg StreamConfig)
| 134 | // and its configuration differs from the provided one, |
| 135 | // ErrStreamNameAlreadyInUse is returned. |
| 136 | CreateStream(ctx context.Context, cfg StreamConfig) (Stream, error) |
| 137 | |
| 138 | // UpdateStream updates an existing stream. If stream does not exist, |
| 139 | // ErrStreamNotFound is returned. |
no outgoing calls