Package akka.serialization
Class AsyncSerializerWithStringManifestCS
- java.lang.Object
- 
- akka.serialization.SerializerWithStringManifest
- 
- akka.serialization.AsyncSerializerWithStringManifest
- 
- akka.serialization.AsyncSerializerWithStringManifestCS
 
 
 
- 
- All Implemented Interfaces:
- AsyncSerializer,- Serializer
 
 public abstract class AsyncSerializerWithStringManifestCS extends AsyncSerializerWithStringManifest Java API: Async serializer with string manifest that delegates synchronous calls to the asynchronous calls and blocks.
- 
- 
Constructor SummaryConstructors Constructor Description AsyncSerializerWithStringManifestCS(ExtendedActorSystem system)
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description scala.concurrent.Future<java.lang.Object>fromBinaryAsync(byte[] bytes, java.lang.String manifest)Delegates tofromBinaryAsyncCS(byte[], java.lang.String)abstract java.util.concurrent.CompletionStage<java.lang.Object>fromBinaryAsyncCS(byte[] bytes, java.lang.String manifest)scala.concurrent.Future<byte[]>toBinaryAsync(java.lang.Object o)Delegates totoBinaryAsyncCS(java.lang.Object)abstract java.util.concurrent.CompletionStage<byte[]>toBinaryAsyncCS(java.lang.Object o)- 
Methods inherited from class akka.serialization.AsyncSerializerWithStringManifestfromBinary, toBinary
 - 
Methods inherited from class akka.serialization.SerializerWithStringManifestfromBinary, identifier, includeManifest, manifest
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface akka.serialization.SerializerfromBinary, fromBinary
 
- 
 
- 
- 
- 
Constructor Detail- 
AsyncSerializerWithStringManifestCSpublic AsyncSerializerWithStringManifestCS(ExtendedActorSystem system) 
 
- 
 - 
Method Detail- 
fromBinaryAsyncpublic scala.concurrent.Future<java.lang.Object> fromBinaryAsync(byte[] bytes, java.lang.String manifest)Delegates tofromBinaryAsyncCS(byte[], java.lang.String)
 - 
fromBinaryAsyncCSpublic abstract java.util.concurrent.CompletionStage<java.lang.Object> fromBinaryAsyncCS(byte[] bytes, java.lang.String manifest)
 - 
toBinaryAsyncpublic final scala.concurrent.Future<byte[]> toBinaryAsync(java.lang.Object o) Delegates totoBinaryAsyncCS(java.lang.Object)
 - 
toBinaryAsyncCSpublic abstract java.util.concurrent.CompletionStage<byte[]> toBinaryAsyncCS(java.lang.Object o) 
 
- 
 
-