org.apache.spark.streaming.akka

AkkaUtils

object AkkaUtils

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AkkaUtils
  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, propsForActor: Props, actorName: String): JavaReceiverInputDStream[T]

    Create an input stream with a user-defined actor.

    Create an input stream with a user-defined actor. Storage level of the data will be the default StorageLevel.MEMORY_AND_DISK_SER_2. See JavaActorReceiver for more details.

    jssc

    The StreamingContext instance

    propsForActor

    Props object defining creation of the actor

    actorName

    Name of the actor

    Note

    An important point to note: Since Actor may exist outside the spark framework, It is thus user's responsibility to ensure the type safety, i.e. parametrized type of data received and createStream should be same.

  9. def createStream[T](jssc: JavaStreamingContext, propsForActor: Props, actorName: String, storageLevel: StorageLevel): JavaReceiverInputDStream[T]

    Create an input stream with a user-defined actor.

    Create an input stream with a user-defined actor. See JavaActorReceiver for more details.

    jssc

    The StreamingContext instance

    propsForActor

    Props object defining creation of the actor

    actorName

    Name of the actor

    storageLevel

    Storage level to use for storing the received objects

    Note

    An important point to note: Since Actor may exist outside the spark framework, It is thus user's responsibility to ensure the type safety, i.e. parametrized type of data received and createStream should be same.

  10. def createStream[T](jssc: JavaStreamingContext, propsForActor: Props, actorName: String, storageLevel: StorageLevel, actorSystemCreator: Function0[ActorSystem], supervisorStrategy: SupervisorStrategy): JavaReceiverInputDStream[T]

    Create an input stream with a user-defined actor.

    Create an input stream with a user-defined actor. See JavaActorReceiver for more details.

    jssc

    The StreamingContext instance

    propsForActor

    Props object defining creation of the actor

    actorName

    Name of the actor

    storageLevel

    Storage level to use for storing the received objects

    actorSystemCreator

    A function to create ActorSystem in executors. ActorSystem will be shut down when the receiver is stopping.

    supervisorStrategy

    the supervisor strategy

    Note

    An important point to note: Since Actor may exist outside the spark framework, It is thus user's responsibility to ensure the type safety, i.e. parametrized type of data received and createStream should be same.

  11. def createStream[T](ssc: StreamingContext, propsForActor: Props, actorName: String, storageLevel: StorageLevel = StorageLevel.MEMORY_AND_DISK_SER_2, actorSystemCreator: () ⇒ ActorSystem = ..., supervisorStrategy: SupervisorStrategy = ...)(implicit arg0: ClassTag[T]): ReceiverInputDStream[T]

    Create an input stream with a user-defined actor.

    Create an input stream with a user-defined actor. See ActorReceiver for more details.

    ssc

    The StreamingContext instance

    propsForActor

    Props object defining creation of the actor

    actorName

    Name of the actor

    storageLevel

    RDD storage level (default: StorageLevel.MEMORY_AND_DISK_SER_2)

    actorSystemCreator

    A function to create ActorSystem in executors. ActorSystem will be shut down when the receiver is stopping (default: ActorReceiver.defaultActorSystemCreator)

    supervisorStrategy

    the supervisor strategy (default: ActorReceiver.defaultStrategy)

    Note

    An important point to note: Since Actor may exist outside the spark framework, It is thus user's responsibility to ensure the type safety, i.e. parametrized type of data received and createStream should be same.

  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