Package org.apache.pekko.serialization
Class AsyncSerializerWithStringManifestCS
- java.lang.Object
 - 
- org.apache.pekko.serialization.SerializerWithStringManifest
 - 
- org.apache.pekko.serialization.AsyncSerializerWithStringManifest
 - 
- org.apache.pekko.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 Summary
Constructors Constructor Description AsyncSerializerWithStringManifestCS(ExtendedActorSystem system) 
- 
Method Summary
All 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 org.apache.pekko.serialization.AsyncSerializerWithStringManifest
fromBinary, toBinary 
- 
Methods inherited from class org.apache.pekko.serialization.SerializerWithStringManifest
fromBinary, identifier, includeManifest, manifest 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.apache.pekko.serialization.Serializer
fromBinary, fromBinary 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
AsyncSerializerWithStringManifestCS
public AsyncSerializerWithStringManifestCS(ExtendedActorSystem system)
 
 - 
 
- 
Method Detail
- 
fromBinaryAsync
public scala.concurrent.Future<java.lang.Object> fromBinaryAsync(byte[] bytes, java.lang.String manifest)Delegates tofromBinaryAsyncCS(byte[], java.lang.String) 
- 
fromBinaryAsyncCS
public abstract java.util.concurrent.CompletionStage<java.lang.Object> fromBinaryAsyncCS(byte[] bytes, java.lang.String manifest) 
- 
toBinaryAsync
public final scala.concurrent.Future<byte[]> toBinaryAsync(java.lang.Object o)
Delegates totoBinaryAsyncCS(java.lang.Object) 
- 
toBinaryAsyncCS
public abstract java.util.concurrent.CompletionStage<byte[]> toBinaryAsyncCS(java.lang.Object o)
 
 - 
 
 -