(ctx context.Context, qh blobcache.Handle, buf []blobcache.Message, opts blobcache.DequeueOpts)
| 363 | } |
| 364 | |
| 365 | func (s *Service) Dequeue(ctx context.Context, qh blobcache.Handle, buf []blobcache.Message, opts blobcache.DequeueOpts) (int, error) { |
| 366 | return s.sys.Dequeue(ctx, qh, buf, opts) |
| 367 | } |
| 368 | |
| 369 | func (s *Service) Enqueue(ctx context.Context, qh blobcache.Handle, msgs []blobcache.Message) (*blobcache.InsertResp, error) { |
| 370 | return s.sys.Enqueue(ctx, qh, msgs) |
nothing calls this directly
no test coverage detected