Uses of Interface
org.astrogrid.samp.client.CallableClient
-
Packages that use CallableClient Package Description org.astrogrid.samp.bridge Classes for the SAMP Bridge.org.astrogrid.samp.client Classes required only for SAMP clients.org.astrogrid.samp.gui Classes required only for graphical components based on SAMP classes.org.astrogrid.samp.hub Classes required only for running a SAMP hub.org.astrogrid.samp.test Classes for testing.org.astrogrid.samp.web Classes relating to the SAMP Web Profile.org.astrogrid.samp.xmlrpc Classes relating to Standard Profile and XML-RPC pluggable implementation layer. -
-
Uses of CallableClient in org.astrogrid.samp.bridge
Classes in org.astrogrid.samp.bridge that implement CallableClient Modifier and Type Class Description private class
ProxyManager.ProxyCallableClient
CallableClient implementation used by remote proxy connections on behalf of local clients. -
Uses of CallableClient in org.astrogrid.samp.client
Classes in org.astrogrid.samp.client that implement CallableClient Modifier and Type Class Description private class
HubConnector.ConnectorCallableClient
CallableClient implementation used by this class.Methods in org.astrogrid.samp.client with parameters of type CallableClient Modifier and Type Method Description void
HubConnection. setCallable(CallableClient callable)
Tells the hub how it can perform callbacks on the client by providing a CallableClient object. -
Uses of CallableClient in org.astrogrid.samp.gui
Classes in org.astrogrid.samp.gui that implement CallableClient Modifier and Type Class Description private class
MessageTrackerHubConnector.MessageTrackerCallableClient
CallableClient wrapper class which intercepts calls to keep track of sent and received messages.private class
MessageTrackerHubService.MessageTrackerCallableClient
Wrapper implementation for the CallableClient class which intercepts calls to update sent and received transmission list models.Fields in org.astrogrid.samp.gui declared as CallableClient Modifier and Type Field Description private CallableClient
MessageTrackerHubConnector.MessageTrackerCallableClient. base_
private CallableClient
MessageTrackerHubService.MessageTrackerCallableClient. base_
Methods in org.astrogrid.samp.gui with parameters of type CallableClient Modifier and Type Method Description void
MessageTrackerHubConnector.MessageTrackerHubConnection. setCallable(CallableClient callable)
void
MessageTrackerHubService.MessageTrackerHubClient. setCallable(CallableClient callable)
void
WrapperHubConnection. setCallable(CallableClient callable)
Constructors in org.astrogrid.samp.gui with parameters of type CallableClient Constructor Description MessageTrackerCallableClient(CallableClient base, MessageTrackerHubConnector.MessageTrackerHubConnection connection)
Constructor.MessageTrackerCallableClient(CallableClient base, MessageTrackerHubService.MessageTrackerHubClient client)
Constructor. -
Uses of CallableClient in org.astrogrid.samp.hub
Classes in org.astrogrid.samp.hub that implement CallableClient Modifier and Type Class Description (package private) class
HubCallableClient
CallableClient implementation used by the hub client.private class
HubClient.NoCallableClient
No-op callback handler implementation.Fields in org.astrogrid.samp.hub declared as CallableClient Modifier and Type Field Description private CallableClient
FacadeHubService.FacadeHubConnection. callable_
private CallableClient
HubClient. callable_
Methods in org.astrogrid.samp.hub that return CallableClient Modifier and Type Method Description CallableClient
HubClient. getCallable()
Returns the callable object which allows this client to receive callbacks.Methods in org.astrogrid.samp.hub with parameters of type CallableClient Modifier and Type Method Description protected void
BasicHubService. setCallable(HubClient caller, CallableClient callable)
Does the work for thesetCallable
method of connections registered with this service.void
FacadeHubService.FacadeHubConnection. setCallable(CallableClient callable)
void
HubClient. setCallable(CallableClient callable)
Sets the callable object which allows this client to receive callbacks.void
WrapperHubConnection. setCallable(CallableClient client)
-
Uses of CallableClient in org.astrogrid.samp.test
Classes in org.astrogrid.samp.test that implement CallableClient Modifier and Type Class Description class
Calculator
Test client.private static class
HubTester.ClientWatcher
CallableClient implementation which watches hub.event messages concerning the registration and attributes of other clients.private static class
HubTester.TestCallableClient
CallableClient implementation for testing.private static class
MessageSender.AsynchSender.Collector
CallableClient implementation which collects asynchronous message responses.(package private) class
ReplyCollector
Partial implementation ofCallableClient
which handles thereceiveReply
method. -
Uses of CallableClient in org.astrogrid.samp.web
Classes in org.astrogrid.samp.web that implement CallableClient Modifier and Type Class Description private class
UrlTrackerHubConnection.UrlTrackerCallableClient
CallableClient wrapper implementation which intercepts communications, scans the payloads for URLs, and informs an associated UrlTracker.(package private) class
WebCallableClient
CallableClient implementation used internally by the Web Profile hub.Fields in org.astrogrid.samp.web declared as CallableClient Modifier and Type Field Description private CallableClient
UrlTrackerHubConnection.UrlTrackerCallableClient. baseCallable_
private CallableClient
WebHubConnection.CallWorker. client_
Methods in org.astrogrid.samp.web with parameters of type CallableClient Modifier and Type Method Description (package private) abstract void
ClientCallbackOperation. dispatch(CallableClient client, java.util.List paramList)
Makes a call to a callable client of the method represented by this operation with a given list of parameters.static void
ClientCallbackOperation. invoke(Callback callback, CallableClient client)
Dispatches a callback to a CallableClient.void
UrlTrackerHubConnection. setCallable(CallableClient callable)
void
WebHubConnection. setCallable(CallableClient client)
Constructors in org.astrogrid.samp.web with parameters of type CallableClient Constructor Description CallWorker(XmlRpcHubConnection xconn, CallableClient client, java.lang.String appName)
Constructor.UrlTrackerCallableClient(CallableClient baseCallable)
Constructor. -
Uses of CallableClient in org.astrogrid.samp.xmlrpc
Classes in org.astrogrid.samp.xmlrpc that implement CallableClient Modifier and Type Class Description (package private) class
XmlRpcCallableClient
CallableClient implementation used to communicate with XML-RPC-based callable clients.Fields in org.astrogrid.samp.xmlrpc declared as CallableClient Modifier and Type Field Description (package private) CallableClient
ClientXmlRpcHandler.Entry. callable_
Methods in org.astrogrid.samp.xmlrpc with parameters of type CallableClient Modifier and Type Method Description void
CallableClientServer. addClient(HubConnection connection, CallableClient callable)
Adds a CallableClient object to this server.void
ClientXmlRpcHandler. addClient(HubConnection connection, CallableClient callable)
Adds a CallableClient object to this server.void
StandardHubConnection. setCallable(CallableClient callable)
Constructors in org.astrogrid.samp.xmlrpc with parameters of type CallableClient Constructor Description Entry(HubConnection connection, CallableClient callable)
Constructor.
-