Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for watchedResourcesByOrder (0.19 sec)

  1. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) Clusters() []string {
    	return conn.proxy.Clusters()
    }
    
    // watchedResourcesByOrder returns the ordered list of
    // watched resources for the proxy, ordered in accordance with known push order.
    func (conn *Connection) watchedResourcesByOrder() []*model.WatchedResource {
    	allWatched := conn.proxy.CloneWatchedResources()
    	ordered := make([]*model.WatchedResource, 0, len(allWatched))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    		}
    		return nil
    	}
    
    	// Send pushes to all generators
    	// Each Generator is responsible for determining if the push event requires a push
    	wrl := con.watchedResourcesByOrder()
    	for _, w := range wrl {
    		if err := s.pushDeltaXds(con, w, pushRequest); err != nil {
    			return err
    		}
    	}
    
    	if pushRequest.Full {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top