(ctx context.Context, ch channels.ID, options ChangesOptions)
| 281 | } |
| 282 | |
| 283 | func (c *channelCacheImpl) GetChanges(ctx context.Context, ch channels.ID, options ChangesOptions) ([]*LogEntry, error) { |
| 284 | |
| 285 | cache, err := c.getChannelCache(ctx, ch) |
| 286 | if err != nil { |
| 287 | return nil, err |
| 288 | } |
| 289 | return cache.GetChanges(ctx, options) |
| 290 | } |
| 291 | |
| 292 | func (c *channelCacheImpl) GetCachedChanges(ctx context.Context, channel channels.ID) ([]*LogEntry, error) { |
| 293 | options := ChangesOptions{Since: SequenceID{Seq: 0}} |
nothing calls this directly
no test coverage detected