/// <inheritdoc/> public override int GetHashCode() { unchecked { return(ShardRegion?.GetHashCode() ?? 0); } }
/// <inheritdoc/> public override int GetHashCode() { unchecked { return(RegionProxy?.GetHashCode() ?? 0); } }
/// <inheritdoc/> public override int GetHashCode() { unchecked { return(Coordinator?.GetHashCode() ?? 0); } }
/// <inheritdoc/> public override int GetHashCode() { unchecked { int hashCode = Shard?.GetHashCode() ?? 0; hashCode = (hashCode * 397) ^ (Region?.GetHashCode() ?? 0); return(hashCode); } }
public override int GetHashCode() { unchecked { var hashCode = (Messages != null ? Messages.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (PersistentActor != null ? PersistentActor.GetHashCode() : 0); hashCode = (hashCode * 397) ^ ActorInstanceId; return(hashCode); } }
/// <summary> /// TBD /// </summary> /// <returns>TBD</returns> public override int GetHashCode() { unchecked { var hashCode = (PersistenceId != null ? PersistenceId.GetHashCode() : 0); hashCode = (hashCode * 397) ^ ToSequenceNr.GetHashCode(); hashCode = (hashCode * 397) ^ (PersistentActor != null ? PersistentActor.GetHashCode() : 0); return(hashCode); } }
public override int GetHashCode() { unchecked { var hashCode = base.GetHashCode(); hashCode = (hashCode * 397) ^ (HandshakeInfo != null ? HandshakeInfo.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (StateActor != null ? StateActor.GetHashCode() : 0); return(hashCode); } }
public override int GetHashCode() { unchecked { int hashCode = (_name != null ? _name.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (_addr != null ? _addr.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (_fsm != null ? _fsm.GetHashCode() : 0); return(hashCode); } }
public override int GetHashCode() { unchecked { var hashCode = (Topic != null ? Topic.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (Group != null ? Group.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (Ref != null ? Ref.GetHashCode() : 0); return(hashCode); } }
public override int GetHashCode() { return(Ref != null ? Ref.GetHashCode() : 0); }