|
|
An interface to associate implict contexts with communicators. When you make a remote invocation without an explicit Context parameter, Ice uses the per-proxy Context (if any) combined with the ImplicitContext associated with the communicator.
Ice provides several implementations of ImplicitContext. The implementation used depends on the value of the Ice.ImplicitContext property.
ImplicitContext also provides a number of operations to create, update or retrieve an entry in the underlying context without first retrieving a copy of the entire context. These operations correspond to a subset of the java.util.Map methods, with java.lang.Object replaced by string and null replaced by the empty-string.
Get a copy of the underlying context.
A copy of the underlying context.
Set the underlying context.
Check if this key has an associated value in the underlying context.
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 value associated with the key.
Create or update a key/value entry in the underlying context.
The previous value associated with the key, if any.
Remove the entry for the given key in the underlying context.
The value associated with the key, if any.
|
|