//
        // PersistentShardCoordinator.ShardHome
        //
        private static Proto.Msg.ShardHome ShardHomeToProto(PersistentShardCoordinator.ShardHome shardHome)
        {
            var message = new Proto.Msg.ShardHome();

            message.Shard  = shardHome.Shard;
            message.Region = Akka.Serialization.Serialization.SerializedActorPath(shardHome.Ref);
            return(message);
        }