-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46cebe5
commit e50a28a
Showing
16 changed files
with
37 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,19 @@ | ||
using System; | ||
using System; | ||
using Orleans.Placement.Rebalancing; | ||
|
||
namespace Orleans.Runtime.Messaging | ||
{ | ||
internal sealed class ConnectionCommon | ||
internal sealed class ConnectionCommon( | ||
IServiceProvider serviceProvider, | ||
MessageFactory messageFactory, | ||
MessagingTrace messagingTrace, | ||
NetworkingTrace networkingTrace, | ||
IMessageStatisticsSink messageStatisticsSink) | ||
{ | ||
public ConnectionCommon( | ||
IServiceProvider serviceProvider, | ||
MessageFactory messageFactory, | ||
MessagingTrace messagingTrace, | ||
NetworkingTrace networkingTrace) | ||
{ | ||
this.ServiceProvider = serviceProvider; | ||
this.MessageFactory = messageFactory; | ||
this.MessagingTrace = messagingTrace; | ||
this.NetworkingTrace = networkingTrace; | ||
} | ||
|
||
public MessageFactory MessageFactory { get; } | ||
public IServiceProvider ServiceProvider { get; } | ||
public NetworkingTrace NetworkingTrace { get; } | ||
public MessagingTrace MessagingTrace { get; } | ||
public MessageFactory MessageFactory { get; } = messageFactory; | ||
public IServiceProvider ServiceProvider { get; } = serviceProvider; | ||
public NetworkingTrace NetworkingTrace { get; } = networkingTrace; | ||
public IMessageStatisticsSink MessageStatisticsSink { get; } = messageStatisticsSink; | ||
public MessagingTrace MessagingTrace { get; } = messagingTrace; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters