Object/Class

com.weightwatchers.reactive.kinesis.producer

KinesisProducerActor

Related Docs: class KinesisProducerActor | package producer

Permalink

object KinesisProducerActor

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. KinesisProducerActor
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Send(producerEvent: ProducerEvent) extends Product with Serializable

    Permalink

    Send a message to Kinesis witout any callbacks.

    Send a message to Kinesis witout any callbacks. Fire and forget.

  2. case class SendFailed(messageId: String, reason: Throwable) extends Product with Serializable

    Permalink

    Sent to the sender in event of a failed completion.

    Sent to the sender in event of a failed completion.

    messageId

    The id of the event that failed.

    reason

    The exception causing the failure. Likely to be of type com.amazonaws.services.kinesis.producer.UserRecordFailedException

  3. case class SendSuccessful(messageId: String, userRecordResult: UserRecordResult) extends Product with Serializable

    Permalink

    Sent to the sender in event of a successful completion.

    Sent to the sender in event of a successful completion.

    messageId

    The id of the event that was sent.

    userRecordResult

    The Kinesis data regarding the send.

  4. case class SendWithCallback(producerEvent: ProducerEvent, messageId: String = UUID_GENERATOR.generate().toString) extends Product with Serializable

    Permalink

    Send a message to Kinesis, registering a callback response of SendSuccessful or SendFailed accordingly.

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. def props(kinesisProducer: KinesisProducer): Props

    Permalink
  16. def props(kinesisProducer: KinesisProducer, maxOutstandingRequests: Int): Props

    Permalink
  17. def props(producerConf: ProducerConf): Props

    Permalink

    Create a KinesisProducer and passes it to a KinesisProducerActor, returning the Props.

    Create a KinesisProducer and passes it to a KinesisProducerActor, returning the Props.

    producerConf

    A complete ProducerConf case class.

  18. def props(kinesisConfig: Config, producerName: String, credentialsProvider: Option[AWSCredentialsProvider] = None): Props

    Permalink

    Create a KinesisProducer and passes it to a KinesisProducerActor, returning the Props.

    Create a KinesisProducer and passes it to a KinesisProducerActor, returning the Props.

    This function will attempt to load config (per value) from the producerName section within kinesisConfig.

    Values from the default-producer section will be used for any missing configurations.

    stream-name MUST be specified within the producer specific configuration.

    kinesisConfig

    The top level Kinesis configuration. This MUST contain the producer configuration (as per the name) in addition to the aws configuration.

    producerName

    The name of the producer, as per the configuration.

    credentialsProvider

    A specific CredentialsProvider. The KCL defaults to DefaultAWSCredentialsProviderChain.

    See also

    src/it/resources/application.conf for a override configuration example.

    src/main/resources/reference.conf for the default configuration.

  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped