Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewPayload (0.21 sec)

  1. internal/grid/handlers.go

    	} else {
    		s.InCapacity = 0
    	}
    	s.respPool.New = func() interface{} {
    		return newResp()
    	}
    	s.newPayload = newPayload
    	s.WithPayload = newPayload != nil
    	return s
    }
    
    // WithSharedResponse indicates it is unsafe to reuse the response.
    // Typically this is used when the response sharing part of its data structure.
    func (h *StreamTypeHandler[Payload, Req, Resp]) WithSharedResponse() *StreamTypeHandler[Payload, Req, Resp] {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 27.1K bytes
    - Viewed (0)
  2. internal/grid/README.md

        // Due to current generics limitations, a constructor of the empty type must be provided.
        instance := grid.NewStream[*Payload, *Req, *Resp](h, newPayload, newReq, newResp)
    	
        // Tweakable options
        instance.WithPayload = true // default true when newPayload != nil
        instance.OutCapacity = 1    // default
        instance.InCapacity = 1     // default true when newReq != nil
    	
        // Register the handler on the manager
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.4K bytes
    - Viewed (0)
Back to top