Documentation ¶
Overview ¶
Package example is a generated twirp stub package. This code was generated with github.com/twitchtv/twirp/protoc-gen-twirp v7.1.1.
It is generated from these files:
service.proto
Code generated by protoc-gen-twirp-go DO NOT EDIT.
Index ¶
- Constants
- Variables
- func WriteError(resp http.ResponseWriter, err error)
- type HTTPClient
- type Haberdasher
- type HaberdasherTwirpClient
- type HaberdasherTwirpServer
- type HaberdasherTwirpService
- type Hat
- type Size
- type TwirpClientOption
- type TwirpClientOptions
- type TwirpCodec
- type TwirpCodecJson
- type TwirpCodecProtobuf
- type TwirpServer
- type TwirpServerOption
- type TwirpServerOptions
Constants ¶
const HaberdasherPathPrefix = "/twirp/twitch.twirp.example.Haberdasher/"
HaberdasherPathPrefix is a convenience constant that could used to identify URL paths. Should be used with caution, it only matches routes generated by Twirp Go clients, that add a "/twirp" prefix by default, and use CamelCase service and method names. More info: https://twitchtv.github.io/twirp/docs/routing.html
Variables ¶
var DefaultTwirpCodecJson = &TwirpCodecJson{ MarshalOptions: protojson.MarshalOptions{ UseProtoNames: true, EmitUnpopulated: true, }, }
var DefaultTwirpCodecProtobuf = &TwirpCodecProtobuf{}
var File_service_proto protoreflect.FileDescriptor
Functions ¶
func WriteError ¶
func WriteError(resp http.ResponseWriter, err error)
WriteError writes an HTTP response with a valid Twirp error format (code, msg, meta). Useful outside of the Twirp server (e.g. http middleware), but does not trigger hooks. If err is not a twirp.Error, it will get wrapped with twirp.InternalErrorWith(err)
Types ¶
type HTTPClient ¶
HTTPClient is the interface used by generated clients to send HTTP requests. It is fulfilled by *(net/http).Client, which is sufficient for most users. Users can provide their own implementation for special retry policies.
HTTPClient implementations should not follow redirects. Redirects are automatically disabled if *(net/http).Client is passed to client constructors. See the withoutRedirects function in this file for more details.
type Haberdasher ¶
type Haberdasher interface { // MakeHat produces a hat of mysterious, randomly-selected color! MakeHat(context.Context, *Size) (*Hat, error) }
A Haberdasher makes hats for clients.
func NewHaberdasherJSONClient ¶
func NewHaberdasherJSONClient(baseURL string, client HTTPClient, opts ...twirp.ClientOption) Haberdasher
NewHaberdasherJSONClient creates a JSON client that implements the Haberdasher interface. It communicates using JSON and can be configured with a custom HTTPClient.
func NewHaberdasherProtobufClient ¶
func NewHaberdasherProtobufClient(baseURL string, client HTTPClient, opts ...twirp.ClientOption) Haberdasher
NewHaberdasherProtobufClient creates a Protobuf client that implements the Haberdasher interface. It communicates using Protobuf and can be configured with a custom HTTPClient.
type HaberdasherTwirpClient ¶
type HaberdasherTwirpClient struct {
// contains filtered or unexported fields
}
func NewHaberdasherTwirpClient ¶
func NewHaberdasherTwirpClient(baseUrl string, transport http.RoundTripper, opts ...interface{}) (*HaberdasherTwirpClient, error)
type HaberdasherTwirpServer ¶
type HaberdasherTwirpServer struct {
// contains filtered or unexported fields
}
func NewHaberdasherTwirpServer ¶
func NewHaberdasherTwirpServer(implementation HaberdasherTwirpService, opts ...interface{}) *HaberdasherTwirpServer
func (*HaberdasherTwirpServer) PathPrefix ¶
func (s *HaberdasherTwirpServer) PathPrefix() string
func (*HaberdasherTwirpServer) ServeHTTP ¶
func (s *HaberdasherTwirpServer) ServeHTTP(resp http.ResponseWriter, req *http.Request)
type HaberdasherTwirpService ¶
type Hat ¶
type Hat struct { // The size of a hat should always be in inches. Size int32 `protobuf:"varint,1,opt,name=size,proto3" json:"size,omitempty"` // The color of a hat will never be 'invisible', but other than // that, anything is fair game. Color string `protobuf:"bytes,2,opt,name=color,proto3" json:"color,omitempty"` // The name of a hat is it's type. Like, 'bowler', or something. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
A Hat is a piece of headwear made by a Haberdasher.
func (*Hat) Descriptor
deprecated
func (*Hat) ProtoMessage ¶
func (*Hat) ProtoMessage()
func (*Hat) ProtoReflect ¶
func (x *Hat) ProtoReflect() protoreflect.Message
type Size ¶
type Size struct { Inches int32 `protobuf:"varint,1,opt,name=inches,proto3" json:"inches,omitempty"` // contains filtered or unexported fields }
Size is passed when requesting a new hat to be made. It's always measured in inches.
func (*Size) Descriptor
deprecated
func (*Size) ProtoMessage ¶
func (*Size) ProtoMessage()
func (*Size) ProtoReflect ¶
func (x *Size) ProtoReflect() protoreflect.Message
type TwirpClientOption ¶
type TwirpClientOption func(*TwirpClientOptions)
func WithTwirpClientCodec ¶
func WithTwirpClientCodec(codec TwirpCodec) TwirpClientOption
type TwirpClientOptions ¶
type TwirpClientOptions struct {
// contains filtered or unexported fields
}
type TwirpCodec ¶
type TwirpCodecJson ¶
type TwirpCodecJson struct { protojson.MarshalOptions protojson.UnmarshalOptions }
func (*TwirpCodecJson) ContentType ¶
func (t *TwirpCodecJson) ContentType() string
func (*TwirpCodecJson) UnmarshalFrom ¶
type TwirpCodecProtobuf ¶
type TwirpCodecProtobuf struct { proto.UnmarshalOptions proto.MarshalOptions }
func (*TwirpCodecProtobuf) ContentType ¶
func (t *TwirpCodecProtobuf) ContentType() string
func (*TwirpCodecProtobuf) UnmarshalFrom ¶
type TwirpServer ¶
type TwirpServer interface { http.Handler // ServiceDescriptor returns gzipped bytes describing the .proto file that // this service was generated from. Once unzipped, the bytes can be // unmarshalled as a // github.com/golang/protobuf/protoc-gen-go/descriptor.FileDescriptorProto. // // The returned integer is the index of this particular service within that // FileDescriptorProto's 'Service' slice of ServiceDescriptorProtos. This is a // low-level field, expected to be used for reflection. ServiceDescriptor() ([]byte, int) // ProtocGenTwirpVersion is the semantic version string of the version of // twirp used to generate this file. ProtocGenTwirpVersion() string // PathPrefix returns the HTTP URL path prefix for all methods handled by this // service. This can be used with an HTTP mux to route Twirp requests. // The path prefix is in the form: "/<prefix>/<package>.<Service>/" // that is, everything in a Twirp route except for the <Method> at the end. PathPrefix() string }
TwirpServer is the interface generated server structs will support: they're HTTP handlers with additional methods for accessing metadata about the service. Those accessors are a low-level API for building reflection tools. Most people can think of TwirpServers as just http.Handlers.
func NewHaberdasherServer ¶
func NewHaberdasherServer(svc Haberdasher, opts ...interface{}) TwirpServer
NewHaberdasherServer builds a TwirpServer that can be used as an http.Handler to handle HTTP requests that are routed to the right method in the provided svc implementation. The opts are twirp.ServerOption modifiers, for example twirp.WithServerHooks(hooks).
type TwirpServerOption ¶
type TwirpServerOption func(*TwirpServerOptions)
func WithTwirpServerCodec ¶
func WithTwirpServerCodec(codec TwirpCodec) TwirpServerOption
type TwirpServerOptions ¶
type TwirpServerOptions struct {
// contains filtered or unexported fields
}