Documentation ¶
Index ¶
- Constants
- func NewOfflineStoreServiceHandler(svc OfflineStoreServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type OfflineStoreServiceClient
- type OfflineStoreServiceHandler
- type UnimplementedOfflineStoreServiceHandler
- func (UnimplementedOfflineStoreServiceHandler) GetFeatureValues(context.Context, *connect.Request[v2.GetFeatureValuesRequest]) (*connect.Response[v2.GetFeatureValuesResponse], error)
- func (UnimplementedOfflineStoreServiceHandler) GetFeatureValuesTimeSeriesChart(context.Context, *connect.Request[v2.GetFeatureValuesTimeSeriesChartRequest]) (*connect.Response[v2.GetFeatureValuesTimeSeriesChartResponse], error)
- func (UnimplementedOfflineStoreServiceHandler) GetQueryLogEntries(context.Context, *connect.Request[v2.GetQueryLogEntriesRequest]) (*connect.Response[v2.GetQueryLogEntriesResponse], error)
- func (UnimplementedOfflineStoreServiceHandler) GetQueryValues(context.Context, *connect.Request[v2.GetQueryValuesRequest]) (*connect.Response[v2.GetQueryValuesResponse], error)
Constants ¶
const ( // OfflineStoreServiceGetQueryLogEntriesProcedure is the fully-qualified name of the // OfflineStoreService's GetQueryLogEntries RPC. OfflineStoreServiceGetQueryLogEntriesProcedure = "/chalk.engine.v2.OfflineStoreService/GetQueryLogEntries" // OfflineStoreServiceGetQueryValuesProcedure is the fully-qualified name of the // OfflineStoreService's GetQueryValues RPC. OfflineStoreServiceGetQueryValuesProcedure = "/chalk.engine.v2.OfflineStoreService/GetQueryValues" // OfflineStoreServiceGetFeatureValuesTimeSeriesChartProcedure is the fully-qualified name of the // OfflineStoreService's GetFeatureValuesTimeSeriesChart RPC. OfflineStoreServiceGetFeatureValuesTimeSeriesChartProcedure = "/chalk.engine.v2.OfflineStoreService/GetFeatureValuesTimeSeriesChart" // OfflineStoreServiceGetFeatureValuesProcedure is the fully-qualified name of the // OfflineStoreService's GetFeatureValues RPC. OfflineStoreServiceGetFeatureValuesProcedure = "/chalk.engine.v2.OfflineStoreService/GetFeatureValues" )
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 (
// OfflineStoreServiceName is the fully-qualified name of the OfflineStoreService service.
OfflineStoreServiceName = "chalk.engine.v2.OfflineStoreService"
)
Variables ¶
This section is empty.
Functions ¶
func NewOfflineStoreServiceHandler ¶
func NewOfflineStoreServiceHandler(svc OfflineStoreServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewOfflineStoreServiceHandler 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 OfflineStoreServiceClient ¶
type OfflineStoreServiceClient interface { GetQueryLogEntries(context.Context, *connect.Request[v2.GetQueryLogEntriesRequest]) (*connect.Response[v2.GetQueryLogEntriesResponse], error) GetQueryValues(context.Context, *connect.Request[v2.GetQueryValuesRequest]) (*connect.Response[v2.GetQueryValuesResponse], error) GetFeatureValuesTimeSeriesChart(context.Context, *connect.Request[v2.GetFeatureValuesTimeSeriesChartRequest]) (*connect.Response[v2.GetFeatureValuesTimeSeriesChartResponse], error) GetFeatureValues(context.Context, *connect.Request[v2.GetFeatureValuesRequest]) (*connect.Response[v2.GetFeatureValuesResponse], error) }
OfflineStoreServiceClient is a client for the chalk.engine.v2.OfflineStoreService service.
func NewOfflineStoreServiceClient ¶
func NewOfflineStoreServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) OfflineStoreServiceClient
NewOfflineStoreServiceClient constructs a client for the chalk.engine.v2.OfflineStoreService 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 OfflineStoreServiceHandler ¶
type OfflineStoreServiceHandler interface { GetQueryLogEntries(context.Context, *connect.Request[v2.GetQueryLogEntriesRequest]) (*connect.Response[v2.GetQueryLogEntriesResponse], error) GetQueryValues(context.Context, *connect.Request[v2.GetQueryValuesRequest]) (*connect.Response[v2.GetQueryValuesResponse], error) GetFeatureValuesTimeSeriesChart(context.Context, *connect.Request[v2.GetFeatureValuesTimeSeriesChartRequest]) (*connect.Response[v2.GetFeatureValuesTimeSeriesChartResponse], error) GetFeatureValues(context.Context, *connect.Request[v2.GetFeatureValuesRequest]) (*connect.Response[v2.GetFeatureValuesResponse], error) }
OfflineStoreServiceHandler is an implementation of the chalk.engine.v2.OfflineStoreService service.
type UnimplementedOfflineStoreServiceHandler ¶
type UnimplementedOfflineStoreServiceHandler struct{}
UnimplementedOfflineStoreServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedOfflineStoreServiceHandler) GetFeatureValues ¶
func (UnimplementedOfflineStoreServiceHandler) GetFeatureValues(context.Context, *connect.Request[v2.GetFeatureValuesRequest]) (*connect.Response[v2.GetFeatureValuesResponse], error)
func (UnimplementedOfflineStoreServiceHandler) GetFeatureValuesTimeSeriesChart ¶
func (UnimplementedOfflineStoreServiceHandler) GetFeatureValuesTimeSeriesChart(context.Context, *connect.Request[v2.GetFeatureValuesTimeSeriesChartRequest]) (*connect.Response[v2.GetFeatureValuesTimeSeriesChartResponse], error)
func (UnimplementedOfflineStoreServiceHandler) GetQueryLogEntries ¶
func (UnimplementedOfflineStoreServiceHandler) GetQueryLogEntries(context.Context, *connect.Request[v2.GetQueryLogEntriesRequest]) (*connect.Response[v2.GetQueryLogEntriesResponse], error)
func (UnimplementedOfflineStoreServiceHandler) GetQueryValues ¶
func (UnimplementedOfflineStoreServiceHandler) GetQueryValues(context.Context, *connect.Request[v2.GetQueryValuesRequest]) (*connect.Response[v2.GetQueryValuesResponse], error)