| 
 | Berkeley DB version 4.6.21 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.sleepycat.db.ReplicationHostAddress
public class ReplicationHostAddress
A simple wrapper class to hold information needed to define a host in a replication group.
The ReplicationHostAddress can be used to refer to the current site, or to a remote site in the replication group.
Used in the EnvironmentConfig.replicationManagerAddRemoteSite
and the EnvironmentConfig.setReplicationManagerLocalSite
methods.
| Field Summary | |
|---|---|
|  int | eidThe identifier assigned to this host.. | 
|  String | hostThe name component of the site address. | 
|  boolean | isPeerThis field is used to define if the HostAddress refers to a peer of the current site, or not. | 
|  int | portThe network port component of the site address. | 
| Constructor Summary | |
|---|---|
| ReplicationHostAddress()Create a ReplicationHostAddress with default settings. | |
| ReplicationHostAddress(String host,
                       int port)Create a ReplicationHostAddress. | |
| ReplicationHostAddress(String host,
                       int port,
                       boolean isPeer)Create a ReplicationHostAddress. | |
| ReplicationHostAddress(String host,
                       int port,
                       boolean isPeer,
                       boolean isConnected)Create a ReplicationHostAddress. | |
| Method Summary | |
|---|---|
|  boolean | isConnected()Indicates whether the address is connected. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
public int port
public String host
public int eid
public boolean isPeer
| Constructor Detail | 
|---|
public ReplicationHostAddress()
This is likely not what you want. The current default is host: localhost and port 0.
Only use this constructor if you plan to configure the object fields manually after construction.
public ReplicationHostAddress(String host,
                              int port)
host - A string representation of the hostname this address refers to.port - The port number the address will refer to.
public ReplicationHostAddress(String host,
                              int port,
                              boolean isPeer)
host - A string representation of the hostname this address refers to.port - The port number the address will refer to.isPeer - Explicitly specify that this address refers to a replication site
    that is a peer of the current site.
public ReplicationHostAddress(String host,
                              int port,
                              boolean isPeer,
                              boolean isConnected)
host - A string representation of the hostname this address refers to.port - The port number the address will refer to.isPeer - Explicitly specify that this address refers to a replication site
    that is a peer of the current site.isConnected - Specify that this address is connected| Method Detail | 
|---|
public boolean isConnected()
| 
 | Berkeley DB version 4.6.21 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||