コード例 #1
0
        public BondSerializer(Akka.Actor.ExtendedActorSystem system, BondSerializerSettings settings) : base(system)
        {
            this.Settings = settings;
            this.typeSerializerFactory = ConstructTypeSerializerFactory(settings);

            LocalSystem.Value = system;
        }
コード例 #2
0
ファイル: Extensions.cs プロジェクト: ziez/akka.net
 /// <summary>
 /// Creates the current extension using a given actor system.
 /// </summary>
 /// <param name="system">The actor system to use when creating the extension.</param>
 /// <returns>The extension created using the given actor system.</returns>
 public abstract T CreateExtension(ExtendedActorSystem system);
コード例 #3
0
ファイル: Extensions.cs プロジェクト: ziez/akka.net
 object IExtensionId.CreateExtension(ExtendedActorSystem system)
 {
     return(CreateExtension(system));
 }
コード例 #4
0
 public BondSerializer(Akka.Actor.ExtendedActorSystem system, Config config) : this(system, BondSerializerSettings.Create(config))
 {
 }
コード例 #5
0
 public BondSerializer(Akka.Actor.ExtendedActorSystem system) : this(system, BondSerializerSettings.Default)
 {
 }