Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deltaReqChan (0.17 sec)

  1. pilot/pkg/xds/delta.go

    		// For requests, these are higher priority (client may be blocked on startup until these are done)
    		// and often very cheap to handle (simple ACK), so we check it first.
    		select {
    		case req, ok := <-con.deltaReqChan:
    			if ok {
    				if err := s.processDeltaRequest(req, con); err != nil {
    					return err
    				}
    			} else {
    				// Remote side closed connection or error processing the request.
    				return <-con.ErrorCh()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    	// proxy is the client to which this connection is established.
    	proxy *model.Proxy
    
    	// deltaStream is used for Delta XDS. Only one of deltaStream or stream will be set
    	deltaStream DeltaDiscoveryStream
    
    	deltaReqChan chan *discovery.DeltaDiscoveryRequest
    
    	s   *DiscoveryServer
    	ids []string
    }
    
    func (conn *Connection) XdsConnection() *xds.Connection {
    	return &conn.Connection
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top