Object/Class

com.zengularity.benji.vfs

VFSTransport

Related Docs: class VFSTransport | package vfs

Permalink

object VFSTransport

VFS transport factory.

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

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[T](config: T)(implicit provider: URIProvider[T]): Try[VFSTransport]

    Permalink

    Tries to create a VFSTransport from an URI using the following format: vfs:scheme://path Where scheme is any scheme in the providers.xml file

    Tries to create a VFSTransport from an URI using the following format: vfs:scheme://path Where scheme is any scheme in the providers.xml file

    import com.zengularity.benji.vfs.VFSTransport
    
    def init1 =
      VFSTransport("vfs:file:///home/someuser/somedir")
    
    // or
    def init2 =
      VFSTransport(new java.net.URI("vfs:file:///home/someuser/somedir"))
    T

    the config type to be consumed by the provider typeclass

    config

    the config element used by the provider to generate the URI

    provider

    a typeclass that try to generate an URI from the config element

    returns

    Success if the VFSTransport was properly created, otherwise Failure

    Annotations
    @SuppressWarnings()
  5. def apply(fsManager: FileSystemManager = VFS.getManager()): VFSTransport

    Permalink

    Initializes a transport based on the given FS manager.

    Initializes a transport based on the given FS manager.

    fsManager

    the VFS manager

    import org.apache.commons.vfs2.{ FileSystemManager, VFS }
    import com.zengularity.benji.vfs.VFSTransport
    def fsManager: FileSystemManager = VFS.getManager()
    implicit def vfsTransport = VFSTransport(fsManager)
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def temporary(base: String): Try[VFSTransport]

    Permalink

    Initialies a transport based on a temporary FS manager.

    Initialies a transport based on a temporary FS manager. If the specified directory doesn't exist, it will be created.

    base

    the base name for the temporary directory

    import com.zengularity.benji.vfs.VFSTransport
    implicit def vfsTransport = VFSTransport.temporary("foo")
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped