AppendableV2 allows creating AppenderV2.
| 25 | |
| 26 | // AppendableV2 allows creating AppenderV2. |
| 27 | type AppendableV2 interface { |
| 28 | // AppenderV2 returns a new appender for the storage. |
| 29 | // |
| 30 | // Implementations CAN choose whether to use the context e.g. for deadlines, |
| 31 | // but it's not mandatory. |
| 32 | AppenderV2(ctx context.Context) AppenderV2 |
| 33 | } |
| 34 | |
| 35 | // AOptions is a shorthand for AppendV2Options. |
| 36 | // NOTE: AppendOption is used already. |
no outgoing calls
no test coverage detected
searching dependent graphs…