Class DataConnectionRef

java.lang.Object
com.hazelcast.jet.pipeline.DataConnectionRef
All Implemented Interfaces:
Serializable

public class DataConnectionRef extends Object implements Serializable
Represents a reference to the data connection, used with Sources.jdbc(DataConnectionRef, ToResultSetFunction, FunctionEx).
Since:
5.2
See Also:
  • Constructor Details

    • DataConnectionRef

      public DataConnectionRef(String name)
  • Method Details

    • dataConnectionRef

      public static DataConnectionRef dataConnectionRef(String name)
      Creates a reference to the configured data connection
      Parameters:
      name - name of the data connection configured in DataConnectionConfig
      Returns:
      the reference to the data connection
    • nullableDataConnectionRef

      public static DataConnectionRef nullableDataConnectionRef(String name)
      If the name parameter is null, this method returns null. Otherwise, it behaves identically to dataConnectionRef(String).
    • getName

      public String getName()
    • toString

      public String toString()
      Overrides:
      toString in class Object