Lines Matching refs:Request
38 handling map[ID]*Request
51 // Request is sent to a server to represent a Call or Notify operation.
52 type Request struct {
78 handling: make(map[ID]*Request),
123 ctx = h.Request(ctx, c, Send, request)
158 ctx = h.Request(ctx, c, Send, request)
214 func (r *Request) Conn() *Conn { return r.conn }
217 func (r *Request) IsNotify() bool {
226 func (r *Request) Parallel() {
241 func (r *Request) Reply(ctx context.Context, result interface{}, err error) error {
290 func (c *Conn) setHandling(r *Request, active bool) {
303 // combined has all the fields of both Request and Response.
348 req := &Request{
360 reqCtx = h.Request(reqCtx, c, Receive, &req.WireRequest)