Class AbstractGenericComponentManagementBean
- java.lang.Object
-
- com.apama.net.beans.AbstractGenericComponentManagementBean
-
- All Implemented Interfaces:
BaseClientInterface
,PingClientInterface
,PingOperationsInterface
,java.lang.AutoCloseable
- Direct Known Subclasses:
GenericComponentManagementBean
public abstract class AbstractGenericComponentManagementBean extends java.lang.Object implements PingClientInterface, java.lang.AutoCloseable
AbstractGenericComponentManagementBean is a JavaBean that provides a base class upon which JavaBeans using the remote GenericComponentManagement can be built.Note that changes to the value of the "host", or "port" properties will cause the bean to attempt to re-connect to a server running on a new host/port. This re-connection will happen immediately if the bean was connected at the time of the property change, but will happen later in a "lazy" fashion if there was no existing connection at the time of the property change.
This bean also maintains Boolean bound property called "beanConnected", the value of which is maintained internally. The value will be set to true following a successful connection to an server, and to false at the time of disconnection. Once connected, a background thread will periodically "ping" the remote server. This background thread will also maintain the value of the "beanConnected" property each time it tests the connection.
Warning: The bound properties supported by this bean will notify all registered listeners from within a synchronized block. Listeners should NOT invoke methods that would cause indirect calls back to synchronized methods in this bean. For example calls to System.exit(int) would cause a deadlock situation when the shutdown handler thread attempted to call disconnect(). However, direct calls from the listener onto synchronized methods of the bean (re-entry) is permitted.
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_PORT
The default value for the port property.-
Fields inherited from interface com.apama.net.beans.interfaces.BaseClientInterface
COPYRIGHT, DEFAULT_CONNECTION_POLLING_INTERVAL, DEFAULT_HOST, DEFAULT_PROCESS_NAME, PRODUCTNAME, PROPERTY_BEAN_CONNECTED, PROPERTY_CONNECTION_POLLING_INTERVAL, PROPERTY_HOST, PROPERTY_PORT, PROPERTY_PROCESS_NAME, PROPERTY_VERBOSE, VERSION
-
-
Constructor Summary
Constructors Constructor Description AbstractGenericComponentManagementBean()
Default constructor - as required to be a bean.AbstractGenericComponentManagementBean(java.lang.String socket_hostname, int socket_port, java.lang.String processName)
Full argument constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Add a property change listener.void
addPropertyChangeListener(java.lang.String propertyName, java.beans.PropertyChangeListener listener)
Add a property change listener for a specific named property.void
close()
Disconnects the client and also waits to ensure that all background threads and other resources associated with this object have been terminated or freed.void
connectNow()
Manually request that the bean connects to the remote server.void
disconnect()
Disconnect from a remote server.void
dispose()
Deprecated.boolean
getBeanConnected()
Get the beanConnected property value.int
getConnectionPollingInterval()
Get the polling interval (in milliseconds) for the internal connection test thread.java.lang.String
getHost()
Get the name of the host to be connected to.int
getPort()
Get the port number to be connected to.java.lang.String
getProcessName()
Get the processName in useboolean
getVerbose()
Getter for the verbose property.boolean
isBeanConnected()
Another name for the getBeanConnected() method.void
pingServer()
Manually test if the remote agent process is alive and responding to client requests.void
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Remove a property change listener.void
removePropertyChangeListener(java.lang.String propertyName, java.beans.PropertyChangeListener listener)
Remove a property change listener for a specific named property.void
setConnectionPollingInterval(int milliseconds)
Set the polling interval (in milliseconds) for the internal connection test thread.void
setHost(java.lang.String newHostValue)
Setter for the host property.void
setPort(int newPortValue)
Setter for the port property.void
setProcessName(java.lang.String newProcessName)
Setter for the process name property.void
setVerbose(boolean newVerboseValue)
Setter for the verbose property.
-
-
-
Constructor Detail
-
AbstractGenericComponentManagementBean
public AbstractGenericComponentManagementBean()
Default constructor - as required to be a bean. Initialises the bean with default values for the properties. This default constructor does not make a connection to a remote server.
-
AbstractGenericComponentManagementBean
public AbstractGenericComponentManagementBean(java.lang.String socket_hostname, int socket_port, java.lang.String processName) throws GenericComponentManagementException
Full argument constructor. Calls the default constructor, then connects to a remote server.- Parameters:
socket_hostname
- Name of the host where the server is running.socket_port
- Port number on which the server is listening.processName
- the process name to use- Throws:
GenericComponentManagementException
- Thrown if any exceptions occur in the Client SDK.
-
-
Method Detail
-
connectNow
public void connectNow() throws GenericComponentManagementException
Manually request that the bean connects to the remote server. Repeated calls are permitted, and attempting to connect a bean that is already connected is identical to callingpingServer()
from the PingOperationsInterface.- Specified by:
connectNow
in interfaceBaseClientInterface
- Throws:
GenericComponentManagementException
- Thrown if any exceptions occur in the Client SDK.
-
close
public void close()
Description copied from interface:BaseClientInterface
Disconnects the client and also waits to ensure that all background threads and other resources associated with this object have been terminated or freed. This method should always be called before quitting the program. Never call this method while the target object is locked, or from a thread that is receiving events or handling a property change notification event from the target object.This method is invoked automatically on objects managed by the try-with-resources statement.
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfaceBaseClientInterface
- See Also:
AutoCloseable.close()
-
dispose
@Deprecated public void dispose()
Deprecated.Description copied from interface:BaseClientInterface
Disconnects the client and also waits to ensure that all background threads and other resources associated with this object have been terminated or freed. This method should always be called before quitting the program. Never call this method while the target object is locked, or from a thread that is receiving events or handling a property change notification event from the target object.- Specified by:
dispose
in interfaceBaseClientInterface
-
disconnect
public void disconnect() throws GenericComponentManagementException
Disconnect from a remote server. Removes the reference to the GenericComponentManagement object.The beanConnected property is set to false, and the connection polling thread is terminated.
It is intended that subclasses that override this method call super.disconnect() as the last statement after finishing their local disconnect functionality. Note however that it is _not_ necessary for all subclasses to override this method.
- Specified by:
disconnect
in interfaceBaseClientInterface
- Throws:
GenericComponentManagementException
- This implementation will never throw an exception, but subclasses will probably need to do so.
-
pingServer
public void pingServer() throws GenericComponentManagementException
Manually test if the remote agent process is alive and responding to client requests. This method makes a no-arg, void return, method call on the client interface of the agent. If a connection is not yet established, this method will request a connection. In the event that a connection cannot be established, or an error during the ping, a GenericComponentManagementException will be raised.- Specified by:
pingServer
in interfacePingOperationsInterface
- Throws:
GenericComponentManagementException
- when the ping fails.
-
getHost
public java.lang.String getHost()
Get the name of the host to be connected to. This is the name of the host on which the server is running.- Specified by:
getHost
in interfaceBaseClientInterface
- Returns:
- Name of the host where the server to be monitored is running.
-
setHost
public void setHost(java.lang.String newHostValue) throws GenericComponentManagementException
Setter for the host property. This is the name of the host on which the server is running. Changing this property will cause any existing connection to be lost. If there was an existing connection, then a new connection will be created.- Specified by:
setHost
in interfaceBaseClientInterface
- Parameters:
newHostValue
- The new value for the Host property.- Throws:
GenericComponentManagementException
- Thrown if any exceptions occur in the Client SDK.
-
getPort
public int getPort()
Get the port number to be connected to. This is the port number on which the server is listening.- Specified by:
getPort
in interfaceBaseClientInterface
- Returns:
- Port number on which the server is listening.
-
setPort
public void setPort(int newPortValue) throws GenericComponentManagementException
Setter for the port property. This is the port number on which the component to be monitored is listening. Changing this property will cause any existing connection to be lost. If there was an existing connection, then a new connection will be created.- Specified by:
setPort
in interfaceBaseClientInterface
- Parameters:
newPortValue
- The new value for the Port property.- Throws:
GenericComponentManagementException
- Thrown if any exceptions occur in the Client SDK.
-
getProcessName
public java.lang.String getProcessName()
Get the processName in use- Specified by:
getProcessName
in interfaceBaseClientInterface
- Returns:
- Process Name in use
-
setProcessName
public void setProcessName(java.lang.String newProcessName) throws GenericComponentManagementException
Setter for the process name property. This is the process name to use. Changing this property will cause any existing connection to be lost. If there was an existing connection, then a new connection will be created.- Specified by:
setProcessName
in interfaceBaseClientInterface
- Parameters:
newProcessName
- The new value for the process name property.- Throws:
GenericComponentManagementException
- Thrown if any exceptions occur in the Client SDK.
-
isBeanConnected
public boolean isBeanConnected()
Another name for the getBeanConnected() method.- Specified by:
isBeanConnected
in interfaceBaseClientInterface
- Returns:
- true if the bean has a connection to a server, false if not.
-
getBeanConnected
public boolean getBeanConnected()
Get the beanConnected property value. This is the status of the bean - connected, or not connected. It indicates if the AbstractGenericComponentManagementBean has a valid instance of the GenericComponentManagement interface.- Specified by:
getBeanConnected
in interfaceBaseClientInterface
- Returns:
- true if the bean has a connection to a server, false if not.
-
getConnectionPollingInterval
public int getConnectionPollingInterval()
Get the polling interval (in milliseconds) for the internal connection test thread.- Specified by:
getConnectionPollingInterval
in interfaceBaseClientInterface
- Returns:
- the current interval in milliseconds
-
setConnectionPollingInterval
public void setConnectionPollingInterval(int milliseconds)
Set the polling interval (in milliseconds) for the internal connection test thread. If the parameter is negative, then the default value will be used instead.- Specified by:
setConnectionPollingInterval
in interfaceBaseClientInterface
- Parameters:
milliseconds
- the current interval in milliseconds
-
getVerbose
public boolean getVerbose()
Getter for the verbose property. When verbose is set to true, some methods (in subclasses) will print progress messages on stdout.- Returns:
- Current value of the verbose property.
-
setVerbose
public void setVerbose(boolean newVerboseValue)
Setter for the verbose property. When verbose is set to true, some methods (in subclasses) will print progress messages on stdout.- Parameters:
newVerboseValue
- Set to true for more verbose status output.
-
removePropertyChangeListener
public void removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Remove a property change listener.- Specified by:
removePropertyChangeListener
in interfaceBaseClientInterface
- Parameters:
listener
- the listener to be removed.
-
addPropertyChangeListener
public void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Add a property change listener. Use this method to be informed whenever the a property value is changed.- Specified by:
addPropertyChangeListener
in interfaceBaseClientInterface
- Parameters:
listener
- the listener to be added.
-
removePropertyChangeListener
public void removePropertyChangeListener(java.lang.String propertyName, java.beans.PropertyChangeListener listener)
Remove a property change listener for a specific named property.- Specified by:
removePropertyChangeListener
in interfaceBaseClientInterface
- Parameters:
propertyName
- the name of the property that was listened on.listener
- the listener to be removed.
-
addPropertyChangeListener
public void addPropertyChangeListener(java.lang.String propertyName, java.beans.PropertyChangeListener listener)
Add a property change listener for a specific named property.- Specified by:
addPropertyChangeListener
in interfaceBaseClientInterface
- Parameters:
propertyName
- the name of the property to listen on.listener
- the listener to be added.
-
-