Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Accent (0.13 sec)

  1. internal/grid/handlers.go

    	return h.reqPool.Get().(Req)
    }
    
    // PutRequest will accept a request for reuse.
    // These should be returned by the handler.
    func (h *StreamTypeHandler[Payload, Req, Resp]) PutRequest(r Req) {
    	if r != h.nilReq {
    		h.reqPool.Put(r)
    	}
    }
    
    // PutResponse will accept a response for reuse.
    // These should be returned by the caller.
    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)
Back to top