All Packages Class Hierarchy This Package Previous Next Index
Class org.omg.CORBA.BindOptionsHelper
java.lang.Object
|
+----org.omg.CORBA.BindOptionsHelper
- public abstract class BindOptionsHelper
- extends Object
- Java Class org.omg.CORBA.BindOptionsHelper
- Source File org/omg/CORBA/BindOptionsHelper.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.
-
BindOptionsHelper()
-
-
extract(Any)
-
-
id()
-
-
insert(Any, BindOptions)
-
-
read(InputStream)
-
-
type()
-
-
write(OutputStream, BindOptions)
-
BindOptionsHelper
public BindOptionsHelper()
read
public static BindOptions read(InputStream _input)
write
public static void write(OutputStream _output,
BindOptions value)
insert
public static void insert(Any any,
BindOptions value)
extract
public static BindOptions extract(Any any)
type
public static TypeCode type()
id
public static String id()
All Packages Class Hierarchy This Package Previous Next Index