(ctx context.Context, host *blobcache.Endpoint, qspec blobcache.QueueSpec)
| 355 | } |
| 356 | |
| 357 | func (s *Service) CreateQueue(ctx context.Context, host *blobcache.Endpoint, qspec blobcache.QueueSpec) (*blobcache.Handle, error) { |
| 358 | return s.sys.CreateQueue(ctx, host, qspec) |
| 359 | } |
| 360 | |
| 361 | func (s *Service) InspectQueue(ctx context.Context, qh blobcache.Handle) (blobcache.QueueInfo, error) { |
| 362 | return s.sys.InspectQueue(ctx, qh) |
nothing calls this directly
no test coverage detected