Package | Description |
---|---|
org.springframework.data.gemfire.client |
Classes providing support for GemFire client configuration.
|
org.springframework.data.gemfire.config.annotation | |
org.springframework.data.gemfire.config.support | |
org.springframework.data.gemfire.support |
Support package for Spring Gemfire integration.
|
Modifier and Type | Method and Description |
---|---|
void |
PoolFactoryBean.addLocators(ConnectionEndpoint... locators) |
void |
ClientCacheFactoryBean.addLocators(ConnectionEndpoint... locators) |
void |
PoolFactoryBean.addServers(ConnectionEndpoint... servers) |
void |
ClientCacheFactoryBean.addServers(ConnectionEndpoint... servers) |
void |
PoolFactoryBean.setLocators(ConnectionEndpoint[] connectionEndpoints) |
void |
ClientCacheFactoryBean.setLocators(ConnectionEndpoint[] locators) |
void |
PoolFactoryBean.setServers(ConnectionEndpoint[] connectionEndpoints) |
void |
ClientCacheFactoryBean.setServers(ConnectionEndpoint[] servers) |
Modifier and Type | Method and Description |
---|---|
void |
PoolFactoryBean.addLocators(Iterable<ConnectionEndpoint> locators) |
void |
ClientCacheFactoryBean.addLocators(Iterable<ConnectionEndpoint> locators) |
void |
PoolFactoryBean.addServers(Iterable<ConnectionEndpoint> servers) |
void |
ClientCacheFactoryBean.addServers(Iterable<ConnectionEndpoint> servers) |
void |
PoolFactoryBean.setLocators(Iterable<ConnectionEndpoint> connectionEndpoints) |
void |
ClientCacheFactoryBean.setLocators(Iterable<ConnectionEndpoint> locators) |
void |
PoolFactoryBean.setServers(Iterable<ConnectionEndpoint> connectionEndpoints) |
void |
ClientCacheFactoryBean.setServers(Iterable<ConnectionEndpoint> servers) |
Modifier and Type | Method and Description |
---|---|
protected ConnectionEndpoint |
ClientCacheConfiguration.newConnectionEndpoint(String host,
Integer port) |
protected ConnectionEndpoint |
AddPoolConfiguration.newConnectionEndpoint(String host,
Integer port) |
Modifier and Type | Method and Description |
---|---|
protected Iterable<ConnectionEndpoint> |
ClientCacheConfiguration.poolLocators() |
protected Iterable<ConnectionEndpoint> |
ClientCacheConfiguration.poolServers() |
Modifier and Type | Method and Description |
---|---|
ConnectionEndpoint |
CustomEditorBeanFactoryPostProcessor.StringToConnectionEndpointConverter.convert(String source) |
Modifier and Type | Method and Description |
---|---|
Iterable |
CustomEditorBeanFactoryPostProcessor.ConnectionEndpointArrayToIterableConverter.convert(ConnectionEndpoint[] source) |
Modifier and Type | Method and Description |
---|---|
ConnectionEndpoint |
ConnectionEndpointList.findOne(int port)
Finds the first
ConnectionEndpoint in the collection with the given port. |
ConnectionEndpoint |
ConnectionEndpointList.findOne(String host)
Finds the first
ConnectionEndpoint in the collection with the given host. |
static ConnectionEndpoint |
ConnectionEndpoint.from(InetSocketAddress socketAddress)
Converts the InetSocketAddress into a ConnectionEndpoint.
|
ConnectionEndpoint |
ConnectionEndpointList.get(int index)
Gets the
ConnectionEndpoint at the given index in this list. |
static ConnectionEndpoint |
ConnectionEndpoint.parse(String hostPort)
Parses the host and port String value into a valid ConnectionEndpoint.
|
static ConnectionEndpoint |
ConnectionEndpoint.parse(String hostPort,
int defaultPort)
Parses the host and port value into a valid ConnectionEndpoint.
|
ConnectionEndpoint |
ConnectionEndpointList.set(int index,
ConnectionEndpoint element)
Sets the element at the given index in this list to the given
ConnectionEndpoint . |
ConnectionEndpoint[] |
ConnectionEndpointList.toArray()
Converts this collection of
ConnectionEndpoint s into an array of ConnectionEndpoint s. |
Modifier and Type | Method and Description |
---|---|
Iterator<ConnectionEndpoint> |
ConnectionEndpointList.iterator() |
Modifier and Type | Method and Description |
---|---|
ConnectionEndpointList |
ConnectionEndpointList.add(ConnectionEndpoint... connectionEndpoints)
Adds the array of ConnectionEndpoints to this list.
|
boolean |
ConnectionEndpointList.add(ConnectionEndpoint connectionEndpoint) |
int |
ConnectionEndpoint.compareTo(ConnectionEndpoint connectionEndpoint) |
static ConnectionEndpointList |
ConnectionEndpointList.from(ConnectionEndpoint... connectionEndpoints)
Factory method for creating a
ConnectionEndpointList from an array of ConnectionEndpoint s. |
ConnectionEndpoint |
ConnectionEndpointList.set(int index,
ConnectionEndpoint element)
Sets the element at the given index in this list to the given
ConnectionEndpoint . |
Modifier and Type | Method and Description |
---|---|
ConnectionEndpointList |
ConnectionEndpointList.add(Iterable<ConnectionEndpoint> connectionEndpoints)
Adds the Iterable collection of ConnectionEndpoints to this list.
|
Constructor and Description |
---|
ConnectionEndpointList(ConnectionEndpoint... connectionEndpoints)
Constructs an instance of ConnectionEndpointList initialized with the the array of ConnectionEndpoints.
|
Constructor and Description |
---|
ConnectionEndpointList(Iterable<ConnectionEndpoint> connectionEndpoints)
Constructs an instance of ConnectionEndpointList initialized with the Iterable collection of ConnectionEndpoints.
|
Copyright © 2011–2017 Pivotal Software, Inc.. All rights reserved.