PoolFactoryAddLocator Method |
Add a locator, given its host and port, to this factory.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic PoolFactory AddLocator(
string host,
int port
)
Public Function AddLocator (
host As String,
port As Integer
) As PoolFactory
public:
PoolFactory^ AddLocator(
String^ host,
int port
)
member AddLocator :
host : string *
port : int -> PoolFactory
Parameters
- host
- Type: SystemString
- port
- Type: SystemInt32
Return Value
Type:
PoolFactory
ExceptionsException | Condition |
---|
|
throws IllegalArgumentException if host is an unknown host
or if port is outside the valid range of [1..65535] inclusive.
|
|
throws IllegalStateException if a locator has already been added to this factory.
|
Remarks
The locator must be a server locator and will be used to discover other running
bridge servers and locators.
See Also