public class TCPRemoteCommitProvider extends AbstractRemoteCommitProvider implements Configurable
RemoteCommitProvider
that
listens for object modifications and propagates those changes to
other RemoteCommitProviders over TCP sockets.eventManager, log
Constructor and Description |
---|
TCPRemoteCommitProvider() |
Modifier and Type | Method and Description |
---|---|
void |
broadcast(RemoteCommitEvent event)
Notifies other remote event managers in this JVM and on other machines
of changes to the cache.
|
void |
close()
Free the resources used by this provider.
|
void |
endConfiguration()
Subclasses that need to perform actions in
Configurable.endConfiguration() must invoke this method. |
int |
getMaxIdle()
The number of idle sockets that this provider can keep open
to each peer in the cluster.
|
int |
getMaxTotal()
The maximum number of sockets that this provider can
simetaneously open to each peer in the cluster.
|
int |
getNumBroadcastThreads()
The number of worker threads that are used for
transmitting packets to peers in the cluster.
|
int |
getPort()
The port that this provider should listen on.
|
int |
getRecoveryTimeMillis()
The number of milliseconds to wait before retrying
to reconnect to a peer after it becomes unreachable.
|
void |
setAddresses(String names)
Sets the list of addresses of peers to which this provider will
send events to.
|
void |
setMaxActive(int maxActive)
Deprecated.
please use
setMaxTotal(int) instead |
void |
setMaxIdle(int maxIdle)
The number of idle sockets that this provider can keep open
to each peer in the cluster.
|
void |
setMaxTotal(int maxTotal)
The maximum total number of sockets that this provider can
simetaneously open to each peer in the cluster.
|
void |
setNumBroadcastThreads(int numBroadcastThreads)
The number of worker threads that are used for
transmitting packets to peers in the cluster.
|
void |
setPort(int port)
The port that this provider should listen on.
|
void |
setRecoveryTimeMillis(int recoverytime)
The number of milliseconds to wait before retrying
to reconnect to a peer after it becomes unreachable.
|
fireEvent, setConfiguration, setRemoteCommitEventManager, startConfiguration
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
setConfiguration, startConfiguration
public TCPRemoteCommitProvider() throws UnknownHostException
UnknownHostException
public int getPort()
public void setPort(int port)
public void setRecoveryTimeMillis(int recoverytime)
public int getRecoveryTimeMillis()
@Deprecated public void setMaxActive(int maxActive)
setMaxTotal(int)
insteadpublic void setMaxTotal(int maxTotal)
public int getMaxTotal()
public void setMaxIdle(int maxIdle)
public int getMaxIdle()
public void setNumBroadcastThreads(int numBroadcastThreads)
public int getNumBroadcastThreads()
public void setAddresses(String names) throws UnknownHostException
names
list in the form of "myhost1:portA;myhost2:portB".UnknownHostException
public void endConfiguration()
Configurable.endConfiguration()
must invoke this method.endConfiguration
in interface Configurable
endConfiguration
in class AbstractRemoteCommitProvider
public void broadcast(RemoteCommitEvent event)
RemoteCommitProvider
broadcast
in interface RemoteCommitProvider
public void close()
RemoteCommitProvider
close
in interface RemoteCommitProvider
close
in interface Closeable
Copyright © 2006–2019 Apache Software Foundation. All rights reserved.