Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ExecServiceApplicationError_name = map[int32]string{
-1: "BAD_REQUEST",
0: "EXEC_OK",
1: "EXECUTABLE_NOT_READY",
2: "DISK_EXCEEDED",
3: "EXEC_INTERNAL_ERROR",
4: "EXECUTOR_IS_LOADING",
5: "EXECUTOR_MEMORY_NOT_ENOUGH",
}
View Source
var ExecServiceApplicationError_value = map[string]int32{
"BAD_REQUEST": -1,
"EXEC_OK": 0,
"EXECUTABLE_NOT_READY": 1,
"DISK_EXCEEDED": 2,
"EXEC_INTERNAL_ERROR": 3,
"EXECUTOR_IS_LOADING": 4,
"EXECUTOR_MEMORY_NOT_ENOUGH": 5,
}
Functions ¶
func RegisterExecServiceServer ¶
func RegisterExecServiceServer(s *grpc.Server, srv ExecServiceServer)
Types ¶
type ExecServiceApplicationError ¶
type ExecServiceApplicationError int32
TODO: reconsider good error codes.
const ( ExecServiceApplicationError_BAD_REQUEST ExecServiceApplicationError = -1 ExecServiceApplicationError_EXEC_OK ExecServiceApplicationError = 0 ExecServiceApplicationError_EXECUTABLE_NOT_READY ExecServiceApplicationError = 1 ExecServiceApplicationError_DISK_EXCEEDED ExecServiceApplicationError = 2 ExecServiceApplicationError_EXEC_INTERNAL_ERROR ExecServiceApplicationError = 3 ExecServiceApplicationError_EXECUTOR_IS_LOADING ExecServiceApplicationError = 4 ExecServiceApplicationError_EXECUTOR_MEMORY_NOT_ENOUGH ExecServiceApplicationError = 5 )
func (ExecServiceApplicationError) Enum ¶
func (x ExecServiceApplicationError) Enum() *ExecServiceApplicationError
func (ExecServiceApplicationError) EnumDescriptor ¶
func (ExecServiceApplicationError) EnumDescriptor() ([]byte, []int)
func (ExecServiceApplicationError) String ¶
func (x ExecServiceApplicationError) String() string
func (*ExecServiceApplicationError) UnmarshalJSON ¶
func (x *ExecServiceApplicationError) UnmarshalJSON(data []byte) error
type ExecServiceClient ¶
type ExecServiceClient interface {
Exec(ctx context.Context, in *api.ExecReq, opts ...grpc.CallOption) (*api.ExecResp, error)
}
ExecServiceClient is the client API for ExecService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewExecServiceClient ¶
func NewExecServiceClient(cc grpc.ClientConnInterface) ExecServiceClient
type ExecServiceServer ¶
ExecServiceServer is the server API for ExecService service.
type UnimplementedExecServiceServer ¶ added in v0.0.5
type UnimplementedExecServiceServer struct { }
UnimplementedExecServiceServer can be embedded to have forward compatible implementations.
Click to show internal directories.
Click to hide internal directories.