Class AsyncUtil.Options

java.lang.Object
org.apache.flink.table.planner.plan.utils.AsyncUtil.Options
Enclosing class:
AsyncUtil

public static class AsyncUtil.Options extends Object
Options for configuring async behavior.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
     
    final org.apache.flink.streaming.api.datastream.AsyncDataStream.OutputMode
     
    final org.apache.flink.streaming.api.functions.async.AsyncRetryStrategy<org.apache.flink.table.data.RowData>
     
    final long
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Options(int asyncBufferCapacity, long asyncTimeout, org.apache.flink.streaming.api.datastream.AsyncDataStream.OutputMode asyncOutputMode, org.apache.flink.streaming.api.functions.async.AsyncRetryStrategy<org.apache.flink.table.data.RowData> asyncRetryStrategy)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • asyncBufferCapacity

      public final int asyncBufferCapacity
    • asyncTimeout

      public final long asyncTimeout
    • asyncOutputMode

      public final org.apache.flink.streaming.api.datastream.AsyncDataStream.OutputMode asyncOutputMode
    • asyncRetryStrategy

      public final org.apache.flink.streaming.api.functions.async.AsyncRetryStrategy<org.apache.flink.table.data.RowData> asyncRetryStrategy
  • Constructor Details

    • Options

      public Options(int asyncBufferCapacity, long asyncTimeout, org.apache.flink.streaming.api.datastream.AsyncDataStream.OutputMode asyncOutputMode, org.apache.flink.streaming.api.functions.async.AsyncRetryStrategy<org.apache.flink.table.data.RowData> asyncRetryStrategy)
  • Method Details