Documentation ¶
Index ¶
- Constants
- func BaggageFromContext(ctx context.Context, key string) (value string, ok bool)
- func CanonicalizeHeaderKey(k string) string
- func Filters(filters ...transport.Filter) transport.Filter
- func Interceptors(interceptors ...transport.Interceptor) transport.Interceptor
- func WithBaggage(ctx context.Context, key, value string) context.Context
- type CallReqMeta
- type CallResMeta
- type Config
- type Dispatcher
- type Headers
- type ReqMeta
- type ResMeta
Constants ¶
const Version = "0.2.1"
Version is the current version of YARPC.
Variables ¶
This section is empty.
Functions ¶
func BaggageFromContext ¶
BaggageFromContext returns the baggage attached to the context with the given key name. False is returned if baggage with the given name was not attached to the context.
func CanonicalizeHeaderKey ¶
CanonicalizeHeaderKey canonicalizes the given header key for storage into the Headers map.
func Interceptors ¶
func Interceptors(interceptors ...transport.Interceptor) transport.Interceptor
Interceptors combines the given collection of interceptors in-order into a single Interceptor.
func WithBaggage ¶
WithBaggage returns a copy of the context with the given baggage attached to it.
Baggage is a set of key-value pairs that are sent to all downstream requests made with the returned context. Use this sparingly: all downstream services that receive baggage in a request will propagate it to all outbound calls made as a result of receiving that request.
If baggage with the same key is already attached to the context, it will be overwritten in the new context. The parent context will always be left unchanged.
Types ¶
type CallReqMeta ¶
type CallReqMeta interface { Procedure(string) CallReqMeta Headers(Headers) CallReqMeta ShardKey(string) CallReqMeta RoutingKey(string) CallReqMeta RoutingDelegate(string) CallReqMeta GetProcedure() string GetHeaders() Headers GetShardKey() string GetRoutingKey() string GetRoutingDelegate() string }
CallReqMeta contains information about an outgoing YARPC request.
func NewReqMeta ¶
func NewReqMeta() CallReqMeta
NewReqMeta constructs a CallReqMeta with the given Context.
type CallResMeta ¶
type CallResMeta interface {
Headers() Headers
}
CallResMeta contains information about an incoming YARPC response.
type Config ¶
type Config struct { Name string Inbounds []transport.Inbound Outbounds transport.Outbounds // Filter and Interceptor that will be applied to all outgoing and incoming // requests respectively. Filter transport.Filter Interceptor transport.Interceptor Tracer opentracing.Tracer }
Config specifies the parameters of a new RPC constructed via New.
type Dispatcher ¶
type Dispatcher interface { transport.Handler transport.Registry // Retrieves a new Outbound transport that will make requests to the given // service. // // This panics if the given service is unknown. Channel(service string) transport.Channel // Inbounds returns a copy of the list of inbounds for this RPC object. // // The Inbounds will be returned in the same order that was used in the // configuration. Inbounds() []transport.Inbound // Starts the RPC allowing it to accept and processing new incoming // requests. // // Blocks until the RPC is ready to start accepting new requests. Start() error // Stops the RPC. No new requests will be accepted. // // Blocks until the RPC has stopped. Stop() error }
Dispatcher object is used to configure a YARPC application; it is used by Clients to send RPCs, and by Procedures to recieve them. This object is what enables an application to be transport-agnostic.
func NewDispatcher ¶
func NewDispatcher(cfg Config) Dispatcher
NewDispatcher builds a new Dispatcher using the specified Config.
type Headers ¶
Headers defines application headers which will be sent over the wire to the recipient of an RPC call.
func (Headers) Get ¶
Get retrieves the value associated with the given header key, and a boolean indicating whether the key actually existed in the header map.
func (Headers) Keys ¶
Keys returns a list of header keys defined on this Headers object.
All items in the list will be normalized using CanonicalizeHeaderKey.
func (Headers) With ¶
With returns a Headers object with the given key-value pair added to it. If a header with the same name already exists, it will be overwritten.
This API is similar to Go's append function. The returned Headers object MAY not point to the same underlying data store, so the returned value MUST always be used in place of the original object.
headers = headers.With("foo", "bar")
This call may be chained to set multiple headers consecutively.
headers = headers.With("foo", "bar").With("baz", "qux")
Again, note that the returned Headers object MAY point to a new object. It MAY also mutate the original object instead.
h1 = NewHeaders().With("foo", "bar") h2 = h1.With("baz", "qux") h1.Get("baz") // this MAY return "qux"
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
thrift/gen-go/echo
Package echo is generated code used to make or handle TChannel calls using Thrift.
|
Package echo is generated code used to make or handle TChannel calls using Thrift. |
thrift/gen-go/gauntlet_apache
Package gauntlet_apache is generated code used to make or handle TChannel calls using Thrift.
|
Package gauntlet_apache is generated code used to make or handle TChannel calls using Thrift. |
encoding
|
|
json
Package json provides the JSON encoding for YARPC.
|
Package json provides the JSON encoding for YARPC. |
raw
Package raw provides the raw encoding for YARPC.
|
Package raw provides the raw encoding for YARPC. |
thrift
Package thrift implements Thrift encoding support for YARPC.
|
Package thrift implements Thrift encoding support for YARPC. |
thrift/thriftrw-plugin-yarpc
thriftrw-plugin-yarpc implements a plugin for ThriftRW that generates code compatible with YARPC.
|
thriftrw-plugin-yarpc implements a plugin for ThriftRW that generates code compatible with YARPC. |
examples
|
|
crossdock
Module
|
|
examples
Module
|
|
Package transport implements the low level concerns of sending and receiving bytes.
|
Package transport implements the low level concerns of sending and receiving bytes. |
http
Package http implements the HTTP inbound and outbound transports for YARPC.
|
Package http implements the HTTP inbound and outbound transports for YARPC. |
Package yarpctest provides utilities to test YARPC services and clients.
|
Package yarpctest provides utilities to test YARPC services and clients. |