Class DataFrameAsyncActor

    • Field Detail

      • session

        protected final com.snowflake.snowpark.Session session
    • Method Detail

      • collect

        public TypedAsyncJob<Row[]> collect()
        Executes DataFrame.collect asynchronously.
        Returns:
        A TypedAsyncJob object that you can use to check the status of the action and get the results.
        Since:
        1.2.0
      • toLocalIterator

        public TypedAsyncJob<Iterator<Row>> toLocalIterator()
        Executes DataFrame.toLocalIterator asynchronously.
        Returns:
        A TypedAsyncJob object that you can use to check the status of the action and get the results.
        Since:
        1.2.0
      • count

        public TypedAsyncJob<Long> count()
        Executes DataFrame.count asynchronously.
        Returns:
        A TypedAsyncJob object that you can use to check the status of the action and get the results.
        Since:
        1.2.0