Uses of Interface
com.kuka.resource.pool.FacadeFilter

Packages that use FacadeFilter
com.kuka.resource.pool Provides interfaces for using resource and facade pools. 
 

Uses of FacadeFilter in com.kuka.resource.pool
 

Subinterfaces of FacadeFilter in com.kuka.resource.pool
 interface ResourceFacadeFilter<T>
          Interface to combine the functions of ResourceFilter and FacadeFilter.
 

Methods in com.kuka.resource.pool that return FacadeFilter
static
<T> FacadeFilter<T>
FacadeFilters.any()
          Returns a filter accepting any facade.
static
<T> FacadeFilter<T>
FacadeFilters.none()
          Returns a filter accepting no facade.
 

Methods in com.kuka.resource.pool with parameters of type FacadeFilter
<T> Collection<T>
FacadePool.getAll(Class<T> facadeClass, FacadeFilter<? super T> filter)
          Returns facades for all resources that pass the specified filter and match the specified facade class.
 Collection<T> TypedFacadePool.getAll(FacadeFilter<? super T> filter)
          Returns facades for all resources that pass the specified filter and match the specified facade class.
<T> T
FacadePool.getAny(Class<T> facadeClass, FacadeFilter<? super T> filter)
          Returns a facade for the first resource that passes the specified filter and matches the specified facade class.
<T> T
FacadePool.getAny(Class<T> facadeClass, FacadeFilter<? super T> filter, long duration, TimeUnit unit)
          Returns the first facade that matches the filter within the given time.
 T TypedFacadePool.getAny(FacadeFilter<? super T> filter)
          Returns a facade for the first resource that passes the specified filter and matches the specified facade class.
 



Copyright © 2019. All rights reserved.