kafka.consumer

ConsumerFetcherThread

class ConsumerFetcherThread extends AbstractFetcherThread

Linear Supertypes
AbstractFetcherThread, ShutdownableThread, Logging, Thread, Runnable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ConsumerFetcherThread
  2. AbstractFetcherThread
  3. ShutdownableThread
  4. Logging
  5. Thread
  6. Runnable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ConsumerFetcherThread(name: String, config: ConsumerConfig, sourceBroker: BrokerEndPoint, partitionMap: Map[TopicAndPartition, PartitionTopicInfo], consumerFetcherManager: ConsumerFetcherManager)

Type Members

  1. type PD = PartitionData

  2. type REQ = FetchRequest

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addPartitions(partitionAndOffsets: Map[TopicAndPartition, Long]): Unit

    Definition Classes
    AbstractFetcherThread
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def awaitShutdown(): Unit

    After calling initiateShutdown(), use this API to wait until the shutdown is complete

    After calling initiateShutdown(), use this API to wait until the shutdown is complete

    Definition Classes
    ShutdownableThread
  9. def buildFetchRequest(partitionMap: Map[TopicAndPartition, PartitionFetchState]): FetchRequest

    Attributes
    protected
    Definition Classes
    ConsumerFetcherThreadAbstractFetcherThread
  10. final def checkAccess(): Unit

    Definition Classes
    Thread
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    Thread → AnyRef
    Annotations
    @throws( ... )
  12. val config: ConsumerConfig

  13. val consumerFetcherManager: ConsumerFetcherManager

  14. def debug(msg: ⇒ String, e: ⇒ Throwable): Unit

    Definition Classes
    Logging
  15. def debug(e: ⇒ Throwable): Any

    Definition Classes
    Logging
  16. def debug(msg: ⇒ String): Unit

    Definition Classes
    Logging
  17. def delayPartitions(partitions: Iterable[TopicAndPartition], delay: Long): Unit

    Definition Classes
    AbstractFetcherThread
  18. def doWork(): Unit

    This method is repeatedly invoked until the thread shuts down or this method throws an exception

    This method is repeatedly invoked until the thread shuts down or this method throws an exception

    Definition Classes
    AbstractFetcherThreadShutdownableThread
  19. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  21. def error(msg: ⇒ String, e: ⇒ Throwable): Unit

    Definition Classes
    Logging
  22. def error(e: ⇒ Throwable): Any

    Definition Classes
    Logging
  23. def error(msg: ⇒ String): Unit

    Definition Classes
    Logging
  24. def fatal(msg: ⇒ String, e: ⇒ Throwable): Unit

    Definition Classes
    Logging
  25. def fatal(e: ⇒ Throwable): Any

    Definition Classes
    Logging
  26. def fatal(msg: ⇒ String): Unit

    Definition Classes
    Logging
  27. def fetch(fetchRequest: FetchRequest): Map[TopicAndPartition, PartitionData]

    Attributes
    protected
    Definition Classes
    ConsumerFetcherThreadAbstractFetcherThread
  28. val fetcherLagStats: FetcherLagStats

    Definition Classes
    AbstractFetcherThread
  29. val fetcherStats: FetcherStats

    Definition Classes
    AbstractFetcherThread
  30. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  31. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  32. def getContextClassLoader(): ClassLoader

    Definition Classes
    Thread
    Annotations
    @CallerSensitive()
  33. def getId(): Long

    Definition Classes
    Thread
  34. final def getName(): String

    Definition Classes
    Thread
  35. final def getPriority(): Int

    Definition Classes
    Thread
  36. def getStackTrace(): Array[StackTraceElement]

    Definition Classes
    Thread
  37. def getState(): State

    Definition Classes
    Thread
  38. final def getThreadGroup(): ThreadGroup

    Definition Classes
    Thread
  39. def getUncaughtExceptionHandler(): UncaughtExceptionHandler

    Definition Classes
    Thread
  40. def handleOffsetOutOfRange(topicAndPartition: TopicAndPartition): Long

  41. def handlePartitionsWithErrors(partitions: Iterable[TopicAndPartition]): Unit

  42. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  43. def info(msg: ⇒ String, e: ⇒ Throwable): Unit

    Definition Classes
    Logging
  44. def info(e: ⇒ Throwable): Any

    Definition Classes
    Logging
  45. def info(msg: ⇒ String): Unit

    Definition Classes
    Logging
  46. def initiateShutdown(): Boolean

  47. def interrupt(): Unit

    Definition Classes
    Thread
  48. final def isAlive(): Boolean

    Definition Classes
    Thread
  49. final def isDaemon(): Boolean

    Definition Classes
    Thread
  50. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  51. def isInterrupted(): Boolean

    Definition Classes
    Thread
  52. val isInterruptible: Boolean

    Definition Classes
    ShutdownableThread
  53. val isRunning: AtomicBoolean

    Definition Classes
    ShutdownableThread
  54. final def join(): Unit

    Definition Classes
    Thread
    Annotations
    @throws( ... )
  55. final def join(arg0: Long, arg1: Int): Unit

    Definition Classes
    Thread
    Annotations
    @throws( ... )
  56. final def join(arg0: Long): Unit

    Definition Classes
    Thread
    Annotations
    @throws( ... )
  57. var logIdent: String

    Attributes
    protected
    Definition Classes
    Logging
  58. lazy val logger: Logger

    Definition Classes
    Logging
  59. val loggerName: String

    Definition Classes
    Logging
  60. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  61. final def notify(): Unit

    Definition Classes
    AnyRef
  62. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  63. def partitionCount(): Int

    Definition Classes
    AbstractFetcherThread
  64. def processPartitionData(topicAndPartition: TopicAndPartition, fetchOffset: Long, partitionData: PartitionData): Unit

  65. def removePartitions(topicAndPartitions: Set[TopicAndPartition]): Unit

    Definition Classes
    AbstractFetcherThread
  66. def run(): Unit

    Definition Classes
    ShutdownableThread → Thread → Runnable
  67. def setContextClassLoader(arg0: ClassLoader): Unit

    Definition Classes
    Thread
  68. final def setDaemon(arg0: Boolean): Unit

    Definition Classes
    Thread
  69. final def setName(arg0: String): Unit

    Definition Classes
    Thread
  70. final def setPriority(arg0: Int): Unit

    Definition Classes
    Thread
  71. def setUncaughtExceptionHandler(arg0: UncaughtExceptionHandler): Unit

    Definition Classes
    Thread
  72. def shutdown(): Unit

  73. def start(): Unit

    Definition Classes
    Thread
  74. def swallow(action: ⇒ Unit): Unit

    Definition Classes
    Logging
  75. def swallowDebug(action: ⇒ Unit): Unit

    Definition Classes
    Logging
  76. def swallowError(action: ⇒ Unit): Unit

    Definition Classes
    Logging
  77. def swallowInfo(action: ⇒ Unit): Unit

    Definition Classes
    Logging
  78. def swallowTrace(action: ⇒ Unit): Unit

    Definition Classes
    Logging
  79. def swallowWarn(action: ⇒ Unit): Unit

    Definition Classes
    Logging
  80. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  81. def toString(): String

    Definition Classes
    Thread → AnyRef → Any
  82. def trace(msg: ⇒ String, e: ⇒ Throwable): Unit

    Definition Classes
    Logging
  83. def trace(e: ⇒ Throwable): Any

    Definition Classes
    Logging
  84. def trace(msg: ⇒ String): Unit

    Definition Classes
    Logging
  85. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  86. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  87. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  88. def warn(msg: ⇒ String, e: ⇒ Throwable): Unit

    Definition Classes
    Logging
  89. def warn(e: ⇒ Throwable): Any

    Definition Classes
    Logging
  90. def warn(msg: ⇒ String): Unit

    Definition Classes
    Logging

Deprecated Value Members

  1. def countStackFrames(): Int

    Definition Classes
    Thread
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def destroy(): Unit

    Definition Classes
    Thread
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  3. final def resume(): Unit

    Definition Classes
    Thread
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  4. final def stop(arg0: Throwable): Unit

    Definition Classes
    Thread
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  5. final def stop(): Unit

    Definition Classes
    Thread
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  6. final def suspend(): Unit

    Definition Classes
    Thread
    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AbstractFetcherThread

Inherited from ShutdownableThread

Inherited from Logging

Inherited from Thread

Inherited from Runnable

Inherited from AnyRef

Inherited from Any

Ungrouped