org.apache.spark.streaming.zeromq

ZeroMQUtils

object ZeroMQUtils

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ZeroMQUtils
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def createStream[T](jssc: JavaStreamingContext, publisherUrl: String, subscribe: Subscribe, bytesToObjects: Function[Array[Array[Byte]], Iterable[T]]): JavaDStream[T]

    Create an input stream that receives messages pushed by a zeromq publisher.

    Create an input stream that receives messages pushed by a zeromq publisher.

    jssc

    JavaStreamingContext object

    publisherUrl

    Url of remote zeromq publisher

    subscribe

    Topic to subscribe to

    bytesToObjects

    A zeroMQ stream publishes sequence of frames for each topic and each frame has sequence of byte thus it needs the converter(which might be deserializer of bytes) to translate from sequence of sequence of bytes, where sequence refer to a frame and sub sequence refer to its payload.

  9. def createStream[T](jssc: JavaStreamingContext, publisherUrl: String, subscribe: Subscribe, bytesToObjects: Function[Array[Array[Byte]], Iterable[T]], storageLevel: StorageLevel): JavaDStream[T]

    Create an input stream that receives messages pushed by a zeromq publisher.

    Create an input stream that receives messages pushed by a zeromq publisher.

    jssc

    JavaStreamingContext object

    publisherUrl

    Url of remote zeromq publisher

    subscribe

    Topic to subscribe to

    bytesToObjects

    A zeroMQ stream publishes sequence of frames for each topic and each frame has sequence of byte thus it needs the converter(which might be deserializer of bytes) to translate from sequence of sequence of bytes, where sequence refer to a frame and sub sequence refer to its payload.

    storageLevel

    RDD storage level.

  10. def createStream[T](jssc: JavaStreamingContext, publisherUrl: String, subscribe: Subscribe, bytesToObjects: Function[Array[Array[Byte]], Iterable[T]], storageLevel: StorageLevel, supervisorStrategy: SupervisorStrategy): JavaDStream[T]

    Create an input stream that receives messages pushed by a zeromq publisher.

    Create an input stream that receives messages pushed by a zeromq publisher.

    jssc

    JavaStreamingContext object

    publisherUrl

    Url of remote ZeroMQ publisher

    subscribe

    Topic to subscribe to

    bytesToObjects

    A zeroMQ stream publishes sequence of frames for each topic and each frame has sequence of byte thus it needs the converter(which might be deserializer of bytes) to translate from sequence of sequence of bytes, where sequence refer to a frame and sub sequence refer to its payload.

    storageLevel

    Storage level to use for storing the received objects

  11. def createStream[T](ssc: StreamingContext, publisherUrl: String, subscribe: Subscribe, bytesToObjects: (Seq[ByteString]) ⇒ Iterator[T], storageLevel: StorageLevel = StorageLevel.MEMORY_AND_DISK_SER_2, supervisorStrategy: SupervisorStrategy = ...)(implicit arg0: ClassTag[T]): DStream[T]

    Create an input stream that receives messages pushed by a zeromq publisher.

    Create an input stream that receives messages pushed by a zeromq publisher.

    ssc

    StreamingContext object

    publisherUrl

    Url of remote zeromq publisher

    subscribe

    Topic to subscribe to

    bytesToObjects

    A zeroMQ stream publishes sequence of frames for each topic and each frame has sequence of byte thus it needs the converter (which might be deserializer of bytes) to translate from sequence of sequence of bytes, where sequence refer to a frame and sub sequence refer to its payload.

    storageLevel

    RDD storage level. Defaults to StorageLevel.MEMORY_AND_DISK_SER_2.

  12. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped