All Packages Class Hierarchy This Package Previous Next Index
Class org.omg.CORBA.BindOptions
java.lang.Object
|
+----org.omg.CORBA.BindOptions
- public final class BindOptions
- extends Object
- Java Class org.omg.CORBA.BindOptions
- Source File org/omg/CORBA/BindOptions.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.
-
defer_bind
-
-
enable_rebind
-
-
BindOptions()
-
-
BindOptions(boolean, boolean)
-
-
toString()
-
defer_bind
public boolean defer_bind
enable_rebind
public boolean enable_rebind
BindOptions
public BindOptions()
BindOptions
public BindOptions(boolean defer_bind,
boolean enable_rebind)
toString
public String toString()
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index