object QueryFile

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryFile
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Close(h: ResultHandle) extends QueryFile[slamdata.Predef.Unit] with Product with Serializable

    Used to halt streaming of a result set initiated using the EvaluatePlan operation.

  2. final case class EvaluatePlan(lp: Fix[LogicalPlan]) extends QueryFile[(PhaseResults, \/[FileSystemError, ResultHandle])] with Product with Serializable

    The result of the query is immediately streamed back to the client.

    The result of the query is immediately streamed back to the client. This operation begins the streaming, in order to continue the streaming, the client must make use of the More operation and finally the Close operation in order to halt the streaming. The LogicalPlan is expected to only contain absolute paths even though that is unfortunately not expressed in the types currently.

  3. final case class ExecutePlan(lp: Fix[LogicalPlan], out: AFile) extends QueryFile[(PhaseResults, \/[FileSystemError, slamdata.Predef.Unit])] with Product with Serializable

    The result of the query is stored in an output file, overwriting any existing contents, instead of being returned to the user immediately.

    The result of the query is stored in an output file, overwriting any existing contents, instead of being returned to the user immediately.

    The LogicalPlan is expected to only contain absolute paths even though that is unfortunately not expressed in the types currently.

  4. final case class Explain(lp: Fix[LogicalPlan]) extends QueryFile[(PhaseResults, \/[FileSystemError, ExecutionPlan])] with Product with Serializable

    Represents an "explain plan" operation.

    Represents an "explain plan" operation. This operation should not actually have any side effect on the filesystem, it should simply return useful information to the user about how a given query would be evaluated on this filesystem implementation. The quasar.LogicalPlan is expected to only contain absolute paths even though that is unfortunately not expressed in the types currently.

  5. final case class FileExists(file: AFile) extends QueryFile[slamdata.Predef.Boolean] with Product with Serializable

    This operation should return whether a file exists in the filesystem.

  6. final case class ListContents(dir: ADir) extends QueryFile[\/[FileSystemError, slamdata.Predef.Set[Node]]] with Product with Serializable

    This operation lists the names of all the immediate children of the supplied directory in the filesystem.

  7. final case class More(h: ResultHandle) extends QueryFile[\/[FileSystemError, slamdata.Predef.Vector[Data]]] with Product with Serializable

    Used to continue streaming after initiating a streaming result with the EvaluatePlan operation.

  8. final class Ops[S[_]] extends LiftedOps[QueryFile, S]
  9. final case class ResultHandle(run: slamdata.Predef.Long) extends AnyVal with Product with Serializable
  10. class Transforms[F[_]] extends AnyRef
  11. final class Unsafe[S[_]] extends LiftedOps[QueryFile, S]

    Low-level, unsafe operations.

    Low-level, unsafe operations. Clients are responsible for resource-safety when using these.

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 clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. implicit def renderTree[A]: RenderTree[QueryFile[A]]
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  21. object Ops
  22. object ResultHandle extends Serializable
  23. object Transforms
  24. object Unsafe

Inherited from AnyRef

Inherited from Any

Ungrouped