WorkerNodeInterfaceClient is the client API for WorkerNodeInterface service. For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
| 19 | // |
| 20 | // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. |
| 21 | type WorkerNodeInterfaceClient interface { |
| 22 | CreateSandbox(ctx context.Context, in *ServiceInfo, opts ...grpc.CallOption) (*SandboxCreationStatus, error) |
| 23 | DeleteSandbox(ctx context.Context, in *SandboxID, opts ...grpc.CallOption) (*ActionStatus, error) |
| 24 | ListEndpoints(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*EndpointsList, error) |
| 25 | } |
| 26 | |
| 27 | type workerNodeInterfaceClient struct { |
| 28 | cc grpc.ClientConnInterface |
no outgoing calls
no test coverage detected