All Packages Class Hierarchy This Package Previous Next Index
Class org.omg.CORBA.BindOptionsHolder
java.lang.Object
|
+----org.omg.CORBA.BindOptionsHolder
- public final class BindOptionsHolder
- extends Object
- implements Streamable
- Java Class org.omg.CORBA.BindOptionsHolder
- Source File org/omg/CORBA/BindOptionsHolder.java
- IDL Source File corba.idl
- IDL Absolute Name ::CORBA::BindOptions
- Repository Identifier IDL:omg.org/CORBA/BindOptions:1.0
IDL definition:
struct BindOptions {
boolean defer_bind;
boolean enable_rebind;
};
The BindOptions class encapsulates options used when binding to a server.
These parameters are passed to the bind method on the "_var" class.
- defer_bind
Whether to rebind to a new server if the connection is broken.
If true, a client will attempt to locate another server
with the same type and name as the current server, and fail
over to the secondary server if one is found.
If false, this fault-tolerant capability is disabled.
This parameter is true by default.
- enable_rebind
Whether to establish a connection to the server immediately.
If true, a connection will be established the first time
an operation is invoked on the object.
This parameter is false by default.
-
value
-
-
BindOptionsHolder()
-
-
BindOptionsHolder(BindOptions)
-
-
_read(InputStream)
-
-
_type()
-
-
_write(OutputStream)
-
value
public BindOptions value
BindOptionsHolder
public BindOptionsHolder()
BindOptionsHolder
public BindOptionsHolder(BindOptions value)
_read
public void _read(InputStream input)
_write
public void _write(OutputStream output)
_type
public TypeCode _type()
All Packages Class Hierarchy This Package Previous Next Index