SolarMetric Kodo JDO 3.3.5 generated on August 31 2005

kodo.event
Class PooledTCPRemoteCommitProvider

java.lang.Object
  |
  +--kodo.event.AbstractRemoteCommitProvider
        |
        +--kodo.event.PooledTCPRemoteCommitProvider
All Implemented Interfaces:
com.solarmetric.util.Closeable, Configurable, RemoteCommitProvider

public class PooledTCPRemoteCommitProvider
extends AbstractRemoteCommitProvider
implements Configurable

TCP-based implementation of RemoteCommitProvider that listens for object modifications and propagates those changes to other RemoteCommitProviders over TCP sockets.

Since:
2.5.0

Fields inherited from class kodo.event.AbstractRemoteCommitProvider
eventManager, log
 
Constructor Summary
PooledTCPRemoteCommitProvider()
           
 
Method Summary
 void broadcast(RemoteCommitEvent event)
          Notifies other remote event managers in this JVM and on other machines of changes to the cache.
 void close()
          Close any resources used by this provider
 void endConfiguration()
          Subclasses that need to perform actions in Configurable.endConfiguration() must invoke this method.
 int getMaxActive()
          The maximum number of sockets that this provider can simetaneously open to each peer in the cluster.
 int getMaxIdle()
          The number of idle sockets that this provider can keep 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)
          The maximum number of sockets that this provider can simetaneously open to each peer in the cluster.
 void setMaxIdle(int maxIdle)
          The number of idle sockets that this provider can keep 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.
 
Methods inherited from class kodo.event.AbstractRemoteCommitProvider
setConfiguration, setRemoteCommitEventManager, startConfiguration
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.solarmetric.conf.Configurable
setConfiguration, startConfiguration
 

Constructor Detail

PooledTCPRemoteCommitProvider

public PooledTCPRemoteCommitProvider()
                              throws UnknownHostException
Method Detail

getPort

public int getPort()
The port that this provider should listen on.

setPort

public void setPort(int port)
The port that this provider should listen on. Set once only.

setRecoveryTimeMillis

public void setRecoveryTimeMillis(int recoverytime)
The number of milliseconds to wait before retrying to reconnect to a peer after it becomes unreachable.

getRecoveryTimeMillis

public int getRecoveryTimeMillis()
The number of milliseconds to wait before retrying to reconnect to a peer after it becomes unreachable.

setMaxActive

public void setMaxActive(int maxActive)
The maximum number of sockets that this provider can simetaneously open to each peer in the cluster.

getMaxActive

public int getMaxActive()
The maximum number of sockets that this provider can simetaneously open to each peer in the cluster.

setMaxIdle

public void setMaxIdle(int maxIdle)
The number of idle sockets that this provider can keep open to each peer in the cluster.

getMaxIdle

public int getMaxIdle()
The number of idle sockets that this provider can keep open to each peer in the cluster.

setNumBroadcastThreads

public void setNumBroadcastThreads(int numBroadcastThreads)
The number of worker threads that are used for transmitting packets to peers in the cluster.

getNumBroadcastThreads

public int getNumBroadcastThreads()
The number of worker threads that are used for transmitting packets to peers in the cluster.

setAddresses

public void setAddresses(String names)
                  throws UnknownHostException
Sets the list of addresses of peers to which this provider will send events to. The peers are semicolon-separated names list in the form of "myhost1:portA;myhost2:portB".

endConfiguration

public void endConfiguration()
Subclasses that need to perform actions in Configurable.endConfiguration() must invoke this method.
Specified by:
endConfiguration in interface Configurable
Overrides:
endConfiguration in class AbstractRemoteCommitProvider

broadcast

public void broadcast(RemoteCommitEvent event)
Description copied from interface: RemoteCommitProvider
Notifies other remote event managers in this JVM and on other machines of changes to the cache. This method must not notify the event manager associated with the persistence manager that originated this commit.

close

public void close()
Description copied from interface: RemoteCommitProvider
Close any resources used by this provider

SolarMetric Kodo JDO 3.3.5 generated on August 31 2005

Copyright 2001,2002 SolarMetric, Inc. All Rights Reserved.