Documentation
¶
Index ¶
- Constants
- func NewSystemServiceHandler(svc SystemServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type SystemServiceClient
- type SystemServiceHandler
- type UnimplementedSystemServiceHandler
- func (UnimplementedSystemServiceHandler) CheckNewVersion(context.Context, *connect.Request[v1.CheckNewVersionRequest]) (*connect.Response[v1.CheckNewVersionResponse], error)
- func (UnimplementedSystemServiceHandler) GetLastLogs(context.Context, *connect.Request[v1.GetLastLogsRequest]) (*connect.Response[v1.GetLastLogsResponse], error)
- func (UnimplementedSystemServiceHandler) Info(context.Context, *connect.Request[v1.InfoRequest]) (*connect.Response[v1.InfoResponse], error)
- func (UnimplementedSystemServiceHandler) UpdateToNewVersion(context.Context, *connect.Request[v1.UpdateToNewVersionRequest]) (*connect.Response[v1.UpdateToNewVersionResponse], error)
Constants ¶
const ( // SystemServiceInfoProcedure is the fully-qualified name of the SystemService's Info RPC. SystemServiceInfoProcedure = "/processing.system.v1.SystemService/Info" // SystemServiceCheckNewVersionProcedure is the fully-qualified name of the SystemService's // CheckNewVersion RPC. SystemServiceCheckNewVersionProcedure = "/processing.system.v1.SystemService/CheckNewVersion" // SystemServiceUpdateToNewVersionProcedure is the fully-qualified name of the SystemService's // UpdateToNewVersion RPC. SystemServiceUpdateToNewVersionProcedure = "/processing.system.v1.SystemService/UpdateToNewVersion" // SystemServiceGetLastLogsProcedure is the fully-qualified name of the SystemService's GetLastLogs // RPC. SystemServiceGetLastLogsProcedure = "/processing.system.v1.SystemService/GetLastLogs" )
These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.
const (
// SystemServiceName is the fully-qualified name of the SystemService service.
SystemServiceName = "processing.system.v1.SystemService"
)
Variables ¶
This section is empty.
Functions ¶
func NewSystemServiceHandler ¶
func NewSystemServiceHandler(svc SystemServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewSystemServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.
By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.
Types ¶
type SystemServiceClient ¶
type SystemServiceClient interface { // System info (version etc) Info(context.Context, *connect.Request[v1.InfoRequest]) (*connect.Response[v1.InfoResponse], error) // Check new version from updater CheckNewVersion(context.Context, *connect.Request[v1.CheckNewVersionRequest]) (*connect.Response[v1.CheckNewVersionResponse], error) // Update Processing from updater UpdateToNewVersion(context.Context, *connect.Request[v1.UpdateToNewVersionRequest]) (*connect.Response[v1.UpdateToNewVersionResponse], error) // Get last memory logs GetLastLogs(context.Context, *connect.Request[v1.GetLastLogsRequest]) (*connect.Response[v1.GetLastLogsResponse], error) }
SystemServiceClient is a client for the processing.system.v1.SystemService service.
func NewSystemServiceClient ¶
func NewSystemServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) SystemServiceClient
NewSystemServiceClient constructs a client for the processing.system.v1.SystemService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.
The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).
type SystemServiceHandler ¶
type SystemServiceHandler interface { // System info (version etc) Info(context.Context, *connect.Request[v1.InfoRequest]) (*connect.Response[v1.InfoResponse], error) // Check new version from updater CheckNewVersion(context.Context, *connect.Request[v1.CheckNewVersionRequest]) (*connect.Response[v1.CheckNewVersionResponse], error) // Update Processing from updater UpdateToNewVersion(context.Context, *connect.Request[v1.UpdateToNewVersionRequest]) (*connect.Response[v1.UpdateToNewVersionResponse], error) // Get last memory logs GetLastLogs(context.Context, *connect.Request[v1.GetLastLogsRequest]) (*connect.Response[v1.GetLastLogsResponse], error) }
SystemServiceHandler is an implementation of the processing.system.v1.SystemService service.
type UnimplementedSystemServiceHandler ¶
type UnimplementedSystemServiceHandler struct{}
UnimplementedSystemServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedSystemServiceHandler) CheckNewVersion ¶
func (UnimplementedSystemServiceHandler) CheckNewVersion(context.Context, *connect.Request[v1.CheckNewVersionRequest]) (*connect.Response[v1.CheckNewVersionResponse], error)
func (UnimplementedSystemServiceHandler) GetLastLogs ¶ added in v0.9.5
func (UnimplementedSystemServiceHandler) GetLastLogs(context.Context, *connect.Request[v1.GetLastLogsRequest]) (*connect.Response[v1.GetLastLogsResponse], error)
func (UnimplementedSystemServiceHandler) Info ¶
func (UnimplementedSystemServiceHandler) Info(context.Context, *connect.Request[v1.InfoRequest]) (*connect.Response[v1.InfoResponse], error)
func (UnimplementedSystemServiceHandler) UpdateToNewVersion ¶
func (UnimplementedSystemServiceHandler) UpdateToNewVersion(context.Context, *connect.Request[v1.UpdateToNewVersionRequest]) (*connect.Response[v1.UpdateToNewVersionResponse], error)