object DatasyncManager
- Alphabetic
- By Inheritance
- DatasyncManager
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(): DatasyncManager
Scala API.
Scala API. Obtain a
DatasyncManager
for preparing operations on Flexible Datasync, such as Put or Listen. First, anActorSystem
is started, then bothExecutionContextExecutor
andActorMaterializer
are created under the hood, from thisActorSystem
, respectively viasystem.dispatcher
method andActorMaterializer
's apply methods.
Example:val manager = DatasyncManager()
-
def
apply(system: ActorSystem): DatasyncManager
Scala API.
Scala API. Obtain a
DatasyncManager
for preparing operations on Flexible Datasync, such as Put or Listen. BothExecutionContextExecutor
andActorMaterializer
are created under the hood, from system, respectively viasystem.dispatcher
method andActorMaterializer
's apply methods. Example:val system = ActorSystem("myActorSystemName") val manager = DatasyncManager(system)
- system
an already started
ActorSystem
-
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. AnExecutionContextExecutor
, is created under the hood from system default dispatcher viasystem.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 viaActorMaterializer
's apply method
-
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. AnActorMaterializer
is created under the hood from system viaActorMaterializer
'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 viasystem.dispatcher
method
-
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 viasystem.dispatcher
method- materializer
an
ActorMaterializer
, usually obtained from system viaActorMaterializer
's apply method
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
create(): DatasyncManager
Java API.
Java API. Create a
DatasyncManager
for preparing operations on Flexible Datasync, such as Put or Listen. First, anActorSystem
is started, then bothExecutionContextExecutor
andActorMaterializer
are created under the hood, from thisActorSystem
, respectively viasystem.dispatcher
method andActorMaterializer
's apply methods. Example:final static DatasyncManager manager = DatasyncManager.create();
-
def
create(system: ActorSystem): DatasyncManager
Java API.
Java API. Create a
DatasyncManager
for preparing operations on Flexible Datasync, such as Put or Listen. BothExecutionContextExecutor
andActorMaterializer
are created under the hood, from system, respectively viasystem.dispatcher
method andActorMaterializer
's apply methods. Example:final static ActorSystem system = ActorSystem.create("myActorSystemName"); final static DatasyncManager manager = DatasyncManager.create(system);
- system
an already started
ActorSystem
-
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. AnExecutionContextExecutor
, is created under the hood from system default dispatcher viasystem.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 viaActorMaterializer
's apply method
-
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. AnActorMaterializer
is created under the hood from system viaActorMaterializer
'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 viasystem.dispatcher
method
-
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 viasystem.dispatcher
method- materializer
an
ActorMaterializer
, usually obtained from system viaActorMaterializer
's apply method
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )