global.namespace.fun.io.scala

api

package api

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. api
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Buffer = api.Buffer

  2. type Codec = api.Codec

  3. type ConnectedCodec = api.ConnectedCodec

  4. type Decoder = api.Decoder

  5. type Encoder = api.Encoder

  6. type Sink = api.Sink

  7. type Socket[T <: AutoCloseable] = api.Socket[T]

  8. type Source = api.Source

  9. type Store = api.Store

  10. type Transformation = api.Transformation

  11. implicit class WithCodec extends AnyRef

  12. implicit class WithStore extends AnyRef

  13. implicit class WithTransformation extends AnyRef

Value Members

  1. def sink(out: ⇒ OutputStream): Sink

    Creates a sink from the given by-name parameter.

    Creates a sink from the given by-name parameter. This method is primarily required for Scala 2.10 and 2.11. In Scala 2.12, the same effect could be achieved by writing the expression (() => () => out): Sink.

  2. def socket[A <: AutoCloseable](c: ⇒ A): Socket[A]

    Creates a socket from the given by-name parameter.

    Creates a socket from the given by-name parameter. This method is primarily required for Scala 2.10 and 2.11. In Scala 2.12, the same effect could be achieved by writing the expression (() => c): Socket[A].

  3. def source(in: ⇒ InputStream): Source

    Creates a source from the given by-name parameter.

    Creates a source from the given by-name parameter. This method is primarily required for Scala 2.10 and 2.11. In Scala 2.12, the same effect could be achieved by writing the expression (() => () => in): Source.

  4. implicit def xConsumer[A](consumer: (A) ⇒ Unit): XConsumer[A]

  5. implicit def xFunction[A, B](function: (A) ⇒ B): XFunction[A, B]

  6. implicit def xSupplier[A](a: ⇒ A): XSupplier[A]

Inherited from AnyRef

Inherited from Any

Ungrouped