Package com.tangosol.net
Interface NameService.LookupCallback
- Enclosing interface:
NameService
public static interface NameService.LookupCallback
An object which implements
NameService.LookupCallback
can be registered
with a NameService
via NameService.addLookupCallback(com.tangosol.net.NameService.LookupCallback)
to
perform a lookup on names that were not found in the NameService's directory.- Since:
- 12.2.1
-
Method Summary
Modifier and TypeMethodDescriptionlookup
(String sName, Cluster cluster, NameService.RequestContext ctx) Retrieve the named object.
-
Method Details
-
lookup
Retrieve the named object.- Parameters:
sName
- the name of the object to look upcluster
- theCluster
to which this NameService belongsctx
- the lookup request context- Returns:
- the object bound to sName, or null if not found
- Throws:
NamingException
- if a naming exception is encountered
-