Ice
AMDCallback is the interface from which all AMD callbacks are derived.
Indicates to the Ice run time that an operation completed
with a run-time exception.
The encoded Ice run-time exception. Note that, if ex
is a user exception, the caller receives UnknownUserException.
Use ice_response to raise user exceptions.
The signal policy for Ice.Application signal handling.
If a signal is received, Ice.Application reacts to the signal
by calling Communicator.destroy or Communicator.shutdown,
or by calling a custom shutdown hook installed by the application.
Any signal that is received is not intercepted and takes the default action.
Utility base class that makes it easy to correctly initialize and finalize
the Ice run time, as well as handle signals. Unless the application specifies
a logger, Application installs a per-process logger that logs to the standard
error output.
Applications must create a derived class that implements the run method.
A program can contain only one instance of this class.
Called once the communicator has been initialized. The derived class must
implement run, which is the application's starting method.
The argument vector for the application. Application
scans the argument vector passed to main for options that are
specific to the Ice run time and removes them; therefore, the vector passed
to run is free from Ice-related options and contains only options
and arguments that are application-specific.
The run method should return zero for successful termination, and
non-zero otherwise. Application.main returns the value returned by run.
Override this method to provide a custom application interrupt
hook. You must call callbackOnInterrupt for this method
to be called. Note that the interruptCallback can be called
concurrently with any other thread (including main) in your
application--take appropriate concurrency precautions.
The cause of the interrupt.
Initializes an instance that calls Communicator.shutdown if a signal is received.
Initializes an instance that handles signals according to the signal policy.
Determines how to respond to signals.
The application must call main after it has
instantiated the derived class. main creates
a communicator, establishes the specified signal policy, and,
once run returns, destroys the communicator.
The method prints an error message for any exception that propagates
out of run and ensures that the communicator is
destroyed correctly even if run completes abnormally.
The arguments for the application (as passed to Main(string[])
by the operating system.
The value returned by run. If run terminates with an exception,
the return value is non-zero.
The application must call main after it has
instantiated the derived class. main creates
a communicator, establishes the specified signal policy, and,
once run returns, destroys the communicator.
The method prints an error message for any exception that propagates
out of run and ensures that the communicator is
destroyed correctly even if run completes abnormally.
The arguments for the application (as passed to Main(string[])
by the operating system.
The configuration file with which to initialize
Ice properties.
The value returned by run. If run terminates with an exception,
the return value is non-zero.
The application must call main after it has
instantiated the derived class. main creates
a communicator, establishes the specified signal policy, and,
once run returns, destroys the communicator.
The method prints an error message for any exception that propagates
out of run and ensures that the communicator is
destroyed correctly even if run completes abnormally.
The arguments for the application (as passed to Main(string[])
by the operating system.
Additional data used to initialize the communicator.
The value returned by run. If run terminates with an exception,
the return value is non-zero.
Returns the application name (which is also the value of Ice.ProgramName.
This method is useful mainly for error messages that
include the application name. Because appName is a static method, it is available from anywhere
in the program.
The name of the application.
Returns the communicator for the application. Because communicator is a static method,
it permits access to the communicator from anywhere in the program. Note that, as a consequence,
you cannot have more than one instance of Application in a program.
The communicator for the application.
Instructs Application to call Communicator.destroy on receipt of a signal.
This is default signal handling policy established by the default constructor.
Instructs Application to call Communicator.shutdown on receipt of a signal.
Instructs Application to ignore signals.
Instructs Application to call interruptCallback on receipt of a signal.
The derived class can intercept signals by overriding interruptCallback.
Instructs Application to call to hold signals.
Instructs Application respond to signals. If a signal arrived since the last call
to holdInterrupt, it is delivered once you call releaseInterrupt.
Determines whether the application shut down intentionally or was forced to shut down due to a signal.
This is useful for logging purposes.
True if a signal caused the communicator to shut down; false otherwise.
Callback that requires the application to down-cast the proxy.
Callback for the successful completion of an operation
that returns no data.
Callback for the successful completion of an operation
that returns no data.
Called when an invocation raises an exception.
Confirms the queuing of the batch request.
Get the marshalled size of the request.
The request size.
Get the name of the operation
The request operation.
The proxy used to invoke the batch request.
The request proxy.
Base interface for listening to batch request queues.
Called by the Ice runtime when a batch request is about to be
added to the batch request queue of a proxy or connection.
The implementation of this method must call enqueue() on the
request to confirm its addition to the queue, if not called
the request isn't added to the queue. The implementation can
raise an Ice local exception to notify the caller of a failure.
The batch request.
The number of batch request queued.
The size of the queued batch requests.
Destroy the communicator.
This operation calls shutdown
implicitly. Calling destroy cleans up memory, and shuts down
this communicator's client functionality and destroys all object
adapters. Subsequent calls to destroy are ignored.
Shuts down this communicator's server functionality, which
includes the deactivation of all object adapters.
(Attempts to use
a deactivated object adapter raise ObjectAdapterDeactivatedException.)
Subsequent calls to shutdown are ignored.
After shutdown returns, no new requests are
processed. However, requests that have been started before
shutdown was called might still be active. You can use
waitForShutdown to wait for the completion of all
requests.
Wait until the application has called shutdown (or destroy).
On the server side, this operation blocks the calling thread
until all currently-executing operations have completed.
On the client side, the operation simply block until another
thread has called shutdown or destroy.
A typical use of this operation is to call it
from the main thread, which then waits until some other thread
calls shutdown. After shut-down is complete, the main thread
returns and can do some cleanup work before it finally calls
destroy to shut down the client functionality, and then
exits the application.
Check whether communicator has been shut down.
True if the communicator has been shut down; false otherwise.
Convert a stringified proxy into a proxy.
For example,
MyCategory/MyObject:tcp -h some_host -p
10000 creates a proxy that refers to the Ice object
having an identity with a name "MyObject" and a category
"MyCategory", with the server running on host "some_host", port
10000. If the stringified proxy does not parse correctly, the
operation throws one of ProxyParseException,
EndpointParseException, or IdentityParseException.
An appendix in the Ice manual provides a detailed description
of the syntax supported by stringified proxies.
The stringified proxy to convert into a proxy.
The proxy, or nil if str is an empty string.
Convert a proxy into a string.
The proxy to convert into a stringified proxy.
The stringified proxy, or an empty string if
obj is nil.
Convert a set of proxy properties into a proxy.
The "base"
name supplied in the property argument refers to a
property containing a stringified proxy, such as
MyProxy=id:tcp -h localhost -p 10000. Additional
properties configure local settings for the proxy, such as
MyProxy.PreferSecure=1. The "Properties"
appendix in the Ice manual describes each of the supported
proxy properties.
The base property name.
The proxy.
Convert a proxy to a set of proxy properties.
The proxy.
The base property name.
The property set.
Convert a string into an identity.
If the string does not parse
correctly, the operation throws IdentityParseException.
The string to convert into an identity.
The identity.
Convert an identity into a string.
The identity to convert into a string.
The "stringified" identity.
Create a new object adapter.
The endpoints for the object
adapter are taken from the property name.Endpoints.
It is legal to create an object adapter with the empty string as
its name. Such an object adapter is accessible via bidirectional
connections or by collocated invocations that originate from the
same communicator as is used by the adapter.
Attempts to create a named object adapter for which no configuration
can be found raise InitializationException.
The object adapter name.
The new object adapter.
Create a new object adapter with endpoints.
This operation sets
the property name.Endpoints,
and then calls createObjectAdapter. It is provided as a
convenience function.
Calling this operation with an empty name will result in a
UUID being generated for the name.
The object adapter name.
The endpoints for the object adapter.
The new object adapter.
Create a new object adapter with a router.
This operation
creates a routed object adapter.
Calling this operation with an empty name will result in a
UUID being generated for the name.
The object adapter name.
The router.
The new object adapter.
Add an object factory to this communicator.
Installing a
factory with an id for which a factory is already registered
throws AlreadyRegisteredException.
When unmarshaling an Ice object, the Ice run time reads the
most-derived type id off the wire and attempts to create an
instance of the type using a factory. If no instance is created,
either because no factory was found, or because all factories
returned nil, the behavior of the Ice run time depends on the
format with which the object was marshaled:
If the object uses the "sliced" format, Ice ascends the class
hierarchy until it finds a type that is recognized by a factory,
or it reaches the least-derived type. If no factory is found that
can create an instance, the run time throws
NoObjectFactoryException.
If the object uses the "compact" format, Ice immediately raises
NoObjectFactoryException.
The following order is used to locate a factory for a type:
The Ice run-time looks for a factory registered
specifically for the type.
If no instance has been created, the Ice run-time looks
for the default factory, which is registered with an empty type id.
If no instance has been created by any of the preceding
steps, the Ice run-time looks for a factory that may have been
statically generated by the language mapping for non-abstract classes.
The factory to add.
The type id for which the factory can create instances, or
an empty string for the default factory.
Find an object factory registered with this communicator.
The type id for which the factory can create instances,
or an empty string for the default factory.
The object factory, or null if no object factory was
found for the given id.
Get the implicit context associated with this communicator.
The implicit context associated with this communicator;
returns null when the property Ice.ImplicitContext is not set
or is set to None.
Get the properties for this communicator.
This communicator's properties.
Get the logger for this communicator.
This communicator's logger.
Get the observer resolver object for this communicator.
This communicator's observer resolver object.
Get the default router this communicator.
The default router for this communicator.
Set a default router for this communicator.
All newly
created proxies will use this default router. To disable the
default router, null can be used. Note that this
operation has no effect on existing proxies.
You can also set a router for an individual proxy
by calling the operation ice_router on the proxy.
The default router to use for this communicator.
Get the default locator this communicator.
The default locator for this communicator.
Set a default Ice locator for this communicator.
All newly
created proxy and object adapters will use this default
locator. To disable the default locator, null can be used.
Note that this operation has no effect on existing proxies or
object adapters.
You can also set a locator for an individual proxy
by calling the operation ice_locator on the proxy, or for an
object adapter by calling the operation ObjectAdapter.setLocator
on the object adapter.
The default locator to use for this communicator.
Get the plug-in manager for this communicator.
This communicator's plug-in manager.
Flush any pending batch requests for this communicator.
This means all batch requests invoked on fixed proxies
for all connections associated with the communicator.
Any errors that occur while flushing a connection are ignored.
Add the Admin object with all its facets to the provided object adapter.
If Ice.Admin.ServerId is set and the provided object adapter has a Locator,
createAdmin registers the Admin's Process facet with the Locator's LocatorRegistry.
createAdmin call only be called once; subsequent calls raise InitializationException.
The object adapter used to host the Admin object; if null and
Ice.Admin.Endpoints is set, create, activate and use the Ice.Admin object adapter.
The identity of the Admin object.
A proxy to the main ("") facet of the Admin object. Never returns a null proxy.
Get a proxy to the main facet of the Admin object.
getAdmin also creates the Admin object and creates and activates the Ice.Admin object
adapter to host this Admin object if Ice.Admin.Enpoints is set. The identity of the Admin
object created by getAdmin is /admin, or /admin
when Ice.Admin.InstanceName is not set.
If Ice.Admin.DelayCreation is 0 or not set, getAdmin is called by the communicator
initialization, after initialization of all plugins.
A proxy to the main ("") facet of the Admin object, or a null proxy if no
Admin object is configured.
Add a new facet to the Admin object.
Adding a servant with a facet that is already registered
throws AlreadyRegisteredException.
The servant that implements the new Admin facet.
The name of the new Admin facet.
Remove the following facet to the Admin object.
Removing a facet that was not previously registered throws
NotRegisteredException.
The name of the Admin facet.
The servant associated with this Admin facet.
Returns a facet of the Admin object.
The name of the Admin facet.
The servant associated with this Admin facet, or
null if no facet is registered with the given name.
Returns a map of all facets of the Admin object.
A collection containing all the facet names and
servants of the Admin object.
Close a connection, either gracefully or forcefully.
If a
connection is closed forcefully, it closes immediately, without
sending the relevant close connection protocol messages to the
peer and waiting for the peer to acknowledge these protocol
messages.
If true, close forcefully. Otherwise the
connection is closed gracefully.
Create a special proxy that always uses this connection.
This
can be used for callbacks from a server to a client if the
server cannot directly establish a connection to the client,
for example because of firewalls. In this case, the server
would create a proxy using an already established connection
from the client.
The identity for which a proxy is to be created.
A proxy that matches the given identity and uses this
connection.
Explicitly set an object adapter that dispatches requests that
are received over this connection.
A client can invoke an
operation on a server using a proxy, and then set an object
adapter for the outgoing connection that is used by the proxy
in order to receive callbacks. This is useful if the server
cannot establish a connection back to the client, for example
because of firewalls.
The object adapter that should be used by this
connection to dispatch requests. The object adapter must be
activated. When the object adapter is deactivated, it is
automatically removed from the connection.
Get the object adapter that dispatches requests for this
connection.
The object adapter that dispatches requests for the
connection, or null if no adapter is set.
Get the endpoint from which the connection was created.
The endpoint from which the connection was created.
Flush any pending batch requests for this connection.
This means all batch requests invoked on fixed proxies
associated with the connection.
Set callback on the connection.
The callback is called by the
connection when it's closed. The callback is called from the
Ice thread pool associated with the connection.
The connection callback object.
Set the active connection management parameters.
The timeout value in milliseconds.
The close condition
The hertbeat condition
Get the ACM parameters.
The ACM parameters.
Return the connection type.
This corresponds to the endpoint
type, i.e., "tcp", "udp", etc.
The type of the connection.
Get the timeout for the connection.
The connection's timeout.
Return a description of the connection as human readable text,
suitable for logging or error messages.
The description of the connection as human readable
text.
Returns the connection information.
The connection information.
Set the connectiion buffer receive/send size.
The connection receive buffer size.
The connection send buffer size.
Base class that allows a server intercept incoming requests.
The application must derive a concrete class from DispatchInterceptor
that implements the DispatchInterceptor.dispatch operation. An instance of this derived
class can be registered with an object adapter like any other servant.
A dispatch interceptor is useful particularly to automatically retry requests
that have failed due to a recoverable error condition.
Base class for all Slice classes.
the base interface for servants.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
True if this object has the interface
specified by s or derives from the interface specified by s.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
The Current object for the invocation.
True if this object has the interface
specified by s or derives from the interface specified by s.
Tests whether this object can be reached.
Tests whether this object can be reached.
The Current object for the invocation.
Returns the Slice type IDs of the interfaces supported by this object.
The Slice type IDs of the interfaces supported by this object, in base-to-derived
order. The first element of the returned array is always ::Ice::Object.
Returns the Slice type IDs of the interfaces supported by this object.
The Current object for the invocation.
The Slice type IDs of the interfaces supported by this object, in base-to-derived
order. The first element of the returned array is always ::Ice::Object.
Returns the Slice type ID of the most-derived interface supported by this object.
The Slice type ID of the most-derived interface.
Returns the Slice type ID of the most-derived interface supported by this object.
The Current object for the invocation.
The Slice type ID of the most-derived interface.
The Ice run time invokes this method prior to marshaling an object's data members. This allows a subclass
to override this method in order to validate its data members.
This Ice run time invokes this method vafter unmarshaling an object's data members. This allows a
subclass to override this method in order to perform additional initialization.
Dispatches an invocation to a servant. This method is used by dispatch interceptors to forward an invocation
to a servant (or to another interceptor).
The details of the invocation.
The callback object for asynchchronous dispatch. For synchronous dispatch,
the callback object must be null.
The dispatch status for the operation.
Dispatches an invocation to a servant. This method is used by dispatch interceptors to forward an invocation
to a servant (or to another interceptor).
The details of the invocation.
The dispatch status for the operation.
Instantiates an Ice object.
Returns a copy of the object. The cloned object contains field-for-field copies
of the state.
The cloned object.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
The return value is true if s is ::Ice::Object.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
The Current object for the invocation.
The return value is true if s is ::Ice::Object.
Tests whether this object can be reached.
Tests whether this object can be reached.
The Current object for the invocation.
Returns the Slice type IDs of the interfaces supported by this object.
An array whose only element is ::Ice::Object.
Returns the Slice type IDs of the interfaces supported by this object.
The Current object for the invocation.
An array whose only element is ::Ice::Object.
Returns the Slice type ID of the most-derived interface supported by this object.
The return value is always ::Ice::Object.
Returns the Slice type ID of the most-derived interface supported by this object.
The Current object for the invocation.
The return value is always ::Ice::Object.
Returns the Slice type ID of the interface supported by this object.
The return value is always ::Ice::Object.
The Ice run time invokes this method prior to marshaling an object's data members. This allows a subclass
to override this method in order to validate its data members.
This Ice run time invokes this method vafter unmarshaling an object's data members. This allows a
subclass to override this method in order to perform additional initialization.
Dispatches an invocation to a servant. This method is used by dispatch interceptors to forward an invocation
to a servant (or to another interceptor).
The details of the invocation.
The callback object for asynchchronous dispatch. For synchronous dispatch, the
callback object must be null.
The dispatch status for the operation.
Dispatches an invocation to a servant. This method is used by dispatch interceptors to forward an invocation
to a servant (or to another interceptor).
The details of the invocation.
The dispatch status for the operation.
Called by the Ice run time to dispatch an incoming request. The implementation
of dispatch
must dispatch the request to the actual servant.
The details of the incoming request.
For synchronous dispatch, the return value must be whatever is
returned ice_dispatch. For asynchronous dispatch, the return
value must be DispatchAsync.
Return a string representation of the endpoint.
The string representation of the endpoint.
Returns the endpoint information.
The endpoint information class.
Base class for Ice exceptions.
Creates and returns a copy of this exception.
A copy of this exception.
Creates a default-initialized exception.
Creates a default-initialized exception and sets the InnerException
property to the passed exception.
The inner exception.
Initializes a new instance of the exception with serialized data.
Holds the serialized object data about the exception being thrown.
Contains contextual information about the source or destination.
Returns the name of this exception.
The name of this exception.
Returns a string representation of this exception, including
any inner exceptions.
The string representation of this exception.
Base class for local exceptions.
Creates a default-initialized local exception.
Creates a default-initialized local exception and sets the InnerException
property to the passed exception.
The inner exception.
Initializes a new instance of the exception with serialized data.
Holds the serialized object data about the exception being thrown.
Contains contextual information about the source or destination.
Base class for Ice run-time exceptions.
Creates a default-initialized run-time exception.
Creates a default-initialized run-time exception and sets the InnerException
property to the passed exception.
The inner exception.
Initializes a new instance of the exception with serialized data.
Holds the serialized object data about the exception being thrown.
Contains contextual information about the source or destination.
Base class for Slice user exceptions.
Creates a default-initialized user exception.
Creates a default-initialized user exception and sets the InnerException
property to the passed exception.
The inner exception.
Initializes a new instance of the exception with serialized data.
Holds the serialized object data about the exception being thrown.
Contains contextual information about the source or destination.
This enumeration describes the possible formats for classes and exceptions.
Get a copy of the underlying context.
A copy of the underlying context.
Set the underlying context.
The new context.
Check if this key has an associated value in the underlying context.
The key.
True if the key has an associated value, False otherwise.
Get the value associated with the given key in the underlying context.
Returns an empty string if no value is associated with the key.
containsKey allows you to distinguish between an empty-string value and
no value at all.
The key.
The value associated with the key.
Create or update a key/value entry in the underlying context.
The key.
The value.
The previous value associated with the key, if any.
Remove the entry for the given key in the underlying context.
The key.
The value associated with the key, if any.
Interface for incoming requests.
Returns the {@link Current} object for this the request.
The Current object for this request.
Callback interface for Blobject AMD servants.
Indicates to the Ice run time that an operation
completed.
True indicates that the operation
completed successfully; false indicates that the
operation raised a user exception.
The encoded out-parameters for the operation or,
if ok is false, the encoded user exception.
Update connection observers associated with each of the Ice
connection from the communicator and its object adapters.
When called, this method goes through all the connections and
for each connection CommunicatorObserver.getConnectionObserver
is called. The implementation of getConnectionObserver has the
possibility to return an updated observer if necessary.
Update thread observers associated with each of the Ice thread
from the communicator and its object adapters.
When called, this method goes through all the threads and for
each thread CommunicatorObserver.getThreadObserver is
called. The implementation of getThreadObserver has the
possibility to return an updated observer if necessary.
This method is called when the instrumented object is created
or when the observer is attached to an existing object.
This method is called when the instrumented object is destroyed
and as a result the observer detached from the object.
Notification of a failure.
The name of the exception.
Notification of sent bytes over the connection.
The number of bytes sent.
Notification of received bytes over the connection.
The number of bytes received.
Notification of a user exception.
Reply notification.
The size of the reply.
Reply notification.
The size of the reply.
Notification of the invocation being retried.
Notification of a user exception.
Get a remote observer for this invocation.
The connection information.
The connection endpoint.
The ID of the invocation.
The size of the invocation.
The observer to instrument the remote invocation.
Get a collocated observer for this invocation.
The object adapter hosting the collocated Ice object.
The ID of the invocation.
The size of the invocation.
The observer to instrument the collocated invocation.
Notification of thread state change.
The previous thread state.
The new thread state.
This method should return an observer for the given endpoint
information and connector.
The Ice run-time calls this method
for each connection establishment attempt.
The endpoint.
The description of the connector. For IP
transports, this is typically the IP address to connect to.
The observer to instrument the connection establishment.
This method should return an observer for the given endpoint
information.
The Ice run-time calls this method to resolve an
endpoint and obtain the list of connectors.
For IP endpoints, this typically involves doing a DNS lookup to
obtain the IP addresses associated with the DNS name.
The endpoint.
The observer to instrument the endpoint lookup.
This method should return a connection observer for the given
connection.
The Ice run-time calls this method for each new
connection and for all the Ice communicator connections when
ObserverUpdater.updateConnectionObservers is called.
The connection information.
The connection endpoint.
The state of the connection.
The old connection observer if one is already set or a
null reference otherwise.
The connection observer to instrument the connection.
This method should return a thread observer for the given
thread.
The Ice run-time calls this method for each new thread
and for all the Ice communicator threads when
ObserverUpdater.updateThreadObservers is called.
The parent of the thread.
The ID of the thread to observe.
The state of the thread.
The old thread observer if one is already set or a
null reference otherwise.
The thread observer to instrument the thread.
This method should return an invocation observer for the given
invocation.
The Ice run-time calls this method for each new
invocation on a proxy.
The proxy used for the invocation.
The name of the invocation.
The context specified by the user.
The invocation observer to instrument the invocation.
This method should return a dispatch observer for the given
dispatch.
The Ice run-time calls this method each time it
receives an incoming invocation to be dispatched for an Ice
object.
The current object as provided to the Ice servant
dispatching the invocation.
The size of the dispatch.
The dispatch observer to instrument the dispatch.
The Ice run-time calls this method when the communicator is
initialized.
The add-in implementing this interface can use
this object to get the Ice run-time to re-obtain observers for
observed objects.
The observer updater object.
Returns the type of the endpoint.
Returns true if this endpoint is a datagram endpoint.
Returns true if this endpoint is a secure endpoint.
The interface of the admin object that allows an Ice application the attach its
RemoteLogger to the Logger of this admin object's Ice communicator.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
Raised if this remote logger is already
attached to this admin object.
The Current object for the invocation.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
True if the provided remote logger proxy was detached, and false otherwise.
The Current object for the invocation.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
The prefix of the associated local Logger.
The Log messages.
The Current object for the invocation.
The interface of the admin object that allows an Ice application the attach its
RemoteLogger to the Logger of this admin object's Ice communicator.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
Raised if this remote logger is already
attached to this admin object.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
True if the provided remote logger proxy was detached, and false otherwise.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
The prefix of the associated local Logger.
The Log messages.
Print a message.
The message is printed literally, without
any decorations such as executable name or time stamp.
Log a trace message.
The trace category.
The trace message to log.
Log a warning message.
The warning message to log.
Log an error message.
The error message to log.
Returns this logger's prefix.
The prefix.
Returns a clone of the logger with a new prefix.
The new prefix for the logger.
Class to support custom loggers. Applications using a custom logger
instantiate a LoggerPlugin with a custom logger and
return the instance from their PluginFactory implementation.
Perform any necessary initialization steps.
Called when the communicator is being destroyed.
Installs a custom logger for a communicator.
The communicator using the custom logger.
The custom logger for the communicator.
Called by the Ice run time during communicator initialization. The derived class
can override this method to perform any initialization that might be required
by a custom logger.
Called by the Ice run time when the communicator is destroyed. The derived class
can override this method to perform any finalization that might be required
by a custom logger.
The metrics administrative facet interface.
This interface allows
remote administrative clients to access metrics of an application
that enabled the Ice administrative facility and configured some
metrics views.
Get the names of enabled and disabled metrics.
The names of the disabled views.
The name of the enabled views.
The Current object for the invocation.
Enables a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
The Current object for the invocation.
Disable a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
The Current object for the invocation.
Get the metrics objects for the given metrics view.
This
returns a dictionnary of metric maps for each metrics class
configured with the view. The timestamp allows the client to
compute averages which are not dependent of the invocation
latency for this operation.
The name of the metrics view.
The local time of the process when the metrics
object were retrieved.
The metrics view data.
Raised if the metrics view cannot be
found.
The Current object for the invocation.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
The metrics failures associated with the map.
Raised if the metrics view cannot be
found.
The Current object for the invocation.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
The metrics failures associated with the metrics.
Raised if the metrics view cannot be
found.
The Current object for the invocation.
The metrics administrative facet interface.
This interface allows
remote administrative clients to access metrics of an application
that enabled the Ice administrative facility and configured some
metrics views.
Get the names of enabled and disabled metrics.
The names of the disabled views.
The name of the enabled views.
Enables a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
Disable a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
Get the metrics objects for the given metrics view.
This
returns a dictionnary of metric maps for each metrics class
configured with the view. The timestamp allows the client to
compute averages which are not dependent of the invocation
latency for this operation.
The name of the metrics view.
The local time of the process when the metrics
object were retrieved.
The metrics view data.
Raised if the metrics view cannot be
found.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
The metrics failures associated with the map.
Raised if the metrics view cannot be
found.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
The metrics failures associated with the metrics.
Raised if the metrics view cannot be
found.
Indicates the status of operation dispatch.
Indicates that an operation was dispatched synchronously and successfully.
Indicates that an operation was dispatched synchronously and raised a user exception.
Indicates that an operation was dispatched asynchronously.
Base class for dynamic dispatch servants. A server application
derives a concrete servant class from Blobject that
implements the Blobject.ice_invoke method.
Dispatch an incoming request.
The encoded in-parameters for the operation.
The encoded out-paramaters and return value
for the operation. The return value follows any out-parameters.
The Current object to pass to the operation.
If the operation completed successfully, the return value
is true. If the operation raises a user exception,
the return value is false; in this case, outParams
must contain the encoded user exception. If the operation raises an
Ice run-time exception, it must throw it directly.
Get the name of this object adapter.
This object adapter's name.
Get the communicator this object adapter belongs to.
This object adapter's communicator.
Activate all endpoints that belong to this object adapter.
After activation, the object adapter can dispatch requests
received through its endpoints.
Temporarily hold receiving and dispatching requests.
The object
adapter can be reactivated with the activate operation.
Holding is not immediate, i.e., after hold
returns, the object adapter might still be active for some
time. You can use waitForHold to wait until holding is
complete.
Wait until the object adapter holds requests.
Calling hold
initiates holding of requests, and waitForHold only returns
when holding of requests has been completed.
Deactivate all endpoints that belong to this object adapter.
After deactivation, the object adapter stops receiving
requests through its endpoints. Object adapters that have been
deactivated must not be reactivated again, and cannot be used
otherwise. Attempts to use a deactivated object adapter raise
ObjectAdapterDeactivatedException; however, attempts to
deactivate an already deactivated object adapter are
ignored and do nothing. Once deactivated, it is possible to
destroy the adapter to clean up resources and then create and
activate a new adapter with the same name.
After deactivate returns, no new requests
are processed by the object adapter. However, requests that
have been started before deactivate was called might
still be active. You can use waitForDeactivate to wait
for the completion of all requests for this object adapter.
Wait until the object adapter has deactivated.
Calling
deactivate initiates object adapter deactivation, and
waitForDeactivate only returns when deactivation has
been completed.
Check whether object adapter has been deactivated.
Whether adapter has been deactivated.
Destroys the object adapter and cleans up all resources held by
the object adapter.
If the object adapter has not yet been
deactivated, destroy implicitly initiates the deactivation
and waits for it to finish. Subsequent calls to destroy are
ignored. Once destroy has returned, it is possible to create
another object adapter with the same name.
Add a servant to this object adapter's Active Servant Map.
Note
that one servant can implement several Ice objects by registering
the servant with multiple identities. Adding a servant with an
identity that is in the map already throws AlreadyRegisteredException.
The servant to add.
The identity of the Ice object that is implemented by
the servant.
A proxy that matches the given identity and this object
adapter.
Like add, but with a facet.
Calling add(servant, id)
is equivalent to calling addFacet with an empty facet.
The servant to add.
The identity of the Ice object that is implemented by
the servant.
The facet. An empty facet means the default facet.
A proxy that matches the given identity, facet, and
this object adapter.
Add a servant to this object adapter's Active Servant Map,
using an automatically generated UUID as its identity.
Note that
the generated UUID identity can be accessed using the proxy's
ice_getIdentity operation.
The servant to add.
A proxy that matches the generated UUID identity and
this object adapter.
Like addWithUUID, but with a facet.
Calling
addWithUUID(servant) is equivalent to calling
addFacetWithUUID with an empty facet.
The servant to add.
The facet. An empty facet means the default
facet.
A proxy that matches the generated UUID identity,
facet, and this object adapter.
Add a default servant to handle requests for a specific
category.
Adding a default servant for a category for
which a default servant is already registered throws
AlreadyRegisteredException. To dispatch operation
calls on servants, the object adapter tries to find a servant
for a given Ice object identity and facet in the following
order:
The object adapter tries to find a servant for the identity
and facet in the Active Servant Map.
If no servant has been found in the Active Servant Map, the
object adapter tries to find a default servant for the category
component of the identity.
If no servant has been found by any of the preceding steps,
the object adapter tries to find a default servant for an empty
category, regardless of the category contained in the identity.
If no servant has been found by any of the preceding steps,
the object adapter gives up and the caller receives
ObjectNotExistException or FacetNotExistException.
The default servant.
The category for which the default servant is
registered. An empty category means it will handle all categories.
Remove a servant (that is, the default facet) from the object
adapter's Active Servant Map.
The identity of the Ice object that is implemented by
the servant. If the servant implements multiple Ice objects,
remove has to be called for all those Ice objects.
Removing an identity that is not in the map throws
NotRegisteredException.
The removed servant.
Like remove, but with a facet.
Calling remove(id)
is equivalent to calling removeFacet with an empty facet.
The identity of the Ice object that is implemented by
the servant.
The facet. An empty facet means the default facet.
The removed servant.
Remove all facets with the given identity from the Active
Servant Map.
The operation completely removes the Ice object,
including its default facet. Removing an identity that
is not in the map throws NotRegisteredException.
The identity of the Ice object to be removed.
A collection containing all the facet names and
servants of the removed Ice object.
Remove the default servant for a specific category.
Attempting
to remove a default servant for a category that is not
registered throws NotRegisteredException.
The category of the default servant to remove.
The default servant.
Look up a servant in this object adapter's Active Servant Map
by the identity of the Ice object it implements.
This operation only tries to look up a servant in
the Active Servant Map. It does not attempt to find a servant
by using any installed ServantLocator.
The identity of the Ice object for which the servant
should be returned.
The servant that implements the Ice object with the
given identity, or null if no such servant has been found.
Like find, but with a facet.
Calling find(id)
is equivalent to calling findFacet with an empty
facet.
The identity of the Ice object for which the
servant should be returned.
The facet. An empty facet means the default
facet.
The servant that implements the Ice object with the
given identity and facet, or null if no such servant has been
found.
Find all facets with the given identity in the Active Servant
Map.
The identity of the Ice object for which the facets
should be returned.
A collection containing all the facet names and
servants that have been found, or an empty map if there is no
facet for the given identity.
Look up a servant in this object adapter's Active Servant Map,
given a proxy.
This operation only tries to lookup a servant in
the Active Servant Map. It does not attempt to find a servant
by using any installed ServantLocator.
The proxy for which the servant should be returned.
The servant that matches the proxy, or null if no such
servant has been found.
Add a Servant Locator to this object adapter.
Adding a servant
locator for a category for which a servant locator is already
registered throws AlreadyRegisteredException. To dispatch
operation calls on servants, the object adapter tries to find a
servant for a given Ice object identity and facet in the
following order:
The object adapter tries to find a servant for the identity
and facet in the Active Servant Map.
If no servant has been found in the Active Servant Map,
the object adapter tries to find a servant locator for the
category component of the identity. If a locator is found, the
object adapter tries to find a servant using this locator.
If no servant has been found by any of the preceding steps,
the object adapter tries to find a locator for an empty category,
regardless of the category contained in the identity. If a
locator is found, the object adapter tries to find a servant
using this locator.
If no servant has been found by any of the preceding steps,
the object adapter gives up and the caller receives
ObjectNotExistException or FacetNotExistException.
Only one locator for the empty category can be
installed.
The locator to add.
The category for which the Servant Locator can
locate servants, or an empty string if the Servant Locator does
not belong to any specific category.
Remove a Servant Locator from this object adapter.
The category for which the Servant Locator can
locate servants, or an empty string if the Servant Locator does
not belong to any specific category.
The Servant Locator, or throws NotRegisteredException
if no Servant Locator was found for the given category.
Find a Servant Locator installed with this object adapter.
The category for which the Servant Locator can
locate servants, or an empty string if the Servant Locator does
not belong to any specific category.
The Servant Locator, or null if no Servant Locator was
found for the given category.
Find the default servant for a specific category.
The category of the default servant to find.
The default servant or null if no default servant was
registered for the category.
Create a proxy for the object with the given identity.
If this
object adapter is configured with an adapter id, the return
value is an indirect proxy that refers to the adapter id. If
a replica group id is also defined, the return value is an
indirect proxy that refers to the replica group id. Otherwise,
if no adapter id is defined, the return value is a direct
proxy containing this object adapter's published endpoints.
The object's identity.
A proxy for the object with the given identity.
Create a direct proxy for the object with the given identity.
The returned proxy contains this object adapter's published
endpoints.
The object's identity.
A proxy for the object with the given identity.
Create an indirect proxy for the object with the given identity.
If this object adapter is configured with an adapter id, the
return value refers to the adapter id. Otherwise, the return
value contains only the object identity.
The object's identity.
A proxy for the object with the given identity.
Set an Ice locator for this object adapter.
By doing so, the
object adapter will register itself with the locator registry
when it is activated for the first time. Furthermore, the proxies
created by this object adapter will contain the adapter identifier
instead of its endpoints. The adapter identifier must be configured
using the AdapterId property.
The locator used by this object adapter.
Get the Ice locator used by this object adapter.
The locator used by this object adapter, or null if no locator is
used by this object adapter.
Refresh the set of published endpoints.
The run time re-reads
the PublishedEndpoints property if it is set and re-reads the
list of local interfaces if the adapter is configured to listen
on all endpoints. This operation is useful to refresh the endpoint
information that is published in the proxies that are created by
an object adapter if the network interfaces used by a host changes.
Get the set of endpoints configured with this object adapter.
The set of endpoints.
Get the set of endpoints that proxies created by this object
adapter will contain.
The set of published endpoints.
Encapsulates an optional value. Instances of this type are immutable.
Creates an optional value whose state is unset.
Creates an optional value and sets its value to the given argument.
Creates an optional value whose state is copied from the given argument.
Initializes a new instance of the exception with serialized data.
Holds the serialized object data about the exception being thrown.
Contains contextual information about the source or destination.
Conversion operator to the underlying type; a cast is required. An exception
is raised if no value is set.
The encapsulated value.
Thrown if no value is set.
Conversion operator from a value of the underlying type; no cast is required.
Conversion operator from a None value; no cast is required.
Serializes an optional value.
Holds the serialized object data about the exception being thrown.
Contains contextual information about the source or destination.
Reads and writes the encapsulated value.
Thrown if the property is read and no value is
set.
Determines whether a value is set.
True if a value is set, false otherwise.
Handles callbacks for an optional object parameter.
Callback class to inform an application when a Slice class has been unmarshaled
from an input stream.
The Ice run time calls this method when it has fully unmarshaled the state
of a Slice class.
The unmarshaled Slice class.
Instantiates the class with the given optional.
The Slice type ID corresponding to the formal type.
Sets the Ice object of the optional to the passed instance.
The new object for the optional.
The target optional.
The optional format.
An optional value is encoded with a specific optional format. This optional
format describes how the data is encoded and how it can be skipped by the
unmarshaling code if the optional is not known to the receiver.
Applications implement this interface to provide a plug-in factory
to the Ice run time.
Called by the Ice run time to create a new plug-in.
The communicator that is in the process of being initialized.
The name of the plug-in.
The arguments that are specified in the plug-ins configuration.
The plug-in that was created by this method.
Initialize the configured plug-ins.
The communicator automatically initializes
the plug-ins by default, but an application may need to interact directly with
a plug-in prior to initialization. In this case, the application must set
Ice.InitPlugins=0 and then invoke initializePlugins
manually. The plug-ins are initialized in the order in which they are loaded.
If a plug-in raises an exception during initialization, the communicator
invokes destroy on the plug-ins that have already been initialized.
Raised if the plug-ins have already been initialized.
Get a list of plugins installed.
The names of the plugins installed.
Obtain a plug-in by name.
The plug-in's name.
The plug-in.
Raised if no plug-in is found with the given name.
Install a new plug-in.
The plug-in's name.
The plug-in.
Raised if a plug-in already exists with the given name.
Called when the communicator is being destroyed.
An administrative interface for process management.
Managed servers must
implement this interface.
A servant implementing this interface is a potential target
for denial-of-service attacks, therefore proper security precautions
should be taken. For example, the servant can use a UUID to make its
identity harder to guess, and be registered in an object adapter with
a secured endpoint.
Initiate a graceful shut-down.
The Current object for the invocation.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
The Current object for the invocation.
An administrative interface for process management.
Managed servers must
implement this interface.
A servant implementing this interface is a potential target
for denial-of-service attacks, therefore proper security precautions
should be taken. For example, the servant can use a UUID to make its
identity harder to guess, and be registered in an object adapter with
a secured endpoint.
Initiate a graceful shut-down.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
The PropertiesAdmin interface provides remote access to the properties
of a communicator.
Get a property by key.
If the property is not set, an empty
string is returned.
The property key.
The property value.
The Current object for the invocation.
Get all properties whose keys begin with prefix.
If
prefix is an empty string then all properties are returned.
The prefix to search for (empty string if none).
The matching property set.
The Current object for the invocation.
Update the communicator's properties with the given property set.
The callback object for the operation.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
The Current object for the invocation.
The PropertiesAdmin interface provides remote access to the properties
of a communicator.
Get a property by key.
If the property is not set, an empty
string is returned.
The property key.
The property value.
Get all properties whose keys begin with prefix.
If
prefix is an empty string then all properties are returned.
The prefix to search for (empty string if none).
The matching property set.
Update the communicator's properties with the given property set.
The callback object for the operation.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
Get a property by key.
If the property is not set, an empty
string is returned.
The property key.
The property value.
Get a property by key.
If the property is not set, the
given default value is returned.
The property key.
The default value to use if the property does not
exist.
The property value or the default value.
Get a property as an integer.
If the property is not set, 0
is returned.
The property key.
The property value interpreted as an integer.
Get a property as an integer.
If the property is not set, the
given default value is returned.
The property key.
The default value to use if the property does not
exist.
The property value interpreted as an integer, or the
default value.
Get a property as a list of strings.
The strings must be
separated by whitespace or comma. If the property is not set,
an empty list is returned. The strings in the list can contain
whitespace and commas if they are enclosed in single or double
quotes. If quotes are mismatched, an empty list is returned.
Within single quotes or double quotes, you can escape the
quote in question with \, e.g. O'Reilly can be written as
O'Reilly, "O'Reilly" or 'O\'Reilly'.
The property key.
The property value interpreted as a list of strings.
Get a property as a list of strings.
The strings must be
separated by whitespace or comma. If the property is not set,
the default list is returned. The strings in the list can contain
whitespace and commas if they are enclosed in single or double
quotes. If quotes are mismatched, the default list is returned.
Within single quotes or double quotes, you can escape the
quote in question with \, e.g. O'Reilly can be written as
O'Reilly, "O'Reilly" or 'O\'Reilly'.
The property key.
The default value to use if the property is not set.
The property value interpreted as list of strings, or the
default value.
Get all properties whose keys begins with
prefix.
If
prefix is an empty string,
then all properties are returned.
The prefix to search for (empty string if none).
The matching property set.
Set a property.
To unset a property, set it to
the empty string.
The property key.
The property value.
Get a sequence of command-line options that is equivalent to
this property set.
Each element of the returned sequence is
a command-line option of the form
--key=value.
The command line options for this property set.
Convert a sequence of command-line options into properties.
All options that begin with
--prefix. are
converted into properties. If the prefix is empty, all options
that begin with -- are converted to properties.
The property prefix, or an empty string to
convert all options starting with --.
The command-line options.
The command-line options that do not start with the specified
prefix, in their original order.
Convert a sequence of command-line options into properties.
All options that begin with one of the following prefixes
are converted into properties: --Ice, --IceBox, --IceGrid,
--IcePatch2, --IceSSL, --IceStorm, --Freeze, and --Glacier2.
The command-line options.
The command-line options that do not start with one of
the listed prefixes, in their original order.
Load properties from a file.
The property file.
Create a copy of this property set.
A copy of this property set.
Delegate for a successful ice_isA
invocation.
True if the remote object supports the type, false otherwise.
Delegate for a successful ice_ids
invocation.
The array of Slice type ids supported by the remote object.
Delegate for a successful ice_id
invocation.
The Slice type id of the most-derived interface supported by the remote object.
Delegate for a successful ice_ping
invocation.
Delegate for a successful ice_invoke
invocation.
True if the invocation succeeded, or false if the invocation
raised a user exception.
The encoded out-parameters or user exception.
Delegate for a successful ice_getConnection
invocation.
The connection used by the proxy.
Base interface of all object proxies.
Returns the communicator that created this proxy.
The communicator that created this proxy.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
True if the target object has the interface specified by id__ or derives
from the interface specified by id__.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
The context dictionary for the invocation.
True if the target object has the interface specified by id__ or derives
from the interface specified by id__.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
An asynchronous result object.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
The context dictionary for the invocation.
An asynchronous result object.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
The context dictionary for the invocation.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Tests whether this object supports a specific Slice interface.
The asynchronous result object returned by begin_ice_isA
.
True if the object supports the Slice interface, false otherwise.
Tests whether the target object of this proxy can be reached.
Tests whether the target object of this proxy can be reached.
The context dictionary for the invocation.
Tests whether the target object of this proxy can be reached.
An asynchronous result object.
Tests whether the target object of this proxy can be reached.
The context dictionary for the invocation.
An asynchronous result object.
Tests whether the target object of this proxy can be reached.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Tests whether the target object of this proxy can be reached.
The context dictionary for the invocation.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Tests whether the target object of this proxy can be reached.
The asynchronous result object returned by begin_ice_ping
.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
The Slice type IDs of the interfaces supported by the target object, in base-to-derived
order. The first element of the returned array is always ::Ice::Object.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
The context dictionary for the invocation.
The Slice type IDs of the interfaces supported by the target object, in base-to-derived
order. The first element of the returned array is always ::Ice::Object.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
An asynchronous result object.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
The context dictionary for the invocation.
An asynchronous result object.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
The context dictionary for the invocation.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
The asynchronous result object returned by begin_ice_ids
.
The Slice type IDs of the interfaces supported by the target object, in base-to-derived
order. The first element of the returned array is always ::Ice::Object.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
The Slice type ID of the most-derived interface.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
The context dictionary for the invocation.
The Slice type ID of the most-derived interface.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
An asynchronous result object.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
The context dictionary for the invocation.
An asynchronous result object.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
The context dictionary for the invocation.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
The asynchronous result object returned by begin_ice_id
.
The Slice type ID of the most-derived interface.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
The encoded out-paramaters and return value
for the operation. The return value follows any out-parameters.
If the operation completed successfully, the return value
is true. If the operation raises a user exception,
the return value is false; in this case, outEncaps
contains the encoded user exception. If the operation raises a run-time exception,
it throws it directly.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
The encoded out-paramaters and return value
for the operation. The return value follows any out-parameters.
The context dictionary for the invocation.
If the operation completed successfully, the return value
is true. If the operation raises a user exception,
the return value is false; in this case, outEncaps
contains the encoded user exception. If the operation raises a run-time exception,
it throws it directly.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
An asynchronous result object.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
The context dictionary for the invocation.
An asynchronous result object.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
The context dictionary for the invocation.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Completes a dynamic invocation.
The encoded out parameters or user exception.
The asynchronous result object returned by begin_ice_invoke
.
If the operation completed successfully, the return value
is true. If the operation raises a user exception,
the return value is false; in this case, outEncaps
contains the encoded user exception. If the operation raises a run-time exception,
it throws it directly.
Returns the identity embedded in this proxy.
The identity of the target object.
Creates a new proxy that is identical to this proxy, except for the per-proxy context.
The identity for the new proxy.
The proxy with the new identity.
Returns the per-proxy context for this proxy.
The per-proxy context. If the proxy does not have a per-proxy (implicit) context, the return value
is null.
Creates a new proxy that is identical to this proxy, except for the per-proxy context.
The context for the new proxy.
The proxy with the new per-proxy context.
Returns the facet for this proxy.
The facet for this proxy. If the proxy uses the default facet, the return value is the
empty string.
Creates a new proxy that is identical to this proxy, except for the facet.
The facet for the new proxy.
The proxy with the new facet.
Returns the adapter ID for this proxy.
The adapter ID. If the proxy does not have an adapter ID, the return value is the
empty string.
Creates a new proxy that is identical to this proxy, except for the adapter ID.
The adapter ID for the new proxy.
The proxy with the new adapter ID.
Returns the endpoints used by this proxy.
The endpoints used by this proxy.
Creates a new proxy that is identical to this proxy, except for the endpoints.
The endpoints for the new proxy.
The proxy with the new endpoints.
Returns the locator cache timeout of this proxy.
The locator cache timeout value (in seconds).
Creates a new proxy that is identical to this proxy, except for the locator cache timeout.
The new locator cache timeout (in seconds).
Creates a new proxy that is identical to this proxy, except for the invocation timeout.
The new invocation timeout (in seconds).
Returns the invocation timeout of this proxy.
The invocation timeout value (in seconds).
Returns whether this proxy caches connections.
True if this proxy caches connections; false, otherwise.
Creates a new proxy that is identical to this proxy, except for connection caching.
True if the new proxy should cache connections; false, otherwise.
The new proxy with the specified caching policy.
Returns how this proxy selects endpoints (randomly or ordered).
The endpoint selection policy.
Creates a new proxy that is identical to this proxy, except for the endpoint selection policy.
The new endpoint selection policy.
The new proxy with the specified endpoint selection policy.
Returns whether this proxy communicates only via secure endpoints.
True if this proxy communicates only vi secure endpoints; false, otherwise.
Creates a new proxy that is identical to this proxy, except for how it selects endpoints.
If b is true, only endpoints that use a secure transport are
used by the new proxy. If b is false, the returned proxy uses both secure and insecure
endpoints.
The new proxy with the specified selection policy.
Creates a new proxy that is identical to this proxy, except for the encoding used to marshal
parameters.
The encoding version to use to marshal requests parameters.
The new proxy with the specified encoding version.
Returns the encoding version used to marshal requests parameters.
The encoding version.
Returns whether this proxy prefers secure endpoints.
True if the proxy always attempts to invoke via secure endpoints before it
attempts to use insecure endpoints; false, otherwise.
Creates a new proxy that is identical to this proxy, except for its endpoint selection policy.
If b is true, the new proxy will use secure endpoints for invocations
and only use insecure endpoints if an invocation cannot be made via secure endpoints. If b is
false, the proxy prefers insecure endpoints to secure ones.
The new proxy with the new endpoint selection policy.
Returns the router for this proxy.
The router for the proxy. If no router is configured for the proxy, the return value
is null.
Creates a new proxy that is identical to this proxy, except for the router.
The router for the new proxy.
The new proxy with the specified router.
Returns the locator for this proxy.
The locator for this proxy. If no locator is configured, the return value is null.
Creates a new proxy that is identical to this proxy, except for the locator.
The locator for the new proxy.
The new proxy with the specified locator.
Returns whether this proxy uses collocation optimization.
True if the proxy uses collocation optimization; false, otherwise.
Creates a new proxy that is identical to this proxy, except for collocation optimization.
True if the new proxy enables collocation optimization; false, otherwise.
The new proxy the specified collocation optimization.
Creates a new proxy that is identical to this proxy, but uses twoway invocations.
A new proxy that uses twoway invocations.
Returns whether this proxy uses twoway invocations.
True if this proxy uses twoway invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses oneway invocations.
A new proxy that uses oneway invocations.
Returns whether this proxy uses oneway invocations.
True if this proxy uses oneway invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses batch oneway invocations.
A new proxy that uses batch oneway invocations.
Returns whether this proxy uses batch oneway invocations.
True if this proxy uses batch oneway invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses datagram invocations.
A new proxy that uses datagram invocations.
Returns whether this proxy uses datagram invocations.
True if this proxy uses datagram invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses batch datagram invocations.
A new proxy that uses batch datagram invocations.
Returns whether this proxy uses batch datagram invocations.
True if this proxy uses batch datagram invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, except for compression.
True enables compression for the new proxy; false disables compression.
A new proxy with the specified compression setting.
Creates a new proxy that is identical to this proxy, except for its timeout setting.
The timeout for the new proxy in milliseconds.
A new proxy with the specified timeout.
Creates a new proxy that is identical to this proxy, except for its connection ID.
The connection ID for the new proxy. An empty string removes the
connection ID.
A new proxy with the specified connection ID.
Returns the connection id of this proxy.
The connection id.
Returns the Connection for this proxy. If the proxy does not yet have an established connection,
it first attempts to create a connection.
The Connection for this proxy.
If the proxy uses collocation optimization and denotes a
collocated object.
Asynchronously gets the connection for this proxy.
An asynchronous result object.
Asynchronously gets the connection for this proxy.
A callback to be invoked when the invocation completes.
Application-specific data to be stored in the result.
An asynchronous result object.
Asynchronously gets the connection for this proxy.
The asynchronous result object returned by begin_ice_getConnection
.
The connection.
Returns the cached Connection for this proxy. If the proxy does not yet have an established
connection, it does not attempt to create a connection.
The cached Connection for this proxy (null if the proxy does not have
an established connection).
If the proxy uses collocation optimization and denotes a
collocated object.
Flushes any pending batched requests for this communicator. The call blocks until the flush is complete.
Base class of all object proxies.
Returns a hash code for this proxy.
The hash code.
Returns the communicator that created this proxy.
The communicator that created this proxy.
Returns the stringified form of this proxy.
The stringified proxy.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
True if the target object has the interface specified by id__ or derives
from the interface specified by id__.
Tests whether this object supports a specific Slice interface.
The type ID of the Slice interface to test against.
The context dictionary for the invocation.
True if the target object has the interface specified by id__ or derives
from the interface specified by id__.
Tests whether the target object of this proxy can be reached.
Tests whether the target object of this proxy can be reached.
The context dictionary for the invocation.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
The Slice type IDs of the interfaces supported by the target object, in base-to-derived
order. The first element of the returned array is always ::Ice::Object.
Returns the Slice type IDs of the interfaces supported by the target object of this proxy.
The context dictionary for the invocation.
The Slice type IDs of the interfaces supported by the target object, in base-to-derived
order. The first element of the returned array is always ::Ice::Object.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
The Slice type ID of the most-derived interface.
Returns the Slice type ID of the most-derived interface supported by the target object of this proxy.
The context dictionary for the invocation.
The Slice type ID of the most-derived interface.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
The encoded out-paramaters and return value
for the operation. The return value follows any out-parameters.
If the operation completed successfully, the return value
is true. If the operation raises a user exception,
the return value is false; in this case, outEncaps
contains the encoded user exception. If the operation raises a run-time exception,
it throws it directly.
Invokes an operation dynamically.
The name of the operation to invoke.
The operation mode (normal or idempotent).
The encoded in-parameters for the operation.
The encoded out-paramaters and return value
for the operation. The return value follows any out-parameters.
The context dictionary for the invocation.
If the operation completed successfully, the return value
is true. If the operation raises a user exception,
the return value is false; in this case, outEncaps
contains the encoded user exception. If the operation raises a run-time exception,
it throws it directly.
Returns the identity embedded in this proxy.
The identity of the target object.
Creates a new proxy that is identical to this proxy, except for the per-proxy context.
The identity for the new proxy.
The proxy with the new identity.
Returns the per-proxy context for this proxy.
The per-proxy context. If the proxy does not have a per-proxy (implicit) context, the return value
is null.
Creates a new proxy that is identical to this proxy, except for the per-proxy context.
The context for the new proxy.
The proxy with the new per-proxy context.
Returns the facet for this proxy.
The facet for this proxy. If the proxy uses the default facet, the return value is the
empty string.
Creates a new proxy that is identical to this proxy, except for the facet.
The facet for the new proxy.
The proxy with the new facet.
Returns the adapter ID for this proxy.
The adapter ID. If the proxy does not have an adapter ID, the return value is the
empty string.
Creates a new proxy that is identical to this proxy, except for the adapter ID.
The adapter ID for the new proxy.
The proxy with the new adapter ID.
Returns the endpoints used by this proxy.
The endpoints used by this proxy.
Creates a new proxy that is identical to this proxy, except for the endpoints.
The endpoints for the new proxy.
The proxy with the new endpoints.
Returns the locator cache timeout of this proxy.
The locator cache timeout value (in seconds).
Creates a new proxy that is identical to this proxy, except for the locator cache timeout.
The new locator cache timeout (in seconds).
Returns the invocation timeout of this proxy.
The invocation timeout value (in seconds).
Creates a new proxy that is identical to this proxy, except for the invocation timeout.
The new invocation timeout (in seconds).
Returns whether this proxy caches connections.
True if this proxy caches connections; false, otherwise.
Creates a new proxy that is identical to this proxy, except for connection caching.
True if the new proxy should cache connections; false, otherwise.
The new proxy with the specified caching policy.
Returns how this proxy selects endpoints (randomly or ordered).
The endpoint selection policy.
Creates a new proxy that is identical to this proxy, except for the endpoint selection policy.
The new endpoint selection policy.
The new proxy with the specified endpoint selection policy.
Returns whether this proxy communicates only via secure endpoints.
True if this proxy communicates only vi secure endpoints; false, otherwise.
Creates a new proxy that is identical to this proxy, except for how it selects endpoints.
If b is true, only endpoints that use a secure transport are
used by the new proxy. If b is false, the returned proxy uses both secure and insecure
endpoints.
The new proxy with the specified selection policy.
Creates a new proxy that is identical to this proxy, except for the encoding used to marshal
parameters.
The encoding version to use to marshal requests parameters.
The new proxy with the specified encoding version.
Returns the encoding version used to marshal requests parameters.
The encoding version.
Returns whether this proxy prefers secure endpoints.
True if the proxy always attempts to invoke via secure endpoints before it
attempts to use insecure endpoints; false, otherwise.
Creates a new proxy that is identical to this proxy, except for its endpoint selection policy.
If b is true, the new proxy will use secure endpoints for invocations
and only use insecure endpoints if an invocation cannot be made via secure endpoints. If b is
false, the proxy prefers insecure endpoints to secure ones.
The new proxy with the new endpoint selection policy.
Returns the router for this proxy.
The router for the proxy. If no router is configured for the proxy, the return value
is null.
Creates a new proxy that is identical to this proxy, except for the router.
The router for the new proxy.
The new proxy with the specified router.
Returns the locator for this proxy.
The locator for this proxy. If no locator is configured, the return value is null.
Creates a new proxy that is identical to this proxy, except for the locator.
The locator for the new proxy.
The new proxy with the specified locator.
Returns whether this proxy uses collocation optimization.
True if the proxy uses collocation optimization; false, otherwise.
Creates a new proxy that is identical to this proxy, except for collocation optimization.
True if the new proxy enables collocation optimization; false, otherwise.
The new proxy the specified collocation optimization.
Creates a new proxy that is identical to this proxy, but uses twoway invocations.
A new proxy that uses twoway invocations.
Returns whether this proxy uses twoway invocations.
True if this proxy uses twoway invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses oneway invocations.
A new proxy that uses oneway invocations.
Returns whether this proxy uses oneway invocations.
True if this proxy uses oneway invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses batch oneway invocations.
A new proxy that uses batch oneway invocations.
Returns whether this proxy uses batch oneway invocations.
True if this proxy uses batch oneway invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses datagram invocations.
A new proxy that uses datagram invocations.
Returns whether this proxy uses datagram invocations.
True if this proxy uses datagram invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, but uses batch datagram invocations.
A new proxy that uses batch datagram invocations.
Returns whether this proxy uses batch datagram invocations.
True if this proxy uses batch datagram invocations; false, otherwise.
Creates a new proxy that is identical to this proxy, except for compression.
True enables compression for the new proxy; false disables compression.
A new proxy with the specified compression setting.
Creates a new proxy that is identical to this proxy, except for its timeout setting.
The timeout for the new proxy in milliseconds.
A new proxy with the specified timeout.
Creates a new proxy that is identical to this proxy, except for its connection ID.
The connection ID for the new proxy. An empty string removes the
connection ID.
A new proxy with the specified connection ID.
Returns the connection id of this proxy.
The connection id.
Returns the Connection for this proxy. If the proxy does not yet have an established connection,
it first attempts to create a connection.
The Connection for this proxy.
If the proxy uses collocation optimization and denotes a
collocated object.
Returns the cached Connection for this proxy. If the proxy does not yet have an established
connection, it does not attempt to create a connection.
The cached Connection for this proxy (null if the proxy does not have
an established connection).
If the proxy uses collocation optimization and denotes a
collocated object.
Flushes any pending batched requests for this communicator. The call blocks until the flush is complete.
Returns whether this proxy equals the passed object. Two proxies are equal if they are equal in all
respects, that is, if their object identity, endpoints timeout settings, and so on are all equal.
The object to compare this proxy with.
True if this proxy is equal to r; false, otherwise.
Returns whether two proxies are equal. Two proxies are equal if they are equal in all
respects, that is, if their object identity, endpoints timeout settings, and so on are all equal.
A proxy to compare with the proxy rhs.
A proxy to compare with the proxy lhs.
True if the proxies are equal; false, otherwise.
Returns whether two proxies are equal. Two proxies are equal if they are equal in all
respects, that is, if their object identity, endpoints timeout settings, and so on are all equal.
A proxy to compare with the proxy rhs.
A proxy to compare with the proxy lhs.
True if the proxies are equal; false, otherwise.
Returns whether two proxies are not equal. Two proxies are equal if they are equal in all
respects, that is, if their object identity, endpoints timeout settings, and so on are all equal.
A proxy to compare with the proxy rhs.
A proxy to compare with the proxy lhs.
True if the proxies are not equal; false, otherwise.
Base class for all proxy helpers.
Casts a proxy to {@link ObjectPrx}. This call contacts
the server and will throw an Ice run-time exception if the target
object does not exist or the server cannot be reached.
The proxy to cast to ObjectPrx.
b.
Casts a proxy to {@link ObjectPrx}. This call contacts
the server and throws an Ice run-time exception if the target
object does not exist or the server cannot be reached.
The proxy to cast to ObjectPrx.
The Context map for the invocation.
b.
Creates a new proxy that is identical to the passed proxy, except
for its facet. This call contacts
the server and throws an Ice run-time exception if the target
object does not exist, the specified facet does not exist, or the server cannot be reached.
The proxy to cast to ObjectPrx.
The facet for the new proxy.
The new proxy with the specified facet.
Creates a new proxy that is identical to the passed proxy, except
for its facet. This call contacts
the server and throws an Ice run-time exception if the target
object does not exist, the specified facet does not exist, or the server cannot be reached.
The proxy to cast to ObjectPrx.
The facet for the new proxy.
The Context map for the invocation.
The new proxy with the specified facet.
Casts a proxy to {@link ObjectPrx}. This call does
not contact the server and always succeeds.
The proxy to cast to ObjectPrx.
b.
Creates a new proxy that is identical to the passed proxy, except
for its facet. This call does not contact the server and always succeeds.
The proxy to cast to ObjectPrx.
The facet for the new proxy.
The new proxy with the specified facet.
Returns the Slice type id of the interface or class associated
with this proxy class.
The type id, "::Ice::Object".
This class allows a proxy to be used as the key for a hashed collection.
The GetHashCode, Equals, and Compare methods are based on the object identity
of the proxy.
Computes a hash value based on the object identity of the proxy.
The proxy whose hash value to compute.
The hash value for the proxy based on the identity.
Compares two proxies for equality.
A proxy to compare.
A proxy to compare.
True if the passed proxies have the same object
identity; false, otherwise.
Compares two proxies using the object identity for comparison.
A proxy to compare.
A proxy to compare.
< 0 if obj1 is less than obj2; > 0 if obj1 is greater than obj2;
0, otherwise.
This class allows a proxy to be used as the key for a hashed collection.
The GetHashCode, Equals, and Compare methods are based on the object identity and
the facet of the proxy.
Computes a hash value based on the object identity and facet of the proxy.
The proxy whose hash value to compute.
The hash value for the proxy based on the identity and facet.
Compares two proxies for equality.
A proxy to compare.
A proxy to compare.
True if the passed proxies have the same object
identity and facet; false, otherwise.
Compares two proxies using the object identity and facet for comparison.
A proxy to compare.
A proxy to compare.
< 0 if obj1 is less than obj2; > 0 if obj1 is greater than obj2;
0, otherwise.
SlicedData holds the slices of unknown class or exception types.
The details of each slice, in order of most-derived to least-derived.
SliceInfo encapsulates the details of a slice for an unknown class or exception type.
The Slice type ID for this slice.
The Slice compact type ID for this slice.
The encoded bytes for this slice, including the leading size integer.
The Ice objects referenced by this slice.
Whether or not the slice contains optional members.
Whether or not this is the last slice.
Interface for input streams used to extract Slice types from a sequence of bytes.
Returns the communicator for this input stream.
The communicator.
Determines the behavior of the stream when extracting Slice objects.
A Slice object is "sliced" when a factory cannot be found for a Slice type ID.
If true (the default), slicing is enabled; if false,
slicing is disabled. If slicing is disabled and the stream encounters a Slice type ID
during decoding for which no object factory is installed, it raises NoObjectFactoryException.
Extracts a boolean value from the stream.
The extracted boolean.
Extracts a sequence of boolean values from the stream.
The extracted boolean sequence.
Extracts a byte value from the stream.
The extracted byte.
Extracts a sequence of byte values from the stream.
The extracted byte sequence.
Extracts a serializable .NET object from the stream.
The deserialized .NET object.
Extracts a short value from the stream.
The extracted short value.
Extracts a sequence of short values from the stream.
The extracted short sequence.
Extracts an integer value from the stream.
The extracted integer value.
Extracts a sequence of integer values from the stream.
The extracted integer sequence.
Extracts a long value from the stream.
The extracted long value.
Extracts a sequence of long values from the stream.
The extracted long sequence.
Extracts a float value from the stream.
The extracted float value.
Extracts a sequence of float values from the stream.
The extracted float sequence.
Extracts a double value from the stream.
The extracted double value.
Extracts a sequence of double values from the stream.
The extracted double sequence.
Extracts a string from the stream.
The extracted double value.
Extracts a sequence of strings from the stream.
The extracted string sequence.
Extracts a size from the stream.
The extracted size.
Extracts and check a sequence size from the stream. The check ensures not too much memory will
be pre-allocated for the sequence.
The minimum size of an element of the sequence.
The extracted size.
Extracts a proxy from the stream.
The extracted proxy.
Extracts the index of a Slice class from the stream.
The callback to notify the application when the extracted instance is available.
The Ice run time extracts Slice classes in stages. The Ice run time calls ReadObjectCallback.invoke
when the corresponding instance has been fully unmarshaled.
Read an enumerated value.
The maximum enumerator value in the definition.
The enumerator.
Extracts a user exception from the stream and throws it.
Extracts a user exception from the stream and throws it.
Extracts a user exception from the stream and throws it, using the supplied
factory to instantiate a UserExceptionReader.
A factory that creates UserExceptionReader instances.
Marks the start of an Ice object.
Marks the end of an Ice object.
True if unknown slices should be preserved, false otherwise.
A SlicedData object containing the preserved slices for unknown types.
Marks the start of a user exception.
Marks the end of a user exception.
True if unknown slices should be preserved, false otherwise.
A SlicedData object containing the preserved slices for unknown types.
Reads the start of an object or exception slice.
The Slice type ID for this slice.
Indicates that the end of an object or exception slice has been reached.
Skips over an object or exception slice.
Reads the start of an encapsulation.
The encapsulation encoding version.
Indicates that the end of an encapsulation has been reached.
Skips over an encapsulation.
The encapsulation encoding version.
Determines the current encoding version.
The encoding version.
Indicates that unmarshaling is complete, except for any Slice objects. The application must
call this method only if the stream actually contains Slice objects. Calling readPendingObjects
triggers the calls to ReadObjectCallback.invoke that inform the application that unmarshaling
of a Slice object is complete.
Resets the read position of the stream to the beginning.
Skips ahead in the stream.
The number of bytes to skip.
Skips over a size value.
Determine if an optional value is available for reading.
The tag associated with the value.
The optional format for the value.
True if the value is present, false otherwise.
Determine the current position in the stream.
The current position.
Destroys the stream and its associated resources. The application must call destroy prior
to releasing the last reference to a stream; failure to do so may result in resource leaks.
Interface for output streams used to write Slice types to a sequence
of bytes.
Returns the communicator for this output stream.
Writes a boolean to the stream.
The boolean to write to the stream.
Writes a sequence of booleans to the stream.
The sequence of booleans to write.
Passing null causes an empty sequence to be written to the stream.
Writes a byte to the stream.
The byte to write to the stream.
Writes a sequence of bytes to the stream.
The sequence of bytes to write.
Passing null causes an empty sequence to be written to the stream.
Writes a serializable .NET object to the stream.
The serializable object to write.
Writes a short to the stream.
The short to write to the stream.
Writes a sequence of shorts to the stream.
The sequence of shorts to write.
Passing null causes an empty sequence to be written to the stream.
Writes an integer to the stream.
The integer to write to the stream.
Writes a sequence of integers to the stream.
The sequence of integers to write.
Passing null causes an empty sequence to be written to the stream.
Writes a long to the stream.
The long to write to the stream.
Writes a sequence of longs to the stream.
The sequence of longs to write.
Passing null causes an empty sequence to be written to the stream.
Writes a float to the stream.
The float to write to the stream.
Writes a sequence of floats to the stream.
The sequence of floats to write.
Passing null causes an empty sequence to be written to the stream.
Writes a double to the stream.
The double to write to the stream.
Writes a sequence of doubles to the stream.
The sequence of doubles to write.
Passing null causes an empty sequence to be written to the stream.
Writes a string to the stream.
The string to write to the stream.
Passing null causes an empty string to be written to the stream.
Writes a sequence of strings to the stream.
The sequence of strings to write.
Passing null causes an empty sequence to be written to the stream.
Writes a size to the stream.
The size to write.
Writes a proxy to the stream.
The proxy to write.
Writes a Slice class to the stream.
The class to write. This method writes the index of a Slice class; the state of the
class is written once writePendingObjects is called.
Write an enumerated value.
The enumerator.
The number of enumerators in the definition.
Writes a user exception to the stream.
The user exception to write.
Marks the start of an Ice object.
Preserved slices for this object, or null.
Marks the end of an Ice object.
Marks the start of a user exception.
Preserved slices for this object, or null.
Marks the end of a user exception.
Marks the start of a new slice for an Ice object or user exception.
The Slice type ID corresponding to this slice.
The Slice compact type ID corresponding to this slice.
True if this is the last slice, false otherwise.
Marks the end of a slice for an Ice object or user exception.
Writes the start of an encapsulation to the stream.
The encoding version of the encapsulation.
The format to use for encoding objects and user exceptions.
Writes the start of an encapsulation to the stream.
Ends the previous encapsulation.
Determines the current encoding version.
The encoding version.
Writes the state of Slice classes whose index was previously
written with writeObject to the stream.
Write the header information for an optional value.
The numeric tag associated with the value.
The optional format of the value.
True if the optional should be written, false otherwise.
Determines the current position in the stream.
The current position.
Inserts a fixed 32-bit size value into the stream at the given position.
The 32-bit size value.
The position at which to write the value.
Returns the current position and allocates four bytes for a fixed-length (32-bit)
size value.
The current position.
Computes the amount of data written since the previous call to startSize and
writes that value at the saved position.
The saved position at which to write the size.
Indicates that the marshaling of a request or reply is finished.
The byte sequence containing the encoded request or reply.
Resets this output stream. This method allows the stream to be reused, to avoid creating
unnecessary garbage.
If true, the stream's internal buffer becomes eligible for
garbage collection; if false, the stream's internal buffer is retained, to avoid
creating unnecessary garbage. If retained, the internal buffer may be resized to a smaller
capacity. Either way, reset resets the stream's writing position to zero.
Destroys the stream and its associated resources. The application must call destroy prior
to releasing the last reference to a stream; failure to do so may result in resource leaks.
Base class for extracting objects from an input stream.
Read the object's data members.
The input stream to read from.
Base class for writing objects to an output stream.
Writes the state of this Slice class to an output stream.
The stream to write to.
Class to support thread notification hooks. Applications using
thread notification hooks instantiate a ThreadHookPlugin with a
thread notification hook and return the instance from their
PluginFactory implementation.
Installs a custom logger for a communicator.
The communicator using the thread notification hook.
The thread notification hook for the communicator.
Called by the Ice run time during communicator initialization. The derived class
can override this method to perform any initialization that might be required
by the thread notification hook.
Called by the Ice run time when the communicator is destroyed. The derived class
can override this method to perform any finalization that might be required
by thread notification hook.
Interface for servants using the tie mapping.
Returns the delegate for this tie.
The delegate.
Returns the delegate for this tie.
The delegate.
Unknown sliced object holds an instance of unknown type.
Instantiates the class for an Ice object having the given Slice type.
The Slice type ID of the unknown object.
Determine the Slice type ID associated with this object.
The type ID.
Interface for thread notification hooks. Applications can derive
a class tat implements the start and stop
methods to intercept creation and destruction of threads created
by the Ice run time.
The Ice run time calls start for each new
thread it creates. The call is made by the newly-started thread.
The Ice run time calls stop before it destroys
a thread. The call is made by thread that is about to be
destroyed.
A delegate for the dispatcher. The dispatcher is called by the Ice
runtime to dispatch servant calls and AMI callbacks.
Applications that make use of compact type IDs to conserve space
when marshaling class instances, and also use the streaming API to
extract such classes, can intercept the translation between compact
type IDs and their corresponding string type IDs by installing an
instance of CompactIdResolver in InitializationData.
A class that encpasulates data to initialize a communicator.
Creates and returns a copy of this object.
The properties for the communicator.
The logger for the communicator.
The communicator observer used by the Ice run-time.
The thread hook for the communicator.
The dispatcher for the communicator.
The compact type ID resolver.
The batch request interceptor.
Utility methods for the Ice run time.
Creates a new empty property set.
A new empty property set.
Creates a property set initialized from an argument vector.
A command-line argument vector, possibly containing
options to set properties. If the command-line options include
a --Ice.Config option, the corresponding configuration
files are parsed. If the same property is set in a configuration
file and in the argument vector, the argument vector takes precedence.
This method modifies the argument vector by removing any Ice-related options.
A property set initialized with the property settings
that were removed from args.
Creates a property set initialized from an argument vector.
A command-line argument vector, possibly containing
options to set properties. If the command-line options include
a --Ice.Config option, the corresponding configuration
files are parsed. If the same property is set in a configuration
file and in the argument vector, the argument vector takes precedence.
This method modifies the argument vector by removing any Ice-related options.
Default values for the property set. Settings in configuration
files and args override these defaults.
A property set initialized with the property settings
that were removed from args.
Creates a communicator.
A command-line argument vector. Any Ice-related options
in this vector are used to intialize the communicator.
This method modifies the argument vector by removing any Ice-related options.
The initialized communicator.
Creates a communicator.
A command-line argument vector. Any Ice-related options
in this vector are used to intialize the communicator.
This method modifies the argument vector by removing any Ice-related options.
Additional intialization data. Property settings in args
override property settings in initData.
The initialized communicator.
Creates a communicator.
Additional intialization data.
The initialized communicator.
Creates a communicator using a default configuration.
Converts a string to an object identity.
The string to convert.
The converted object identity.
Converts an object identity to a string.
The object identity to convert.
The string representation of the object identity.
This method is deprecated. Use System.Guid instead.
Compares the object identities of two proxies.
A proxy.
A proxy.
-1 if the identity in lhs compares
less than the identity in rhs; 0 if the identities
compare equal; 1, otherwise.
Compares the object identities and facets of two proxies.
A proxy.
A proxy.
-1 if the identity and facet in lhs compare
less than the identity and facet in rhs; 0 if the identities
and facets compare equal; 1, otherwise.
Creates an input stream for dynamic invocation and dispatch. The stream uses
the communicator's default encoding version. The given data is copied.
The communicator for the stream.
An encoded request or reply.
The input stream.
Creates an input stream for dynamic invocation and dispatch. The stream uses
the given encoding version.
The communicator for the stream.
An encoded request or reply.
The desired encoding version.
The input stream.
Wraps encoded data with an input stream for dynamic invocation and dispatch.
The stream uses the communicator's default encoding version.
The communicator for the stream.
An encoded request or reply.
The input stream.
Wraps encoded data with an input stream for dynamic invocation and dispatch.
The stream uses the given encoding version.
The communicator for the stream.
An encoded request or reply.
The desired encoding version.
The input stream.
Creates an output stream for dynamic invocation and dispatch. The stream uses
the communicator's default encoding version.
The communicator for the stream.
The output stream.
Creates an output stream for dynamic invocation and dispatch. The stream uses
the given encoding version.
The communicator for the stream.
The desired encoding version.
The output stream.
Returns the process-wide logger.
The process-wide logger.
Changes the process-wide logger.
The new process-wide logger.
Returns the Ice version in the form A.B.C, where A indicates the
major version, B indicates the minor version, and C indicates the
patch level.
The Ice version.
Returns the Ice version as an integer in the form A.BB.CC, where A
indicates the major version, BB indicates the minor version, and CC
indicates the patch level. For example, for Ice 3.3.1, the returned value is 30301.
The Ice version.
Converts a string to a protocol version.
The string to convert.
The converted protocol version.
Converts a string to an encoding version.
The string to convert.
The converted object identity.
Converts a protocol version to a string.
The protocol version to convert.
The converted string.
Converts an encoding version to a string.
The encoding version to convert.
The converted string.
This method is called by the the connection when a heartbeat is
received from the peer.
This method is called by the the connection when the connection
is closed.
This exception is raised when a failure occurs during initialization.
This exception indicates that a failure occurred while initializing
a plug-in.
This exception is raised if a feature is requested that is not
supported with collocation optimization.
this exception isn't used anymore by the Ice runtime
An attempt was made to register something more than once with
the Ice run time.
This exception is raised if an attempt is made to register a
servant, servant locator, facet, object factory, plug-in, object
adapter, object, or user exception factory more than once for the
same ID.
An attempt was made to find or deregister something that is not
registered with the Ice run time or Ice locator.
This exception is raised if an attempt is made to remove a servant,
servant locator, facet, object factory, plug-in, object adapter,
object, or user exception factory that is not currently registered.
It's also raised if the Ice locator can't find an object or object
adapter when resolving an indirect proxy or when an object adapter
is activated.
The operation can only be invoked with a twoway request.
This exception is raised if an attempt is made to invoke an
operation with ice_oneway, ice_batchOneway, ice_datagram,
or ice_batchDatagram and the operation has a return value,
out-parameters, or an exception specification.
An attempt was made to clone a class that does not support
cloning.
This exception is raised if ice_clone is called on
a class that is derived from an abstract Slice class (that is,
a class containing operations), and the derived class does not
provide an implementation of the ice_clone operation (C++ only).
This exception is raised if an operation call on a server raises an
unknown exception.
For example, for C++, this exception is raised
if the server throws a C++ exception that is not directly or
indirectly derived from Ice::LocalException or
Ice::UserException.
This exception is raised if an operation call on a server raises a
local exception.
Because local exceptions are not transmitted by
the Ice protocol, the client receives all local exceptions raised
by the server as UnknownLocalException. The only exception to this
rule are all exceptions derived from RequestFailedException,
which are transmitted by the Ice protocol even though they are
declared local.
An operation raised an incorrect user exception.
This exception is raised if an operation raises a
user exception that is not declared in the exception's
throws clause. Such undeclared exceptions are
not transmitted from the server to the client by the Ice
protocol, but instead the client just gets an
UnknownUserException. This is necessary in order to not violate
the contract established by an operation's signature: Only local
exceptions and user exceptions declared in the
throws clause can be raised.
This exception is raised if the Ice library version does not match
the version in the Ice header files.
This exception is raised if the Communicator has been destroyed.
This exception is raised if an attempt is made to use a deactivated
ObjectAdapter.
This exception is raised if an ObjectAdapter cannot be activated.
This happens if the Locator detects another active ObjectAdapter with
the same adapter id.
This exception is raised if no suitable endpoint is available.
This exception is raised if there was an error while parsing an
endpoint.
This exception is raised if there was an error while parsing an
endpoint selection type.
This exception is raised if there was an error while parsing a
version.
This exception is raised if there was an error while parsing a
stringified identity.
This exception is raised if there was an error while parsing a
stringified proxy.
This exception is raised if an illegal identity is encountered.
This exception is raised to reject an illegal servant (typically
a null servant)
This exception is raised if a request failed.
This exception, and
all exceptions derived from RequestFailedException, are
transmitted by the Ice protocol, even though they are declared
local.
This exception is raised if an object does not exist on the server,
that is, if no facets with the given identity exist.
This exception is raised if no facet with the given name exists,
but at least one facet with the given identity exists.
This exception is raised if an operation for a given object does
not exist on the server.
Typically this is caused by either the
client or the server using an outdated Slice specification.
This exception is raised if a system error occurred in the server
or client process.
There are many possible causes for such a system
exception. For details on the cause, SyscallException.error
should be inspected.
This exception indicates socket errors.
This exception indicates file errors.
This exception indicates connection failures.
This exception indicates a connection failure for which
the server host actively refuses a connection.
This exception indicates a lost connection.
This exception indicates a DNS problem.
For details on the cause,
DNSException.error should be inspected.
This exception indicates a request was interrupted.
This exception indicates a timeout condition.
This exception indicates a connection establishment timeout condition.
This exception indicates a connection closure timeout condition.
This exception indicates that a connection has been shut down because it has been
idle for some time.
This exception indicates that an invocation failed because it timed
out.
This exception indicates that an asynchronous invocation failed
because it was canceled explicitly by the user using the
Ice::AsyncResult::cancel method.
A generic exception base for all kinds of protocol error
conditions.
This exception indicates that a message did not start with the expected
magic number ('I', 'c', 'e', 'P').
This exception indicates an unsupported protocol version.
This exception indicates an unsupported data encoding version.
This exception indicates that an unknown protocol message has been received.
This exception is raised if a message is received over a connection
that is not yet validated.
This exception indicates that a response for an unknown request ID has been
received.
This exception indicates that an unknown reply status has been received.
This exception indicates that the connection has been gracefully shut down by the
server.
The operation call that caused this exception has not been
executed by the server. In most cases you will not get this
exception, because the client will automatically retry the
operation call in case the server shut down the connection. However,
if upon retry the server shuts down the connection again, and the
retry limit has been reached, then this exception is propagated to
the application code.
This exception is raised by an operation call if the application
forcefully closes the connection Connection.close.
This exception indicates that a message size is less
than the minimum required size.
This exception indicates a problem with compressing or uncompressing data.
A datagram exceeds the configured size.
This exception is raised if a datagram exceeds the configured send or receive buffer
size, or exceeds the maximum payload size of a UDP packet (65507 bytes).
This exception is raised for errors during marshaling or unmarshaling data.
This exception is raised if inconsistent data is received while unmarshaling a proxy.
This exception is raised if an out-of-bounds condition occurs during unmarshaling.
This exception is raised if no suitable object factory was found during
unmarshaling of a Slice class instance.
This exception is raised if the type of an unmarshaled Slice class instance does
not match its expected type.
This can happen if client and server are compiled with mismatched Slice
definitions or if a class of the wrong type is passed as a parameter
or return value using dynamic invocation. This exception can also be
raised if IceStorm is used to send Slice class instances and
an operation is subscribed to the wrong topic.
This exception is raised when Ice receives a request or reply
message whose size exceeds the limit specified by the
Ice.MessageSizeMax property.
This exception is raised when a string conversion to or from UTF-8
fails during marshaling or unmarshaling.
This exception indicates a malformed data encapsulation.
This exception is raised if an unsupported feature is used.
The
unsupported feature string contains the name of the unsupported
feature
This exception indicates a failure in a security subsystem,
such as the IceSSL plug-in.
This exception indicates that an attempt has been made to
change the connection properties of a fixed proxy.
Indicates that the response to a request has already been sent;
re-dispatching such a request is not possible.
This exception is raised if an adapter cannot be found.
This exception is raised if the replica group provided by the
server is invalid.
This exception is raised if a server tries to set endpoints for
an adapter that is already active.
This exception is raised if an object cannot be found.
This exception is raised if a server cannot be found.
The Ice locator interface.
This interface is used by clients to
lookup adapters and objects. It is also used by servers to get the
locator registry proxy.
The Locator interface is intended to be used by
Ice internals and by locator implementations. Regular user code
should not attempt to use any functionality of this interface
directly.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The callback object for the operation.
The identity.
The Current object for the invocation.
Find an adapter by id and return a proxy that contains
its endpoints.
The callback object for the operation.
The adapter id.
The Current object for the invocation.
Get the locator registry.
The locator registry.
The Current object for the invocation.
The Ice locator interface.
This interface is used by clients to
lookup adapters and objects. It is also used by servers to get the
locator registry proxy.
The Locator interface is intended to be used by
Ice internals and by locator implementations. Regular user code
should not attempt to use any functionality of this interface
directly.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The callback object for the operation.
The identity.
Find an adapter by id and return a proxy that contains
its endpoints.
The callback object for the operation.
The adapter id.
Get the locator registry.
The locator registry.
The Ice locator registry interface.
This interface is used by
servers to register adapter endpoints with the locator.
The LocatorRegistry interface is intended to be used
by Ice internals and by locator implementations. Regular user
code should not attempt to use any functionality of this interface
directly.
Set the adapter endpoints with the locator registry.
The callback object for the operation.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
The Current object for the invocation.
Set the adapter endpoints with the locator registry.
The callback object for the operation.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
The Current object for the invocation.
Set the process proxy for a server.
The callback object for the operation.
The server id.
The process proxy.
The Current object for the invocation.
The Ice locator registry interface.
This interface is used by
servers to register adapter endpoints with the locator.
The LocatorRegistry interface is intended to be used
by Ice internals and by locator implementations. Regular user
code should not attempt to use any functionality of this interface
directly.
Set the adapter endpoints with the locator registry.
The callback object for the operation.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Set the adapter endpoints with the locator registry.
The callback object for the operation.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Set the process proxy for a server.
The callback object for the operation.
The server id.
The process proxy.
This inferface should be implemented by services implementing the
Ice::Locator interface.
It should be advertised through an Ice
object with the identity `Ice/LocatorFinder'. This allows clients
to retrieve the locator proxy with just the endpoint information of
the service.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The locator proxy.
The Current object for the invocation.
This inferface should be implemented by services implementing the
Ice::Locator interface.
It should be advertised through an Ice
object with the identity `Ice/LocatorFinder'. This allows clients
to retrieve the locator proxy with just the endpoint information of
the service.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The locator proxy.
The Ice locator interface.
This interface is used by clients to
lookup adapters and objects. It is also used by servers to get the
locator registry proxy.
The Locator interface is intended to be used by
Ice internals and by locator implementations. Regular user code
should not attempt to use any functionality of this interface
directly.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The identity.
The proxy, or null if the object is not active.
Raised if the object cannot
be found.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The identity.
The proxy, or null if the object is not active.
Raised if the object cannot
be found.
The Context map to send with the invocation.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The identity.
An asynchronous result object.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The identity.
The Context map to send with the invocation.
An asynchronous result object.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The identity.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The identity.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
The asynchronous result object for the invocation.
The proxy, or null if the object is not active.
Find an adapter by id and return a proxy that contains
its endpoints.
The adapter id.
The adapter proxy, or null if the adapter is not active.
Raised if the adapter cannot be
found.
Find an adapter by id and return a proxy that contains
its endpoints.
The adapter id.
The adapter proxy, or null if the adapter is not active.
Raised if the adapter cannot be
found.
The Context map to send with the invocation.
Find an adapter by id and return a proxy that contains
its endpoints.
The adapter id.
An asynchronous result object.
Find an adapter by id and return a proxy that contains
its endpoints.
The adapter id.
The Context map to send with the invocation.
An asynchronous result object.
Find an adapter by id and return a proxy that contains
its endpoints.
The adapter id.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Find an adapter by id and return a proxy that contains
its endpoints.
The adapter id.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Find an adapter by id and return a proxy that contains
its endpoints.
The asynchronous result object for the invocation.
The adapter proxy, or null if the adapter is not active.
Get the locator registry.
The locator registry.
Get the locator registry.
The locator registry.
The Context map to send with the invocation.
Get the locator registry.
An asynchronous result object.
Get the locator registry.
The Context map to send with the invocation.
An asynchronous result object.
Get the locator registry.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the locator registry.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the locator registry.
The asynchronous result object for the invocation.
The locator registry.
The Ice locator registry interface.
This interface is used by
servers to register adapter endpoints with the locator.
The LocatorRegistry interface is intended to be used
by Ice internals and by locator implementations. Regular user
code should not attempt to use any functionality of this interface
directly.
Set the adapter endpoints with the locator registry.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Raised if the adapter cannot
be found, or if the locator only allows
registered adapters to set their active proxy and the
adapter is not registered with the locator.
Raised if an adapter with the same
id is already active.
Set the adapter endpoints with the locator registry.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Raised if the adapter cannot
be found, or if the locator only allows
registered adapters to set their active proxy and the
adapter is not registered with the locator.
Raised if an adapter with the same
id is already active.
The Context map to send with the invocation.
Set the adapter endpoints with the locator registry.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
The Context map to send with the invocation.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The adapter id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The asynchronous result object for the invocation.
Set the adapter endpoints with the locator registry.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Raised if the adapter cannot
be found, or if the locator only allows registered adapters to
set their active proxy and the adapter is not registered with
the locator.
Raised if an adapter with the same
id is already active.
Raised if the given
replica group doesn't match the one registered with the
locator registry for this object adapter.
Set the adapter endpoints with the locator registry.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Raised if the adapter cannot
be found, or if the locator only allows registered adapters to
set their active proxy and the adapter is not registered with
the locator.
Raised if an adapter with the same
id is already active.
Raised if the given
replica group doesn't match the one registered with the
locator registry for this object adapter.
The Context map to send with the invocation.
Set the adapter endpoints with the locator registry.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
The Context map to send with the invocation.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The adapter id.
The replica group id.
The adapter proxy (a dummy direct proxy created
by the adapter). The direct proxy contains the adapter
endpoints.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Set the adapter endpoints with the locator registry.
The asynchronous result object for the invocation.
Set the process proxy for a server.
The server id.
The process proxy.
Raised if the server cannot
be found.
Set the process proxy for a server.
The server id.
The process proxy.
Raised if the server cannot
be found.
The Context map to send with the invocation.
Set the process proxy for a server.
The server id.
The process proxy.
An asynchronous result object.
Set the process proxy for a server.
The server id.
The process proxy.
The Context map to send with the invocation.
An asynchronous result object.
Set the process proxy for a server.
The server id.
The process proxy.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Set the process proxy for a server.
The server id.
The process proxy.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Set the process proxy for a server.
The asynchronous result object for the invocation.
This inferface should be implemented by services implementing the
Ice::Locator interface.
It should be advertised through an Ice
object with the identity `Ice/LocatorFinder'. This allows clients
to retrieve the locator proxy with just the endpoint information of
the service.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The locator proxy.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The locator proxy.
The Context map to send with the invocation.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
An asynchronous result object.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The Context map to send with the invocation.
An asynchronous result object.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the locator proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The asynchronous result object for the invocation.
The locator proxy.
Find an object by identity and return a proxy that contains
the adapter ID or endpoints which can be used to access the
object.
ice_response indicates that
the operation completed successfully.
(return value) The proxy, or null if the object is not active.
Find an adapter by id and return a proxy that contains
its endpoints.
ice_response indicates that
the operation completed successfully.
(return value) The adapter proxy, or null if the adapter is not active.
Set the adapter endpoints with the locator registry.
ice_response indicates that
the operation completed successfully.
Set the adapter endpoints with the locator registry.
ice_response indicates that
the operation completed successfully.
Set the process proxy for a server.
ice_response indicates that
the operation completed successfully.
Raised if a metrics view cannot be found.
The base class for metrics.
A metrics object represents a
collection of measurements associated to a given a system.
The metrics administrative facet interface.
This interface allows
remote administrative clients to access metrics of an application
that enabled the Ice administrative facility and configured some
metrics views.
Get the names of enabled and disabled metrics.
The names of the disabled views.
The name of the enabled views.
Get the names of enabled and disabled metrics.
The names of the disabled views.
The name of the enabled views.
The Context map to send with the invocation.
Get the names of enabled and disabled metrics.
An asynchronous result object.
Get the names of enabled and disabled metrics.
The Context map to send with the invocation.
An asynchronous result object.
Get the names of enabled and disabled metrics.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the names of enabled and disabled metrics.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the names of enabled and disabled metrics.
The names of the disabled views.
The asynchronous result object for the invocation.
The name of the enabled views.
Enables a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
Enables a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
The Context map to send with the invocation.
Enables a metrics view.
The metrics view name.
An asynchronous result object.
Enables a metrics view.
The metrics view name.
The Context map to send with the invocation.
An asynchronous result object.
Enables a metrics view.
The metrics view name.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Enables a metrics view.
The metrics view name.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Enables a metrics view.
The asynchronous result object for the invocation.
Disable a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
Disable a metrics view.
The metrics view name.
Raised if the metrics view cannot be
found.
The Context map to send with the invocation.
Disable a metrics view.
The metrics view name.
An asynchronous result object.
Disable a metrics view.
The metrics view name.
The Context map to send with the invocation.
An asynchronous result object.
Disable a metrics view.
The metrics view name.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Disable a metrics view.
The metrics view name.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Disable a metrics view.
The asynchronous result object for the invocation.
Get the metrics objects for the given metrics view.
This
returns a dictionnary of metric maps for each metrics class
configured with the view. The timestamp allows the client to
compute averages which are not dependent of the invocation
latency for this operation.
The name of the metrics view.
The local time of the process when the metrics
object were retrieved.
The metrics view data.
Raised if the metrics view cannot be
found.
Get the metrics objects for the given metrics view.
This
returns a dictionnary of metric maps for each metrics class
configured with the view. The timestamp allows the client to
compute averages which are not dependent of the invocation
latency for this operation.
The name of the metrics view.
The local time of the process when the metrics
object were retrieved.
The metrics view data.
Raised if the metrics view cannot be
found.
The Context map to send with the invocation.
Get the metrics objects for the given metrics view.
This
The name of the metrics view.
An asynchronous result object.
Get the metrics objects for the given metrics view.
This
The name of the metrics view.
The Context map to send with the invocation.
An asynchronous result object.
Get the metrics objects for the given metrics view.
This
The name of the metrics view.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the metrics objects for the given metrics view.
This
The name of the metrics view.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the metrics objects for the given metrics view.
This
The local time of the process when the metrics
object were retrieved.
The asynchronous result object for the invocation.
The metrics view data.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
The metrics failures associated with the map.
Raised if the metrics view cannot be
found.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
The metrics failures associated with the map.
Raised if the metrics view cannot be
found.
The Context map to send with the invocation.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
An asynchronous result object.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
The Context map to send with the invocation.
An asynchronous result object.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the metrics failures associated with the given view and map.
The name of the metrics view.
The name of the metrics map.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the metrics failures associated with the given view and map.
The asynchronous result object for the invocation.
The metrics failures associated with the map.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
The metrics failures associated with the metrics.
Raised if the metrics view cannot be
found.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
The metrics failures associated with the metrics.
Raised if the metrics view cannot be
found.
The Context map to send with the invocation.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
An asynchronous result object.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
The Context map to send with the invocation.
An asynchronous result object.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the metrics failure associated for the given metrics.
The name of the metrics view.
The name of the metrics map.
The ID of the metrics.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the metrics failure associated for the given metrics.
The asynchronous result object for the invocation.
The metrics failures associated with the metrics.
Provides information on the number of threads currently in use and
their activity.
Provides information on servant dispatch.
Provides information on child invocations.
A child invocation is
either remote (sent over an Ice connection) or collocated. An
invocation can have multiple child invocation if it is
retried. Child invocation metrics are embedded within InvocationMetrics.
Provides information on invocations that are collocated.
Collocated
metrics are embedded within InvocationMetrics.
Provides information on invocations that are specifically sent over
Ice connections.
Remote metrics are embedded within InvocationMetrics.
Provide measurements for proxy invocations.
Proxy invocations can
either be sent over the wire or be collocated.
Provides information on the data sent and received over Ice
connections.
Create a new object for a given object type.
The type is the
absolute Slice type id, i.e., the id relative to the
unnamed top-level Slice module. For example, the absolute
Slice type id for interfaces of type Bar in the module
Foo is ::Foo::Bar.
The leading "::" is required.
The object type.
The object created for the given type, or nil if the
factory is unable to create the object.
Called when the factory is removed from the communicator, or if
the communicator is destroyed.
An administrative interface for process management.
Managed servers must
implement this interface.
A servant implementing this interface is a potential target
for denial-of-service attacks, therefore proper security precautions
should be taken. For example, the servant can use a UUID to make its
identity harder to guess, and be registered in an object adapter with
a secured endpoint.
Initiate a graceful shut-down.
Initiate a graceful shut-down.
The Context map to send with the invocation.
Initiate a graceful shut-down.
An asynchronous result object.
Initiate a graceful shut-down.
The Context map to send with the invocation.
An asynchronous result object.
Initiate a graceful shut-down.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Initiate a graceful shut-down.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Initiate a graceful shut-down.
The asynchronous result object for the invocation.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
The Context map to send with the invocation.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
An asynchronous result object.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
The Context map to send with the invocation.
An asynchronous result object.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Write a message on the process' stdout or stderr.
The message.
1 for stdout, 2 for stderr.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Write a message on the process' stdout or stderr.
The asynchronous result object for the invocation.
The PropertiesAdmin interface provides remote access to the properties
of a communicator.
Get a property by key.
If the property is not set, an empty
string is returned.
The property key.
The property value.
Get a property by key.
If the property is not set, an empty
string is returned.
The property key.
The property value.
The Context map to send with the invocation.
Get a property by key.
If the property is not set, an empty
The property key.
An asynchronous result object.
Get a property by key.
If the property is not set, an empty
The property key.
The Context map to send with the invocation.
An asynchronous result object.
Get a property by key.
If the property is not set, an empty
The property key.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get a property by key.
If the property is not set, an empty
The property key.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get a property by key.
If the property is not set, an empty
The asynchronous result object for the invocation.
The property value.
Get all properties whose keys begin with prefix.
If
prefix is an empty string then all properties are returned.
The prefix to search for (empty string if none).
The matching property set.
Get all properties whose keys begin with prefix.
If
prefix is an empty string then all properties are returned.
The prefix to search for (empty string if none).
The matching property set.
The Context map to send with the invocation.
Get all properties whose keys begin with prefix.
If
The prefix to search for (empty string if none).
An asynchronous result object.
Get all properties whose keys begin with prefix.
If
The prefix to search for (empty string if none).
The Context map to send with the invocation.
An asynchronous result object.
Get all properties whose keys begin with prefix.
If
The prefix to search for (empty string if none).
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get all properties whose keys begin with prefix.
If
The prefix to search for (empty string if none).
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get all properties whose keys begin with prefix.
If
The asynchronous result object for the invocation.
The matching property set.
Update the communicator's properties with the given property set.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
Update the communicator's properties with the given property set.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
The Context map to send with the invocation.
Update the communicator's properties with the given property set.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
An asynchronous result object.
Update the communicator's properties with the given property set.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
The Context map to send with the invocation.
An asynchronous result object.
Update the communicator's properties with the given property set.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Update the communicator's properties with the given property set.
Properties to be added, changed, or removed.
If an entry in newProperties matches the name of an existing property,
that property's value is replaced with the new value. If the new value
is an empty string, the property is removed. Any existing properties
that are not modified or removed by the entries in newProperties are
retained with their original values.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Update the communicator's properties with the given property set.
The asynchronous result object for the invocation.
Update the communicator's properties with the given property set.
ice_response indicates that
the operation completed successfully.
The Ice remote logger interface.
An application can implement a
RemoteLogger to receive the log messages sent to the local Logger
of another Ice application.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
The Current object for the invocation.
Log a LogMessage.
Note that log may be called by LoggerAdmin
before init.
The message to log.
The Current object for the invocation.
The Ice remote logger interface.
An application can implement a
RemoteLogger to receive the log messages sent to the local Logger
of another Ice application.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
Log a LogMessage.
Note that log may be called by LoggerAdmin
before init.
The message to log.
An exception thrown by LoggerAdmin.attachRemoteLogger to report
that the provided RemoteLogger was previously attached to this
LoggerAdmin.
The Ice remote logger interface.
An application can implement a
RemoteLogger to receive the log messages sent to the local Logger
of another Ice application.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
The Context map to send with the invocation.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
An asynchronous result object.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
The Context map to send with the invocation.
An asynchronous result object.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The prefix of the associated local Logger
Old log messages generated before "now".
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
init is called by LoggerAdmin.attachRemoteLogger when a
RemoteLogger proxy is attached.
The asynchronous result object for the invocation.
Log a LogMessage.
Note that log may be called by LoggerAdmin
before init.
The message to log.
Log a LogMessage.
Note that log may be called by LoggerAdmin
before init.
The message to log.
The Context map to send with the invocation.
Log a LogMessage.
Note that log may be called by LoggerAdmin
The message to log.
An asynchronous result object.
Log a LogMessage.
Note that log may be called by LoggerAdmin
The message to log.
The Context map to send with the invocation.
An asynchronous result object.
Log a LogMessage.
Note that log may be called by LoggerAdmin
The message to log.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Log a LogMessage.
Note that log may be called by LoggerAdmin
The message to log.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Log a LogMessage.
Note that log may be called by LoggerAdmin
The asynchronous result object for the invocation.
The interface of the admin object that allows an Ice application the attach its
RemoteLogger to the Logger of this admin object's Ice communicator.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
Raised if this remote logger is already
attached to this admin object.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
Raised if this remote logger is already
attached to this admin object.
The Context map to send with the invocation.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
An asynchronous result object.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
The Context map to send with the invocation.
An asynchronous result object.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
A proxy to the remote logger.
The list of message types that the remote logger wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that the remote logger wishes to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be provided
to RemoteLogger.init. A negative value requests all messages available.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
attachRemoteLogger is called to attach a RemoteLogger object to
the local Logger.
attachRemoteLogger calls init on the provided RemoteLogger proxy.
The asynchronous result object for the invocation.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
True if the provided remote logger proxy was detached, and false otherwise.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
True if the provided remote logger proxy was detached, and false otherwise.
The Context map to send with the invocation.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
An asynchronous result object.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
The Context map to send with the invocation.
An asynchronous result object.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
A proxy to the remote logger.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
detachRemoteLogger is called to detach a RemoteLogger object from
the local Logger.
The asynchronous result object for the invocation.
True if the provided remote logger proxy was detached, and false otherwise.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
The prefix of the associated local Logger.
The Log messages.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
The prefix of the associated local Logger.
The Log messages.
The Context map to send with the invocation.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
An asynchronous result object.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
The Context map to send with the invocation.
An asynchronous result object.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
getLog retrieves log messages recently logged.
The list of message types that the caller wishes to receive.
An empty list means no filtering (send all message types).
The categories of traces that caller wish to receive.
This parameter is ignored if messageTypes is not empty and does not include trace.
An empty list means no filtering (send all trace categories).
The maximum number of log messages (of all types) to be returned.
A negative value requests all messages available.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
getLog retrieves log messages recently logged.
The prefix of the associated local Logger.
The asynchronous result object for the invocation.
The Log messages.
The Ice router interface.
Routers can be set either globally with
Communicator.setDefaultRouter, or with ice_router on specific
proxies.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
to the router's endpoints.
The router's client proxy.
The Current object for the invocation.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
The router's server proxy.
The Current object for the invocation.
Add new proxy information to the router's routing table.
The proxies to add.
Proxies discarded by the router.
The Current object for the invocation.
The Ice router interface.
Routers can be set either globally with
Communicator.setDefaultRouter, or with ice_router on specific
proxies.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
to the router's endpoints.
The router's client proxy.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
The router's server proxy.
Add new proxy information to the router's routing table.
The proxies to add.
Proxies discarded by the router.
This inferface should be implemented by services implementing the
Ice::Router interface.
It should be advertised through an Ice
object with the identity `Ice/RouterFinder'. This allows clients to
retrieve the router proxy with just the endpoint information of the
service.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The router proxy.
The Current object for the invocation.
This inferface should be implemented by services implementing the
Ice::Router interface.
It should be advertised through an Ice
object with the identity `Ice/RouterFinder'. This allows clients to
retrieve the router proxy with just the endpoint information of the
service.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The router proxy.
The Ice router interface.
Routers can be set either globally with
Communicator.setDefaultRouter, or with ice_router on specific
proxies.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
to the router's endpoints.
The router's client proxy.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
to the router's endpoints.
The router's client proxy.
The Context map to send with the invocation.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
An asynchronous result object.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
The Context map to send with the invocation.
An asynchronous result object.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the router's client proxy, i.e., the proxy to use for
forwarding requests from the client to the router.
If a null proxy is returned, the client will forward requests
The asynchronous result object for the invocation.
The router's client proxy.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
The router's server proxy.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
The router's server proxy.
The Context map to send with the invocation.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
An asynchronous result object.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
The Context map to send with the invocation.
An asynchronous result object.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the router's server proxy, i.e., the proxy to use for
forwarding requests from the server to the router.
The asynchronous result object for the invocation.
The router's server proxy.
Add new proxy information to the router's routing table.
The proxies to add.
Proxies discarded by the router.
Add new proxy information to the router's routing table.
The proxies to add.
Proxies discarded by the router.
The Context map to send with the invocation.
Add new proxy information to the router's routing table.
The proxies to add.
An asynchronous result object.
Add new proxy information to the router's routing table.
The proxies to add.
The Context map to send with the invocation.
An asynchronous result object.
Add new proxy information to the router's routing table.
The proxies to add.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Add new proxy information to the router's routing table.
The proxies to add.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Add new proxy information to the router's routing table.
The asynchronous result object for the invocation.
Proxies discarded by the router.
This inferface should be implemented by services implementing the
Ice::Router interface.
It should be advertised through an Ice
object with the identity `Ice/RouterFinder'. This allows clients to
retrieve the router proxy with just the endpoint information of the
service.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The router proxy.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The router proxy.
The Context map to send with the invocation.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
An asynchronous result object.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The Context map to send with the invocation.
An asynchronous result object.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The Context map to send with the invocation.
Asynchronous callback invoked when the operation completes.
Application data to store in the asynchronous result object.
An asynchronous result object.
Get the router proxy implemented by the process hosting this
finder object.
The proxy might point to several replicas.
The asynchronous result object for the invocation.
The router proxy.
Called before a request is dispatched if a
servant cannot be found in the object adapter's active servant
map.
Note that the object adapter does not automatically insert
the returned servant into its active servant map. This must be
done by the servant locator implementation, if this is desired.
locate can throw any user exception. If it does, that exception
is marshaled back to the client. If the Slice definition for the
corresponding operation includes that user exception, the client
receives that user exception; otherwise, the client receives
UnknownUserException.
If locate throws any exception, the Ice run time does not
call finished.
If you call locate from your own code, you
must also call finished when you have finished using the
servant, provided that locate returned a non-null servant;
otherwise, you will get undefined behavior if you use
servant locators such as the Freeze Evictor.
Information about the current operation for which
a servant is required.
A "cookie" that will be passed to finished.
The located servant, or null if no suitable servant has
been found.
Called by the object adapter after a request has been
made.
This operation is only called if locate was called
prior to the request and returned a non-null servant. This
operation can be used for cleanup purposes after a request.
finished can throw any user exception. If it does, that exception
is marshaled back to the client. If the Slice definition for the
corresponding operation includes that user exception, the client
receives that user exception; otherwise, the client receives
UnknownUserException.
If both the operation and finished throw an exception, the
exception thrown by finished is marshaled back to the client.
Information about the current operation call for
which a servant was located by locate.
The servant that was returned by locate.
The cookie that was returned by locate.
Called when the object adapter in which this servant locator is
installed is destroyed.
Indicates for which category the servant locator
is being deactivated.