Class ServiceDiscoveryManager
- Direct Known Subclasses:
BackwardsServiceDiscoveryManager,SharedDiscoveryManagement.SharedServiceDiscoveryManager
ServiceDiscoveryManager class is a helper utility class that any client-like
entity can use to "discover" services registered with any number of lookup services of interest.
On behalf of such entities, this class maintains - as much as possible - up-to-date state
information about both the lookup services the entity wishes to query, and the services the
entity wishes to acquire and use. By maintaining current service state information, the entity
can implement efficient mechanisms for service access and usage. There are three basic usage patterns for this class. In order of importance and typical usage, those patterns are:
- The entity requests that the
ServiceDiscoveryManagercreate a cache (an instance ofLookupCache) which will asynchronously "discover", and locally store, references to services that match criteria defined by the entity; services which are registered with one or more lookup services managed by theServiceDiscoveryManageron behalf of the entity. The cache can be viewed as a set of service references that the entity can access locally as needed through one of the public, non-remote methods provided in the cache's interface. Thus, rather than making costly remote queries of multiple lookup services at the point in time when the entity needs the service, the entity can simply make local queries on the cache for the services that the cache acquired and stored at a prior time. An entity should employ this pattern when the entity must make frequent queries for multiple services. By populating the cache with multiple instances of the desired services, redundancy in the availability of those services can be provided. Thus, if an instance of a service is found to be unavailable when needed, the entity can execute a local query on the cache rather than one or more remote queries on the lookup services to acquire an instance that is available. To employ this pattern, the entity invokes the methodcreateLookupCache. - The entity can
register with the event mechanism provided by the
ServiceDiscoveryManager. This event mechanism allows the entity to request that it be notified when a service of interest is discovered for the first time, or has encountered a state change such as removal from all lookup services, or attribute set changes. Although interacting with a local cache of services in the way described in the first pattern can be very useful to entities that need frequent access to multiple services, some client-like entities may wish to interact with the cache in a reactive manner. For example, an entity such as a service browser typically wishes to be notified of the arrival of new services of interest as well as any changes in the state of the current services in the cache. In these situations, polling for such changes is usually viewed as undesirable. If the cache were to also provide an event mechanism with notification semantics, the needs of entities that employ either pattern can be satisfied. To employ this pattern, the entity must create a cache and supply it with an instance of theServiceDiscoveryListenerinterface that will receive instances ofServiceDiscoveryEventwhen events of interest, related to the services in the cache, occur. - The entity, through the public API of the
ServiceDiscoveryManager, can directly query the lookup services managed by theServiceDiscoveryManagerfor services of interest; employing semantics similar to the semantics employed in a typical lookup service query made through theServiceRegistrarinterface. Such queries will result in a remote call being made at the same time the service is needed (unlike the first pattern, in which remote calls typically occur prior to the time the service is needed). This pattern may be useful to entities needing to find services on an infrequent basis, or when the cost of making a remote call is outweighed by the overhead of maintaining a local cache (for example, due to limited resources). Although an entity that needs to query lookup service(s) can certainly make such queries through theServiceRegistrarinterface, theServiceDiscoveryManagerprovides a broad API with semantics that are richer than the semantics of thelookupmethods provided by theServiceRegistrar. This API encapsulates functionality that many client-like entities may find more useful when managing both the set of desired lookup services, and the service queries made on those lookup services. To employ this pattern, the entity simply instantiates this class with the desired parameters, and then invokes the appropriate version of thelookupmethod when the entity wishes to acquire a service that matches desired criteria.
All
three mechanisms just described - local queries on the cache, service discovery notification, and
remote lookups - employ the same template-matching scheme as that employed in the ServiceRegistrar interface. Additionally, each mechanism
allows the entity to supply an object referred to as a filter; an instance of ServiceItemFilter. A filter is a non-remote object that
defines additional matching criteria that the ServiceDiscoveryManager applies when
searching for the entity's services of interest. Employing a filter is particularly useful to
entities that wish to extend the capabilities of the standard template-matching scheme.
In
addition to (or instead of) employing a filter to apply additional matching criteria to candidate
service proxies initially found through template matching, filters can also be used to extend the
selection process so that only proxies that are safe to use are returned to the entity. To
do this, the entity would use the ServiceItemFilter
interface to supply the ServiceDiscoveryManager or LookupCache with a filter that, when applied to a candidate proxy,
performs a set of operations that is referred to as proxy preparation. As described in the
documentation for ProxyPreparer, proxy preparation typically includes
operations such as, verifying trust in the proxy, specifying client constraints, and dynamically
granting necessary permissions to the proxy.
Note that this utility class is not remote. Clients and services that wish to use this class will create an instance of this class in their own address space to manage the state of discovered services and their associated lookup services locally.
- Author:
- Sun Microsystems, Inc.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionServiceDiscoveryManager(DiscoveryManagement discoveryMgr, LeaseRenewalManager leaseMgr) Constructs an instance ofServiceDiscoveryManagerwhich will, on behalf of the entity that constructs this class, discover and manage a set of lookup services, as well as discover and manage sets of services registered with those lookup services.ServiceDiscoveryManager(DiscoveryManagement discoveryMgr, LeaseRenewalManager leaseMgr, Configuration config) Constructs an instance of this class, which is configured using the items retrieved through the givenConfiguration, that will, on behalf of the entity that constructs this class, discover and manage a set of lookup services, as well as discover and manage sets of services registered with those lookup services. -
Method Summary
Modifier and TypeMethodDescriptioncreateLookupCache(ServiceTemplate tmpl, ServiceItemFilter filter, ServiceDiscoveryListener listener) ThecreateLookupCachemethod allows the client-like entity to request that theServiceDiscoveryManagercreate a new managed set (or cache) and populate it with services, which match criteria defined by the entity, and whose references are registered with one or more of the lookup services the entity has targeted for discovery.protected longprotected longThegetDiscoveryManagermethod will return an object that implements theDiscoveryManagementinterface.lookup(ServiceTemplate tmpl, int minMatches, int maxMatches, ServiceItemFilter filter, long waitDur) Queries each available lookup service in the managed set for service(s) that match the input criteria.lookup(ServiceTemplate tmpl, int maxMatches, ServiceItemFilter filter) Queries each available lookup service in the managed set for service(s) that match the input criteria.lookup(ServiceTemplate tmpl, ServiceItemFilter filter) Queries each available lookup service in the set of lookup services managed by theServiceDiscoveryManager(the managed set) for a service reference that matches criteria defined by the entity that invokes this method.lookup(ServiceTemplate tmpl, ServiceItemFilter filter, long waitDur) Queries each available lookup service in the managed set for a service that matches the input criteria.serviceDetails(ServiceID serviceID) voidTheterminatemethod performs cleanup duties related to the termination of the event mechanism for lookup service discovery, the event mechanism for service discovery, and the cache management duties of theServiceDiscoveryManager.
-
Constructor Details
-
ServiceDiscoveryManager
public ServiceDiscoveryManager(DiscoveryManagement discoveryMgr, LeaseRenewalManager leaseMgr) throws IOException Constructs an instance ofServiceDiscoveryManagerwhich will, on behalf of the entity that constructs this class, discover and manage a set of lookup services, as well as discover and manage sets of services registered with those lookup services. The entity indicates which lookup services to discover and manage through the parameters input to this constructor.As stated in the class description, this class has three usage patterns:
- the entity uses a
LookupCacheto locally store and manage discovered services so that those services can be accessed quickly - the entity
registers with the event mechanism provided by a
LookupCacheto be notified when services of interest are discovered - the entity uses the
ServiceDiscoveryManagerto perform remote queries of the lookup services, employing richer semantics than that provided through the standardServiceRegistrarinterface
Although the first two usage patterns emphasize the use of a cache object, that cache is acquired only through an instance of the
ServiceDiscoveryManagerclass.It is important to note that some of the methods of this class (
createLookupCacheand the blocking versions oflookupto be exact) can throw aRemoteExceptionwhen invoked. This is because each of these methods may attempt to register with the event mechanism of at least one lookup service, a process that requires a remote object (a listener) to be exported to the lookup service(s). Both the process of registering with a lookup service's event mechanism and the process of exporting a remote object are processes that can result in aRemoteException.In order to facilitate the exportation of the remote listener just described, the
ServiceDiscoveryManagerclass instantiates an inner class that implements theRemoteEventListenerinterface. Although this class defines, instantiates, and exports this remote listener, it is the entity's responsibility to provide a mechanism for any lookup service to acquire the proxy to the exported listener. One way to do this is to configure this utility to export the listener using the Jini(TM) Extensible Remote Invocation (Jini ERI) communication framework. When the listener is exported to use Jini ERI, and no proxy customizations (such as a custom invocation handler or transport endpoint) are used, no other action is necessary to make the proxy to the listener available to the lookup service(s) with which that listener is registered.The default exporter for this utility will export the remote event listener under Jini ERI, specifying that the port and object ID with which the listener is to be exported should be chosen by the Jini ERI framework, not the deployer.
If it is required that the remote event listener be exported under JRMP instead of Jini ERI, then the entity that employs this utility must specify this in its configuration. For example, the entity's configuration would need to contain something like the following:
import net.jini.jrmp.JrmpExporter; application.configuration.component.name { ....... ....... // configuration items specific to the application ....... ....... }//end application.configuration.component.name net.jini.lookup.ServiceDiscoveryManager { serverExporter = new JrmpExporter(); }//end net.jini.lookup.ServiceDiscoveryManagerIt is important to note that when the remote event listener is exported under JRMP, unlike Jini ERI, the JRMP remote communication framework does not provide a mechanism that automatically makes the listener proxy available to the lookup service(s) with which the listener is registered; the deployer of the entity, or the entity itself, must provide such a mechanism.
When exported under JRMP, one of the more common mechanisms for making the listener proxy available to the lookup service(s) with which the listener is registered consists of the following:
- store the necessary class files in a JAR file
- make the class files in the JAR file preferred (see
net.jini.loader.preffor details) - run an HTTP server to serve up the JAR file to any requesting lookup service
- advertise the location of that JAR file by setting the
java.rmi.server.codebaseproperty of the entity to "point" at the JAR file
For example, suppose an application consists of an entity that intends to use the
ServiceDiscoveryManagerwill run on a host named myHost. And suppose that the down-loadable JAR file named sdm-dl.jar that is provided in the distribution is located in the directory /files/jini/lib, and will be served by an HTTP server listening on port 8082. If the application is run with its codebase property set to-Djava.rmi.server.codebase="http://myHost:8082/sdm-dl.jar", the lookup service(s) should then be able to access the remote listener exported under JRMP by theServiceDiscoveryManageron behalf of the entity.If a mechanism for lookup services to access the remote listener exported by the
ServiceDiscoveryManageris not provided (either by the remote communication framework itself, or by some other means), the remote methods of theServiceDiscoveryManager- the methods involved in the two most important usage patterns of that utility - will be of no use.This constructor takes two arguments: an object that implements the
DiscoveryManagementinterface and a reference to aLeaseRenewalManagerobject. The constructor throws anIOExceptionbecause construction of aServiceDiscoveryManagermay initiate the multicast discovery process, a process that can throw anIOException.- Parameters:
discoveryMgr- theDiscoveryManagementimplementation through which notifications that indicate a lookup service has been discovered or discarded will be received. If the value of the argument isnull, then an instance of theLookupDiscoveryManagerutility class will be constructed to listen for events announcing the discovery of only those lookup services that are members of the public group.leaseMgr- theLeaseRenewalManagerto use. A value ofnullmay be passed as theLeaseRenewalManagerargument. If the value of the argument isnull, an instance of theLeaseRenewalManagerclass will be created, initially managing noLeaseobjects.- Throws:
IOException- because construction of aServiceDiscoveryManagermay initiate the multicast discovery process which can throw anIOException.- See Also:
- the entity uses a
-
ServiceDiscoveryManager
public ServiceDiscoveryManager(DiscoveryManagement discoveryMgr, LeaseRenewalManager leaseMgr, Configuration config) throws IOException, ConfigurationException Constructs an instance of this class, which is configured using the items retrieved through the givenConfiguration, that will, on behalf of the entity that constructs this class, discover and manage a set of lookup services, as well as discover and manage sets of services registered with those lookup services. Through the parameters input to this constructor, the client of this utility indicates which lookup services to discover and manage, and how it wants the utility additionally configured.For a more details, refer to the description of the alternate constructor of this class.
This constructor takes three arguments: an object that implements the
DiscoveryManagementinterface, a reference to an instance of theLeaseRenewalManagerclass, and aConfigurationobject. The constructor throws anIOExceptionbecause construction of aServiceDiscoveryManagermay initiate the multicast discovery process, a process that can throw anIOException. The constructor also throws aConfigurationExceptionwhen an exception occurs while retrieving an item from the givenConfiguration- Parameters:
discoveryMgr- theDiscoveryManagementimplementation through which notifications that indicate a lookup service has been discovered or discarded will be received. If the value of the argument isnull, then an instance of theLookupDiscoveryManagerutility class will be constructed to listen for events announcing the discovery of only those lookup services that are members of the public group.leaseMgr- theLeaseRenewalManagerto use. A value ofnullmay be passed as theLeaseRenewalManagerargument. If the value of the argument isnull, an instance of theLeaseRenewalManagerclass will be created, initially managing noLeaseobjects.- Throws:
IOException- because construction of aServiceDiscoveryManagermay initiate the multicast discovery process which can throw anIOException.ConfigurationException- indicates an exception occurred while retrieving an item from the givenConfigurationNullPointerException- ifnullis input for the configuration- See Also:
-
-
Method Details
-
getDefaultNotificationsLeaseRenewalRate
protected long getDefaultNotificationsLeaseRenewalRate() -
getDefaultRemoveServiceIfOrphanDelay
protected long getDefaultRemoveServiceIfOrphanDelay() -
serviceDetails
-
lookup
Queries each available lookup service in the set of lookup services managed by theServiceDiscoveryManager(the managed set) for a service reference that matches criteria defined by the entity that invokes this method. The semantics of this method are similar to the semantics of thelookupmethod provided by theServiceRegistrarinterface; employing the same template-matching scheme. Additionally, this method allows any entity to supply an object referred to as a filter. Such an object is a non-remote object that defines additional matching criteria that theServiceDiscoveryManagerapplies when searching for the entity's services of interest. This filtering facility is particularly useful to entities that wish to extend the capabilities of standard template-matching.Entities typically employ this method when they need infrequent access to services, and when the cost of making remote queries is outweighed by the overhead of maintaining a local cache (for example, because of resource limitations).
This version of
lookupreturns a single instance ofServiceItemcorresponding to one of possibly many service references that satisfy the matching criteria. If multiple services matching the input criteria happen to exist, it is arbitrary as to which reference is actually returned. It is for this reason that entities that invoke this method typically care only that a service is returned, not which service.Note that, unlike other versions of
lookupprovided by theServiceDiscoveryManager, this version does not block. That is, this version will return immediately upon failure (or success) to find a service matching the input criteria. It is important to understand this characteristic because there is a common usage scenario that can cause confusion when this version oflookupis used but fails to discover the expected service of interest. Suppose an entity creates a service discovery manager and then immediately calls this version oflookup, which simply queries the currently discovered lookup services for the service of interest. If the discovery manager employed by the service discovery manager has not yet disovered any lookup services (thus, there are no lookup services to query) the method will immediately return a value ofnull. This can be confusing when one verifies that such a service of interest has indeed been started and registered with the existing lookup service(s). To address this issue, one of the blocking versions oflookupcould be used instead of this version, or the entity could simply wait until the discovery manager has been given enough time to complete its own (lookup) discovery processing.- Parameters:
tmpl- an instance ofServiceTemplatecorresponding to the object to use for template-matching when searching for desired services. Ifnullis input to this parameter, this method will use a wildcarded template (will match all services) when performing template-matching. Note that the effects of modifying contents of this parameter before this method returns are unpredictable and undefined.filter- an instance ofServiceItemFiltercontaining matching criteria that should be applied in addition to the template-matching employed when searching for desired services. Ifnullis input to this parameter, then only template-matching will be employed to find the desired services.- Returns:
- a single instance of
ServiceItemcorresponding to a reference to a service that matches the criteria represented in the input parameters; ornullif no matching service can be found. Note that if multiple services matching the input criteria exist, it is arbitrary as to which reference is returned. - See Also:
-
lookup
public ServiceItem lookup(ServiceTemplate tmpl, ServiceItemFilter filter, long waitDur) throws InterruptedException, RemoteException Queries each available lookup service in the managed set for a service that matches the input criteria. The semantics of this method are similar to the semantics of thelookupmethod provided by theServiceRegistrarinterface; employing the same template-matching scheme. Additionally, this method allows any entity to supply an object referred to as a filter. Such an object is a non-remote object that defines additional matching criteria that theServiceDiscoveryManagerapplies when searching for the entity's services of interest. This filtering facility is particularly useful to entities that wish to extend the capabilities of standard template-matching.This version of
lookupreturns a single instance ofServiceItemcorresponding to one of possibly many service references that satisfy the matching criteria. If multiple services matching the input criteria happen to exist, it is arbitrary as to which reference is actually returned. It is for this reason that entities that invoke this method typically care only that a service is returned, not which service.Note that this version of
lookupprovides a blocking feature that is controlled through thewaitDurparameter. That is, this version will not return until either a service that matches the input criteria has been found, or the amount of time contained in thewaitDurparameter has passed. If, while waiting for the service of interest to be found, the entity decides that it no longer wishes to wait the entire period for this method to return, the entity may interrupt this method by invoking the interrupt method from theThreadclass. The intent of this mechanism is to allow the entity to interrupt this method in the same way it would a sleeping thread.Entities typically employ this method when they need infrequent access to services, are willing (or forced) to wait for those services to be found, and consider the cost of making remote queries for those services is outweighed by the overhead of maintaining a local cache (for example, because of resource limitations).
- Parameters:
tmpl- an instance ofServiceTemplatecorresponding to the object to use for template-matching when searching for desired services. Ifnullis input to this parameter, this method will use a wildcarded template (will match all services) when performing template-matching. Note that the effects of modifying contents of this parameter before this method returns are unpredictable and undefined.filter- an instance ofServiceItemFiltercontaining matching criteria that should be applied in addition to the template-matching employed when searching for desired services. Ifnullis input to this parameter, then only template-matching will be employed to find the desired services.waitDur- the amount of time (in milliseconds) to wait before ending the "search" and returningnull. If a non-positive value is input to this parameter, then this method will not wait; it will simply query the available lookup services and return a matching service reference ornull.- Returns:
- a single instance of
ServiceItemcorresponding to a reference to a service that matches the criteria represented in the input parameters; ornullif no matching service can be found. Note that if multiple services matching the input criteria exist, it is arbitrary as to which reference is returned. - Throws:
InterruptedException- this exception occurs when the entity interrupts this method by invoking the interrupt method from theThreadclass.RemoteException- typically, this exception occurs when a RemoteException occurs either as a result of an attempt to export a remote listener, or an attempt to register with the event mechanism of a lookup service.- See Also:
-
createLookupCache
public LookupCache createLookupCache(ServiceTemplate tmpl, ServiceItemFilter filter, ServiceDiscoveryListener listener) throws RemoteException ThecreateLookupCachemethod allows the client-like entity to request that theServiceDiscoveryManagercreate a new managed set (or cache) and populate it with services, which match criteria defined by the entity, and whose references are registered with one or more of the lookup services the entity has targeted for discovery.This method returns an object of type
LookupCache. Through this return value, the entity can query the cache for services of interest, manage the cache's event mechanism for service discoveries, or terminate the cache.An entity typically uses the object returned by this method to provide local storage of, and access to, references to services that it is interested in using. Entities needing frequent access to numerous services will find the object returned by this method quite useful because acquisition of those service references is provided through local method invocations. Additionally, because the object returned by this method provides an event mechanism, it is also useful to entities wishing to simply monitor, in an event-driven manner, the state changes that occur in the services of interest.
Although not required, a common usage pattern for entities that wish to use the
LookupCacheclass to store and manage "discovered" services is to create a separate cache for each service type of interest.- Parameters:
tmpl- template to match. It uses template-matching semantics to identify the service(s) to acquire from lookup services in the managed set. If this value isnull, it is the equivalent of passing aServiceTemplateconstructed with allnullarguments (all wildcards).filter- used to apply additional matching criteria to anyServiceItemfound through template-matching. If this value isnull, no additional filtering will be applied beyond the template-matching.listener- object that will receive notifications when services matching the input criteria are discovered for the first time, or have encountered a state change such as removal from all lookup services or attribute set changes. If this value isnull, the cache resulting from that invocation will send no such notifications.- Returns:
- LookupCache used to query the cache for services of interest, manage the cache's event mechanism for service discoveries, or terminate the cache.
- Throws:
RemoteException- typically, this exception occurs when a RemoteException occurs as a result of an attempt to export the remote listener that receives service events from the lookup services in the managed set.- See Also:
-
getDiscoveryManager
ThegetDiscoveryManagermethod will return an object that implements theDiscoveryManagementinterface. The object returned by this method provides theServiceDiscoveryManagerwith the ability to set discovery listeners and to discard previously discovered lookup services when they are found to be unavailable.- Returns:
- DiscoveryManagement implementation
- See Also:
-
terminate
public void terminate()Theterminatemethod performs cleanup duties related to the termination of the event mechanism for lookup service discovery, the event mechanism for service discovery, and the cache management duties of theServiceDiscoveryManager.For each instance of
LookupCachecreated and managed by theServiceDiscoveryManager, theterminatemethod will do the following:- Either remove all listener objects registered for receipt of
DiscoveryEventobjects or, if the discovery manager employed by theServiceDiscoveryManagerwas created by theServiceDiscoveryManageritself, terminate all discovery processing being performed by that manager object on behalf of the entity. - Cancel all event leases granted by each lookup service in the managed
set of lookup services.
- Un-export all remote listener objects registered with each
lookup service in the managed set.
- Terminate all threads involved in the process of retrieving and storing references to discovered services of interest.
IllegalStateException.- See Also:
- Either remove all listener objects registered for receipt of
-
lookup
Queries each available lookup service in the managed set for service(s) that match the input criteria. The semantics of this method are similar to the semantics of thelookupmethod provided by theServiceRegistrarinterface; employing the same template-matching scheme. Additionally, this method allows any entity to supply an object referred to as a filter. Such an object is a non-remote object that defines additional matching criteria that theServiceDiscoveryManagerapplies when searching for the entity's services of interest. This filtering facility is particularly useful to entities that wish to extend the capabilities of standard template-matching.Entities typically employ this method when they need infrequent access to multiple instances of services, and when the cost of making remote queries is outweighed by the overhead of maintaining a local cache (for example, because of resource limitations).
This version of
lookupreturns an array of instances ofServiceItemin which each element corresponds to a service reference that satisfies the matching criteria. The number of elements in the returned set will be no greater than the value of themaxMatchesparameter, but may be less.Note that this version of
lookupdoes not provide a blocking feature. That is, this version will return immediately with whatever number of service references it can find, up to the number indicated in themaxMatchesparameter. If no services matching the input criteria can be found on the first attempt, an empty array is returned. It is important to understand this characteristic because there is a common usage scenario that can cause confusion when this version oflookupis used but fails to discover any instances of the expected service of interest. Suppose an entity creates a service discovery manager and then immediately calls this version oflookup, which simply queries the currently discovered lookup services for the service of interest. If the discovery manager employed by the service discovery manager has not yet disovered any lookup services (thus, there are no lookup services to query) the method will immediately return an empty array. This can be confusing when one verifies that instance(s) of such a service of interest have indeed been started and registered with the existing lookup service(s). To address this issue, one of the blocking versions oflookupcould be used instead of this version, or the entity could simply wait until the discovery manager has been given enough time to complete its own (lookup) discovery processing.- Parameters:
tmpl- an instance ofServiceTemplatecorresponding to the object to use for template-matching when searching for desired services. Ifnullis input to this parameter, this method will use a wildcarded template (will match all services) when performing template-matching. Note that the effects of modifying contents of this parameter before this method returns are unpredictable and undefined.maxMatches- this method will return no more than this number of service referencesfilter- an instance ofServiceItemFiltercontaining matching criteria that should be applied in addition to the template-matching employed when searching for desired services. Ifnullis input to this parameter, then only template-matching will be employed to find the desired services.- Returns:
- an array of instances of
ServiceItemwhere each element corresponds to a reference to a service that matches the criteria represented in the input parameters; or an empty array if no matching service can be found. - See Also:
-
lookup
public ServiceItem[] lookup(ServiceTemplate tmpl, int minMatches, int maxMatches, ServiceItemFilter filter, long waitDur) throws InterruptedException, RemoteException Queries each available lookup service in the managed set for service(s) that match the input criteria. The semantics of this method are similar to the semantics of thelookupmethod provided by theServiceRegistrarinterface; employing the same template-matching scheme. Additionally, this method allows any entity to supply an object referred to as a filter. Such an object is a non-remote object that defines additional matching criteria that theServiceDiscoveryManagerapplies when searching for the entity's services of interest. This filtering facility is particularly useful to entities that wish to extend the capabilities of standard template-matching.This version of
lookupreturns an array of instances ofServiceItemin which each element corresponds to a service reference that satisfies the matching criteria. The number of elements in the returned set will be no greater than the value of themaxMatchesparameter, but may be less.Note that this version of
lookupprovides a blocking feature that is controlled through thewaitDurparameter in conjunction with theminMatchesand themaxMatchesparameters. This method will not return until one of the following occurs:- the number of matching services found
on the first attempt is greater than or equal to the value of the
minMatchesparameter, in which case this method returns each of the services found up to the value of themaxMatchesparameter - the number of matching services found after
the first attempt (that is, after the method enters the "wait state") is at least as great as
the value of the
minMatchesparameter in which case this method returns each of the services found up to the value of themaxMatchesparameter - the amount
of time that has passed since this method entered the wait state exceeds the value of the
waitDurparameter, in which case this method returns all of the currently discovered services
The purpose of the
minMatchesparameter is to allow the entity to balance its need for multiple matching service references with its need to minimize the time spent in the wait state; time that most would consider wasted if an acceptable number of matching service references were found, but this method continued to wait until the end of the designated time period.If, while waiting for the minimum number of desired services to be discovered, the entity decides that it no longer wishes to wait the entire period for this method to return, the entity may interrupt this method by invoking the interrupt method from the
Threadclass. The intent of this mechanism is to allow the entity to interrupt this method in the same way it would a sleeping thread.Entities typically employ this method when they need infrequent access to multiple instances of services, are willing (or forced) to wait for those services to be found, and consider the cost of making remote queries for those services is outweighed by the overhead of maintaining a local cache (for example, because of resource limitations).
- Parameters:
tmpl- an instance ofServiceTemplatecorresponding to the object to use for template-matching when searching for desired services. Ifnullis input to this parameter, this method will use a wildcarded template (will match all services) when performing template-matching. Note that the effects of modifying contents of this parameter before this method returns are unpredictable and undefined.minMatches- this method will immediately exit the wait state and return once this number of service references is foundmaxMatches- this method will return no more than this number of service referencesfilter- an instance ofServiceItemFiltercontaining matching criteria that should be applied in addition to the template-matching employed when searching for desired services. Ifnullis input to this parameter, then only template-matching will be employed to find the desired services.waitDur- the amount of time (in milliseconds) to wait before ending the "search" and returning an empty array. If a non-positive value is input to this parameter, then this method will not wait; it will simply query the available lookup services and return whatever matching service reference(s) it could find, up tomaxMatches.- Returns:
- an array of instances of
ServiceItemwhere each element corresponds to a reference to a service that matches the criteria represented in the input parameters; or an empty array if no matching service can be found within the time allowed. - Throws:
InterruptedException- this exception occurs when the entity interrupts this method by invoking the interrupt method from theThreadclass.IllegalArgumentException- this exception occurs when one of the following conditions is satisfied:- the
minMatchesparameter is non-positive - the
maxMatchesparameter is non-positive - the value of
maxMatchesis less than the value ofminMatches
- the
RemoteException- typically, this exception occurs when a RemoteException occurs either as a result of an attempt to export a remote listener, or an attempt to register with the event mechanism of a lookup service.- See Also:
- the number of matching services found
on the first attempt is greater than or equal to the value of the
-