Class TCPRemoteCommitProvider.HostAddress

  • Enclosing class:
    TCPRemoteCommitProvider

    protected class TCPRemoteCommitProvider.HostAddress
    extends java.lang.Object
    Utility class to store an InetAddress and an int. Not using InetSocketAddress because it's a JDK1.4 API. This also provides a wrapper around the socket(s) associated with this address.
    • Field Detail

      • _address

        protected java.net.InetAddress _address
      • _port

        protected int _port
      • _timeLastError

        protected long _timeLastError
      • _isAvailable

        protected boolean _isAvailable
      • _infosIssued

        protected int _infosIssued
      • _socketPool

        protected final org.apache.commons.pool2.impl.GenericObjectPool<java.net.Socket> _socketPool
    • Constructor Detail

      • HostAddress

        public HostAddress​(java.lang.String host)
                    throws java.net.UnknownHostException
        Construct a new host address from a string of the form "host:port" or of the form "host".
        Parameters:
        host - host name
        Throws:
        java.net.UnknownHostException
    • Method Detail

      • setMaxTotal

        protected void setMaxTotal​(int maxTotal)
      • setMaxIdle

        protected void setMaxIdle​(int maxIdle)
      • getAddress

        public java.net.InetAddress getAddress()
      • getPort

        public int getPort()
      • close

        public void close()
      • sendUpdatePacket

        protected void sendUpdatePacket​(byte[] bytes)
      • getSocket

        protected java.net.Socket getSocket()
                                     throws java.lang.Exception
        Throws:
        java.lang.Exception
      • returnSocket

        protected void returnSocket​(java.net.Socket s)
                             throws java.lang.Exception
        Throws:
        java.lang.Exception
      • clearAllSockets

        protected void clearAllSockets()
      • closeSocket

        protected void closeSocket​(java.net.Socket s)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object