abstract class ScalaAsyncBatchLookupDoFn[Input, BatchRequest, BatchResponse, Output, Client] extends BaseAsyncBatchLookupDoFn[Input, BatchRequest, BatchResponse, Output, Client, Future[BatchResponse], Try[Output]] with ScalaFutureHandlers[BatchResponse]

A DoFn that performs asynchronous lookup using the provided client for Scala Future.

Input

input element type.

BatchRequest

batched input element type

BatchResponse

batched output element type

Output

client lookup value type.

Client

client type.

Source
ScalaAsyncBatchLookupDoFn.scala
Linear Supertypes
ScalaFutureHandlers[BatchResponse], BaseAsyncBatchLookupDoFn[Input, BatchRequest, BatchResponse, Output, Client, Future[BatchResponse], Try[Output]], Base[Future[BatchResponse], BatchResponse], DoFnWithResource[Input, KV[Input, Try[Output]], Pair[Client, Cache[String, Output]]], DoFn[Input, KV[Input, Try[Output]]], HasDisplayData, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalaAsyncBatchLookupDoFn
  2. ScalaFutureHandlers
  3. BaseAsyncBatchLookupDoFn
  4. Base
  5. DoFnWithResource
  6. DoFn
  7. HasDisplayData
  8. Serializable
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ScalaAsyncBatchLookupDoFn(batchSize: Int, batchRequestFn: (Iterable[Input]) => BatchRequest, batchResponseFn: (BatchResponse) => Iterable[(String, Output)], idExtractorFn: (Input) => String, maxPendingRequests: Int, cacheSupplier: CacheSupplier[String, Output] = new NoOpCacheSupplier[String, Output]())

Type Members

  1. abstract class FinishBundleContext extends AnyRef
    Definition Classes
    DoFn
  2. abstract class OnTimerContext extends WindowedContext
    Definition Classes
    DoFn
  3. abstract class OnWindowExpirationContext extends WindowedContext
    Definition Classes
    DoFn
  4. abstract class ProcessContext extends WindowedContext
    Definition Classes
    DoFn
  5. abstract class StartBundleContext extends AnyRef
    Definition Classes
    DoFn
  6. abstract class WindowedContext extends AnyRef
    Definition Classes
    DoFn

Abstract Value Members

  1. abstract def asyncLookup(client: Client, input: BatchRequest): Future[BatchResponse]
    Definition Classes
    BaseAsyncBatchLookupDoFn
  2. abstract def getResourceType(): ResourceType

    Get resource type.

    Get resource type.

    Definition Classes
    DoFnWithResource
  3. abstract def newClient(): Client
    Attributes
    protected[transforms]
    Definition Classes
    BaseAsyncBatchLookupDoFn
  4. abstract object FinishBundleContext
    Definition Classes
    DoFn
  5. abstract object ProcessContext
    Definition Classes
    DoFn
  6. abstract object StartBundleContext
    Definition Classes
    DoFn
  7. abstract object WindowedContext
    Definition Classes
    DoFn

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addCallback(future: Future[BatchResponse], onSuccess: Function[BatchResponse, Void], onFailure: Function[Throwable, Void]): Future[BatchResponse]
    Definition Classes
    ScalaFutureHandlers → Base
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def closeResource(resource: Pair[Client, Cache[String, Output]]): Unit

    Close resource.

    Close resource.

    Default implementation closes AutoCloseable resource.

    Definition Classes
    BaseAsyncBatchLookupDoFnDoFnWithResource
    Annotations
    @Override()
  8. def createResource(): Pair[Client, Cache[String, Output]]

    Create resource.

    Create resource.

    DoFnWithResource#getResourceType() determines how many times this is called.

    Definition Classes
    BaseAsyncBatchLookupDoFnDoFnWithResource
    Annotations
    @Override()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def failure(throwable: Throwable): Try[Output]
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def finishBundle(context: FinishBundleContext): Unit
    Definition Classes
    BaseAsyncBatchLookupDoFn
    Annotations
    @FinishBundle()
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def getInputTypeDescriptor(): TypeDescriptor[Input]
    Definition Classes
    DoFn
  16. def getOutputTypeDescriptor(): TypeDescriptor[KV[Input, Try[Output]]]
    Definition Classes
    DoFn
  17. def getResource(): Pair[Client, Cache[String, Output]]

    Get managed resource.

    Get managed resource.

    Definition Classes
    DoFnWithResource
    Annotations
    @SuppressWarnings()
  18. def getResourceCache(): Cache[String, Output]
    Definition Classes
    BaseAsyncBatchLookupDoFn
  19. def getResourceClient(): Client
    Definition Classes
    BaseAsyncBatchLookupDoFn
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def populateDisplayData(builder: Builder): Unit
    Definition Classes
    DoFnWithResource → DoFn → HasDisplayData
    Annotations
    @Override()
  26. def processElement(input: Input, timestamp: Instant, window: BoundedWindow, pane: PaneInfo, out: OutputReceiver[KV[Input, Try[Output]]]): Unit
    Definition Classes
    BaseAsyncBatchLookupDoFn
    Annotations
    @ProcessElement()
  27. def setup(): Unit
    Definition Classes
    DoFnWithResource
    Annotations
    @Setup()
  28. def startBundle(context: StartBundleContext): Unit
    Definition Classes
    BaseAsyncBatchLookupDoFn
    Annotations
    @StartBundle()
  29. def success(output: Output): Try[Output]
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def teardown(): Unit
    Definition Classes
    DoFnWithResource
    Annotations
    @Teardown()
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. def waitForFutures(futures: Iterable[Future[BatchResponse]]): Unit
    Definition Classes
    ScalaFutureHandlers → Base

Deprecated Value Members

  1. def getAllowedTimestampSkew(): Duration
    Definition Classes
    DoFn
    Annotations
    @Deprecated
    Deprecated
  2. final def prepareForProcessing(): Unit
    Definition Classes
    DoFn
    Annotations
    @Deprecated
    Deprecated
  3. def processElement(input: Input, timestamp: Instant, out: OutputReceiver[KV[Input, Try[Output]]], window: BoundedWindow): Unit
    Definition Classes
    BaseAsyncBatchLookupDoFn
    Annotations
    @Deprecated
    Deprecated

Inherited from ScalaFutureHandlers[BatchResponse]

Inherited from BaseAsyncBatchLookupDoFn[Input, BatchRequest, BatchResponse, Output, Client, Future[BatchResponse], Try[Output]]

Inherited from Base[Future[BatchResponse], BatchResponse]

Inherited from DoFnWithResource[Input, KV[Input, Try[Output]], Pair[Client, Cache[String, Output]]]

Inherited from DoFn[Input, KV[Input, Try[Output]]]

Inherited from HasDisplayData

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped