c

com . snowflake . snowpark

MergeTypedAsyncJob

class MergeTypedAsyncJob extends TypedAsyncJob [ MergeResult ]

Provides a way to track an asynchronously executed action in a MergeBuilder.

Since

1.3.0

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MergeTypedAsyncJob
  2. TypedAsyncJob
  3. AsyncJob
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. final def asInstanceOf [ T0 ] : T0
    Definition Classes
    Any
  5. def cancel () : Unit

    Cancel the underlying query if it is running.

    Cancel the underlying query if it is running.

    Definition Classes
    AsyncJob
    Since

    0.11.0

  6. def clone () : AnyRef
    Attributes
    protected[ lang ]
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... ) @native () @HotSpotIntrinsicCandidate ()
  7. final def eq ( arg0: AnyRef ) : Boolean
    Definition Classes
    AnyRef
  8. def equals ( arg0: Any ) : Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass () : Class [_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  10. def getIterator ( maxWaitTimeInSeconds: Int = session.requestTimeoutInSeconds ) : Iterator [ Row ]

    Returns an iterator of Row objects that you can use to retrieve the results for the underlying query.

    Returns an iterator of Row objects that you can use to retrieve the results for the underlying query.

    Unlike the getRows method, this method does not load all data into memory at once.

    maxWaitTimeInSeconds

    The maximum number of seconds to wait for the query to complete before attempting to retrieve the results. The default value is the value of the snowpark_request_timeout_in_seconds configuration property.

    returns

    An Iterator of Row objects

    Definition Classes
    AsyncJob
    Since

    0.11.0

  11. def getQueryId () : String

    Get the query ID for the underlying query.

    Get the query ID for the underlying query.

    returns

    a query ID

    Definition Classes
    AsyncJob
    Since

    0.11.0

  12. def getResult ( maxWaitTimeInSeconds: Int = session.requestTimeoutInSeconds ) : MergeResult

    Returns the MergeResult for the MergeBuilder's action

    Returns the MergeResult for the MergeBuilder's action

    maxWaitTimeInSeconds

    The maximum number of seconds to wait for the query to complete before attempting to retrieve the results. The default value is the value of the snowpark_request_timeout_in_seconds configuration property.

    returns

    The MergeResult

    Definition Classes
    MergeTypedAsyncJob TypedAsyncJob
    Since

    1.3.0

  13. def getRows ( maxWaitTimeInSeconds: Int = session.requestTimeoutInSeconds ) : Array [ Row ]

    Returns an Array of Row objects that represent the results of the underlying query.

    Returns an Array of Row objects that represent the results of the underlying query.

    maxWaitTimeInSeconds

    The maximum number of seconds to wait for the query to complete before attempting to retrieve the results. The default value is the value of the snowpark_request_timeout_in_seconds configuration property.

    returns

    An Array of Row objects

    Definition Classes
    AsyncJob
    Since

    0.11.0

  14. def hashCode () : Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  15. def isDone () : Boolean

    Returns true if the underlying query completed.

    Returns true if the underlying query completed.

    Completion may be due to query success, cancellation or failure, in all of these cases, this method will return true.

    returns

    true if this query completed.

    Definition Classes
    AsyncJob
    Since

    0.11.0

  16. final def isInstanceOf [ T0 ] : Boolean
    Definition Classes
    Any
  17. final def ne ( arg0: AnyRef ) : Boolean
    Definition Classes
    AnyRef
  18. final def notify () : Unit
    Definition Classes
    AnyRef
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  19. final def notifyAll () : Unit
    Definition Classes
    AnyRef
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  20. final def synchronized [ T0 ] ( arg0: ⇒ T0 ) : T0
    Definition Classes
    AnyRef
  21. def toString () : String
    Definition Classes
    AnyRef → Any
  22. final def wait ( arg0: Long , arg1: Int ) : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... )
  23. final def wait ( arg0: Long ) : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... ) @native ()
  24. final def wait () : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... )

Deprecated Value Members

  1. def finalize () : Unit
    Attributes
    protected[ lang ]
    Definition Classes
    AnyRef
    Annotations
    @throws ( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AsyncJob

Inherited from AnyRef

Inherited from Any

Ungrouped