c

com.avsystem.commons.redis.exception

ConnectionClosedException

class ConnectionClosedException extends RedisIOException

Command or operation is failed with this exception when it has been already sent through network but the connection was closed before receiving a response. Even though connections are automatically restarted, such command cannot be resent because we don't know whether it was actually executed on the Redis instance or not. In a Redis Cluster deployment, this is likely to happen when a node fails.

Linear Supertypes
RedisIOException, RedisException, RuntimeException, Exception, Throwable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConnectionClosedException
  2. RedisIOException
  3. RedisException
  4. RuntimeException
  5. Exception
  6. Throwable
  7. Serializable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ConnectionClosedException(address: NodeAddress, cause: commons.Opt[String])

Value Members

  1. final def addSuppressed(arg0: Throwable): Unit
    Definition Classes
    Throwable
  2. val address: NodeAddress
  3. val cause: commons.Opt[String]
  4. def fillInStackTrace(): Throwable
    Definition Classes
    Throwable
  5. def getCause(): Throwable
    Definition Classes
    Throwable
  6. def getLocalizedMessage(): String
    Definition Classes
    Throwable
  7. def getMessage(): String
    Definition Classes
    Throwable
  8. def getStackTrace(): Array[StackTraceElement]
    Definition Classes
    Throwable
  9. final def getSuppressed(): Array[Throwable]
    Definition Classes
    Throwable
  10. def initCause(arg0: Throwable): Throwable
    Definition Classes
    Throwable
  11. def printStackTrace(arg0: PrintWriter): Unit
    Definition Classes
    Throwable
  12. def printStackTrace(arg0: PrintStream): Unit
    Definition Classes
    Throwable
  13. def printStackTrace(): Unit
    Definition Classes
    Throwable
  14. def setStackTrace(arg0: Array[StackTraceElement]): Unit
    Definition Classes
    Throwable
  15. def toString(): String
    Definition Classes
    Throwable → AnyRef → Any