abstract class
MinknowApi::Debug::DebugService::Service
- MinknowApi::Debug::DebugService::Service
- GRPC::Service
- Reference
- Object
Overview
Service is the generated abstract base class for server implementations. Subclass it and implement each RPC method, then register with GRPC::Server#handle.
Defined in:
generated/minknow_api/debug.grpc.crInstance Method Summary
- #connect_flow_cell(request : ConnectFlowCellRequest, ctx : GRPC::ServerContext) : ConnectFlowCellResponse
- #disconnect_flow_cell(request : DisconnectFlowCellRequest, ctx : GRPC::ServerContext) : DisconnectFlowCellResponse
-
#dispatch(method : String, body : Bytes, ctx : GRPC::ServerContext) : Tuple(Bytes, GRPC::Status)
dispatch routes an incoming unary RPC call to the correct method implementation.
- #get_basecall_clients_states(request : GetBasecallClientState, ctx : GRPC::ServerContext) : GetBasecallClientResponse
- #get_basecaller_server_state(request : GetBasecallServerState, ctx : GRPC::ServerContext) : GetBasecallServerResponse
-
#service_full_name : String
service_full_name returns the full gRPC service name (e.g.
- #simulate_frame_loss(request : SimulateFrameLossRequest, ctx : GRPC::ServerContext) : SimulateFrameLossResponse
Instance Method Detail
abstract
def connect_flow_cell(request : ConnectFlowCellRequest, ctx : GRPC::ServerContext) : ConnectFlowCellResponse
#
abstract
def disconnect_flow_cell(request : DisconnectFlowCellRequest, ctx : GRPC::ServerContext) : DisconnectFlowCellResponse
#
def dispatch(method : String, body : Bytes, ctx : GRPC::ServerContext) : Tuple(Bytes, GRPC::Status)
#
Description copied from class GRPC::Service
dispatch routes an incoming unary RPC call to the correct method implementation. Returns {response_body : Bytes, status : Status}.
abstract
def get_basecall_clients_states(request : GetBasecallClientState, ctx : GRPC::ServerContext) : GetBasecallClientResponse
#
abstract
def get_basecaller_server_state(request : GetBasecallServerState, ctx : GRPC::ServerContext) : GetBasecallServerResponse
#
def service_full_name : String
#
Description copied from class GRPC::Service
service_full_name returns the full gRPC service name (e.g. "helloworld.Greeter").
abstract
def simulate_frame_loss(request : SimulateFrameLossRequest, ctx : GRPC::ServerContext) : SimulateFrameLossResponse
#