abstract class JavaAsyncBatchLookupDoFn[Input, BatchRequest, BatchResponse, Output, ClientType] extends BaseAsyncBatchLookupDoFn[Input, BatchRequest, BatchResponse, Output, ClientType, CompletableFuture[BatchResponse], Try[Output]] with Java[BatchResponse]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JavaAsyncBatchLookupDoFn
- Java
- BaseAsyncBatchLookupDoFn
- Base
- DoFnWithResource
- DoFn
- HasDisplayData
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new JavaAsyncBatchLookupDoFn(batchSize: Int, batchRequestFn: SerializableFunction[List[Input], BatchRequest], batchResponseFn: SerializableFunction[BatchResponse, List[Pair[String, Output]]], idExtractorFn: SerializableFunction[Input, String], maxPendingRequests: Int, cacheSupplier: CacheSupplier[String, Output])
- new JavaAsyncBatchLookupDoFn(batchSize: Int, batchRequestFn: SerializableFunction[List[Input], BatchRequest], batchResponseFn: SerializableFunction[BatchResponse, List[Pair[String, Output]]], idExtractorFn: SerializableFunction[Input, String], maxPendingRequests: Int)
Type Members
- abstract class FinishBundleContext extends AnyRef
- Definition Classes
- DoFn
- abstract class OnTimerContext extends WindowedContext
- Definition Classes
- DoFn
- abstract class OnWindowExpirationContext extends WindowedContext
- Definition Classes
- DoFn
- abstract class ProcessContext extends WindowedContext
- Definition Classes
- DoFn
- abstract class StartBundleContext extends AnyRef
- Definition Classes
- DoFn
- abstract class WindowedContext extends AnyRef
- Definition Classes
- DoFn
Abstract Value Members
- abstract def asyncLookup(client: ClientType, input: BatchRequest): CompletableFuture[BatchResponse]
- Definition Classes
- BaseAsyncBatchLookupDoFn
- abstract def getResourceType(): ResourceType
Get resource type.
Get resource type.
- Definition Classes
- DoFnWithResource
- abstract def newClient(): ClientType
- Attributes
- protected[transforms]
- Definition Classes
- BaseAsyncBatchLookupDoFn
- abstract object FinishBundleContext
- Definition Classes
- DoFn
- abstract object ProcessContext
- Definition Classes
- DoFn
- abstract object StartBundleContext
- Definition Classes
- DoFn
- abstract object WindowedContext
- Definition Classes
- DoFn
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addCallback(future: CompletableFuture[BatchResponse], onSuccess: Function[BatchResponse, Void], onFailure: Function[Throwable, Void]): CompletableFuture[BatchResponse]
- Definition Classes
- Java → Base
- Annotations
- @Override()
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def closeResource(resource: Pair[ClientType, Cache[String, Output]]): Unit
Close resource.
Close resource.
Default implementation closes
AutoCloseable
resource.- Definition Classes
- BaseAsyncBatchLookupDoFn → DoFnWithResource
- Annotations
- @Override()
- def createResource(): Pair[ClientType, Cache[String, Output]]
Create resource.
Create resource.
DoFnWithResource#getResourceType()
determines how many times this is called.- Definition Classes
- BaseAsyncBatchLookupDoFn → DoFnWithResource
- Annotations
- @Override()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def failure(throwable: Throwable): Try[Output]
- Definition Classes
- JavaAsyncBatchLookupDoFn → BaseAsyncBatchLookupDoFn
- Annotations
- @Override()
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def finishBundle(context: FinishBundleContext): Unit
- Definition Classes
- BaseAsyncBatchLookupDoFn
- Annotations
- @FinishBundle()
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getInputTypeDescriptor(): TypeDescriptor[Input]
- Definition Classes
- DoFn
- def getOutputTypeDescriptor(): TypeDescriptor[KV[Input, Try[Output]]]
- Definition Classes
- DoFn
- def getResource(): Pair[ClientType, Cache[String, Output]]
Get managed resource.
Get managed resource.
- Definition Classes
- DoFnWithResource
- Annotations
- @SuppressWarnings()
- def getResourceCache(): Cache[String, Output]
- Definition Classes
- BaseAsyncBatchLookupDoFn
- def getResourceClient(): ClientType
- Definition Classes
- BaseAsyncBatchLookupDoFn
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def populateDisplayData(builder: Builder): Unit
- Definition Classes
- DoFnWithResource → DoFn → HasDisplayData
- Annotations
- @Override()
- def processElement(input: Input, timestamp: Instant, window: BoundedWindow, pane: PaneInfo, out: OutputReceiver[KV[Input, Try[Output]]]): Unit
- Definition Classes
- BaseAsyncBatchLookupDoFn
- Annotations
- @ProcessElement()
- def setup(): Unit
- Definition Classes
- DoFnWithResource
- Annotations
- @Setup()
- def startBundle(context: StartBundleContext): Unit
- Definition Classes
- BaseAsyncBatchLookupDoFn
- Annotations
- @StartBundle()
- def success(output: Output): Try[Output]
- Definition Classes
- JavaAsyncBatchLookupDoFn → BaseAsyncBatchLookupDoFn
- Annotations
- @Override()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def teardown(): Unit
- Definition Classes
- DoFnWithResource
- Annotations
- @Teardown()
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def waitForFutures(futures: Iterable[CompletableFuture[BatchResponse]]): Unit
- Definition Classes
- Java → Base
- Annotations
- @Override()
Deprecated Value Members
- def getAllowedTimestampSkew(): Duration
- Definition Classes
- DoFn
- Annotations
- @Deprecated
- Deprecated
- final def prepareForProcessing(): Unit
- Definition Classes
- DoFn
- Annotations
- @Deprecated
- Deprecated
- def processElement(input: Input, timestamp: Instant, out: OutputReceiver[KV[Input, Try[Output]]], window: BoundedWindow): Unit
- Definition Classes
- BaseAsyncBatchLookupDoFn
- Annotations
- @Deprecated
- Deprecated