类 PulsarClientException.TimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.pulsar.client.api.PulsarClientException
-
- org.apache.pulsar.client.api.PulsarClientException.TimeoutException
-
- 所有已实现的接口:
java.io.Serializable
public static class PulsarClientException.TimeoutException extends PulsarClientException
Timeout exception thrown by Pulsar client.- 另请参阅:
- 序列化表格
-
-
嵌套类概要
-
从类继承的嵌套类/接口 org.apache.pulsar.client.api.PulsarClientException
PulsarClientException.AlreadyClosedException, PulsarClientException.AuthenticationException, PulsarClientException.AuthorizationException, PulsarClientException.BrokerMetadataException, PulsarClientException.BrokerPersistenceException, PulsarClientException.ChecksumException, PulsarClientException.ConnectException, PulsarClientException.ConsumerAssignException, PulsarClientException.ConsumerBusyException, PulsarClientException.CryptoException, PulsarClientException.GettingAuthenticationDataException, PulsarClientException.IncompatibleSchemaException, PulsarClientException.InvalidConfigurationException, PulsarClientException.InvalidMessageException, PulsarClientException.InvalidServiceURL, PulsarClientException.InvalidTopicNameException, PulsarClientException.LookupException, PulsarClientException.MemoryBufferIsFullError, PulsarClientException.MessageAcknowledgeException, PulsarClientException.NotAllowedException, PulsarClientException.NotConnectedException, PulsarClientException.NotFoundException, PulsarClientException.NotSupportedException, PulsarClientException.ProducerBlockedQuotaExceededError, PulsarClientException.ProducerBlockedQuotaExceededException, PulsarClientException.ProducerBusyException, PulsarClientException.ProducerFencedException, PulsarClientException.ProducerQueueIsFullError, PulsarClientException.TimeoutException, PulsarClientException.TooManyRequestsException, PulsarClientException.TopicDoesNotExistException, PulsarClientException.TopicTerminatedException, PulsarClientException.TransactionConflictException, PulsarClientException.UnsupportedAuthenticationException
-
-
构造器概要
构造器 构造器 说明 TimeoutException(java.lang.String msg)
Constructs anTimeoutException
with the specified detail message.TimeoutException(java.lang.String msg, long sequenceId)
Constructs anTimeoutException
with the specified detail message.TimeoutException(java.lang.Throwable t)
Constructs anTimeoutException
with the specified cause.TimeoutException(java.lang.Throwable t, long sequenceId)
Constructs anTimeoutException
with the specified cause.
-
方法概要
-
从类继承的方法 org.apache.pulsar.client.api.PulsarClientException
getPreviousExceptions, getPreviousExceptions, getSequenceId, isRetriableError, setPreviousExceptions, setPreviousExceptions, setSequenceId, toString, unwrap, wrap
-
-
-
-
构造器详细资料
-
TimeoutException
public TimeoutException(java.lang.Throwable t)
Constructs anTimeoutException
with the specified cause.- 参数:
t
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
TimeoutException
public TimeoutException(java.lang.Throwable t, long sequenceId)
Constructs anTimeoutException
with the specified cause.- 参数:
t
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)sequenceId
- The sequenceId of the message
-
TimeoutException
public TimeoutException(java.lang.String msg)
Constructs anTimeoutException
with the specified detail message.- 参数:
msg
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
TimeoutException
public TimeoutException(java.lang.String msg, long sequenceId)
Constructs anTimeoutException
with the specified detail message.- 参数:
msg
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
-