Lines Matching full:in
7 * "License"); you may not use this file except in compliance
12 * Unless required by applicable law or agreed to in writing,
29 // Middlewares are passed in the name of the function as set in the processor
34 // TProcessorFunctions with the middlewares passed in and returns it.
36 // Middlewares will be called in the order that they are defined:
45 // Add middlewares in reverse so the first in the list is the outermost.
60 Wrapped func(ctx context.Context, seqId int32, in, out TProtocol) (bool, TException)
64 func (p WrappedTProcessorFunction) Process(ctx context.Context, seqID int32, in, out TProtocol) (bo…
65 return p.Wrapped(ctx, seqID, in, out)
74 // ClientMiddleware can be passed to WrapClient in order to wrap TClient calls
81 // This is provided to aid in developing ClientMiddleware.
97 // WrapClient wraps the given TClient in the given middlewares.
99 // Middlewares will be called in the order that they are defined:
106 // Add middlewares in reverse so the first in the list is the outermost.
114 // extracts exceptions defined in thrift IDL into the error return of
117 // By default if a client call gets an exception defined in the thrift IDL, for
127 // Exception1 or Exception2 will not be in the err return of TClient.Call,
128 // but in the result TStruct instead, and there's no easy access to them.
135 // Alternatively you can also just use ExtractExceptionFromResult in your client