object SerializerDetails

Source
SerializationSetup.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SerializerDetails
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(alias: String, serializer: Serializer, useFor: Seq[Class[_]]): SerializerDetails

    Scala API: factory for details about one programmatically setup serializer

    Scala API: factory for details about one programmatically setup serializer

    alias

    Register the serializer under this alias (this allows it to be used by bindings in the config)

    useFor

    A set of classes or superclasses to bind to the serializer, selection works just as if the classes, the alias and the serializer had been in the config.

  2. def create(alias: String, serializer: Serializer, useFor: List[Class[_]]): SerializerDetails

    Java API: factory for details about one programmatically setup serializer

    Java API: factory for details about one programmatically setup serializer

    alias

    Register the serializer under this alias (this allows it to be used by bindings in the config)

    useFor

    A set of classes or superclasses to bind to the serializer, selection works just as if the classes, the alias and the serializer had been in the config.