Packages

object DatasyncManager

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

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. def apply(): DatasyncManager

    Scala API.

    Scala API. Obtain a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. First, an ActorSystem is started, then both ExecutionContextExecutor and ActorMaterializer are created under the hood, from this ActorSystem, respectively via system.dispatcher method and ActorMaterializer's apply methods.
    Example:

    val manager = DatasyncManager()
  5. def apply(system: ActorSystem): DatasyncManager

    Scala API.

    Scala API. Obtain a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. Both ExecutionContextExecutor and ActorMaterializer are created under the hood, from system, respectively via system.dispatcher method and ActorMaterializer's apply methods. Example:

    val system = ActorSystem("myActorSystemName")
    
    val manager = DatasyncManager(system)
    system

    an already started ActorSystem

  6. def apply(system: ActorSystem, materializer: ActorMaterializer): DatasyncManager

    Scala API.

    Scala API. Obtain a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. An ExecutionContextExecutor, is created under the hood from system default dispatcher via system.dispatcher method. Example:

    val system = ActorSystem("myActorSystemName")
    val materializer = ActorMaterializer()(system)
    
    val manager = DatasyncManager(system, materializer)
    system

    an already started ActorSystem

    materializer

    an ActorMaterializer, usually obtained from system via ActorMaterializer's apply method

  7. def apply(system: ActorSystem, executor: ExecutionContextExecutor): DatasyncManager

    Scala API.

    Scala API. Obtain a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. An ActorMaterializer is created under the hood from system via ActorMaterializer's apply method. Example:

    val system = ActorSystem("myActorSystemName")
    val executor = system.dispatcher
    
    val manager = DatasyncManager(system, executor)
    system

    an already started ActorSystem

    executor

    an ExecutionContextExecutor, usually obtained from system default dispatcher via system.dispatcher method

  8. def apply(system: ActorSystem, executor: ExecutionContextExecutor, materializer: ActorMaterializer): DatasyncManager

    Scala API.

    Scala API. Obtain a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. Example:

    val system = ActorSystem("myActorSystemName")
    val executor = system.dispatcher
    val materializer = ActorMaterializer()(system)
    
    val manager = DatasyncManager(system, executor, materializer)
    system

    an already started ActorSystem

    executor

    an ExecutionContextExecutor, usually obtained from system default dispatcher via system.dispatcher method

    materializer

    an ActorMaterializer, usually obtained from system via ActorMaterializer's apply method

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. def create(): DatasyncManager

    Java API.

    Java API. Create a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. First, an ActorSystem is started, then both ExecutionContextExecutor and ActorMaterializer are created under the hood, from this ActorSystem, respectively via system.dispatcher method and ActorMaterializer's apply methods. Example:

    final static DatasyncManager manager = DatasyncManager.create();
  12. def create(system: ActorSystem): DatasyncManager

    Java API.

    Java API. Create a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. Both ExecutionContextExecutor and ActorMaterializer are created under the hood, from system, respectively via system.dispatcher method and ActorMaterializer's apply methods. Example:

    final static ActorSystem system = ActorSystem.create("myActorSystemName");
    
    final static DatasyncManager manager = DatasyncManager.create(system);
    system

    an already started ActorSystem

  13. def create(system: ActorSystem, materializer: ActorMaterializer): DatasyncManager

    Java API.

    Java API. Create a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. An ExecutionContextExecutor, is created under the hood from system default dispatcher via system.dispatcher method. Example:

    final static ActorSystem system = ActorSystem.create("myActorSystemName");
    final static ActorMaterializer materializer = ActorMaterializer.create(system);
    
    final static DatasyncManager manager = DatasyncManager.create(system, materializer);
    system

    an already started ActorSystem

    materializer

    an ActorMaterializer, usually obtained from system via ActorMaterializer's apply method

  14. def create(system: ActorSystem, executor: ExecutionContextExecutor): DatasyncManager

    Java API.

    Java API. Create a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. An ActorMaterializer is created under the hood from system via ActorMaterializer's apply method. Example:

    final static ActorSystem system = ActorSystem.create("myActorSystemName");
    final static ExecutionContextExecutor executor = system.dispatcher();
    
    final static DatasyncManager manager = DatasyncManager.create(system, executor);
    system

    an already started ActorSystem

    executor

    an ExecutionContextExecutor, usually obtained from system default dispatcher via system.dispatcher method

  15. def create(system: ActorSystem, executor: ExecutionContextExecutor, materializer: ActorMaterializer): DatasyncManager

    Java API.

    Java API. Create a DatasyncManager for preparing operations on Flexible Datasync, such as Put or Listen. Example:

    final static ActorSystem system = ActorSystem.create("myActorSystemName");
    final static ExecutionContextExecutor executor = system.dispatcher();
    final static ActorMaterializer materializer = ActorMaterializer.create(system);
    
    final static DatasyncManager manager = DatasyncManager.create(system, executor, materializer);
    system

    an already started ActorSystem

    executor

    an ExecutionContextExecutor, usually obtained from system default dispatcher via system.dispatcher method

    materializer

    an ActorMaterializer, usually obtained from system via ActorMaterializer's apply method

  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped