Documentation ¶
Index ¶
- Variables
- type CacheServer
- func (s *CacheServer) DeleteBlobs(_ context.Context, in *rpcCache.DeleteBlobsRequest) (*google_protobuf.Empty, error)
- func (s *CacheServer) MissingBlobs(_ context.Context, in *rpcCache.MissingBlobsRequest) (*rpcCache.MissingBlobsResponse, error)
- func (s *CacheServer) PutArtifact(_ context.Context, in *rpcCache.PutArtifactRequest) (*google_protobuf.Empty, error)
- func (s *CacheServer) PutBlob(_ context.Context, in *rpcCache.PutBlobRequest) (*google_protobuf.Empty, error)
- type ScanServer
- type Server
Constants ¶
This section is empty.
Variables ¶
View Source
var ScanSuperSet = wire.NewSet( local.SuperSet, wire.Bind(new(scanner.Driver), new(local.Scanner)), NewScanServer, )
ScanSuperSet binds the dependencies for server
Functions ¶
This section is empty.
Types ¶
type CacheServer ¶ added in v0.5.0
type CacheServer struct {
// contains filtered or unexported fields
}
CacheServer implements the cache
func NewCacheServer ¶ added in v0.5.0
func NewCacheServer(c cache.Cache) *CacheServer
NewCacheServer is the factory method for cacheServer
func (*CacheServer) DeleteBlobs ¶ added in v0.25.0
func (s *CacheServer) DeleteBlobs(_ context.Context, in *rpcCache.DeleteBlobsRequest) (*google_protobuf.Empty, error)
DeleteBlobs removes blobs by IDs
func (*CacheServer) MissingBlobs ¶ added in v0.9.0
func (s *CacheServer) MissingBlobs(_ context.Context, in *rpcCache.MissingBlobsRequest) (*rpcCache.MissingBlobsResponse, error)
MissingBlobs returns missing blobs from cache
func (*CacheServer) PutArtifact ¶ added in v0.9.0
func (s *CacheServer) PutArtifact(_ context.Context, in *rpcCache.PutArtifactRequest) (*google_protobuf.Empty, error)
PutArtifact puts the artifacts in cache
func (*CacheServer) PutBlob ¶ added in v0.9.0
func (s *CacheServer) PutBlob(_ context.Context, in *rpcCache.PutBlobRequest) (*google_protobuf.Empty, error)
PutBlob puts the blobs in cache
type ScanServer ¶ added in v0.5.0
type ScanServer struct {
// contains filtered or unexported fields
}
ScanServer implements the scanner
func NewScanServer ¶ added in v0.5.0
func NewScanServer(s scanner.Driver) *ScanServer
NewScanServer is the factory method for scanner
func (*ScanServer) Scan ¶ added in v0.5.0
func (s *ScanServer) Scan(ctx context.Context, in *rpcScanner.ScanRequest) (*rpcScanner.ScanResponse, error)
Scan scans and return response
Click to show internal directories.
Click to hide internal directories.