abstract class
MinknowApi::Manager::ManagerService::Service
- MinknowApi::Manager::ManagerService::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/manager.grpc.crInstance Method Summary
- #add_simulated_device(request : AddSimulatedDeviceRequest, ctx : GRPC::ServerContext) : AddSimulatedDeviceResponse
- #apply_offline_association_unlock_code(request : ApplyOfflineAssociationUnlockCodeRequest, ctx : GRPC::ServerContext) : ApplyOfflineAssociationUnlockCodeResponse
- #association_device_code(request : AssociationDeviceCodeRequest, ctx : GRPC::ServerContext) : AssociationDeviceCodeResponse
- #basecaller_api(request : BasecallerApiRequest, ctx : GRPC::ServerContext) : BasecallerApiResponse
- #check_bed_file(request : CheckBedFileRequest, ctx : GRPC::ServerContext) : CheckBedFileResponse
- #check_path_info(request : CheckPathInfoRequest, ctx : GRPC::ServerContext) : CheckPathInfoResponse
- #create_directory(request : CreateDirectoryRequest, ctx : GRPC::ServerContext) : CreateDirectoryResponse
- #describe_host(request : DescribeHostRequest, ctx : GRPC::ServerContext) : DescribeHostResponse
-
#dispatch(method : String, body : Bytes, ctx : GRPC::ServerContext) : Tuple(Bytes, GRPC::Status)
dispatch routes an incoming unary RPC call to the correct method implementation.
-
#dispatch_server_stream(method : String, body : Bytes, ctx : GRPC::ServerContext, writer : GRPC::RawResponseStream) : GRPC::Status
dispatch_server_stream dispatches a server-streaming RPC.
- #find_basecall_configurations(request : FindBasecallConfigurationsRequest, ctx : GRPC::ServerContext) : FindBasecallConfigurationsResponse
- #find_protocols(request : FindProtocolsRequest, ctx : GRPC::ServerContext) : FindProtocolsResponse
- #flow_cell_positions(request : FlowCellPositionsRequest, writer : GRPC::ResponseStream(FlowCellPositionsResponse), ctx : GRPC::ServerContext) : GRPC::Status
- #get_alignment_reference_information(request : GetAlignmentReferenceInformationRequest, ctx : GRPC::ServerContext) : GetAlignmentReferenceInformationResponse
- #get_barcode_keys(request : GetBarcodeKeysRequest, ctx : GRPC::ServerContext) : GetBarcodeKeysResponse
- #get_barcode_kit_info(request : GetBarcodeKitInfoRequest, ctx : GRPC::ServerContext) : GetBarcodeKitInfoResponse
- #get_basecaller_features(request : GetBasecallerFeaturesRequest, ctx : GRPC::ServerContext) : GetBasecallerFeaturesResponse
- #get_default_output_directories(request : MinknowApi::Instance::GetDefaultOutputDirectoriesRequest, ctx : GRPC::ServerContext) : MinknowApi::Instance::OutputDirectories
- #get_disk_space_info(request : GetDiskSpaceInfoRequest, ctx : GRPC::ServerContext) : GetDiskSpaceInfoResponse
- #get_features(request : GetFeaturesRequest, ctx : GRPC::ServerContext) : GetFeaturesResponse
- #get_flow_cell_types(request : GetFlowCellTypesRequest, ctx : GRPC::ServerContext) : GetFlowCellTypesResponse
- #get_guppy_info(request : GetGuppyInfoRequest, ctx : GRPC::ServerContext) : GetGuppyInfoResponse
- #get_lamp_kit_info(request : GetLampKitInfoRequest, ctx : GRPC::ServerContext) : GetLampKitInfoResponse
- #get_sequencing_kits(request : GetSequencingKitsRequest, ctx : GRPC::ServerContext) : GetSequencingKitsResponse
- #get_version_info(request : GetVersionInfoRequest, ctx : GRPC::ServerContext) : MinknowApi::Instance::GetVersionInfoResponse
- #list_protocol_output_dir_files(request : ListProtocolOutputDirFilesRequest, writer : GRPC::ResponseStream(ListProtocolOutputDirFilesResponse), ctx : GRPC::ServerContext) : GRPC::Status
- #list_settings_for_protocol(request : ListSettingsForProtocolRequest, ctx : GRPC::ServerContext) : ListSettingsForProtocolResponse
- #local_authentication_token_path(request : LocalAuthenticationTokenPathRequest, ctx : GRPC::ServerContext) : LocalAuthenticationTokenPathResponse
- #remove_simulated_device(request : RemoveSimulatedDeviceRequest, ctx : GRPC::ServerContext) : RemoveSimulatedDeviceResponse
- #reset_position(request : ResetPositionRequest, ctx : GRPC::ServerContext) : ResetPositionResponse
- #restart_device_admin_service(request : RestartDeviceAdminRequest, ctx : GRPC::ServerContext) : RestartDeviceAdminResponse
-
#server_streaming?(method : String) : Bool
server_streaming? returns true if method is a server-streaming RPC.
-
#service_full_name : String
service_full_name returns the full gRPC service name (e.g.
- #set_features(request : SetFeaturesRequest, ctx : GRPC::ServerContext) : SetFeaturesResponse
- #stream_disk_space_info(request : StreamDiskSpaceInfoRequest, writer : GRPC::ResponseStream(GetDiskSpaceInfoResponse), ctx : GRPC::ServerContext) : GRPC::Status
- #watch_flow_cell_positions(request : WatchFlowCellPositionsRequest, writer : GRPC::ResponseStream(WatchFlowCellPositionsResponse), ctx : GRPC::ServerContext) : GRPC::Status
Instance Method Detail
dispatch routes an incoming unary RPC call to the correct method implementation. Returns {response_body : Bytes, status : Status}.
dispatch_server_stream dispatches a server-streaming RPC. The transport passes a RawResponseStream; generated subclasses wrap it in a typed ResponseStream(T) before handing off to the user implementation.
server_streaming? returns true if method is a server-streaming RPC. Generated service base classes override this; the default is false (unary).
service_full_name returns the full gRPC service name (e.g. "helloworld.Greeter").