Skip to content

Commit

Permalink
introduce cluster priority messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeralsing committed Jan 21, 2024
1 parent 0bf92e6 commit 2110812
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Proto.Cluster/Gossip/Messages.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using Proto.Remote;

namespace Proto.Cluster.Gossip;

public partial class GossipRequest : IRemotePriorityMessage
{

}

public partial class GossipResponse : IRemotePriorityMessage
{

}

5 changes: 5 additions & 0 deletions src/Proto.Cluster/Messages/Messages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,9 @@ public static uint TopologyHash(IEnumerable<Member> members)

return hash;
}
}

public partial class MemberHeartbeat : IRemotePriorityMessage
{

}

0 comments on commit 2110812

Please sign in to comment.