public ISurrogated FromSurrogate(ActorSystem system)
 {
     return(SerializationTools.ToSinkRefImpl((ExtendedActorSystem)system, EventType, OriginPath));
 }
Exemple #2
0
 private ByteString SerializeSourceRef(SourceRefImpl sourceRef) =>
 SerializationTools.ToSourceRef(sourceRef).ToByteString();
 public ISurrogated FromSurrogate(ActorSystem system) =>
 SerializationTools.ToSourceRefImpl((ExtendedActorSystem)system, EventType, OriginPath);
Exemple #4
0
        private SourceRefImpl DeserializeSourceRef(byte[] bytes)
        {
            var sourceRef = SourceRef.Parser.ParseFrom(bytes);

            return(SerializationTools.ToSourceRefImpl(_system, sourceRef.EventType.TypeName, sourceRef.OriginRef.Path));
        }