Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deltaResponsesChan (0.34 sec)

  1. pkg/istio-agent/xds_proxy_delta.go

    		deltaRequestsChan: channels.NewUnbounded[*discovery.DeltaDiscoveryRequest](),
    		// Allow a buffer of 1. This ensures we queue up at most 2 (one in process, 1 pending) responses before forwarding.
    		deltaResponsesChan: make(chan *discovery.DeltaDiscoveryResponse, 1),
    		stopChan:           make(chan struct{}),
    		downstreamDeltas:   downstream,
    	}
    	p.registerStream(con)
    	defer p.unregisterStream(con)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.go

    	requestsChan       *channels.Unbounded[*discovery.DiscoveryRequest]
    	responsesChan      chan *discovery.DiscoveryResponse
    	deltaRequestsChan  *channels.Unbounded[*discovery.DeltaDiscoveryRequest]
    	deltaResponsesChan chan *discovery.DeltaDiscoveryResponse
    	stopChan           chan struct{}
    	downstream         adsStream
    	upstream           DiscoveryClient
    	downstreamDeltas   DeltaDiscoveryStream
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top