SYMBOL INDEX (37670 symbols across 2808 files) FILE: playground/ActivationRebalancing/ActivationRebalancing.Cluster/Program.cs class LoadDriverBackgroundService (line 35) | internal class LoadDriverBackgroundService(IGrainFactory client) : Backg... method ExecuteAsync (line 37) | protected override async Task ExecuteAsync(CancellationToken stoppingT... type IRebalancingTestGrain (line 51) | public interface IRebalancingTestGrain : IGrainWithGuidKey method Ping (line 53) | Task Ping(); class RebalancingTestGrain (line 56) | [CollectionAgeLimit(Minutes = 0.5)] method Ping (line 59) | public Task Ping() => Task.CompletedTask; FILE: playground/ActivationRebalancing/ActivationRebalancing.Frontend/Controllers/StatsController.cs class StatsController (line 7) | [ApiController] method GetStats (line 11) | [HttpGet("silos")] type SiloData (line 36) | public record SiloData(string Host, int Activations); FILE: playground/ActivationRepartitioning/ActivationRepartitioning.Frontend/Data/ClusterDiagnosticsService.cs class ClusterDiagnosticsService (line 7) | public class ClusterDiagnosticsService(IGrainFactory grainFactory) type GrainDetails (line 14) | private readonly record struct GrainDetails(int GrainKey, int HostKey); type HostDetails (line 15) | private readonly record struct HostDetails(int HostKey, int Activation... method GetGrainCallFrequencies (line 18) | public async ValueTask GetGrainCallFrequencies() method ResetAsync (line 106) | internal async ValueTask ResetAsync() method Reset (line 118) | internal void Reset() method GetGrainVertex (line 129) | private GrainDetails GetGrainVertex(GrainId grainId, int hostKey) method GetHostVertex (line 143) | private int GetHostVertex(SiloAddress silo) method UpdateEdge (line 157) | private void UpdateEdge(Key key, ulong increment) type CallGraph (line 167) | public record class CallGraph(List GrainIds, List H... type HostNode (line 169) | public record struct HostNode(string Name, int ActivationCount); type GraphNode (line 170) | public record struct GraphNode(string Name, string Key, int Host, double... type Key (line 171) | public record struct Key(int Source, int Target); type GraphEdge (line 172) | public record struct GraphEdge(int Source, int Target, double Weight); FILE: playground/ActivationRepartitioning/ActivationRepartitioning.Frontend/Program.cs type ILoaderGrain (line 77) | public interface ILoaderGrain : IGrainWithStringKey method AddForest (line 79) | ValueTask AddForest(); method Reset (line 80) | ValueTask Reset(); method GetResetCount (line 81) | ValueTask GetResetCount(); class LoaderGrain (line 84) | public class LoaderGrain : Grain, ILoaderGrain method AddForest (line 89) | public async ValueTask AddForest() method Reset (line 96) | public async ValueTask Reset() method GetResetCount (line 104) | public ValueTask GetResetCount() => new(_resetCount); type IFanOutGrain (line 107) | public interface IFanOutGrain : IGrainWithIntegerCompoundKey method Ping (line 109) | public ValueTask Ping(); class FanOutGrain (line 112) | public class FanOutGrain : Grain, IFanOutGrain method FanOutGrain (line 118) | public FanOutGrain() method Ping (line 139) | public async ValueTask Ping() FILE: playground/ActivationSheddingToy/ActivationSheddingToyHostedService.cs class ActivationSheddingToyHostedService (line 6) | internal sealed class ActivationSheddingToyHostedService(IGrainFactory g... method ExecuteAsync (line 8) | protected override async Task ExecuteAsync(CancellationToken stoppingT... method PrintUsage (line 61) | private void PrintUsage(int i, List<(int GrainCount, long UsageBytes)>... method PlotAndPrintStats (line 71) | private static void PlotAndPrintStats(List<(int GrainCount, long Usage... class ActivationSheddingToyGrain (line 91) | internal sealed class ActivationSheddingToyGrain : Grain, IActivationShe... method Ping (line 94) | public Task Ping() type IActivationSheddingToyGrain (line 101) | internal interface IActivationSheddingToyGrain : IGrainWithIntegerKey method Ping (line 103) | Task Ping(); FILE: playground/ChaoticCluster/ChaoticCluster.ServiceDefaults/Extensions.cs class Extensions (line 14) | public static class Extensions method AddServiceDefaults (line 16) | public static IHostApplicationBuilder AddServiceDefaults(this IHostApp... method ConfigureOpenTelemetry (line 42) | public static IHostApplicationBuilder ConfigureOpenTelemetry(this IHos... method AddOpenTelemetryExporters (line 65) | private static IHostApplicationBuilder AddOpenTelemetryExporters(this ... method AddDefaultHealthChecks (line 84) | public static IHostApplicationBuilder AddDefaultHealthChecks(this IHos... method MapDefaultEndpoints (line 93) | public static WebApplication MapDefaultEndpoints(this WebApplication app) FILE: playground/ChaoticCluster/ChaoticCluster.Silo/SiloBuilderConfigurator.cs class SiloBuilderConfigurator (line 5) | class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 7) | public void Configure(ISiloBuilder siloBuilder) type IMyTestGrain (line 15) | internal interface IMyTestGrain : IGrainWithIntegerKey method Ping (line 17) | ValueTask Ping(); class MyTestGrain (line 20) | [CollectionAgeLimit(Minutes = 1.01)] method Ping (line 23) | public ValueTask Ping() => default; FILE: src/AWS/Orleans.Clustering.DynamoDB/AWSUtilsHostingExtensions.cs class AwsUtilsHostingExtensions (line 10) | public static class AwsUtilsHostingExtensions method UseDynamoDBClustering (line 24) | public static ISiloBuilder UseDynamoDBClustering( method UseDynamoDBClustering (line 52) | public static ISiloBuilder UseDynamoDBClustering( method UseDynamoDBClustering (line 76) | public static IClientBuilder UseDynamoDBClustering( method UseDynamoDBClustering (line 104) | public static IClientBuilder UseDynamoDBClustering( FILE: src/AWS/Orleans.Clustering.DynamoDB/DynamoDBClusteringProviderBuilder.cs class DynamoDBClusteringProviderBuilder (line 12) | internal sealed class DynamoDBClusteringProviderBuilder : IProviderBuild... method Configure (line 14) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... method Configure (line 81) | public void Configure(IClientBuilder builder, string name, IConfigurat... FILE: src/AWS/Orleans.Clustering.DynamoDB/Membership/DynamoDBGatewayListProvider.cs class DynamoDBGatewayListProvider (line 16) | internal class DynamoDBGatewayListProvider : IGatewayListProvider method DynamoDBGatewayListProvider (line 24) | public DynamoDBGatewayListProvider( method InitializeGatewayListProvider (line 36) | public Task InitializeGatewayListProvider() method GetGateways (line 64) | public async Task> GetGateways() FILE: src/AWS/Orleans.Clustering.DynamoDB/Membership/DynamoDBGatewayListProviderHelper.cs class DynamoDBGatewayListProviderHelper (line 8) | public class DynamoDBGatewayListProviderHelper method ParseDataConnectionString (line 21) | internal static void ParseDataConnectionString(string dataConnectionSt... FILE: src/AWS/Orleans.Clustering.DynamoDB/Membership/DynamoDBMembershipHelper.cs class DynamoDBMembershipHelper (line 8) | public class DynamoDBMembershipHelper method ParseDataConnectionString (line 22) | public static void ParseDataConnectionString(string dataConnectionStri... FILE: src/AWS/Orleans.Clustering.DynamoDB/Membership/DynamoDBMembershipTable.cs class DynamoDBMembershipTable (line 18) | internal partial class DynamoDBMembershipTable : IMembershipTable method DynamoDBMembershipTable (line 30) | public DynamoDBMembershipTable( method InitializeMembershipTable (line 40) | public async Task InitializeMembershipTable(bool tryInitTableVersion) method TryCreateTableVersionEntryAsync (line 79) | private async Task TryCreateTableVersionEntryAsync() method TryCreateTableVersionRecord (line 112) | private bool TryCreateTableVersionRecord(int version, string etag, out... method DeleteMembershipTableEntries (line 139) | public async Task DeleteMembershipTableEntries(string clusterId) method ReadRow (line 166) | public async Task ReadRow(SiloAddress siloAddress) method ReadAll (line 196) | public async Task ReadAll() method InsertRow (line 235) | public async Task InsertRow(MembershipEntry entry, TableVersion ... method UpdateRow (line 300) | public async Task UpdateRow(MembershipEntry entry, string etag, ... method UpdateIAmAlive (line 374) | public async Task UpdateIAmAlive(MembershipEntry entry) method Convert (line 391) | private MembershipTableData Convert(List entries) method Parse (line 427) | private static MembershipEntry Parse(SiloInstanceRecord tableEntry) method Convert (line 478) | private SiloInstanceRecord Convert(MembershipEntry memEntry, TableVers... method ConvertPartial (line 525) | private SiloInstanceRecord ConvertPartial(MembershipEntry memEntry) method CleanupDefunctSiloEntries (line 535) | public async Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method SiloIsDefunct (line 562) | private static bool SiloIsDefunct(SiloInstanceRecord silo, DateTimeOff... method LogInformationInitializingMembershipTable (line 569) | [LoggerMessage( method LogInformationCreatedNewTableVersionRow (line 575) | [LoggerMessage( method LogErrorUnableToDeleteMembershipRecords (line 581) | [LoggerMessage( method LogTraceReadMyEntry (line 587) | [LoggerMessage( method LogWarningIntermediateErrorReadingSiloEntry (line 593) | [LoggerMessage( method LogWarningFoundInconsistencyReadingAllSiloEntries (line 599) | [LoggerMessage( method LogTraceReadAllTable (line 605) | [LoggerMessage( method LogWarningIntermediateErrorReadingAllSiloEntries (line 611) | [LoggerMessage( method LogDebugInsertRow (line 617) | [LoggerMessage( method LogWarningInsertFailedInvalidETag (line 623) | [LoggerMessage( method LogWarningInsertFailedDueToContention (line 629) | [LoggerMessage( method LogWarningIntermediateErrorInsertingEntry (line 635) | [LoggerMessage( method LogDebugUpdateRow (line 641) | [LoggerMessage( method LogWarningUpdateFailedInvalidETag (line 647) | [LoggerMessage( method LogWarningUpdateFailedDueToContention (line 653) | [LoggerMessage( method LogWarningIntermediateErrorUpdatingEntry (line 659) | [LoggerMessage( method LogDebugMergeEntry (line 665) | [LoggerMessage( method LogWarningIntermediateErrorUpdatingIAmAlive (line 671) | [LoggerMessage( method LogErrorIntermediateErrorParsingSiloInstanceTableEntry (line 677) | [LoggerMessage( method LogErrorIntermediateErrorParsingSiloInstanceTableEntries (line 683) | [LoggerMessage( method LogErrorUnableToCleanUpDefunctMembershipRecords (line 689) | [LoggerMessage( FILE: src/AWS/Orleans.Clustering.DynamoDB/Membership/SiloInstanceRecord.cs class SiloInstanceRecord (line 9) | internal class SiloInstanceRecord method SiloInstanceRecord (line 47) | public SiloInstanceRecord() { } method SiloInstanceRecord (line 49) | public SiloInstanceRecord(Dictionary fields) method UnpackRowKey (line 103) | internal static SiloAddress UnpackRowKey(string rowKey) method ToString (line 124) | public override string ToString() method ConstructSiloIdentity (line 147) | public static string ConstructSiloIdentity(SiloAddress silo) method GetKeys (line 152) | public Dictionary GetKeys() method GetFields (line 160) | public Dictionary GetFields(bool includeKeys =... FILE: src/AWS/Orleans.Clustering.DynamoDB/Options/DynamoDBClusteringOptions.cs class DynamoDBClusteringOptions (line 5) | public class DynamoDBClusteringOptions : DynamoDBClientOptions FILE: src/AWS/Orleans.Clustering.DynamoDB/Options/DynamoDBClusteringSiloOptions.cs class DynamoDBClusteringSiloOptions (line 3) | public class DynamoDBClusteringSiloOptions FILE: src/AWS/Orleans.Clustering.DynamoDB/Options/DynamoDBGatewayOptions.cs class DynamoDBGatewayOptions (line 5) | public class DynamoDBGatewayOptions : DynamoDBClientOptions FILE: src/AWS/Orleans.Persistence.DynamoDB/Hosting/DynamoDBGrainStorageProviderBuilder.cs class DynamoDBGrainStorageProviderBuilder (line 15) | internal sealed class DynamoDBGrainStorageProviderBuilder : IProviderBui... method Configure (line 17) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/AWS/Orleans.Persistence.DynamoDB/Hosting/DynamoDBGrainStorageServiceCollectionExtensions.cs class DynamoDBGrainStorageServiceCollectionExtensions (line 16) | public static class DynamoDBGrainStorageServiceCollectionExtensions method AddDynamoDBGrainStorageAsDefault (line 21) | public static IServiceCollection AddDynamoDBGrainStorageAsDefault(this... method AddDynamoDBGrainStorage (line 29) | public static IServiceCollection AddDynamoDBGrainStorage(this IService... method AddDynamoDBGrainStorageAsDefault (line 37) | public static IServiceCollection AddDynamoDBGrainStorageAsDefault(this... method AddDynamoDBGrainStorage (line 45) | public static IServiceCollection AddDynamoDBGrainStorage(this IService... FILE: src/AWS/Orleans.Persistence.DynamoDB/Hosting/DynamoDBGrainStorageSiloBuilderExtensions.cs class DynamoDBGrainStorageSiloBuilderExtensions (line 8) | public static class DynamoDBGrainStorageSiloBuilderExtensions method AddDynamoDBGrainStorageAsDefault (line 13) | public static ISiloBuilder AddDynamoDBGrainStorageAsDefault(this ISilo... method AddDynamoDBGrainStorage (line 21) | public static ISiloBuilder AddDynamoDBGrainStorage(this ISiloBuilder b... method AddDynamoDBGrainStorageAsDefault (line 29) | public static ISiloBuilder AddDynamoDBGrainStorageAsDefault(this ISilo... method AddDynamoDBGrainStorage (line 37) | public static ISiloBuilder AddDynamoDBGrainStorage(this ISiloBuilder b... FILE: src/AWS/Orleans.Persistence.DynamoDB/Options/DynamoDBStorageOptions.cs class DynamoDBStorageOptions (line 8) | public class DynamoDBStorageOptions : DynamoDBClientOptions, IStoragePro... class DynamoDBGrainStorageOptionsValidator (line 68) | public class DynamoDBGrainStorageOptionsValidator : IConfigurationValidator method DynamoDBGrainStorageOptionsValidator (line 78) | public DynamoDBGrainStorageOptionsValidator(DynamoDBStorageOptions opt... method ValidateConfiguration (line 84) | public void ValidateConfiguration() FILE: src/AWS/Orleans.Persistence.DynamoDB/Provider/DynamoDBGrainStorage.cs class DynamoDBGrainStorage (line 24) | public partial class DynamoDBGrainStorage : IGrainStorage, ILifecyclePar... method DynamoDBGrainStorage (line 44) | public DynamoDBGrainStorage( method Participate (line 56) | public void Participate(ISiloLifecycle lifecycle) method Init (line 62) | public async Task Init(CancellationToken ct) method Close (line 111) | public Task Close(CancellationToken ct) => Task.CompletedTask; method ReadStateAsync (line 115) | public async Task ReadStateAsync(string grainType, GrainId grainId,... method WriteStateAsync (line 156) | public async Task WriteStateAsync(string grainType, GrainId grainId... method WriteStateInternal (line 181) | private async Task WriteStateInternal(IGrainState grainState, Gr... method ClearStateAsync (line 249) | public async Task ClearStateAsync(string grainType, GrainId grainId... class GrainStateRecord (line 286) | internal class GrainStateRecord method GetKeyString (line 294) | private string GetKeyString(GrainId grainId) method ConvertFromStorageFormat (line 300) | internal T ConvertFromStorageFormat(GrainStateRecord entity) method ConvertToStorageFormat (line 326) | internal void ConvertToStorageFormat(object grainState, GrainStateReco... method ResetGrainState (line 346) | private void ResetGrainState(IGrainState grainState) method CreateInstance (line 353) | private T CreateInstance() => _activatorProvider.GetActivator().... method LogInformationInitializingDynamoDBGrainStorage (line 355) | [LoggerMessage( method LogInformationProviderInitialized (line 361) | [LoggerMessage( method LogErrorProviderInitFailed (line 367) | [LoggerMessage( method LogTraceReadingGrainState (line 374) | [LoggerMessage( method LogErrorWritingGrainState (line 380) | [LoggerMessage( method LogTraceClearingGrainState (line 386) | [LoggerMessage( method LogErrorClearingGrainState (line 392) | [LoggerMessage( method LogError (line 398) | [LoggerMessage( method LogTraceWritingBinaryData (line 404) | [LoggerMessage( class DynamoDBGrainStorageFactory (line 411) | public static class DynamoDBGrainStorageFactory method Create (line 413) | public static DynamoDBGrainStorage Create(IServiceProvider services, s... FILE: src/AWS/Orleans.Reminders.DynamoDB/DynamoDBRemindersProviderBuilder.cs class DynamoDBRemindersProviderBuilder (line 10) | internal sealed class DynamoDBRemindersProviderBuilder : IProviderBuilde... method Configure (line 12) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/AWS/Orleans.Reminders.DynamoDB/DynamoDBServiceCollectionReminderExtensions.cs class DynamoDBServiceCollectionReminderExtensions (line 11) | public static class DynamoDBServiceCollectionReminderExtensions method UseDynamoDBReminderService (line 25) | public static IServiceCollection UseDynamoDBReminderService(this IServ... FILE: src/AWS/Orleans.Reminders.DynamoDB/DynamoDBSiloBuilderReminderExtensions.cs class DynamoDBSiloBuilderReminderExtensions (line 9) | public static class DynamoDBSiloBuilderReminderExtensions method UseDynamoDBReminderService (line 23) | public static ISiloBuilder UseDynamoDBReminderService(this ISiloBuilde... FILE: src/AWS/Orleans.Reminders.DynamoDB/Reminders/DynamoDBReminderTable.cs class DynamoDBReminderTable (line 16) | internal sealed partial class DynamoDBReminderTable : IReminderTable method DynamoDBReminderTable (line 40) | public DynamoDBReminderTable( method Init (line 51) | public Task Init() method ReadRow (line 113) | public async Task ReadRow(GrainId grainId, string remin... method ReadRows (line 139) | public async Task ReadRows(GrainId grainId) method ReadRows (line 167) | public async Task ReadRows(uint begin, uint end) method Resolve (line 216) | private ReminderEntry Resolve(Dictionary item) method RemoveRow (line 235) | public async Task RemoveRow(GrainId grainId, string reminderName... method TestOnlyClearTable (line 263) | public async Task TestOnlyClearTable() method UpsertRow (line 306) | public async Task UpsertRow(ReminderEntry entry) method ConstructReminderId (line 338) | private static string ConstructReminderId(string serviceId, GrainId gr... method LogInformationInitializingDynamoDBRemindersTable (line 340) | [LoggerMessage( type DictionaryLogRecord (line 347) | private readonly struct DictionaryLogRecord(Dictionary Utils.DictionaryToString(keys); method LogWarningReadReminderEntry (line 352) | [LoggerMessage( method LogWarningReadReminderEntries (line 359) | [LoggerMessage( method LogWarningReadReminderEntryRange (line 366) | [LoggerMessage( method LogWarningRemoveReminderEntries (line 373) | [LoggerMessage( method LogDebugUpsertRow (line 380) | [LoggerMessage( method LogWarningUpdateReminderEntry (line 386) | [LoggerMessage( FILE: src/AWS/Orleans.Reminders.DynamoDB/Reminders/DynamoDbReminderServiceOptions.cs class DynamoDBReminderTableOptions (line 6) | public class DynamoDBReminderTableOptions FILE: src/AWS/Orleans.Reminders.DynamoDB/Reminders/DynamoDbReminderStorageOptions.cs class DynamoDBReminderStorageOptions (line 8) | public class DynamoDBReminderStorageOptions : DynamoDBClientOptions FILE: src/AWS/Orleans.Reminders.DynamoDB/Reminders/DynamoDbReminderStorageOptionsExtensions.cs class DynamoDBReminderStorageOptionsExtensions (line 9) | public static class DynamoDBReminderStorageOptionsExtensions method ParseConnectionString (line 23) | public static void ParseConnectionString(this DynamoDBReminderStorageO... FILE: src/AWS/Orleans.Streaming.SQS/Hosting/ClientBuilderExtensions.cs class ClientBuilderExtensions (line 6) | public static class ClientBuilderExtensions method AddSqsStreams (line 10) | public static IClientBuilder AddSqsStreams(this IClientBuilder builder... method AddSqsStreams (line 20) | public static IClientBuilder AddSqsStreams(this IClientBuilder builder... FILE: src/AWS/Orleans.Streaming.SQS/Hosting/SiloBuilderExtensions.cs class SiloBuilderExtensions (line 6) | public static class SiloBuilderExtensions method AddSqsStreams (line 11) | public static ISiloBuilder AddSqsStreams(this ISiloBuilder builder, st... method AddSqsStreams (line 21) | public static ISiloBuilder AddSqsStreams(this ISiloBuilder builder, st... FILE: src/AWS/Orleans.Streaming.SQS/Storage/SQSStorage.cs class SQSStorage (line 18) | internal partial class SQSStorage method SQSStorage (line 46) | public SQSStorage(ILoggerFactory loggerFactory, string queueName, stri... method ParseDataConnectionString (line 54) | private void ParseDataConnectionString(string dataConnectionString) method CreateClient (line 83) | private void CreateClient() method GetQueueUrl (line 105) | private async Task GetQueueUrl() method InitQueueAsync (line 125) | public async Task InitQueueAsync() method DeleteQueue (line 145) | public async Task DeleteQueue() method AddMessage (line 164) | public async Task AddMessage(SendMessageRequest message) method GetMessages (line 185) | public async Task> GetMessages(int count = 1) method DeleteMessage (line 211) | public async Task DeleteMessage(SQSMessage message) method ReportErrorAndRethrow (line 233) | private void ReportErrorAndRethrow(Exception exc, string operation) method LogErrorSQSOperation (line 239) | [LoggerMessage( FILE: src/AWS/Orleans.Streaming.SQS/Streams/SQSAdapter.cs class SQSAdapter (line 13) | internal class SQSAdapter : IQueueAdapter method SQSAdapter (line 26) | public SQSAdapter(Serializer serializer, IConsisten... method CreateReceiver (line 38) | public IQueueAdapterReceiver CreateReceiver(QueueId queueId) method QueueMessageBatchAsync (line 43) | public async Task QueueMessageBatchAsync(StreamId streamId, IEnumer... FILE: src/AWS/Orleans.Streaming.SQS/Streams/SQSAdapterFactory.cs class SQSAdapterFactory (line 16) | public class SQSAdapterFactory : IQueueAdapterFactory method SQSAdapterFactory (line 31) | public SQSAdapterFactory( method Init (line 53) | public virtual void Init() method CreateAdapter (line 63) | public virtual Task CreateAdapter() method GetQueueAdapterCache (line 70) | public virtual IQueueAdapterCache GetQueueAdapterCache() method GetStreamQueueMapper (line 76) | public IStreamQueueMapper GetStreamQueueMapper() method GetDeliveryFailureHandler (line 86) | public Task GetDeliveryFailureHandler(QueueId q... method Create (line 91) | public static SQSAdapterFactory Create(IServiceProvider services, stri... FILE: src/AWS/Orleans.Streaming.SQS/Streams/SQSAdapterReceiver.cs class SQSAdapterReceiver (line 17) | internal partial class SQSAdapterReceiver : IQueueAdapterReceiver method Create (line 28) | public static IQueueAdapterReceiver Create(Serializer serializer, I... method Initialize (line 49) | public Task Initialize(TimeSpan timeout) method Shutdown (line 58) | public async Task Shutdown(TimeSpan timeout) method GetQueueMessagesAsync (line 73) | public async Task> GetQueueMessagesAsync(int ma... method MessagesDeliveredAsync (line 100) | public async Task MessagesDeliveredAsync(IList messages) method LogWarningDeleteMessageException (line 123) | [LoggerMessage( FILE: src/AWS/Orleans.Streaming.SQS/Streams/SQSBatchContainer.cs class SQSBatchContainer (line 15) | [Serializable] method SQSBatchContainer (line 44) | [JsonConstructor] method SQSBatchContainer (line 55) | private SQSBatchContainer(StreamId streamId, List events, Dict... method GetEvents (line 64) | public IEnumerable> GetEvents() method ToSQSMessage (line 69) | internal static SendMessageRequest ToSQSMessage( method FromSQSMessage (line 87) | internal static SQSBatchContainer FromSQSMessage(Serializer ReadRow(SiloAddress key) method ReadAll (line 67) | public async Task ReadAll() method InsertRow (line 81) | public async Task InsertRow(MembershipEntry entry, TableVersion ... method UpdateRow (line 112) | public async Task UpdateRow(MembershipEntry entry, string etag, ... method UpdateIAmAlive (line 143) | public async Task UpdateIAmAlive(MembershipEntry entry) method DeleteMembershipTableEntries (line 162) | public async Task DeleteMembershipTableEntries(string clusterId) method CleanupDefunctSiloEntries (line 176) | public async Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method InitTableAsync (line 190) | private async Task InitTableAsync() method LogTraceInitializeMembershipTable (line 203) | [LoggerMessage( method LogInfoCreatedNewTableVersionRow (line 209) | [LoggerMessage( method LogTraceReadRow (line 215) | [LoggerMessage( method LogDebugReadRowFailed (line 221) | [LoggerMessage( method LogTraceReadAll (line 227) | [LoggerMessage( method LogDebugReadAllFailed (line 233) | [LoggerMessage( method LogTraceInsertRow (line 239) | [LoggerMessage( method LogDebugInsertRowAbortedNullEntry (line 245) | [LoggerMessage( method LogDebugInsertRowAbortedNullTableVersion (line 251) | [LoggerMessage( method LogDebugInsertRowFailed (line 257) | [LoggerMessage( method LogTraceUpdateRow (line 263) | [LoggerMessage( method LogDebugUpdateRowAbortedNullEntry (line 269) | [LoggerMessage( method LogDebugUpdateRowAbortedNullTableVersion (line 275) | [LoggerMessage( method LogDebugUpdateRowFailed (line 281) | [LoggerMessage( method LogTraceUpdateIAmAlive (line 287) | [LoggerMessage( method LogDebugUpdateIAmAliveAbortedNullEntry (line 293) | [LoggerMessage( method LogDebugUpdateIAmAliveFailed (line 299) | [LoggerMessage( method LogTraceDeleteMembershipTableEntries (line 305) | [LoggerMessage( method LogDebugDeleteMembershipTableEntriesFailed (line 311) | [LoggerMessage( method LogTraceCleanupDefunctSiloEntries (line 317) | [LoggerMessage( method LogDebugCleanupDefunctSiloEntriesFailed (line 323) | [LoggerMessage( method LogTraceInsertSiloMembershipVersionFailed (line 329) | [LoggerMessage( FILE: src/AdoNet/Orleans.Clustering.AdoNet/Messaging/AdoNetGatewayListProvider.cs class AdoNetGatewayListProvider (line 12) | public partial class AdoNetGatewayListProvider : IGatewayListProvider method AdoNetGatewayListProvider (line 21) | public AdoNetGatewayListProvider( method InitializeGatewayListProvider (line 45) | public async Task InitializeGatewayListProvider() method GetGateways (line 51) | public async Task> GetGateways() method LogTraceInitializeGatewayListProvider (line 65) | [LoggerMessage( method LogTraceGetGateways (line 71) | [LoggerMessage( method LogDebugGatewaysFailed (line 77) | [LoggerMessage( FILE: src/AdoNet/Orleans.Clustering.AdoNet/Migrations/PostgreSQL-Clustering-3.6.0.sql function update_i_am_alive_time (line 16) | CREATE OR REPLACE FUNCTION update_i_am_alive_time( function insert_membership (line 39) | CREATE OR REPLACE FUNCTION insert_membership( function update_membership (line 112) | CREATE OR REPLACE FUNCTION update_membership( FILE: src/AdoNet/Orleans.Clustering.AdoNet/MySQL-Clustering.sql type OrleansMembershipVersionTable (line 2) | CREATE TABLE OrleansMembershipVersionTable type OrleansMembershipTable (line 12) | CREATE TABLE OrleansMembershipTable FILE: src/AdoNet/Orleans.Clustering.AdoNet/Options/AdoNetClusteringClientOptions.cs class AdoNetClusteringClientOptions (line 3) | public class AdoNetClusteringClientOptions FILE: src/AdoNet/Orleans.Clustering.AdoNet/Options/AdoNetClusteringClientOptionsValidator.cs class AdoNetClusteringClientOptionsValidator (line 10) | public class AdoNetClusteringClientOptionsValidator : IConfigurationVali... method AdoNetClusteringClientOptionsValidator (line 14) | public AdoNetClusteringClientOptionsValidator(IOptions Lookup(GrainId grainId) method Register (line 38) | public async Task Register(GrainAddress address) method Unregister (line 67) | public async Task Unregister(GrainAddress address) method UnregisterSilos (line 96) | public async Task UnregisterSilos(List siloAddresses) method GetQueriesAsync (line 136) | private ValueTask GetQueriesAsync() method LogFailedToLookup (line 167) | [LoggerMessage(1, LogLevel.Error, "Failed to lookup({ClusterId}, {Grai... method LogRegistered (line 170) | [LoggerMessage(2, LogLevel.Debug, "Registered ({ClusterId}, {GrainId},... method LogFailedToRegister (line 173) | [LoggerMessage(3, LogLevel.Error, "Failed to register ({ClusterId}, {G... method LogUnregistered (line 176) | [LoggerMessage(4, LogLevel.Debug, "Unregistered ({ClusterId}, {GrainId... method LogFailedToUnregister (line 179) | [LoggerMessage(5, LogLevel.Error, "Failed to unregister ({ClusterId}, ... method LogUnregisteredSilos (line 182) | [LoggerMessage(6, LogLevel.Debug, "Unregistered {Count} activations fr... method LogFailedToUnregisterSilos (line 185) | [LoggerMessage(7, LogLevel.Error, "Failed to unregister silos {SiloAdd... FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/AdoNetGrainDirectoryEntry.cs type AdoNetGrainDirectoryEntry (line 6) | internal sealed record AdoNetGrainDirectoryEntry( FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/AdoNetGrainDirectoryOptions.cs class AdoNetGrainDirectoryOptions (line 6) | public class AdoNetGrainDirectoryOptions FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/Hosting/AdoNetGrainDirectoryProviderBuilder.cs class AdoNetGrainDirectoryProviderBuilder (line 7) | internal sealed class AdoNetGrainDirectoryProviderBuilder : IProviderBui... method Configure (line 9) | public void Configure(ISiloBuilder builder, string? name, IConfigurati... FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/Hosting/AdoNetGrainDirectoryServiceCollectionExtensions.cs class AdoNetGrainDirectoryServiceCollectionExtensions (line 8) | internal static class AdoNetGrainDirectoryServiceCollectionExtensions method AddAdoNetGrainDirectory (line 10) | internal static IServiceCollection AddAdoNetGrainDirectory( FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/Hosting/AdoNetGrainDirectorySiloBuilderExtensions.cs class AdoNetGrainDirectorySiloBuilderExtensions (line 3) | public static class AdoNetGrainDirectorySiloBuilderExtensions method UseAdoNetGrainDirectoryAsDefault (line 5) | public static ISiloBuilder UseAdoNetGrainDirectoryAsDefault( method UseAdoNetGrainDirectoryAsDefault (line 10) | public static ISiloBuilder UseAdoNetGrainDirectoryAsDefault( method AddAdoNetGrainDirectory (line 15) | public static ISiloBuilder AddAdoNetGrainDirectory( method AddAdoNetGrainDirectory (line 21) | public static ISiloBuilder AddAdoNetGrainDirectory( FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/MySQL-GrainDirectory.sql type OrleansGrainDirectory (line 11) | CREATE TABLE OrleansGrainDirectory type TempSiloAddresses (line 199) | CREATE TEMPORARY TABLE TempSiloAddresses FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/Options/AdoNetGrainDirectoryOptionsValidator.cs class AdoNetGrainDirectoryOptionsValidator (line 8) | public class AdoNetGrainDirectoryOptionsValidator(AdoNetGrainDirectoryOp... method ValidateConfiguration (line 11) | public void ValidateConfiguration() FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/PostgreSQL-GrainDirectory.sql type OrleansGrainDirectory (line 11) | CREATE TABLE OrleansGrainDirectory function RegisterGrainActivation (line 41) | CREATE OR REPLACE FUNCTION RegisterGrainActivation( function UnregisterGrainActivation (line 106) | CREATE OR REPLACE FUNCTION UnregisterGrainActivation( function LookupGrainActivation (line 143) | CREATE OR REPLACE FUNCTION LookupGrainActivation( function UnregisterGrainActivations (line 189) | CREATE OR REPLACE FUNCTION UnregisterGrainActivations( FILE: src/AdoNet/Orleans.GrainDirectory.AdoNet/SQLServer-GrainDirectory.sql type OrleansGrainDirectory (line 11) | CREATE TABLE OrleansGrainDirectory FILE: src/AdoNet/Orleans.Persistence.AdoNet/AdoNetGrainStorageProviderBuilder.cs class AdoNetGrainStorageProviderBuilder (line 15) | internal sealed class AdoNetGrainStorageProviderBuilder : IProviderBuild... method Configure (line 17) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/AdoNet/Orleans.Persistence.AdoNet/Migrations/PostgreSQL-Persistence-3.6.0.sql function writetostorage (line 12) | CREATE OR REPLACE FUNCTION writetostorage( FILE: src/AdoNet/Orleans.Persistence.AdoNet/MySQL-Persistence.sql type OrleansStorage (line 46) | CREATE TABLE OrleansStorage FILE: src/AdoNet/Orleans.Persistence.AdoNet/Options/AdoNetGrainStorageOptions.cs class AdoNetGrainStorageOptions (line 11) | public class AdoNetGrainStorageOptions : IStorageProviderSerializerOptions method UseOrleans3CompatibleHasher (line 51) | public void UseOrleans3CompatibleHasher() class AdoNetGrainStorageOptionsValidator (line 66) | public class AdoNetGrainStorageOptionsValidator : IConfigurationValidator method AdoNetGrainStorageOptionsValidator (line 76) | public AdoNetGrainStorageOptionsValidator(AdoNetGrainStorageOptions co... method ValidateConfiguration (line 83) | public void ValidateConfiguration() class DefaultAdoNetGrainStorageOptionsHashPickerConfigurator (line 105) | public class DefaultAdoNetGrainStorageOptionsHashPickerConfigurator : IP... method PostConfigure (line 107) | public void PostConfigure(string name, AdoNetGrainStorageOptions options) FILE: src/AdoNet/Orleans.Persistence.AdoNet/Oracle-Persistence.sql type "ORLEANSSTORAGE" (line 46) | CREATE TABLE "ORLEANSSTORAGE" type "ORLEANSSTORAGE" (line 79) | CREATE INDEX "IX_ORLEANSSTORAGE" ON "ORLEANSSTORAGE" ("GRAINIDHASH", "GR... FILE: src/AdoNet/Orleans.Persistence.AdoNet/PostgreSQL-Persistence.sql type OrleansStorage (line 1) | CREATE TABLE OrleansStorage type ix_orleansstorage (line 15) | CREATE INDEX ix_orleansstorage function writetostorage (line 19) | CREATE OR REPLACE FUNCTION writetostorage( FILE: src/AdoNet/Orleans.Persistence.AdoNet/SQLServer-Persistence.sql type IX_OrleansStorage (line 83) | CREATE NONCLUSTERED INDEX IX_OrleansStorage ON OrleansStorage(GrainIdHas... FILE: src/AdoNet/Orleans.Persistence.AdoNet/Sqlite-Persistence.sql type OrleansStorage (line 46) | CREATE TABLE OrleansStorage type IX_OrleansStorage (line 76) | CREATE INDEX IX_OrleansStorage ON OrleansStorage(GrainIdHash, GrainTypeH... FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/AdoGrainKey.cs class AdoGrainKey (line 12) | internal class AdoGrainKey method AdoGrainKey (line 26) | public AdoGrainKey(long key, string keyExtension) method AdoGrainKey (line 37) | public AdoGrainKey(Guid key, string keyExtension) method AdoGrainKey (line 49) | public AdoGrainKey(string key) method GetHashBytes (line 60) | public byte[] GetHashBytes() method ToString (line 93) | public override string ToString() method ToGuidKey (line 116) | private static Guid ToGuidKey(long n0Key, long n1Key) FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/AdoNetGrainStorage.cs type RelationalStorageProviderCodes (line 27) | internal enum RelationalStorageProviderCodes class AdoNetGrainStorageFactory (line 47) | public static class AdoNetGrainStorageFactory method Create (line 49) | public static AdoNetGrainStorage Create(IServiceProvider services, str... class AdoNetGrainStorage (line 71) | [DebuggerDisplay("Name = {Name}, ConnectionString = {Storage.ConnectionS... method AdoNetGrainStorage (line 126) | public AdoNetGrainStorage( method Participate (line 142) | public void Participate(ISiloLifecycle lifecycle) method ClearStateAsync (line 149) | public async Task ClearStateAsync(string grainType, GrainId grainRe... method ReadStateAsync (line 217) | public async Task ReadStateAsync(string grainType, GrainId grainRef... method WriteStateAsync (line 282) | public async Task WriteStateAsync(string grainType, GrainId grainRe... method Init (line 334) | private async Task Init(CancellationToken cancellationToken) method Close (line 366) | private Task Close(CancellationToken token) method CheckVersionInconsistency (line 384) | private static InconsistentStateException CheckVersionInconsistency(st... method GrainIdAndExtensionAsString (line 406) | private static AdoGrainKey GrainIdAndExtensionAsString(GrainId grainId) method ExtractBaseClass (line 428) | private static string ExtractBaseClass(string typeName) method CreateInstance (line 483) | private T CreateInstance() => _activatorProvider.GetActivator().... method LogTraceClearingGrainState (line 485) | [LoggerMessage( method LogErrorClearingGrainState (line 492) | [LoggerMessage( method LogTraceClearedGrainState (line 499) | [LoggerMessage( method LogTraceReadingGrainState (line 506) | [LoggerMessage( method LogTraceNullGrainStateRead (line 513) | [LoggerMessage( method LogTraceReadGrainState (line 520) | [LoggerMessage( method LogErrorReadingGrainState (line 527) | [LoggerMessage( method LogTraceWritingGrainState (line 534) | [LoggerMessage( method LogErrorWritingGrainState (line 541) | [LoggerMessage( method LogTraceWroteGrainState (line 548) | [LoggerMessage( type ConnectionStringLogRecord (line 555) | private readonly struct ConnectionStringLogRecord(string connectionStr... method ToString (line 557) | public override string ToString() => ConfigUtilities.RedactConnectio... method LogInfoInitializedStorageProvider (line 560) | [LoggerMessage( FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/AdoNetGrainStorageServiceCollectionExtensions.cs class AdoNetGrainStorageServiceCollectionExtensions (line 17) | public static class AdoNetGrainStorageServiceCollectionExtensions method AddAdoNetGrainStorage (line 25) | public static IServiceCollection AddAdoNetGrainStorage(this IServiceCo... method AddAdoNetGrainStorage (line 36) | public static IServiceCollection AddAdoNetGrainStorage(this IServiceCo... method AddAdoNetGrainStorageAsDefault (line 47) | public static IServiceCollection AddAdoNetGrainStorageAsDefault(this I... method AddAdoNetGrainStorage (line 58) | public static IServiceCollection AddAdoNetGrainStorage(this IServiceCo... FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/AdoNetGrainStorageSiloBuilderExtensions.cs class AdoNetGrainStorageSiloBuilderExtensions (line 8) | public static class AdoNetGrainStorageSiloBuilderExtensions method AddAdoNetGrainStorageAsDefault (line 16) | public static ISiloBuilder AddAdoNetGrainStorageAsDefault(this ISiloBu... method AddAdoNetGrainStorage (line 27) | public static ISiloBuilder AddAdoNetGrainStorage(this ISiloBuilder bui... method AddAdoNetGrainStorageAsDefault (line 38) | public static ISiloBuilder AddAdoNetGrainStorageAsDefault(this ISiloBu... method AddAdoNetGrainStorage (line 49) | public static ISiloBuilder AddAdoNetGrainStorage(this ISiloBuilder bui... FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/IHasher.cs type IHasher (line 8) | public interface IHasher method Hash (line 20) | int Hash(byte[] data); FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/IStorageHashPicker.cs type IStorageHasherPicker (line 11) | public interface IStorageHasherPicker method PickHasher (line 26) | IHasher PickHasher(string serviceId, string storageProviderInstance... FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/JenkinsHash.cs class JenkinsHash (line 10) | internal static class JenkinsHash method Mix (line 12) | private static void Mix(ref uint aa, ref uint bb, ref uint cc) method ComputeHash (line 34) | public static uint ComputeHash(ReadOnlySpan data) FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/Orleans3CompatibleHasher.cs class Orleans3CompatibleHasher (line 8) | internal class Orleans3CompatibleHasher : IHasher method Hash (line 18) | public int Hash(byte[] data) => Hash(data.AsSpan()); method Hash (line 23) | public int Hash(ReadOnlySpan data) FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/Orleans3CompatibleStorageHashPicker.cs class Orleans3CompatibleStorageHashPicker (line 9) | public class Orleans3CompatibleStorageHashPicker : IStorageHasherPicker method Orleans3CompatibleStorageHashPicker (line 21) | public Orleans3CompatibleStorageHashPicker() method PickHasher (line 30) | public IHasher PickHasher( FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/Orleans3CompatibleStringKeyHasher.cs class Orleans3CompatibleStringKeyHasher (line 10) | internal class Orleans3CompatibleStringKeyHasher : IHasher method Orleans3CompatibleStringKeyHasher (line 15) | public Orleans3CompatibleStringKeyHasher(Orleans3CompatibleHasher inne... method Hash (line 29) | public int Hash(byte[] data) method IsGrainTypeName (line 69) | private bool IsGrainTypeName(byte[] data) FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/OrleansDefaultHasher.cs class OrleansDefaultHasher (line 6) | public sealed class OrleansDefaultHasher: IHasher method Hash (line 16) | public int Hash(byte[] data) => (int)StableHash.ComputeHash(data); FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/RelationalStorageProviderQueries.cs class RelationalStorageProviderQueries (line 7) | public class RelationalStorageProviderQueries method RelationalStorageProviderQueries (line 36) | public RelationalStorageProviderQueries(string writeToStorage, string ... FILE: src/AdoNet/Orleans.Persistence.AdoNet/Storage/Provider/StorageHasherPicker.cs class StorageHasherPicker (line 13) | public class StorageHasherPicker: IStorageHasherPicker method StorageHasherPicker (line 25) | public StorageHasherPicker(IEnumerable hashProviders) method PickHasher (line 39) | public IHasher PickHasher(string serviceId, string storageProviderI... FILE: src/AdoNet/Orleans.Reminders.AdoNet/AdoNetRemindersProviderBuilder.cs class AdoNetRemindersProviderBuilder (line 14) | internal sealed class AdoNetRemindersProviderBuilder : IProviderBuilder<... method Configure (line 16) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/AdoNet/Orleans.Reminders.AdoNet/Migrations/PostgreSQL-Reminders-3.6.0.sql function upsert_reminder_row (line 12) | CREATE OR REPLACE FUNCTION upsert_reminder_row( FILE: src/AdoNet/Orleans.Reminders.AdoNet/MySQL-Reminders.sql type OrleansRemindersTable (line 2) | CREATE TABLE OrleansRemindersTable FILE: src/AdoNet/Orleans.Reminders.AdoNet/Oracle-Reminders.sql type "ORLEANSREMINDERSTABLE" (line 2) | CREATE TABLE "ORLEANSREMINDERSTABLE" FILE: src/AdoNet/Orleans.Reminders.AdoNet/PostgreSQL-Reminders.sql type OrleansRemindersTable (line 2) | CREATE TABLE OrleansRemindersTable function upsert_reminder_row (line 15) | CREATE FUNCTION upsert_reminder_row( function delete_reminder_row (line 142) | CREATE FUNCTION delete_reminder_row( FILE: src/AdoNet/Orleans.Reminders.AdoNet/ReminderService/AdoNetReminderTable.cs class AdoNetReminderTable (line 9) | internal sealed class AdoNetReminderTable : IReminderTable method AdoNetReminderTable (line 15) | public AdoNetReminderTable( method Init (line 23) | public async Task Init() method ReadRows (line 28) | public Task ReadRows(GrainId grainId) method ReadRows (line 33) | public Task ReadRows(uint beginHash, uint endHash) method ReadRow (line 38) | public Task ReadRow(GrainId grainId, string reminderName) method UpsertRow (line 43) | public Task UpsertRow(ReminderEntry entry) method RemoveRow (line 53) | public Task RemoveRow(GrainId grainId, string reminderName, stri... method TestOnlyClearTable (line 58) | public Task TestOnlyClearTable() FILE: src/AdoNet/Orleans.Reminders.AdoNet/ReminderService/AdoNetReminderTableOptions.cs class AdoNetReminderTableOptions (line 6) | public class AdoNetReminderTableOptions FILE: src/AdoNet/Orleans.Reminders.AdoNet/ReminderService/AdoNetReminderTableOptionsValidator.cs class AdoNetReminderTableOptionsValidator (line 10) | public class AdoNetReminderTableOptionsValidator : IConfigurationValidator method AdoNetReminderTableOptionsValidator (line 14) | public AdoNetReminderTableOptionsValidator(IOptions events, Di... method GetEvents (line 49) | public IEnumerable> GetEvents() method ImportRequestContext (line 58) | public bool ImportRequestContext() method FromMessage (line 76) | public static AdoNetBatchContainer FromMessage(Serializer... method ToString (line 104) | public override string ToString() => $"[{nameof(AdoNetBatchContainer)}... FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetQueueAdapter.cs class AdoNetQueueAdapter (line 6) | internal partial class AdoNetQueueAdapter(string name, AdoNetStreamOptio... method CreateReceiver (line 25) | public IQueueAdapterReceiver CreateReceiver(QueueId queueId) method QueueMessageBatchAsync (line 34) | public async Task QueueMessageBatchAsync(StreamId streamId, IEnumer... method LogFailedToQueueStreamMessage (line 67) | [LoggerMessage(1, LogLevel.Error, "Failed to queue stream message with... FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetQueueAdapterFactory.cs class AdoNetQueueAdapterFactory (line 6) | internal class AdoNetQueueAdapterFactory : IQueueAdapterFactory method AdoNetQueueAdapterFactory (line 8) | public AdoNetQueueAdapterFactory(string name, AdoNetStreamOptions stre... method GetQueriesAsync (line 44) | private ValueTask GetQueriesAsync() method CreateAdapter (line 73) | public async Task CreateAdapter() method GetDeliveryFailureHandler (line 80) | public async Task GetDeliveryFailureHandler(Que... method GetQueueAdapterCache (line 87) | public IQueueAdapterCache GetQueueAdapterCache() => _cache; method GetStreamQueueMapper (line 89) | public IStreamQueueMapper GetStreamQueueMapper() => _streamQueueMapper; method Create (line 94) | public static IQueueAdapterFactory Create(IServiceProvider serviceProv... FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetQueueAdapterReceiver.cs class AdoNetQueueAdapterReceiver (line 6) | internal partial class AdoNetQueueAdapterReceiver(string providerId, str... method Initialize (line 23) | public Task Initialize(TimeSpan timeout) => Task.CompletedTask; method Shutdown (line 28) | public async Task Shutdown(TimeSpan timeout) method GetQueueMessagesAsync (line 49) | public async Task> GetQueueMessagesAsync(int ma... method MessagesDeliveredAsync (line 93) | public async Task MessagesDeliveredAsync(IList messages) method LogDequeueFailed (line 128) | [LoggerMessage(1, LogLevel.Error, "Failed to get messages from ({Servi... method LogConfirmationFailed (line 131) | [LoggerMessage(2, LogLevel.Error, "Failed to confirm messages for ({Se... method LogShutdownFault (line 134) | [LoggerMessage(3, LogLevel.Warning, "Handled fault while shutting down... FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamConfirmation.cs type AdoNetStreamConfirmation (line 6) | internal record AdoNetStreamConfirmation( FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamConfirmationAck.cs type AdoNetStreamConfirmationAck (line 6) | internal record AdoNetStreamConfirmationAck( FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamDeadLetter.cs type AdoNetStreamDeadLetter (line 6) | internal record AdoNetStreamDeadLetter( FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamFailureHandler.cs class AdoNetStreamFailureHandler (line 6) | internal partial class AdoNetStreamFailureHandler(bool faultOnFailure, A... method OnDeliveryFailure (line 18) | public Task OnDeliveryFailure(GuidId subscriptionId, string streamProv... method OnSubscriptionFailure (line 23) | public Task OnSubscriptionFailure(GuidId subscriptionId, string stream... method OnFailureAsync (line 28) | private async Task OnFailureAsync(string streamProviderName, StreamId ... method LogMovedMessage (line 50) | [LoggerMessage(1, LogLevel.Warning, "Moved failed delivery to dead let... method LogFailedToMoveMessage (line 53) | [LoggerMessage(2, LogLevel.Error, "Failed to move failed delivery to d... FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamMessage.cs type AdoNetStreamMessage (line 6) | internal record AdoNetStreamMessage( FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamMessageAck.cs type AdoNetStreamMessageAck (line 7) | internal record AdoNetStreamMessageAck( FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamOptions.cs class AdoNetStreamOptions (line 6) | public class AdoNetStreamOptions FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamOptionsValidator.cs class AdoNetStreamOptionsValidator (line 8) | public class AdoNetStreamOptionsValidator(AdoNetStreamOptions options, s... method ValidateConfiguration (line 11) | public void ValidateConfiguration() FILE: src/AdoNet/Orleans.Streaming.AdoNet/AdoNetStreamQueueMapper.cs class AdoNetStreamQueueMapper (line 6) | internal class AdoNetStreamQueueMapper(IConsistentRingStreamQueueMapper ... method GetAdoNetQueueId (line 31) | public string GetAdoNetQueueId(StreamId streamId) => _byStreamLookup.G... method GetAdoNetQueueId (line 36) | public string GetAdoNetQueueId(QueueId queueId) => _byQueueLookup.GetO... method GetAllAdoNetQueueIds (line 41) | public IEnumerable GetAllAdoNetQueueIds() FILE: src/AdoNet/Orleans.Streaming.AdoNet/Extensions.cs class Extensions (line 6) | internal static class Extensions method Int32Ceiling (line 9) | public static int Int32Ceiling(this double value) => (int)Math.Ceiling... method TotalSecondsCeiling (line 14) | public static int TotalSecondsCeiling(this TimeSpan value) => value.To... method SecondsCeiling (line 19) | public static TimeSpan SecondsCeiling(this TimeSpan value) => TimeSpan... FILE: src/AdoNet/Orleans.Streaming.AdoNet/Hosting/ClusterClientAdoNetStreamConfigurator.cs class ClusterClientAdoNetStreamConfigurator (line 8) | public class ClusterClientAdoNetStreamConfigurator : ClusterClientPersis... method ClusterClientAdoNetStreamConfigurator (line 10) | public ClusterClientAdoNetStreamConfigurator(string name, IClientBuild... method ConfigureAdoNet (line 29) | public ClusterClientAdoNetStreamConfigurator ConfigureAdoNet(Action> ReadAsync(string query, Action ExecuteAsync(string query, Action parameterProvi... FILE: src/Azure/Orleans.Clustering.AzureStorage/AzureBasedMembershipTable.cs class AzureBasedMembershipTable (line 18) | internal partial class AzureBasedMembershipTable : IMembershipTable method AzureBasedMembershipTable (line 26) | public AzureBasedMembershipTable( method InitializeMembershipTable (line 37) | public async Task InitializeMembershipTable(bool tryInitTableVersion) method DeleteMembershipTableEntries (line 57) | public Task DeleteMembershipTableEntries(string clusterId) method CleanupDefunctSiloEntries (line 62) | public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method ReadRow (line 67) | public async Task ReadRow(SiloAddress key) method ReadAll (line 83) | public async Task ReadAll() method InsertRow (line 100) | public async Task InsertRow(MembershipEntry entry, TableVersion ... method UpdateRow (line 125) | public async Task UpdateRow(MembershipEntry entry, string etag, ... method UpdateIAmAlive (line 148) | public async Task UpdateIAmAlive(MembershipEntry entry) method Convert (line 165) | private MembershipTableData Convert(List<(SiloInstanceTableEntry Entit... method Parse (line 202) | private static MembershipEntry Parse(SiloInstanceTableEntry tableEntry) method Convert (line 274) | private static SiloInstanceTableEntry Convert(MembershipEntry memEntry... method ConvertPartial (line 327) | private static SiloInstanceTableEntry ConvertPartial(MembershipEntry m... type UtilsEnumerableToStringLogValue (line 338) | private readonly struct UtilsEnumerableToStringLogValue(IEnumerable<(S... method ToString (line 340) | public override string ToString() => Utils.EnumerableToString(entrie... method LogInformationCreatedNewTableVersionRow (line 343) | [LoggerMessage( method LogDebugReadMyEntry (line 349) | [LoggerMessage( method LogWarningIntermediateErrorReadingSiloEntry (line 355) | [LoggerMessage( method LogTraceReadAllTable (line 361) | [LoggerMessage( method LogWarningIntermediateErrorReadingAllSiloEntries (line 367) | [LoggerMessage( method LogDebugInsertRow (line 373) | [LoggerMessage( method LogWarningTableContention (line 379) | [LoggerMessage( method LogWarningInsertingMembershipEntry (line 386) | [LoggerMessage( method LogDebugUpdateRow (line 393) | [LoggerMessage( method LogWarningTableContentionEtag (line 399) | [LoggerMessage( method LogWarningUpdatingMembershipEntry (line 406) | [LoggerMessage( method LogDebugMergeEntry (line 413) | [LoggerMessage( method LogWarningUpdatingMembershipEntry (line 419) | [LoggerMessage( method LogErrorParsingMembershipTableDataIgnoring (line 426) | [LoggerMessage( method LogErrorParsingMembershipTableData (line 433) | [LoggerMessage( FILE: src/Azure/Orleans.Clustering.AzureStorage/AzureGatewayListProvider.cs class AzureGatewayListProvider (line 12) | internal class AzureGatewayListProvider : IGatewayListProvider method AzureGatewayListProvider (line 19) | public AzureGatewayListProvider(ILoggerFactory loggerFactory, IOptions... method InitializeGatewayListProvider (line 27) | public async Task InitializeGatewayListProvider() method GetGateways (line 35) | public Task> GetGateways() FILE: src/Azure/Orleans.Clustering.AzureStorage/AzureTableClusteringExtensions.cs class AzureTableClusteringExtensions (line 12) | public static class AzureTableClusteringExtensions method UseAzureStorageClustering (line 26) | public static ISiloBuilder UseAzureStorageClustering( method UseAzureStorageClustering (line 55) | public static ISiloBuilder UseAzureStorageClustering( method UseAzureStorageClustering (line 81) | public static IClientBuilder UseAzureStorageClustering( method UseAzureStorageClustering (line 110) | public static IClientBuilder UseAzureStorageClustering( FILE: src/Azure/Orleans.Clustering.AzureStorage/AzureTableStorageClusteringProviderBuilder.cs class AzureTableStorageClusteringProviderBuilder (line 17) | internal sealed class AzureTableStorageClusteringProviderBuilder : IProv... method Configure (line 19) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... method Configure (line 62) | public void Configure(IClientBuilder builder, string name, IConfigurat... FILE: src/Azure/Orleans.Clustering.AzureStorage/Options/AzureStorageClusteringOptions.cs class AzureStorageClusteringOptions (line 6) | public class AzureStorageClusteringOptions : AzureStorageOperationOptions class AzureStorageClusteringOptionsValidator (line 15) | public class AzureStorageClusteringOptionsValidator : AzureStorageOperat... method AzureStorageClusteringOptionsValidator (line 22) | public AzureStorageClusteringOptionsValidator(AzureStorageClusteringOp... FILE: src/Azure/Orleans.Clustering.AzureStorage/Options/AzureStorageGatewayOptions.cs class AzureStorageGatewayOptions (line 3) | public class AzureStorageGatewayOptions : AzureStorageOperationOptions class AzureStorageGatewayOptionsValidator (line 11) | public class AzureStorageGatewayOptionsValidator : AzureStorageOperation... method AzureStorageGatewayOptionsValidator (line 18) | public AzureStorageGatewayOptionsValidator(AzureStorageGatewayOptions ... FILE: src/Azure/Orleans.Clustering.AzureStorage/OrleansSiloInstanceManager.cs class OrleansSiloInstanceManager (line 16) | internal partial class OrleansSiloInstanceManager method OrleansSiloInstanceManager (line 30) | private OrleansSiloInstanceManager( method GetManager (line 44) | public static async Task GetManager( method CreateTableVersionEntry (line 62) | public SiloInstanceTableEntry CreateTableVersionEntry(int tableVersion) method RegisterSiloInstance (line 73) | public void RegisterSiloInstance(SiloInstanceTableEntry entry) method UnregisterSiloInstance (line 80) | public Task UnregisterSiloInstance(SiloInstanceTableEntry entry) method ActivateSiloInstance (line 87) | public Task ActivateSiloInstance(SiloInstanceTableEntry entry) method ConvertToGatewayUri (line 99) | private static Uri ConvertToGatewayUri(SiloInstanceTableEntry gateway) method FindAllGatewayProxyEndpoints (line 113) | public async Task> FindAllGatewayProxyEndpoints() method DumpSiloInstanceTable (line 133) | public async Task DumpSiloInstanceTable() method MergeTableEntryAsync (line 160) | internal Task MergeTableEntryAsync(SiloInstanceTableEntry data) method ReadSingleTableEntryAsync (line 165) | internal Task<(SiloInstanceTableEntry, string)> ReadSingleTableEntryAs... method DeleteTableEntries (line 170) | internal async Task DeleteTableEntries(string clusterId) method CleanupDefunctSiloEntries (line 181) | public async Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method DeleteEntriesBatch (line 192) | private async Task DeleteEntriesBatch(List<(SiloInstanceTableEntry, st... method FindSiloEntryAndTableVersionRow (line 209) | internal async Task> FindSiloEn... method FindAllSiloEntries (line 228) | internal async Task> FindAllSil... method TryCreateTableVersionEntryAsync (line 246) | internal async Task TryCreateTableVersionEntryAsync() method InsertSiloEntryConditionally (line 277) | internal async Task InsertSiloEntryConditionally(SiloInstanceTab... method UpdateSiloEntryConditionally (line 303) | internal async Task UpdateSiloEntryConditionally(SiloInstanceTab... method LogErrorConnectingToAzureTable (line 321) | [LoggerMessage( method LogRegisterSiloInstance (line 328) | [LoggerMessage( method LogUnregisterSiloInstance (line 335) | [LoggerMessage( method LogActivateSiloInstance (line 342) | [LoggerMessage( method LogDebugSearchingGateway (line 349) | [LoggerMessage( method LogFoundGateway (line 356) | [LoggerMessage( method LogErrorSearchingGateway (line 363) | [LoggerMessage( method LogTraceInsertSiloEntryConditionallyFailed (line 370) | [LoggerMessage( method LogTraceUpdateSiloEntryConditionallyFailed (line 376) | [LoggerMessage( FILE: src/Azure/Orleans.Clustering.AzureStorage/SiloInstanceTableEntry.cs class SiloInstanceTableEntry (line 11) | internal class SiloInstanceTableEntry : ITableEntity method ConstructRowKey (line 43) | public static string ConstructRowKey(SiloAddress silo) method UnpackRowKey (line 47) | internal static SiloAddress UnpackRowKey(string rowKey) method ToString (line 82) | public override string ToString() FILE: src/Azure/Orleans.Clustering.AzureStorage/Utilities/TableStorageErrorCode.cs type TableStorageErrorCode (line 5) | [SuppressMessage("ReSharper", "InconsistentNaming")] FILE: src/Azure/Orleans.Clustering.Cosmos/CosmosClusteringProviderBuilder.cs class CosmosClusteringProviderBuilder (line 13) | internal sealed class CosmosClusteringProviderBuilder : IProviderBuilder... method Configure (line 15) | public void Configure(ISiloBuilder builder, string? name, IConfigurati... method Configure (line 65) | public void Configure(IClientBuilder builder, string? name, IConfigura... FILE: src/Azure/Orleans.Clustering.Cosmos/HostingExtensions.cs class HostingExtensions (line 10) | public static class HostingExtensions method UseCosmosClustering (line 18) | public static ISiloBuilder UseCosmosClustering( method UseCosmosClustering (line 32) | public static ISiloBuilder UseCosmosClustering( method UseCosmosClustering (line 45) | public static ISiloBuilder UseCosmosClustering(this ISiloBuilder builder) method UseCosmosGatewayListProvider (line 58) | public static IClientBuilder UseCosmosGatewayListProvider( method UseCosmosGatewayListProvider (line 71) | public static IClientBuilder UseCosmosGatewayListProvider(this IClient... method UseCosmosGatewayListProvider (line 84) | public static IClientBuilder UseCosmosGatewayListProvider( method UseCosmosClustering (line 99) | public static IServiceCollection UseCosmosClustering( method UseCosmosClustering (line 112) | public static IServiceCollection UseCosmosClustering( method UseCosmosGatewayListProvider (line 126) | public static IServiceCollection UseCosmosGatewayListProvider( method UseCosmosGatewayListProvider (line 139) | public static IServiceCollection UseCosmosGatewayListProvider( FILE: src/Azure/Orleans.Clustering.Cosmos/Membership/CosmosGatewayListProvider.cs class CosmosGatewayListProvider (line 7) | internal partial class CosmosGatewayListProvider : IGatewayListProvider method CosmosGatewayListProvider (line 20) | public CosmosGatewayListProvider( method InitializeGatewayListProvider (line 36) | public async Task InitializeGatewayListProvider() method GetGateways (line 50) | public async Task> GetGateways() method ConvertToGatewayUri (line 78) | private static Uri ConvertToGatewayUri(SiloEntity gateway) => method LogErrorInitializingGatewayListProvider (line 81) | [LoggerMessage( method LogErrorReadingGatewayListFromCosmosDb (line 87) | [LoggerMessage( FILE: src/Azure/Orleans.Clustering.Cosmos/Membership/CosmosMembershipTable.cs class CosmosMembershipTable (line 6) | internal partial class CosmosMembershipTable : IMembershipTable method CosmosMembershipTable (line 20) | public CosmosMembershipTable( method InitializeMembershipTable (line 35) | public async Task InitializeMembershipTable(bool tryInitTableVersion) method DeleteMembershipTableEntries (line 78) | public async Task DeleteMembershipTableEntries(string clusterId) method CleanupDefunctSiloEntries (line 102) | public async Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method ReadRow (line 128) | public async Task ReadRow(SiloAddress key) method ReadAll (line 167) | public async Task ReadAll() method InsertRow (line 215) | public async Task InsertRow(MembershipEntry entry, TableVersion ... method UpdateRow (line 237) | public async Task UpdateRow(MembershipEntry entry, string etag, ... method UpdateIAmAlive (line 261) | public async Task UpdateIAmAlive(MembershipEntry entry) method InitializeCosmosClient (line 297) | private async Task InitializeCosmosClient() method TryDeleteDatabase (line 311) | private async Task TryDeleteDatabase() method TryCreateCosmosResources (line 329) | private async Task TryCreateCosmosResources() method ReadClusterVersion (line 362) | private async Task ReadClusterVersion() method ReadSilos (line 384) | private async Task> ReadSilos(SiloStatus? st... method ConstructSiloEntityId (line 416) | private static string ConstructSiloEntityId(SiloAddress silo) => $"{si... method ParseEntity (line 418) | private static MembershipEntry ParseEntity(SiloEntity entity) method ConvertToEntity (line 463) | private static SiloEntity ConvertToEntity(MembershipEntry memEntry, st... method BuildVersionEntity (line 492) | private ClusterVersionEntity BuildVersionEntity(TableVersion tableVers... type MembershipEntryLogValue (line 503) | private readonly struct MembershipEntryLogValue(MembershipEntry member... method ToString (line 505) | public override string ToString() => membershipEntry.ToFullString(); method LogDebugCreatedNewClusterVersionEntity (line 508) | [LoggerMessage( method LogErrorDeletingMembershipTableEntries (line 514) | [LoggerMessage( method LogErrorCleaningUpDefunctSiloEntries (line 520) | [LoggerMessage( method LogWarningFailureReadingSiloEntry (line 526) | [LoggerMessage( method LogErrorClusterVersionEntityDoesNotExist (line 532) | [LoggerMessage( method LogErrorReadingAllMembershipRecords (line 538) | [LoggerMessage( method LogWarningReadingEntries (line 544) | [LoggerMessage( method LogErrorInitializingCosmosClient (line 550) | [LoggerMessage( method LogErrorDeletingCosmosDBDatabase (line 556) | [LoggerMessage( method LogErrorReadingClusterVersionEntity (line 562) | [LoggerMessage( method LogErrorReadingSiloEntities (line 568) | [LoggerMessage( method LogWarningUnableToQueryEntry (line 574) | [LoggerMessage( FILE: src/Azure/Orleans.Clustering.Cosmos/Models/BaseClusterEntity.cs class BaseClusterEntity (line 5) | internal abstract class BaseClusterEntity : BaseEntity FILE: src/Azure/Orleans.Clustering.Cosmos/Models/ClusterVersionEntity.cs class ClusterVersionEntity (line 5) | internal class ClusterVersionEntity : BaseClusterEntity FILE: src/Azure/Orleans.Clustering.Cosmos/Models/SiloEntity.cs class SiloEntity (line 5) | internal class SiloEntity : BaseClusterEntity FILE: src/Azure/Orleans.Clustering.Cosmos/Options/CosmosClusteringOptions.cs class CosmosClusteringOptions (line 6) | public class CosmosClusteringOptions : CosmosOptions method CosmosClusteringOptions (line 13) | public CosmosClusteringOptions() class CosmosClusteringOptionsValidator (line 22) | public class CosmosClusteringOptionsValidator : CosmosOptionsValidator metad... method InitializeAsync (line 82) | public async ValueTask InitializeAsync(CancellationToken cancellationT... method EnqueueStorageOperationAsync (line 157) | private async Task EnqueueStorageOperationAsync(StorageOperation opera... method ProcessStorageOperationsAsync (line 163) | private async Task ProcessStorageOperationsAsync() method AppendJobOperationBatchAsync (line 276) | private async Task AppendJobOperationBatchAsync(List... method UpdateMetadataAsync (line 318) | private async Task UpdateMetadataAsync(IDictionary met... method StopProcessorAsync (line 333) | internal async Task StopProcessorAsync(CancellationToken cancellationT... method DisposeAsync (line 356) | public override async ValueTask DisposeAsync() type StorageOperationType (line 364) | internal enum StorageOperationType class StorageOperation (line 370) | internal sealed class StorageOperation method CreateAppendOperation (line 377) | public static StorageOperation CreateAppendOperation(JobOperation jobO... method CreateMetadataOperation (line 386) | public static StorageOperation CreateMetadataOperation(IDictionary> Assign... method CreateShardAsync (line 246) | public override async Task CreateShardA... method UnregisterShardAsync (line 289) | public override async Task UnregisterShardAsync(Orleans.DurableJobs.IJ... method InitializeIfNeeded (line 339) | private async ValueTask InitializeIfNeeded(CancellationToken cancellat... method CreateMetadata (line 349) | private static Dictionary CreateMetadata(IDictionary method Encode (line 32) | public static void Encode(T value, Stream stream, JsonTypeInfo json... method DecodeAsync (line 91) | public static async IAsyncEnumerable DecodeAsync(Stream stream, Jso... FILE: src/Azure/Orleans.GrainDirectory.AzureStorage/AzureTableGrainDirectory.cs class AzureTableGrainDirectory (line 17) | public class AzureTableGrainDirectory : IGrainDirectory, ILifecycleParti... class GrainDirectoryEntity (line 22) | internal class GrainDirectoryEntity : ITableEntity method ToGrainAddress (line 32) | public GrainAddress ToGrainAddress() method FromGrainAddress (line 43) | public static GrainDirectoryEntity FromGrainAddress(string clusterId... method GrainIdToRowKey (line 57) | internal static string GrainIdToRowKey(GrainId grainId) => HttpUtili... method RowKeyToGrainId (line 59) | internal static GrainId RowKeyToGrainId(string rowKey) => GrainId.Pa... method AzureTableGrainDirectory (line 62) | public AzureTableGrainDirectory( method Lookup (line 73) | public async Task Lookup(GrainId grainId) method Register (line 85) | public Task Register(GrainAddress address) => Register(... method Register (line 87) | public async Task Register(GrainAddress address, GrainA... method Unregister (line 119) | public async Task Unregister(GrainAddress address) method UnregisterMany (line 135) | public async Task UnregisterMany(List addresses) method UnregisterSilos (line 152) | public Task UnregisterSilos(List siloAddresses) method UnregisterManyBlock (line 158) | private async Task UnregisterManyBlock(List addresses) method InitializeIfNeeded (line 185) | public async Task InitializeIfNeeded(CancellationToken ct = default) method Participate (line 190) | public void Participate(ISiloLifecycle lifecycle) FILE: src/Azure/Orleans.GrainDirectory.AzureStorage/Hosting/AzureTableGrainDirectoryExtensions.cs class AzureTableGrainDirectorySiloBuilderExtensions (line 9) | public static class AzureTableGrainDirectorySiloBuilderExtensions method UseAzureTableGrainDirectoryAsDefault (line 11) | public static ISiloBuilder UseAzureTableGrainDirectoryAsDefault( method UseAzureTableGrainDirectoryAsDefault (line 18) | public static ISiloBuilder UseAzureTableGrainDirectoryAsDefault( method AddAzureTableGrainDirectory (line 25) | public static ISiloBuilder AddAzureTableGrainDirectory( method AddAzureTableGrainDirectory (line 33) | public static ISiloBuilder AddAzureTableGrainDirectory( FILE: src/Azure/Orleans.GrainDirectory.AzureStorage/Hosting/AzureTableGrainDirectoryServiceCollectionExtensions.cs class AzureTableGrainDirectoryServiceCollectionExtensions (line 15) | public static class AzureTableGrainDirectoryServiceCollectionExtensions method AddAzureTableGrainDirectory (line 17) | internal static IServiceCollection AddAzureTableGrainDirectory( FILE: src/Azure/Orleans.GrainDirectory.AzureStorage/Hosting/AzureTableStorageGrainDirectoryProviderBuilder.cs class AzureTableStorageGrainDirectoryProviderBuilder (line 15) | internal sealed class AzureTableStorageGrainDirectoryProviderBuilder : I... method Configure (line 17) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/Azure/Orleans.GrainDirectory.AzureStorage/Options/AzureTableGrainDirectoryOptions.cs class AzureTableGrainDirectoryOptions (line 5) | public class AzureTableGrainDirectoryOptions : AzureStorageOperationOptions class AzureTableGrainDirectoryOptionsValidator (line 14) | public class AzureTableGrainDirectoryOptionsValidator : AzureStorageOper... method AzureTableGrainDirectoryOptionsValidator (line 16) | public AzureTableGrainDirectoryOptionsValidator(AzureTableGrainDirecto... FILE: src/Azure/Orleans.Journaling.AzureStorage/AzureAppendBlobLogStorage.cs class AzureAppendBlobLogStorage (line 11) | internal sealed partial class AzureAppendBlobLogStorage : IStateMachineS... method AzureAppendBlobLogStorage (line 23) | public AzureAppendBlobLogStorage(AppendBlobClient client, ILogger ReadAsync([EnumeratorCancella... method CopyFromSnapshotAsync (line 115) | private async Task> CopyFromSnap... method ReplaceAsync (line 134) | public async ValueTask ReplaceAsync(LogExtentBuilder value, Cancellati... method LogAppend (line 163) | [LoggerMessage( method LogRead (line 168) | [LoggerMessage( method LogReplace (line 173) | [LoggerMessage( FILE: src/Azure/Orleans.Journaling.AzureStorage/AzureAppendBlobStateMachineStorageOptions.cs class AzureAppendBlobStateMachineStorageOptions (line 12) | public sealed class AzureAppendBlobStateMachineStorageOptions method ConfigureBlobServiceClient (line 68) | public void ConfigureBlobServiceClient(string connectionString) method ConfigureBlobServiceClient (line 77) | public void ConfigureBlobServiceClient(Uri serviceUri) method ConfigureBlobServiceClient (line 86) | public void ConfigureBlobServiceClient(Func ... method InitializeAsync (line 21) | public async Task InitializeAsync(BlobServiceClient client, Cancellati... FILE: src/Azure/Orleans.Journaling.AzureStorage/IBlobContainerFactory.cs type IBlobContainerFactory (line 9) | public interface IBlobContainerFactory method GetBlobContainerClient (line 16) | public BlobContainerClient GetBlobContainerClient(GrainId grainId); method InitializeAsync (line 24) | public Task InitializeAsync(BlobServiceClient client, CancellationToke... FILE: src/Azure/Orleans.Persistence.AzureStorage/Hosting/AzureBlobGrainStorageServiceCollectionExtensions.cs class AzureBlobGrainStorageServiceCollectionExtensions (line 17) | public static class AzureBlobGrainStorageServiceCollectionExtensions method AddAzureBlobGrainStorageAsDefault (line 22) | public static IServiceCollection AddAzureBlobGrainStorageAsDefault(thi... method AddAzureBlobGrainStorage (line 30) | public static IServiceCollection AddAzureBlobGrainStorage(this IServic... method AddAzureBlobGrainStorageAsDefault (line 38) | public static IServiceCollection AddAzureBlobGrainStorageAsDefault(thi... method AddAzureBlobGrainStorage (line 46) | public static IServiceCollection AddAzureBlobGrainStorage(this IServic... FILE: src/Azure/Orleans.Persistence.AzureStorage/Hosting/AzureBlobSiloBuilderExtensions.cs class AzureBlobSiloBuilderExtensions (line 8) | public static class AzureBlobSiloBuilderExtensions method AddAzureBlobGrainStorageAsDefault (line 13) | public static ISiloBuilder AddAzureBlobGrainStorageAsDefault(this ISil... method AddAzureBlobGrainStorage (line 21) | public static ISiloBuilder AddAzureBlobGrainStorage(this ISiloBuilder ... method AddAzureBlobGrainStorageAsDefault (line 29) | public static ISiloBuilder AddAzureBlobGrainStorageAsDefault(this ISil... method AddAzureBlobGrainStorage (line 37) | public static ISiloBuilder AddAzureBlobGrainStorage(this ISiloBuilder ... FILE: src/Azure/Orleans.Persistence.AzureStorage/Hosting/AzureBlobStorageGrainStorageProviderBuilder.cs class AzureBlobStorageGrainStorageProviderBuilder (line 15) | internal sealed class AzureBlobStorageGrainStorageProviderBuilder : IPro... method Configure (line 17) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/Azure/Orleans.Persistence.AzureStorage/Hosting/AzureTableSiloBuilderExtensions.cs class AzureTableSiloBuilderExtensions (line 13) | public static class AzureTableSiloBuilderExtensions method AddAzureTableGrainStorageAsDefault (line 18) | public static ISiloBuilder AddAzureTableGrainStorageAsDefault(this ISi... method AddAzureTableGrainStorage (line 26) | public static ISiloBuilder AddAzureTableGrainStorage(this ISiloBuilder... method AddAzureTableGrainStorageAsDefault (line 34) | public static ISiloBuilder AddAzureTableGrainStorageAsDefault(this ISi... method AddAzureTableGrainStorage (line 42) | public static ISiloBuilder AddAzureTableGrainStorage(this ISiloBuilder... method AddAzureTableGrainStorage (line 47) | internal static IServiceCollection AddAzureTableGrainStorage( FILE: src/Azure/Orleans.Persistence.AzureStorage/Hosting/AzureTableStorageGrainStorageProviderBuilder.cs class AzureTableStorageGrainStorageProviderBuilder (line 17) | internal sealed class AzureTableStorageGrainStorageProviderBuilder : IPr... method Configure (line 19) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/Azure/Orleans.Persistence.AzureStorage/Providers/AzureProviderErrorCode.cs type AzureProviderErrorCode (line 3) | internal enum AzureProviderErrorCode FILE: src/Azure/Orleans.Persistence.AzureStorage/Providers/Storage/AzureBlobStorage.cs class AzureBlobGrainStorage (line 23) | public partial class AzureBlobGrainStorage : IGrainStorage, ILifecyclePa... method AzureBlobGrainStorage (line 33) | public AzureBlobGrainStorage( method ReadStateAsync (line 50) | public async Task ReadStateAsync(string grainType, GrainId grainId,... method ResetGrainState (line 98) | private void ResetGrainState(IGrainState grainState) method GetBlobName (line 105) | private static string GetBlobName(string grainType, GrainId grainId) =... method WriteStateAsync (line 109) | public async Task WriteStateAsync(string grainType, GrainId grainId... method ClearStateAsync (line 136) | public async Task ClearStateAsync(string grainType, GrainId grainId... method WriteStateAndCreateContainerIfNotExists (line 183) | private async Task WriteStateAndCreateContainerIfNotExists(string g... method DoOptimisticUpdate (line 219) | private static async Task DoOptimisticUpdate... method Participate (line 231) | public void Participate(ISiloLifecycle lifecycle) method Init (line 237) | private async Task Init(CancellationToken ct) method ConvertToStorageFormat (line 266) | private BinaryData ConvertToStorageFormat(T grainState) => this.gra... method ConvertFromStorageFormat (line 272) | private T? ConvertFromStorageFormat(BinaryData contents) => this.gr... method CreateInstance (line 274) | private T CreateInstance() => _activatorProvider.GetActivator().... method LogTraceReading (line 276) | [LoggerMessage( method LogTraceBlobEmptyReading (line 283) | [LoggerMessage( method LogTraceDataRead (line 290) | [LoggerMessage( method LogErrorReading (line 297) | [LoggerMessage( method LogTraceBlobNotFoundReading (line 304) | [LoggerMessage( method LogTraceContainerNotFoundReading (line 311) | [LoggerMessage( method LogTraceWriting (line 318) | [LoggerMessage( method LogTraceDataWritten (line 325) | [LoggerMessage( method LogErrorWriting (line 332) | [LoggerMessage( method LogTraceClearing (line 339) | [LoggerMessage( method LogTraceCleared (line 346) | [LoggerMessage( method LogErrorClearing (line 353) | [LoggerMessage( method LogTraceContainerNotFound (line 360) | [LoggerMessage( method LogDebugInitializing (line 367) | [LoggerMessage( method LogInformationInitProvider (line 374) | [LoggerMessage( method LogErrorFromInit (line 381) | [LoggerMessage( class AzureBlobGrainStorageFactory (line 388) | public static class AzureBlobGrainStorageFactory method Create (line 390) | public static AzureBlobGrainStorage Create(IServiceProvider services, ... FILE: src/Azure/Orleans.Persistence.AzureStorage/Providers/Storage/AzureBlobStorageOptions.cs class AzureBlobStorageOptions (line 14) | public class AzureBlobStorageOptions : IStorageProviderSerializerOptions method ConfigureBlobServiceClient (line 69) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 78) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 87) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 96) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 105) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 114) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] class AzureBlobStorageOptionsValidator (line 124) | public class AzureBlobStorageOptionsValidator : IConfigurationValidator method AzureBlobStorageOptionsValidator (line 134) | public AzureBlobStorageOptionsValidator(AzureBlobStorageOptions option... method ValidateConfiguration (line 140) | public void ValidateConfiguration() FILE: src/Azure/Orleans.Persistence.AzureStorage/Providers/Storage/AzureTableStorage.cs class AzureTableGrainStorage (line 28) | public partial class AzureTableGrainStorage : IGrainStorage, IRestExcept... method AzureTableGrainStorage (line 49) | public AzureTableGrainStorage( method ReadStateAsync (line 66) | public async Task ReadStateAsync(string grainType, GrainId grainId,... method WriteStateAsync (line 92) | public async Task WriteStateAsync(string grainType, GrainId grainId... method ClearStateAsync (line 125) | public async Task ClearStateAsync(string grainType, GrainId grainId... method DoOptimisticUpdate (line 161) | private static async Task DoOptimisticUpdate(Func updateOperatio... method ConvertToStorageFormat (line 183) | internal void ConvertToStorageFormat(T grainState, TableEntity entity) method CheckMaxDataSize (line 211) | private void CheckMaxDataSize(int dataSize, int maxDataSize) method SplitStringData (line 221) | private static IEnumerable> SplitStringData(ReadO... method SplitBinaryData (line 234) | private static IEnumerable> SplitBinaryData(ReadO... method GetPropertyNames (line 247) | private static IEnumerable GetPropertyNames(string basePropert... method ReadBinaryDataChunks (line 256) | private static IEnumerable ReadBinaryDataChunks(TableEntity en... method ReadBinaryData (line 284) | private static byte[] ReadBinaryData(TableEntity entity) method ReadStringDataChunks (line 298) | private static IEnumerable ReadStringDataChunks(TableEntity en... method ReadStringData (line 312) | private static string ReadStringData(TableEntity entity) method ConvertFromStorageFormat (line 321) | internal T? ConvertFromStorageFormat(TableEntity entity) method GetKeyString (line 360) | private string GetKeyString(GrainId grainId) class GrainStateTableDataManager (line 366) | private partial class GrainStateTableDataManager method GrainStateTableDataManager (line 372) | public GrainStateTableDataManager(AzureStorageOperationOptions optio... method InitTableAsync (line 379) | public Task InitTableAsync() method Read (line 384) | public async Task Read(string partitionKey, string row... method Write (line 414) | public async Task Write(TableEntity entity) method Delete (line 424) | public async Task Delete(TableEntity entity) method LogTraceReadingPartitionKeyRowKey (line 439) | [LoggerMessage( method LogTraceDataNotFoundReading (line 446) | [LoggerMessage( method LogTraceDataRead (line 453) | [LoggerMessage( method LogTraceDataNotFoundReadingException (line 460) | [LoggerMessage( method LogTraceWritingPartitionKeyRowKey (line 467) | [LoggerMessage( method LogTraceNotAttemptingDelete (line 474) | [LoggerMessage( method DecodeException (line 483) | public bool DecodeException(Exception e, out HttpStatusCode httpStatus... method Init (line 488) | private async Task Init(CancellationToken ct) method Close (line 507) | private Task Close(CancellationToken ct) method Participate (line 513) | public void Participate(ISiloLifecycle lifecycle) method CreateInstance (line 518) | private T CreateInstance() => _activatorProvider.GetActivator().... method LogTraceReadingGrainState (line 520) | [LoggerMessage( method LogTraceWritingGrainState (line 527) | [LoggerMessage( method LogErrorWriteGrainState (line 534) | [LoggerMessage( method LogTraceClearingGrainState (line 541) | [LoggerMessage( method LogErrorClearingGrainState (line 548) | [LoggerMessage( method LogErrorDataTooLarge (line 555) | [LoggerMessage( method LogErrorSimpleMessage (line 561) | [LoggerMessage( method LogDebugStorageInitializing (line 567) | [LoggerMessage( method LogInfoInitializingProvider (line 574) | [LoggerMessage( method LogErrorInitializationFailed (line 581) | [LoggerMessage( class AzureTableGrainStorageFactory (line 589) | public static class AzureTableGrainStorageFactory method Create (line 591) | public static AzureTableGrainStorage Create(IServiceProvider services,... FILE: src/Azure/Orleans.Persistence.AzureStorage/Providers/Storage/AzureTableStorageOptions.cs class AzureTableStorageOptions (line 9) | public class AzureTableStorageOptions : AzureStorageOperationOptions, IS... class AzureTableGrainStorageOptionsValidator (line 40) | public class AzureTableGrainStorageOptionsValidator : AzureStorageOperat... method AzureTableGrainStorageOptionsValidator (line 47) | public AzureTableGrainStorageOptionsValidator(AzureTableStorageOptions... FILE: src/Azure/Orleans.Persistence.AzureStorage/Providers/Storage/IBlobContainerFactory.cs type IBlobContainerFactory (line 11) | public interface IBlobContainerFactory method GetBlobContainerClient (line 18) | public BlobContainerClient GetBlobContainerClient(GrainId grainId); method InitializeAsync (line 25) | public Task InitializeAsync(BlobServiceClient client); class DefaultBlobContainerFactory (line 31) | internal class DefaultBlobContainerFactory : IBlobContainerFactory method DefaultBlobContainerFactory (line 40) | public DefaultBlobContainerFactory(AzureBlobStorageOptions options) method GetBlobContainerClient (line 46) | public BlobContainerClient GetBlobContainerClient(GrainId grainId) method InitializeAsync (line 50) | public async Task InitializeAsync(BlobServiceClient client) FILE: src/Azure/Orleans.Persistence.AzureStorage/Storage/StorageExceptionExtensions.cs class StorageExceptionExtensions (line 7) | internal static class StorageExceptionExtensions method IsNotFound (line 9) | public static bool IsNotFound(this RequestFailedException requestFaile... method IsPreconditionFailed (line 14) | public static bool IsPreconditionFailed(this RequestFailedException re... method IsConflict (line 19) | public static bool IsConflict(this RequestFailedException requestFaile... method IsContainerNotFound (line 24) | public static bool IsContainerNotFound(this RequestFailedException req... method IsBlobNotFound (line 30) | public static bool IsBlobNotFound(this RequestFailedException requestF... FILE: src/Azure/Orleans.Persistence.AzureStorage/Storage/TableStorageUpdateConditionNotSatisfiedException.cs class TableStorageUpdateConditionNotSatisfiedException (line 9) | [Serializable] method TableStorageUpdateConditionNotSatisfiedException (line 18) | public TableStorageUpdateConditionNotSatisfiedException( method TableStorageUpdateConditionNotSatisfiedException (line 36) | public TableStorageUpdateConditionNotSatisfiedException( method TableStorageUpdateConditionNotSatisfiedException (line 68) | public TableStorageUpdateConditionNotSatisfiedException() method TableStorageUpdateConditionNotSatisfiedException (line 75) | public TableStorageUpdateConditionNotSatisfiedException(string msg) method TableStorageUpdateConditionNotSatisfiedException (line 83) | public TableStorageUpdateConditionNotSatisfiedException(string msg, Ex... method CreateDefaultMessage (line 88) | private static string CreateDefaultMessage( method TableStorageUpdateConditionNotSatisfiedException (line 101) | [Obsolete] method GetObjectData (line 111) | [Obsolete] FILE: src/Azure/Orleans.Persistence.Cosmos/CosmosConditionNotSatisfiedException.cs class CosmosConditionNotSatisfiedException (line 9) | [Serializable] method CosmosConditionNotSatisfiedException (line 18) | public CosmosConditionNotSatisfiedException( method CosmosConditionNotSatisfiedException (line 35) | public CosmosConditionNotSatisfiedException( method CosmosConditionNotSatisfiedException (line 66) | public CosmosConditionNotSatisfiedException() method CosmosConditionNotSatisfiedException (line 73) | public CosmosConditionNotSatisfiedException(string msg) method CosmosConditionNotSatisfiedException (line 81) | public CosmosConditionNotSatisfiedException(string msg, Exception exc) method CreateDefaultMessage (line 86) | private static string CreateDefaultMessage( method CosmosConditionNotSatisfiedException (line 96) | [Obsolete] method GetObjectData (line 106) | [Obsolete] FILE: src/Azure/Orleans.Persistence.Cosmos/CosmosGrainStorage.cs class CosmosGrainStorage (line 11) | public sealed partial class CosmosGrainStorage : IGrainStorage, ILifecyc... method CosmosGrainStorage (line 28) | public CosmosGrainStorage( method ReadStateAsync (line 48) | public async Task ReadStateAsync(string grainType, GrainId grainId,... method WriteStateAsync (line 99) | public async Task WriteStateAsync(string grainType, GrainId grainId... method ClearStateAsync (line 169) | public async Task ClearStateAsync(string grainType, GrainId grainId... method Participate (line 255) | public void Participate(ISiloLifecycle lifecycle) method GetKeyString (line 260) | private string GetKeyString(GrainId grainId) => $"{Sanitize(_serviceId... method BuildPartitionKey (line 262) | private ValueTask BuildPartitionKey(string grainType, GrainId ... method Init (line 265) | private async Task Init(CancellationToken ct) method InitializeCosmosClient (line 299) | private async Task InitializeCosmosClient() method TryCreateResources (line 313) | private async Task TryCreateResources() method TryDeleteDatabase (line 354) | private async Task TryDeleteDatabase() method ResetGrainState (line 372) | private void ResetGrainState(IGrainState grainState) method CreateInstance (line 379) | private T CreateInstance() => _activatorProvider.GetActivator().... method LogTraceReadingState (line 381) | [LoggerMessage( method LogErrorReadingState (line 387) | [LoggerMessage( method LogTraceWritingState (line 393) | [LoggerMessage( method LogErrorWritingState (line 399) | [LoggerMessage( method LogTraceClearingState (line 405) | [LoggerMessage( method LogErrorClearingState (line 411) | [LoggerMessage( method LogDebugInit (line 417) | [LoggerMessage( method LogDebugInitializingProvider (line 423) | [LoggerMessage( method LogErrorInitializationFailed (line 429) | [LoggerMessage( method LogErrorInitializingClient (line 436) | [LoggerMessage( method LogErrorDeletingDatabase (line 442) | [LoggerMessage( class CosmosStorageFactory (line 449) | public static class CosmosStorageFactory method Create (line 451) | public static CosmosGrainStorage Create(IServiceProvider services, str... FILE: src/Azure/Orleans.Persistence.Cosmos/CosmosStorageOptions.cs class CosmosGrainStorageOptions (line 8) | public class CosmosGrainStorageOptions : CosmosOptions method CosmosGrainStorageOptions (line 36) | public CosmosGrainStorageOptions() FILE: src/Azure/Orleans.Persistence.Cosmos/HostingExtensions.cs class HostingExtensions (line 13) | public static class HostingExtensions method AddCosmosGrainStorageAsDefault (line 21) | public static ISiloBuilder AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorageAsDefault (line 51) | public static ISiloBuilder AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorage (line 66) | public static ISiloBuilder AddCosmosGrainStorage( method AddCosmosGrainStorageAsDefault (line 86) | public static ISiloBuilder AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorage (line 99) | public static ISiloBuilder AddCosmosGrainStorage( method AddCosmosGrainStorageAsDefault (line 114) | public static ISiloBuilder AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorageAsDefault (line 144) | public static ISiloBuilder AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorage (line 158) | public static ISiloBuilder AddCosmosGrainStorage( method AddCosmosGrainStorageAsDefault (line 178) | public static ISiloBuilder AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorage (line 191) | public static ISiloBuilder AddCosmosGrainStorage( method AddCosmosGrainStorageAsDefault (line 205) | public static IServiceCollection AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorage (line 218) | public static IServiceCollection AddCosmosGrainStorage( method AddCosmosGrainStorageAsDefault (line 231) | public static IServiceCollection AddCosmosGrainStorageAsDefault( method AddCosmosGrainStorage (line 244) | public static IServiceCollection AddCosmosGrainStorage( FILE: src/Azure/Orleans.Persistence.Cosmos/IPartitionKeyProvider.cs type IPartitionKeyProvider (line 6) | public interface IPartitionKeyProvider method GetPartitionKey (line 14) | ValueTask GetPartitionKey(string grainType, GrainId grainId); class DefaultPartitionKeyProvider (line 17) | internal class DefaultPartitionKeyProvider : IPartitionKeyProvider method GetPartitionKey (line 19) | public ValueTask GetPartitionKey(string grainType, GrainId gra... FILE: src/Azure/Orleans.Persistence.Cosmos/Models/GrainStateEntity.cs class GrainStateEntity (line 5) | internal class GrainStateEntity : BaseEntity FILE: src/Azure/Orleans.Reminders.AzureStorage/AzureStorageReminderServiceCollectionExtensions.cs class AzureStorageReminderServiceCollectionExtensions (line 12) | public static class AzureStorageReminderServiceCollectionExtensions method UseAzureTableReminderService (line 26) | public static IServiceCollection UseAzureTableReminderService(this ISe... method UseAzureTableReminderService (line 47) | public static IServiceCollection UseAzureTableReminderService(this ISe... method UseAzureTableReminderService (line 69) | public static IServiceCollection UseAzureTableReminderService(this ISe... FILE: src/Azure/Orleans.Reminders.AzureStorage/AzureStorageReminderSiloBuilderReminderExtensions.cs class AzureStorageReminderSiloBuilderExtensions (line 10) | public static class AzureStorageReminderSiloBuilderExtensions method UseAzureTableReminderService (line 24) | public static ISiloBuilder UseAzureTableReminderService(this ISiloBuil... method UseAzureTableReminderService (line 42) | public static ISiloBuilder UseAzureTableReminderService(this ISiloBuil... method UseAzureTableReminderService (line 60) | public static ISiloBuilder UseAzureTableReminderService(this ISiloBuil... FILE: src/Azure/Orleans.Reminders.AzureStorage/AzureTableStorageRemindersProviderBuilder.cs class AzureTableStorageRemindersProviderBuilder (line 17) | internal sealed class AzureTableStorageRemindersProviderBuilder : IProvi... method Configure (line 19) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/Azure/Orleans.Reminders.AzureStorage/Storage/AzureBasedReminderTable.cs class AzureBasedReminderTable (line 14) | public sealed partial class AzureBasedReminderTable : IReminderTable method AzureBasedReminderTable (line 23) | public AzureBasedReminderTable( method StartAsync (line 39) | public async Task StartAsync(CancellationToken cancellationToken) method StopAsync (line 72) | public Task StopAsync(CancellationToken cancellationToken) method ConvertFromTableEntryList (line 78) | private ReminderTableData ConvertFromTableEntryList(List<(ReminderTabl... method ConvertFromTableEntry (line 98) | private ReminderEntry ConvertFromTableEntry(ReminderTableEntry tableEn... method ConvertToTableEntry (line 127) | private static ReminderTableEntry ConvertToTableEntry(ReminderEntry re... method TestOnlyClearTable (line 152) | public async Task TestOnlyClearTable() method ReadRows (line 159) | public async Task ReadRows(GrainId grainId) method ReadRows (line 177) | public async Task ReadRows(uint begin, uint end) method ReadRow (line 195) | public async Task ReadRow(GrainId grainId, string remin... method UpsertRow (line 212) | public async Task UpsertRow(ReminderEntry entry) method RemoveRow (line 235) | public async Task RemoveRow(GrainId grainId, string reminderName... type RingRangeLogValue (line 264) | private readonly struct RingRangeLogValue(uint Begin, uint End) method ToString (line 266) | public override string ToString() => RangeFactory.CreateRange(Begin,... method LogErrorCreatingAzureTable (line 269) | [LoggerMessage( method LogErrorReminderTableInitializationCanceled (line 276) | [LoggerMessage( method LogErrorInitializingReminderTable (line 282) | [LoggerMessage( method LogErrorParsingReminderEntry (line 288) | [LoggerMessage( method LogWarningAzureTable_ReadWrongReminder (line 295) | [LoggerMessage( method LogTraceReadForGrain (line 302) | [LoggerMessage( method LogWarningReadingReminders (line 308) | [LoggerMessage( method LogTraceReadInRange (line 315) | [LoggerMessage( method LogWarningReadingReminderRange (line 321) | [LoggerMessage( method LogDebugReadRow (line 328) | [LoggerMessage( method LogWarningReadingReminderRow (line 334) | [LoggerMessage( method LogDebugUpsertRow (line 341) | [LoggerMessage( method LogWarningReminderUpsertFailed (line 347) | [LoggerMessage( method LogWarningUpsertReminderEntry (line 354) | [LoggerMessage( method LogTraceRemoveRow (line 361) | [LoggerMessage( method LogWarningOnReminderDeleteRetry (line 367) | [LoggerMessage( method LogWarningWhenDeletingReminder (line 374) | [LoggerMessage( FILE: src/Azure/Orleans.Reminders.AzureStorage/Storage/AzureTableReminderStorageOptions.cs class AzureTableReminderStorageOptions (line 4) | public class AzureTableReminderStorageOptions : AzureStorageOperationOpt... class AzureTableReminderStorageOptionsValidator (line 16) | public class AzureTableReminderStorageOptionsValidator : AzureStorageOpe... method AzureTableReminderStorageOptionsValidator (line 23) | public AzureTableReminderStorageOptionsValidator(AzureTableReminderSto... FILE: src/Azure/Orleans.Reminders.AzureStorage/Storage/RemindersTableManager.cs class ReminderTableEntry (line 14) | internal sealed class ReminderTableEntry : ITableEntity method ConstructRowKey (line 29) | public static string ConstructRowKey(GrainId grainId, string reminderN... method ConstructRowKeyBounds (line 32) | public static (string LowerBound, string UpperBound) ConstructRowKeyBo... method ConstructPartitionKey (line 38) | public static string ConstructPartitionKey(string serviceId, GrainId g... method ConstructPartitionKey (line 41) | public static string ConstructPartitionKey(string serviceId, uint number) method ConstructPartitionKeyBounds (line 54) | public static (string LowerBound, string UpperBound) ConstructPartitio... method ToString (line 60) | public override string ToString() => $"Reminder [PartitionKey={Partiti... class RemindersTableManager (line 63) | internal sealed partial class RemindersTableManager : AzureTableDataMana... method RemindersTableManager (line 68) | public RemindersTableManager( method FindReminderEntries (line 79) | internal async Task> Fi... method FindReminderEntries (line 112) | internal async Task> Fi... method FindReminderEntry (line 120) | internal async Task<(ReminderTableEntry Entity, string ETag)> FindRemi... method FindAllReminderEntries (line 128) | private Task> FindAllRe... method UpsertRow (line 133) | internal async Task UpsertRow(ReminderTableEntry reminderEntry) method DeleteReminderEntryConditionally (line 151) | internal async Task DeleteReminderEntryConditionally(ReminderTab... method DeleteTableEntries (line 169) | internal async Task DeleteTableEntries() method LogTraceUpsertRowFailed (line 191) | [LoggerMessage( method LogTraceDeleteReminderEntryConditionallyFailed (line 197) | [LoggerMessage( FILE: src/Azure/Orleans.Reminders.AzureStorage/Utilities/AzureReminderErrorCode.cs type AzureReminderErrorCode (line 5) | [SuppressMessage("ReSharper", "InconsistentNaming")] FILE: src/Azure/Orleans.Reminders.Cosmos/CosmosReminderTable.cs class CosmosReminderTable (line 7) | internal partial class CosmosReminderTable : IReminderTable method CosmosReminderTable (line 20) | public CosmosReminderTable( method Init (line 34) | public async Task Init() method ReadRows (line 69) | public async Task ReadRows(GrainId grainId) method ReadRows (line 108) | public async Task ReadRows(uint begin, uint end) method ReadRow (line 151) | public async Task ReadRow(GrainId grainId, string remin... method UpsertRow (line 182) | public async Task UpsertRow(ReminderEntry entry) method RemoveRow (line 208) | public async Task RemoveRow(GrainId grainId, string reminderName... method TestOnlyClearTable (line 236) | public async Task TestOnlyClearTable() method InitializeCosmosClient (line 283) | private async Task InitializeCosmosClient() method TryDeleteDatabase (line 297) | private async Task TryDeleteDatabase() method TryCreateCosmosResources (line 315) | private async Task TryCreateCosmosResources() method FromEntity (line 342) | private ReminderEntry FromEntity(ReminderEntity entity) method ToEntity (line 354) | private ReminderEntity ToEntity(ReminderEntry entry) type UIntLogValue (line 369) | private readonly struct UIntLogValue(uint value) method ToString (line 371) | public override string ToString() => value.ToString("X"); method LogDebugInitializingCosmosReminderTable (line 374) | [LoggerMessage( method LogTraceInitializingCosmosReminderTableTook (line 380) | [LoggerMessage( method LogErrorInitializationFailedForProviderCosmosReminderTable (line 386) | [LoggerMessage( method LogErrorFailureReadingRemindersForGrain (line 392) | [LoggerMessage( method LogErrorFailureReadingRemindersForService (line 398) | [LoggerMessage( method LogErrorFailureReadingReminder (line 404) | [LoggerMessage( method LogErrorFailureToUpsertReminder (line 410) | [LoggerMessage( method LogErrorFailureRemovingReminders (line 416) | [LoggerMessage( method LogErrorFailureToClearReminders (line 422) | [LoggerMessage( method LogErrorInitializingAzureCosmosDbClient (line 428) | [LoggerMessage( method LogErrorDeletingAzureCosmosDBDatabase (line 434) | [LoggerMessage( FILE: src/Azure/Orleans.Reminders.Cosmos/CosmosReminderTableOptions.cs class CosmosReminderTableOptions (line 6) | public class CosmosReminderTableOptions : CosmosOptions method CosmosReminderTableOptions (line 13) | public CosmosReminderTableOptions() FILE: src/Azure/Orleans.Reminders.Cosmos/HostingExtensions.cs class HostingExtensions (line 10) | public static class HostingExtensions method UseCosmosReminderService (line 24) | public static ISiloBuilder UseCosmosReminderService(this ISiloBuilder ... method UseCosmosReminderService (line 42) | public static ISiloBuilder UseCosmosReminderService(this ISiloBuilder ... method UseCosmosReminderService (line 60) | public static IServiceCollection UseCosmosReminderService(this IServic... method UseCosmosReminderService (line 75) | public static IServiceCollection UseCosmosReminderService(this IServic... FILE: src/Azure/Orleans.Reminders.Cosmos/Models/ReminderEntity.cs class ReminderEntity (line 6) | internal class ReminderEntity : BaseEntity method ConstructId (line 36) | public static string ConstructId(GrainId grainId, string reminderName) method ConstructPartitionKey (line 49) | public static string ConstructPartitionKey(string serviceId, GrainId g... FILE: src/Azure/Orleans.Streaming.AzureStorage/Hosting/AzureQueueStreamProviderBuilder.cs class AzureQueueStreamProviderBuilder (line 17) | public sealed class AzureQueueStreamProviderBuilder : IProviderBuilder> GetQueueOptio... FILE: src/Azure/Orleans.Streaming.AzureStorage/Hosting/ClientBuilderExtensions.cs class ClientBuilderExtensions (line 7) | public static class ClientBuilderExtensions method AddAzureQueueStreams (line 12) | public static IClientBuilder AddAzureQueueStreams(this IClientBuilder ... method AddAzureQueueStreams (line 25) | public static IClientBuilder AddAzureQueueStreams(this IClientBuilder ... FILE: src/Azure/Orleans.Streaming.AzureStorage/Hosting/SiloBuilderExtensions.cs class SiloBuilderExtensions (line 10) | public static class SiloBuilderExtensions method AddAzureQueueStreams (line 15) | public static ISiloBuilder AddAzureQueueStreams(this ISiloBuilder buil... method AddAzureQueueStreams (line 27) | public static ISiloBuilder AddAzureQueueStreams(this ISiloBuilder buil... method UseAzureBlobLeaseProvider (line 37) | public static ISiloBuilder UseAzureBlobLeaseProvider(this ISiloBuilder... method ConfigureAzureBlobLeaseProviderServices (line 43) | private static void ConfigureAzureBlobLeaseProviderServices(IServiceCo... method UseAzureBlobLeaseProvider (line 55) | public static void UseAzureBlobLeaseProvider(this ISiloPersistentStrea... FILE: src/Azure/Orleans.Streaming.AzureStorage/Options/AzureBlobLeaseProviderOptions.cs class AzureBlobLeaseProviderOptions (line 16) | public class AzureBlobLeaseProviderOptions method ConfigureBlobServiceClient (line 50) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 59) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 68) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 77) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 86) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] method ConfigureBlobServiceClient (line 95) | [Obsolete($"Set the {nameof(BlobServiceClient)} property directly.")] class AzureBlobLeaseProviderOptionsValidator (line 105) | public class AzureBlobLeaseProviderOptionsValidator : IConfigurationVali... method AzureBlobLeaseProviderOptionsValidator (line 114) | public AzureBlobLeaseProviderOptionsValidator(IOptions ... method AzureBlobLeaseProvider (line 25) | private AzureBlobLeaseProvider(AzureBlobLeaseProviderOptions options) method InitContainerIfNotExistsAsync (line 30) | private async Task InitContainerIfNotExistsAsync() method GetBlobClient (line 41) | private BlobClient GetBlobClient(string category, string resourceKey) ... method Acquire (line 43) | public async Task Acquire(string category, Lease... method Acquire (line 55) | private async Task Acquire(string category, LeaseR... method Release (line 82) | public async Task Release(string category, AcquiredLease[] acquiredLea... method Release (line 93) | private Task Release(string category, AcquiredLease acquiredLease) method Renew (line 99) | public async Task Renew(string category, Acquire... method Renew (line 111) | private async Task Renew(string category, Acquired... method Create (line 137) | public static ILeaseProvider Create(IServiceProvider services, string ... FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/AzureQueue/AzureQueueAdapter.cs class AzureQueueAdapter (line 13) | internal sealed class AzureQueueAdapter : IQueueAdapter method AzureQueueAdapter (line 26) | public AzureQueueAdapter( method CreateReceiver (line 40) | public IQueueAdapterReceiver CreateReceiver(QueueId queueId) => AzureQ... method QueueMessageBatchAsync (line 42) | public async Task QueueMessageBatchAsync(StreamId streamId, IEnumer... FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/AzureQueue/AzureQueueAdapterFactory.cs class AzureQueueAdapterFactory (line 13) | public class AzureQueueAdapterFactory : IQueueAdapterFactory method AzureQueueAdapterFactory (line 27) | public AzureQueueAdapterFactory( method Init (line 43) | public virtual void Init() method CreateAdapter (line 50) | public virtual Task CreateAdapter() method GetQueueAdapterCache (line 62) | public virtual IQueueAdapterCache GetQueueAdapterCache() method GetStreamQueueMapper (line 68) | public IStreamQueueMapper GetStreamQueueMapper() method GetDeliveryFailureHandler (line 78) | public Task GetDeliveryFailureHandler(QueueId q... method Create (line 83) | public static AzureQueueAdapterFactory Create(IServiceProvider service... FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/AzureQueue/AzureQueueAdapterReceiver.cs class AzureQueueAdapterReceiver (line 17) | internal partial class AzureQueueAdapterReceiver : IQueueAdapterReceiver method Create (line 28) | public static IQueueAdapterReceiver Create(ILoggerFactory loggerFactor... method AzureQueueAdapterReceiver (line 38) | private AzureQueueAdapterReceiver(string azureQueueName, ILoggerFactor... method Initialize (line 47) | public Task Initialize(TimeSpan timeout) method Shutdown (line 56) | public async Task Shutdown(TimeSpan timeout) method GetQueueMessagesAsync (line 71) | public async Task> GetQueueMessagesAsync(int ma... method MessagesDeliveredAsync (line 103) | public async Task MessagesDeliveredAsync(IList messages) method LogWarningOnDeleteQueueMessage (line 143) | [LoggerMessage( class PendingDelivery (line 150) | private class PendingDelivery method PendingDelivery (line 152) | public PendingDelivery(StreamSequenceToken token, QueueMessage message) FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/AzureQueue/AzureQueueBatchContainer.cs class AzureQueueBatchContainer (line 11) | [Serializable] method AzureQueueBatchContainer (line 40) | [JsonConstructor] method AzureQueueBatchContainer (line 51) | public AzureQueueBatchContainer(StreamId streamId, List events... method GetEvents (line 60) | public IEnumerable> GetEvents() method ImportRequestContext (line 65) | public bool ImportRequestContext() method ToString (line 75) | public override string ToString() FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/AzureQueue/AzureQueueBatchContainerV2.cs class AzureQueueBatchContainerV2 (line 14) | [Serializable] method AzureQueueBatchContainerV2 (line 40) | [JsonConstructor] method AzureQueueBatchContainerV2 (line 51) | public AzureQueueBatchContainerV2(StreamId streamId, List even... method GetEvents (line 60) | public IEnumerable> GetEvents() method ImportRequestContext (line 65) | public bool ImportRequestContext() method ToString (line 75) | public override string ToString() FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/AzureQueue/AzureQueueStreamBuilder.cs type IAzureQueueStreamConfigurator (line 11) | public interface IAzureQueueStreamConfigurator : INamedServiceConfigurat... class AzureQueueStreamConfiguratorExtensions (line 13) | public static class AzureQueueStreamConfiguratorExtensions method ConfigureAzureQueue (line 15) | public static void ConfigureAzureQueue(this IAzureQueueStreamConfigura... method ConfigureQueueDataAdapter (line 20) | public static void ConfigureQueueDataAdapter(this IAzureQueueStreamCon... method ConfigureQueueDataAdapter (line 25) | public static void ConfigureQueueDataAdapter(this I... type ISiloAzureQueueStreamConfigurator (line 32) | public interface ISiloAzureQueueStreamConfigurator : IAzureQueueStreamCo... class SiloAzureQueueStreamConfiguratorExtensions (line 34) | public static class SiloAzureQueueStreamConfiguratorExtensions method ConfigureCacheSize (line 36) | public static void ConfigureCacheSize(this ISiloAzureQueueStreamConfig... class SiloAzureQueueStreamConfigurator (line 42) | public class SiloAzureQueueStreamConfigurator : SiloPersistentStreamConf... method SiloAzureQueueStreamConfigurator (line 44) | public SiloAzureQueueStreamConfigurator(string name, Action GenerateDefaultAzureQueueNames(string servi... method DeleteAllUsedAzureQueues (line 35) | public static async Task DeleteAllUsedAzureQueues(ILoggerFactory logge... method DeleteAllUsedAzureQueues (line 48) | public static async Task DeleteAllUsedAzureQueues(ILoggerFactory logge... method ClearAllUsedAzureQueues (line 66) | public static async Task ClearAllUsedAzureQueues(ILoggerFactory logger... method ClearAllUsedAzureQueues (line 79) | public static async Task ClearAllUsedAzureQueues(ILoggerFactory logger... FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/AzureQueue/IAzureQueueDataAdapter.cs class AzureQueueDataAdapterV1 (line 15) | [SerializationCallbacks(typeof(OnDeserializedCallbacks))] method AzureQueueDataAdapterV1 (line 24) | public AzureQueueDataAdapterV1(Serializer serializer) method ToQueueMessage (line 32) | public string ToQueueMessage(StreamId streamId, IEnumerable even... method FromQueueMessage (line 42) | public IBatchContainer FromQueueMessage(string cloudMsg, long sequenceId) method OnDeserialized (line 49) | void IOnDeserialized.OnDeserialized(DeserializationContext context) class AzureQueueDataAdapterV2 (line 58) | [SerializationCallbacks(typeof(OnDeserializedCallbacks))] method AzureQueueDataAdapterV2 (line 67) | public AzureQueueDataAdapterV2(Serializer serializer) method ToQueueMessage (line 75) | public string ToQueueMessage(StreamId streamId, IEnumerable even... method FromQueueMessage (line 85) | public IBatchContainer FromQueueMessage(string cloudMsg, long sequenceId) method OnDeserialized (line 92) | void IOnDeserialized.OnDeserialized(DeserializationContext context) FILE: src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/AzureTableStorageStreamFailureHandler.cs class AzureTableStorageStreamFailureHandler (line 15) | public class AzureTableStorageStreamFailureHandler : IStreamFai... method AzureTableStorageStreamFailureHandler (line 32) | public AzureTableStorageStreamFailureHandler(Serializer s... method GetSequenceToken (line 82) | public virtual StreamSequenceToken GetSequenceToken(Serializer GetQueueClient() method InitQueueAsync (line 111) | public async Task InitQueueAsync() method DeleteQueue (line 135) | public async Task DeleteQueue() method ClearQueue (line 161) | public async Task ClearQueue() method AddQueueMessage (line 193) | public async Task AddQueueMessage(string message) method PeekQueueMessage (line 215) | public async Task PeekQueueMessage() method GetQueueMessage (line 241) | public async Task GetQueueMessage() method GetQueueMessages (line 269) | public async Task> GetQueueMessages(int? cou... method DeleteQueueMessage (line 299) | public async Task DeleteQueueMessage(QueueMessage message) method GetAndDeleteQueueMessage (line 326) | internal async Task GetAndDeleteQueueMessage() method GetApproximateMessageCount (line 335) | public async Task GetApproximateMessageCount() method CheckAlertSlowAccess (line 357) | private void CheckAlertSlowAccess(DateTime startOperation, string oper... method ReportErrorAndRethrow (line 366) | private void ReportErrorAndRethrow(Exception exc, string operation, Az... method GetCloudQueueClient (line 375) | private async Task GetCloudQueueClient(AzureQueueOptions ... method SanitizeQueueName (line 389) | private static string SanitizeQueueName(string queueName) method ValidateQueueName (line 407) | private static void ValidateQueueName(string queueName) method LogInfoAzureQueueConnection (line 447) | [LoggerMessage( method LogTraceDeletingQueue (line 454) | [LoggerMessage( method LogInfoAzureQueueDeleted (line 460) | [LoggerMessage( method LogTraceClearingAQueue (line 467) | [LoggerMessage( method LogInfoAzureQueueClear (line 473) | [LoggerMessage( method LogTraceAddingMessage (line 480) | [LoggerMessage( method LogTracePeekingMessage (line 486) | [LoggerMessage( method LogTraceGettingMessage (line 492) | [LoggerMessage( method LogTraceGettingUpToMessages (line 498) | [LoggerMessage( method LogTraceDeletingAMessage (line 504) | [LoggerMessage( method LogTraceGetApproximateMessageCount (line 510) | [LoggerMessage( method LogWarningSlowAzureQueueAccess (line 516) | [LoggerMessage( method LogErrorCreatingAzureQueueClient (line 523) | [LoggerMessage( FILE: src/Azure/Orleans.Streaming.AzureStorage/Utilities/AzureQueueErrorCode.cs type AzureQueueErrorCode (line 5) | [SuppressMessage("ReSharper", "InconsistentNaming")] FILE: src/Azure/Orleans.Streaming.EventHubs/Hosting/ClientBuilderExtensions.cs class ClientBuilderExtensions (line 6) | public static class ClientBuilderExtensions method AddEventHubStreams (line 11) | public static IClientBuilder AddEventHubStreams( method AddEventHubStreams (line 24) | public static IClientBuilder AddEventHubStreams( FILE: src/Azure/Orleans.Streaming.EventHubs/Hosting/DeveloperExtensions.cs class SiloBuilderExtensions (line 5) | public static class SiloBuilderExtensions method AddEventDataGeneratorStreams (line 10) | public static ISiloBuilder AddEventDataGeneratorStreams( FILE: src/Azure/Orleans.Streaming.EventHubs/Hosting/SiloBuilderExtensions.cs class SiloBuilderExtensions (line 6) | public static class SiloBuilderExtensions method AddEventHubStreams (line 11) | public static ISiloBuilder AddEventHubStreams( method AddEventHubStreams (line 25) | public static ISiloBuilder AddEventHubStreams( FILE: src/Azure/Orleans.Streaming.EventHubs/OrleansServiceBusErrorCode.cs type OrleansEventHubErrorCode (line 6) | internal enum OrleansEventHubErrorCode FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/EventDataGeneratorStreamProvider/EventDataGeneratorAdapterFactory.cs class EventDataGeneratorAdapterFactory (line 20) | public partial class EventDataGeneratorAdapterFactory : EventHubAdapterF... method EventDataGeneratorAdapterFactory (line 24) | public EventDataGeneratorAdapterFactory( method Init (line 41) | public override void Init() method InitEventHubClient (line 48) | protected override void InitEventHubClient() method GetPartitionIdsAsync (line 57) | protected override Task GetPartitionIdsAsync() method EHGeneratorReceiverFactory (line 62) | private IEventHubReceiver EHGeneratorReceiverFactory(EventHubPartition... method RandomlyPlaceStreamToQueue (line 70) | private void RandomlyPlaceStreamToQueue(StreamRandomPlacementArg args) method StopProducingOnStream (line 93) | private void StopProducingOnStream(StreamId streamId) method GenerateEventHubPartitions (line 102) | public static string[] GenerateEventHubPartitions(int partitionCount) type Commands (line 113) | public enum Commands class StreamRandomPlacementArg (line 128) | [Serializable] method StreamRandomPlacementArg (line 149) | public StreamRandomPlacementArg(StreamId streamId, int randomNumber) method ExecuteCommand (line 162) | public virtual Task ExecuteCommand(int command, object arg) method Create (line 178) | public new static EventDataGeneratorAdapterFactory Create(IServiceProv... method LogInfoStreamAssignedToQueue (line 195) | [LoggerMessage( method LogInfoCannotGetQueues (line 201) | [LoggerMessage( FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/EventDataGeneratorStreamProvider/EventDataGeneratorStreamOptions.cs class EventDataGeneratorStreamOptions (line 7) | public class EventDataGeneratorStreamOptions FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/EventDataGeneratorStreamProvider/EventHubPartitionDataGenerator.cs class SimpleStreamEventDataGenerator (line 17) | public partial class SimpleStreamEventDataGenerator : IStreamDataGenerat... method SimpleStreamEventDataGenerator (line 31) | public SimpleStreamEventDataGenerator(StreamId streamId, ILogger eve... method GenerateEvent (line 80) | private static IEnumerable GenerateEvent(int sequenceNumber) method CreateFactory (line 85) | public static Func> CreateFa... method LogInfoGenerateData (line 90) | [LoggerMessage( class EventHubPartitionDataGenerator (line 100) | public partial class EventHubPartitionDataGenerator : IDataGenerator eve... method LogInfoOnStreamSetup (line 177) | [LoggerMessage( method LogInfoOnStreamStop (line 183) | [LoggerMessage( FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/EventDataGeneratorStreamProvider/EventHubPartitionGeneratorReceiver.cs class EventHubPartitionGeneratorReceiver (line 13) | public class EventHubPartitionGeneratorReceiver : IEventHubReceiver method EventHubPartitionGeneratorReceiver (line 20) | public EventHubPartitionGeneratorReceiver(IDataGenerator ge... method ReceiveAsync (line 25) | public async Task> ReceiveAsync(int maxCount, T... method StopProducingOnStream (line 40) | public void StopProducingOnStream(StreamId streamId) method ConfigureDataGeneratorForStream (line 46) | public void ConfigureDataGeneratorForStream(StreamId streamId) method CloseAsync (line 52) | public Task CloseAsync() FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/EventDataGeneratorStreamProvider/IEventDataGenerator.cs type IDataGenerator (line 10) | public interface IDataGenerator method TryReadEvents (line 18) | bool TryReadEvents(int maxCount, out IEnumerable events); type IStreamDataGeneratingController (line 24) | public interface IStreamDataGeneratingController method AddDataGeneratorForStream (line 30) | void AddDataGeneratorForStream(StreamId streamId); method StopProducingOnStream (line 35) | void StopProducingOnStream(StreamId streamId); type IStreamDataGenerator (line 42) | public interface IStreamDataGenerator: IDataGenerator type IIntCounter (line 61) | public interface IIntCounter method Increment (line 70) | void Increment(); class IntCounter (line 73) | internal class IntCounter : IIntCounter method Increment (line 77) | public void Increment() FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/EventDataGeneratorStreamProvider/NoOpCheckpointer.cs class NoOpCheckpointerFactory (line 7) | public class NoOpCheckpointerFactory : IStreamQueueCheckpointerFactory method Create (line 10) | public Task> Create(string partition) class NoOpCheckpointer (line 20) | public class NoOpCheckpointer : IStreamQueueCheckpointer method Load (line 25) | public Task Load() method Update (line 29) | public void Update(string offset, DateTime utcNow) FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/CachePressureMonitors/AggregatedCachePressureMonitor.cs class AggregatedCachePressureMonitor (line 12) | public partial class AggregatedCachePressureMonitor : List DeserializeProperties(this A... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventDataGeneratorStreamConfigurator.cs type IEventDataGeneratorStreamConfigurator (line 11) | public interface IEventDataGeneratorStreamConfigurator : ISiloRecoverabl... class EventDataGeneratorConfiguratorExtensions (line 13) | public static class EventDataGeneratorConfiguratorExtensions method UseDataAdapter (line 15) | public static void UseDataAdapter(this IEventDataGeneratorStreamConfig... method ConfigureCachePressuring (line 20) | public static void ConfigureCachePressuring(this IEventDataGeneratorSt... class EventDataGeneratorStreamConfigurator (line 26) | public class EventDataGeneratorStreamConfigurator : SiloRecoverableStrea... method EventDataGeneratorStreamConfigurator (line 28) | public EventDataGeneratorStreamConfigurator(string name, FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubAdapterFactory.cs class EventHubAdapterFactory (line 21) | public class EventHubAdapterFactory : IQueueAdapterFactory, IQueueAdapte... method EventHubAdapterFactory (line 105) | public EventHubAdapterFactory( method Init (line 129) | public virtual void Init() method InitCheckpointerFactory (line 160) | private void InitCheckpointerFactory() method CreateAdapter (line 168) | public async Task CreateAdapter() method GetQueueAdapterCache (line 182) | public IQueueAdapterCache GetQueueAdapterCache() method GetStreamQueueMapper (line 191) | public IStreamQueueMapper GetStreamQueueMapper() method GetDeliveryFailureHandler (line 202) | public Task GetDeliveryFailureHandler(QueueId q... method QueueMessageBatchAsync (line 216) | public virtual Task QueueMessageBatchAsync(StreamId streamId, IEnum... method CreateReceiver (line 229) | public IQueueAdapterReceiver CreateReceiver(QueueId queueId) method CreateQueueCache (line 238) | public IQueueCache CreateQueueCache(QueueId queueId) method GetOrCreateReceiver (line 243) | private EventHubAdapterReceiver GetOrCreateReceiver(QueueId queueId) method InitEventHubClient (line 248) | protected virtual void InitEventHubClient() method CreateCacheFactory (line 261) | protected virtual IEventHubQueueCacheFactory CreateCacheFactory(EventH... method MakeReceiver (line 268) | private EventHubAdapterReceiver MakeReceiver(QueueId queueId) method GetPartitionIdsAsync (line 299) | protected virtual async Task GetPartitionIdsAsync() method Create (line 304) | public static EventHubAdapterFactory Create(IServiceProvider services,... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubAdapterReceiver.cs class EventHubPartitionSettings (line 21) | public class EventHubPartitionSettings class EventHubAdapterReceiver (line 36) | internal partial class EventHubAdapterReceiver : IQueueAdapterReceiver, ... method GetMaxAddCount (line 64) | public int GetMaxAddCount() method EventHubAdapterReceiver (line 69) | public EventHubAdapterReceiver(EventHubPartitionSettings settings, method Initialize (line 89) | public Task Initialize(TimeSpan timeout) method Initialize (line 104) | private async Task Initialize() method GetQueueMessagesAsync (line 130) | public async Task> GetQueueMessagesAsync(int ma... method AddToCache (line 195) | public void AddToCache(IList messages) method TryPurgeFromCache (line 200) | public bool TryPurgeFromCache(out IList purgedItems) method GetCacheCursor (line 211) | public IQueueCacheCursor GetCacheCursor(StreamId streamId, StreamSeque... method IsUnderPressure (line 216) | public bool IsUnderPressure() method MessagesDeliveredAsync (line 221) | public Task MessagesDeliveredAsync(IList messages) method Shutdown (line 226) | public async Task Shutdown(TimeSpan timeout) method CreateReceiver (line 266) | private static IEventHubReceiver CreateReceiver(EventHubPartitionSetti... method ConfigureDataGeneratorForStream (line 275) | internal void ConfigureDataGeneratorForStream(StreamId streamId) method StopProducingOnStream (line 280) | internal void StopProducingOnStream(StreamId streamId) class StreamActivityNotificationBatch (line 285) | [GenerateSerializer] method StreamActivityNotificationBatch (line 294) | public StreamActivityNotificationBatch(StreamPosition position) method GetEvents (line 299) | public IEnumerable> GetEvents() { t... method ImportRequestContext (line 300) | public bool ImportRequestContext() { throw new NotSupportedException... class Cursor (line 303) | private class Cursor : IQueueCacheCursor method Cursor (line 309) | public Cursor(IEventHubQueueCache cache, StreamId streamId, StreamSe... method Dispose (line 315) | public void Dispose() method GetCurrent (line 319) | public IBatchContainer GetCurrent(out Exception exception) method MoveNext (line 325) | public bool MoveNext() method Refresh (line 337) | public void Refresh(StreamSequenceToken token) method RecordDeliveryFailure (line 341) | public void RecordDeliveryFailure() method LogInfoInitializingEventHubPartition (line 346) | [LoggerMessage( method LogInfoStoppingReadingFromEventHubPartition (line 352) | [LoggerMessage( method LogWarningRetryingInitializationOfEventHubPartition (line 358) | [LoggerMessage( method LogWarningFailedToReadFromEventHubPartition (line 365) | [LoggerMessage( FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubBatchContainer.cs class EventHubBatchContainer (line 15) | [Serializable] method GetPayload (line 45) | private Body GetPayload() => payload ?? (payload = this.Serializer.Des... class Body (line 47) | [Serializable] method EventHubBatchContainer (line 60) | public EventHubBatchContainer(EventHubMessage eventHubMessage, Seriali... method EventHubBatchContainer (line 67) | [GeneratedActivatorConstructor] method GetEvents (line 78) | public IEnumerable> GetEvents() method ImportRequestContext (line 88) | public bool ImportRequestContext() method ToEventData (line 101) | public static EventData ToEventData(Serializer bodySerializer, Stre... method UpdateEventData (line 117) | public static void UpdateEventData(EventData eventData, Serializer ... method CreateEventDataBody (line 123) | private static BinaryData CreateEventDataBody(Serializer bodySerial... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubCheckpointer.cs class EventHubCheckpointerFactory (line 12) | public class EventHubCheckpointerFactory : IStreamQueueCheckpointerFactory method EventHubCheckpointerFactory (line 19) | public EventHubCheckpointerFactory(string providerName, AzureTableStre... method Create (line 27) | public Task> Create(string partition) method CreateFactory (line 32) | public static IStreamQueueCheckpointerFactory CreateFactory(IServicePr... class EventHubCheckpointer (line 43) | public partial class EventHubCheckpointer : IStreamQueueCheckpointer> Create(Azur... method EventHubCheckpointer (line 74) | private EventHubCheckpointer(AzureTableStreamCheckpointerOptions optio... method Initialize (line 97) | private Task Initialize() method Load (line 106) | public async Task Load() method Update (line 122) | public void Update(string offset, DateTime utcNow) method LogCreatingEventHubCheckpointer (line 142) | [LoggerMessage( FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubCheckpointerOptions.cs class AzureTableStreamCheckpointerOptions (line 6) | public class AzureTableStreamCheckpointerOptions : AzureStorageOperation... class AzureTableStreamCheckpointerOptionsValidator (line 22) | public class AzureTableStreamCheckpointerOptionsValidator : AzureStorage... method AzureTableStreamCheckpointerOptionsValidator (line 24) | public AzureTableStreamCheckpointerOptionsValidator(AzureTableStreamCh... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubConstants.cs class EventHubConstants (line 3) | internal class EventHubConstants FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubDataAdapter.cs class EventHubDataAdapter (line 13) | public class EventHubDataAdapter : IEventHubDataAdapter method EventHubDataAdapter (line 20) | public EventHubDataAdapter(Serialization.Serializer serializer) method GetBatchContainer (line 30) | public virtual IBatchContainer GetBatchContainer(ref CachedMessage cac... method GetBatchContainer (line 41) | protected virtual IBatchContainer GetBatchContainer(EventHubMessage ev... method GetSequenceToken (line 51) | public virtual StreamSequenceToken GetSequenceToken(ref CachedMessage ... method ToQueueMessage (line 56) | public virtual EventData ToQueueMessage(StreamId streamId, IEnumera... method FromQueueMessage (line 62) | public virtual CachedMessage FromQueueMessage(StreamPosition streamPos... method GetStreamPosition (line 75) | public virtual StreamPosition GetStreamPosition(string partition, Even... method GetOffset (line 86) | public virtual string GetOffset(CachedMessage lastItemPurged) method GetPartitionKey (line 98) | public virtual string GetPartitionKey(StreamId streamId) => streamId.G... method GetStreamIdentity (line 105) | public virtual StreamId GetStreamIdentity(EventData queueMessage) method EncodeMessageIntoSegment (line 113) | protected virtual ArraySegment EncodeMessageIntoSegment(EventDat... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubMessage.cs class EventHubMessage (line 11) | [Serializable] method EventHubMessage (line 26) | public EventHubMessage(StreamId streamId, string partitionKey, string ... method EventHubMessage (line 42) | public EventHubMessage(CachedMessage cachedMessage, Serialization.Seri... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubPartitionCheckpointEntity.cs class EventHubPartitionCheckpointEntity (line 7) | internal class EventHubPartitionCheckpointEntity : ITableEntity method EventHubPartitionCheckpointEntity (line 15) | public EventHubPartitionCheckpointEntity() method Create (line 20) | public static EventHubPartitionCheckpointEntity Create(string streamPr... method MakePartitionKey (line 29) | public static string MakePartitionKey(string streamProviderName, strin... method MakeRowKey (line 35) | public static string MakeRowKey(string partition) FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubQueueCache.cs class EventHubQueueCache (line 14) | public partial class EventHubQueueCache : IEventHubQueueCache method EventHubQueueCache (line 49) | public EventHubQueueCache( method SignalPurge (line 76) | public void SignalPurge() method AddCachePressureMonitor (line 85) | public void AddCachePressureMonitor(ICachePressureMonitor monitor) method Dispose (line 95) | public void Dispose() method GetMaxAddCount (line 103) | public int GetMaxAddCount() method Add (line 114) | public List Add(List messages, DateTime deq... method GetCursor (line 134) | public object GetCursor(StreamId streamId, StreamSequenceToken sequenc... method TryGetNextMessage (line 145) | public bool TryGetNextMessage(object cursorObj, out IBatchContainer me... method OnPurge (line 162) | private void OnPurge(CachedMessage? lastItemPurged, CachedMessage? new... method TryCalculateCachePressureContribution (line 183) | private bool TryCalculateCachePressureContribution(StreamSequenceToken... method GetSegment (line 204) | private ArraySegment GetSegment(int size) type DateTimeLogRecord (line 223) | private readonly struct DateTimeLogRecord(DateTime ts) method ToString (line 225) | public override string ToString() => LogFormatter.PrintDate(ts); method LogDebugCachePeriod (line 228) | [LoggerMessage( FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubQueueCacheFactory.cs class EventHubQueueCacheFactory (line 13) | public class EventHubQueueCacheFactory : IEventHubQueueCacheFactory method EventHubQueueCacheFactory (line 39) | public EventHubQueueCacheFactory( method CreateCache (line 63) | public IEventHubQueueCache CreateCache(string partition, IStreamQueueC... method CreateBufferPool (line 75) | protected virtual IObjectPool CreateBufferPool(Stream... method AddCachePressureMonitors (line 97) | protected virtual void AddCachePressureMonitors( method CreateCache (line 130) | protected virtual IEventHubQueueCache CreateCache( FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubSequenceToken.cs type IEventHubPartitionLocation (line 12) | public interface IEventHubPartitionLocation class EventHubSequenceToken (line 34) | [Serializable] method EventHubSequenceToken (line 51) | public EventHubSequenceToken(string eventHubOffset, long sequenceNumbe... method EventHubSequenceToken (line 63) | public EventHubSequenceToken() : base() method ToString (line 70) | public override string ToString() FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubSequenceTokenV2.cs class EventHubSequenceTokenV2 (line 14) | [Serializable] method EventHubSequenceTokenV2 (line 24) | public EventHubSequenceTokenV2(string eventHubOffset, long sequenceNum... method EventHubSequenceTokenV2 (line 35) | public EventHubSequenceTokenV2() : base() FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubStreamBuilder.cs type IEventHubStreamConfigurator (line 10) | public interface IEventHubStreamConfigurator : INamedServiceConfigurator {} class EventHubStreamConfiguratorExtensions (line 12) | public static class EventHubStreamConfiguratorExtensions method ConfigureEventHub (line 14) | public static void ConfigureEventHub(this IEventHubStreamConfigurator ... method UseDataAdapter (line 19) | public static void UseDataAdapter(this IEventHubStreamConfigurator con... type ISiloEventHubStreamConfigurator (line 25) | public interface ISiloEventHubStreamConfigurator : IEventHubStreamConfig... class SiloEventHubStreamConfiguratorExtensions (line 28) | public static class SiloEventHubStreamConfiguratorExtensions method ConfigureCheckpointer (line 30) | public static void ConfigureCheckpointer(this ISiloEventHubS... method ConfigurePartitionReceiver (line 36) | public static void ConfigurePartitionReceiver(this ISiloEventHubStream... method ConfigureCachePressuring (line 41) | public static void ConfigureCachePressuring(this ISiloEventHubStreamCo... method UseAzureTableCheckpointer (line 46) | public static void UseAzureTableCheckpointer(this ISiloEventHubStreamC... class SiloEventHubStreamConfigurator (line 52) | public class SiloEventHubStreamConfigurator : SiloRecoverableStreamConfi... method SiloEventHubStreamConfigurator (line 54) | public SiloEventHubStreamConfigurator(string name, type IClusterClientEventHubStreamConfigurator (line 66) | public interface IClusterClientEventHubStreamConfigurator : IEventHubStr... class ClusterClientEventHubStreamConfigurator (line 68) | public class ClusterClientEventHubStreamConfigurator : ClusterClientPers... method ClusterClientEventHubStreamConfigurator (line 70) | public ClusterClientEventHubStreamConfigurator(string name, IClientBui... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/EventHubStreamOptions.cs class EventHubOptions (line 14) | public class EventHubOptions method ConfigureEventHubConnection (line 46) | public void ConfigureEventHubConnection(string connectionString, strin... method ConfigureEventHubConnection (line 64) | public void ConfigureEventHubConnection(string fullyQualifiedNamespace... method ConfigureEventHubConnection (line 87) | public void ConfigureEventHubConnection(string fullyQualifiedNamespace... method ConfigureEventHubConnection (line 110) | public void ConfigureEventHubConnection(string fullyQualifiedNamespace... method ConfigureEventHubConnection (line 131) | public void ConfigureEventHubConnection(EventHubConnection connection,... method ConfigureEventHubConnection (line 143) | public void ConfigureEventHubConnection(CreateConnectionDelegate creat... method ValidateValues (line 151) | private static void ValidateValues(string eventHubName, string consume... class EventHubOptionsValidator (line 165) | public class EventHubOptionsValidator : IConfigurationValidator method EventHubOptionsValidator (line 169) | public EventHubOptionsValidator(EventHubOptions options, string name) method ValidateConfiguration (line 174) | public void ValidateConfiguration() class StreamCheckpointerConfigurationValidator (line 193) | public class StreamCheckpointerConfigurationValidator : IConfigurationVa... method StreamCheckpointerConfigurationValidator (line 197) | public StreamCheckpointerConfigurationValidator(IServiceProvider servi... method ValidateConfiguration (line 202) | public void ValidateConfiguration() class EventHubReceiverOptions (line 210) | public class EventHubReceiverOptions class EventHubStreamCachePressureOptions (line 223) | public class EventHubStreamCachePressureOptions FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/IEventHubDataAdapter.cs type IEventHubDataAdapter (line 9) | public interface IEventHubDataAdapter : IQueueDataAdapter, IC... method FromQueueMessage (line 11) | CachedMessage FromQueueMessage(StreamPosition position, EventData queu... method GetStreamPosition (line 13) | StreamPosition GetStreamPosition(string partition, EventData queueMess... method GetOffset (line 15) | string GetOffset(CachedMessage cachedMessage); method GetPartitionKey (line 17) | string GetPartitionKey(StreamId streamId); method GetStreamIdentity (line 19) | StreamId GetStreamIdentity(EventData queueMessage); FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/IEventHubQueueCache.cs type IEventHubQueueCache (line 12) | public interface IEventHubQueueCache : IQueueFlowController, IDisposable method Add (line 20) | List Add(List message, DateTime dequeueTime... method GetCursor (line 28) | object GetCursor(StreamId streamId, StreamSequenceToken sequenceToken); method TryGetNextMessage (line 35) | bool TryGetNextMessage(object cursorObj, out IBatchContainer message); method AddCachePressureMonitor (line 41) | void AddCachePressureMonitor(ICachePressureMonitor monitor); method SignalPurge (line 46) | void SignalPurge(); FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/IEventHubQueueCacheFactory.cs type IEventHubQueueCacheFactory (line 9) | public interface IEventHubQueueCacheFactory method CreateCache (line 14) | IEventHubQueueCache CreateCache(string partition, IStreamQueueCheckpoi... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/IEventHubReceiver.cs type IEventHubReceiver (line 15) | public interface IEventHubReceiver method ReceiveAsync (line 23) | Task> ReceiveAsync(int maxCount, TimeSpan waitT... method CloseAsync (line 29) | Task CloseAsync(); class EventHubReceiverProxy (line 35) | internal partial class EventHubReceiverProxy : IEventHubReceiver method EventHubReceiverProxy (line 39) | public EventHubReceiverProxy(EventHubPartitionSettings partitionSettin... method ReceiveAsync (line 79) | public async Task> ReceiveAsync(int maxCount, T... method CloseAsync (line 84) | public async Task CloseAsync() method LogInfoStartingRead (line 89) | [LoggerMessage( method LogInfoStartingReadLatest (line 95) | [LoggerMessage( method LogInfoStartingReadBegin (line 101) | [LoggerMessage( FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/StatisticMonitors/DefaultEventHubBlockPoolMonitor.cs class DefaultEventHubBlockPoolMonitor (line 9) | public class DefaultEventHubBlockPoolMonitor : DefaultBlockPoolMonitor method DefaultEventHubBlockPoolMonitor (line 15) | public DefaultEventHubBlockPoolMonitor(EventHubBlockPoolMonitorDimensi... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/StatisticMonitors/DefaultEventHubCacheMonitor.cs class DefaultEventHubCacheMonitor (line 9) | public class DefaultEventHubCacheMonitor : DefaultCacheMonitor method DefaultEventHubCacheMonitor (line 15) | public DefaultEventHubCacheMonitor(EventHubCacheMonitorDimensions dime... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/StatisticMonitors/DefaultEventHubReceiverMonitor.cs class DefaultEventHubReceiverMonitor (line 9) | public class DefaultEventHubReceiverMonitor : DefaultQueueAdapterReceive... method DefaultEventHubReceiverMonitor (line 15) | public DefaultEventHubReceiverMonitor(EventHubReceiverMonitorDimension... FILE: src/Azure/Orleans.Streaming.EventHubs/Providers/Streams/EventHub/StatisticMonitors/MonitorAggregationDimentions.cs class EventHubMonitorAggregationDimensions (line 8) | public class EventHubMonitorAggregationDimensions method EventHubMonitorAggregationDimensions (line 19) | public EventHubMonitorAggregationDimensions(string ehHubPath) method EventHubMonitorAggregationDimensions (line 28) | public EventHubMonitorAggregationDimensions(EventHubMonitorAggregation... method EventHubMonitorAggregationDimensions (line 36) | public EventHubMonitorAggregationDimensions() class EventHubReceiverMonitorDimensions (line 44) | public class EventHubReceiverMonitorDimensions : EventHubMonitorAggregat... method EventHubReceiverMonitorDimensions (line 56) | public EventHubReceiverMonitorDimensions(EventHubMonitorAggregationDim... method EventHubReceiverMonitorDimensions (line 65) | public EventHubReceiverMonitorDimensions() class EventHubCacheMonitorDimensions (line 73) | public class EventHubCacheMonitorDimensions : EventHubReceiverMonitorDim... method EventHubCacheMonitorDimensions (line 86) | public EventHubCacheMonitorDimensions(EventHubMonitorAggregationDimens... method EventHubCacheMonitorDimensions (line 95) | public EventHubCacheMonitorDimensions() class EventHubBlockPoolMonitorDimensions (line 103) | public class EventHubBlockPoolMonitorDimensions : EventHubMonitorAggrega... method EventHubBlockPoolMonitorDimensions (line 115) | public EventHubBlockPoolMonitorDimensions(EventHubMonitorAggregationDi... method EventHubBlockPoolMonitorDimensions (line 124) | public EventHubBlockPoolMonitorDimensions() FILE: src/Azure/Orleans.Transactions.AzureStorage/Hosting/AzureTableTransactionServicecollectionExtensions.cs class AzureTableTransactionServicecollectionExtensions (line 16) | public static class AzureTableTransactionServicecollectionExtensions method AddAzureTableTransactionalStateStorage (line 18) | internal static IServiceCollection AddAzureTableTransactionalStateStor... FILE: src/Azure/Orleans.Transactions.AzureStorage/Hosting/AzureTableTransactionsSiloBuilderExtensions.cs class AzureTableTransactionSiloBuilderExtensions (line 8) | public static class AzureTableTransactionSiloBuilderExtensions method AddAzureTableTransactionalStateStorageAsDefault (line 13) | public static ISiloBuilder AddAzureTableTransactionalStateStorageAsDef... method AddAzureTableTransactionalStateStorage (line 21) | public static ISiloBuilder AddAzureTableTransactionalStateStorage(this... method AddAzureTableTransactionalStateStorageAsDefault (line 29) | public static ISiloBuilder AddAzureTableTransactionalStateStorageAsDef... method AddAzureTableTransactionalStateStorage (line 37) | public static ISiloBuilder AddAzureTableTransactionalStateStorage(this... FILE: src/Azure/Orleans.Transactions.AzureStorage/TransactionalState/AzureTableTransactionalStateOptions.cs class AzureTableTransactionalStateOptions (line 5) | public class AzureTableTransactionalStateOptions : AzureStorageOperation... class AzureTableTransactionalStateOptionsValidator (line 22) | public class AzureTableTransactionalStateOptionsValidator : AzureStorage... method AzureTableTransactionalStateOptionsValidator (line 29) | public AzureTableTransactionalStateOptionsValidator(AzureTableTransact... FILE: src/Azure/Orleans.Transactions.AzureStorage/TransactionalState/AzureTableTransactionalStateStorage.cs class AzureTableTransactionalStateStorage (line 13) | public partial class AzureTableTransactionalStateStorage : ITran... method AzureTableTransactionalStateStorage (line 24) | public AzureTableTransactionalStateStorage(TableClient table, string p... method Load (line 37) | public async Task> Load() method Store (line 116) | public async Task Store(string expectedETag, TransactionalStat... method FindState (line 215) | private bool FindState(long sequenceId, out int pos) method ReadKey (line 234) | private async Task ReadKey() method ReadStates (line 249) | private async Task>> ReadStates() class BatchOperation (line 262) | private class BatchOperation method BatchOperation (line 271) | public BatchOperation(ILogger logger, KeyEntity key, TableClient table) method Add (line 282) | public async ValueTask Add(TableTransactionAction operation) method Flush (line 315) | public async Task Flush() method LogDebugLoadedV0Fresh (line 358) | [LoggerMessage( method LogCriticalPartitionError (line 364) | [LoggerMessage( type StatesLogRecord (line 370) | private readonly struct StatesLogRecord(List string.Join(",", states.Select(... method LogDebugLoadedPartitionKeyRows (line 375) | [LoggerMessage( method LogErrorTransactionalStateLoadFailed (line 381) | [LoggerMessage( method LogTraceDeleteTransaction (line 387) | [LoggerMessage( method LogTraceUpdateTransaction (line 393) | [LoggerMessage( method LogTraceInsertTransaction (line 399) | [LoggerMessage( method LogTraceInsertWithCount (line 405) | [LoggerMessage( method LogTraceUpdateWithCount (line 411) | [LoggerMessage( method LogDebugStoredETag (line 417) | [LoggerMessage( method LogTraceBatchOpOk (line 423) | [LoggerMessage( method LogTraceBatchOpFailed (line 429) | [LoggerMessage( method LogErrorTransactionalStateStoreFailed (line 435) | [LoggerMessage( FILE: src/Azure/Orleans.Transactions.AzureStorage/TransactionalState/AzureTableTransactionalStateStorageFactory.cs class AzureTableTransactionalStateStorageFactory (line 15) | public class AzureTableTransactionalStateStorageFactory : ITransactional... method Create (line 24) | public static ITransactionalStateStorageFactory Create(IServiceProvide... method AzureTableTransactionalStateStorageFactory (line 30) | public AzureTableTransactionalStateStorageFactory(string name, AzureTa... method Create (line 39) | public ITransactionalStateStorage Create(string stateN... method Participate (line 45) | public void Participate(ISiloLifecycle lifecycle) method MakePartitionKey (line 50) | private string MakePartitionKey(IGrainContext context, string stateName) method CreateTable (line 57) | private async Task CreateTable() method Init (line 66) | private Task Init(CancellationToken cancellationToken) FILE: src/Azure/Orleans.Transactions.AzureStorage/TransactionalState/KeyEntity.cs class KeyEntity (line 7) | internal class KeyEntity : ITableEntity method KeyEntity (line 11) | public KeyEntity() FILE: src/Azure/Orleans.Transactions.AzureStorage/TransactionalState/StateEntity.cs type StateEntity (line 12) | internal readonly struct StateEntity method StateEntity (line 25) | public StateEntity(TableEntity entity) => Entity = entity; method MakeRowKey (line 32) | public static string MakeRowKey(long sequenceId) method Create (line 64) | public static StateEntity Create(JsonSerializerSettings JsonSettings, method GetState (line 80) | public T GetState(JsonSerializerSettings jsonSettings) method SetState (line 85) | public void SetState(T state, JsonSerializerSettings jsonSettings) method SetStateInternal (line 90) | private void SetStateInternal(string stringData) method GetStateInternal (line 124) | private string GetStateInternal() method GetPropertyOrDefault (line 143) | private object GetPropertyOrDefault(string key) method CheckMaxDataSize (line 149) | private static void CheckMaxDataSize(int dataSize, int maxDataSize) method GetPropertyNames (line 158) | private static IEnumerable GetPropertyNames() FILE: src/Azure/Shared/Cosmos/BaseEntity.cs class BaseEntity (line 17) | internal abstract class BaseEntity FILE: src/Azure/Shared/Cosmos/CosmosIdSanitizer.cs class CosmosIdSanitizer (line 15) | internal static class CosmosIdSanitizer method Sanitize (line 23) | public static string Sanitize(string input) method Unsanitize (line 58) | public static string Unsanitize(string input) FILE: src/Azure/Shared/Cosmos/CosmosOptions.cs class CosmosOptions (line 22) | public abstract class CosmosOptions method ConfigureCosmosClient (line 72) | public void ConfigureCosmosClient(string connectionString) method ConfigureCosmosClient (line 83) | public void ConfigureCosmosClient(string accountEndpoint, AzureKeyCred... method ConfigureCosmosClient (line 94) | public void ConfigureCosmosClient(string accountEndpoint, TokenCredent... method ConfigureCosmosClient (line 105) | public void ConfigureCosmosClient(string accountEndpoint, string authK... method ConfigureCosmosClient (line 114) | public void ConfigureCosmosClient(Func ExecuteOperation(Func... class DefaultCosmosOperationExecutor (line 141) | internal sealed class DefaultCosmosOperationExecutor : ICosmosOperationE... method ExecuteOperation (line 145) | public async Task ExecuteOperation(Func : IConfigurationValidator ... method CosmosOptionsValidator (line 29) | public CosmosOptionsValidator(TOptions options, string name) method ValidateConfiguration (line 36) | public void ValidateConfiguration() FILE: src/Azure/Shared/Storage/AzureStorageOperationOptions.cs class AzureStorageOperationOptionsValidator (line 142) | public class AzureStorageOperationOptionsValidator : IConfigur... method AzureStorageOperationOptionsValidator (line 144) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 153) | public virtual void ValidateConfiguration() FILE: src/Cassandra/Orleans.Clustering.Cassandra/CassandraClusteringTable.cs class CassandraClusteringTable (line 14) | internal sealed class CassandraClusteringTable : IMembershipTable method CassandraClusteringTable (line 25) | public CassandraClusteringTable( method InitializeMembershipTable (line 42) | async Task IMembershipTable.InitializeMembershipTable(bool tryInitTabl... method DeleteMembershipTableEntries (line 58) | async Task IMembershipTable.DeleteMembershipTableEntries(string cluste... method InsertRow (line 70) | async Task IMembershipTable.InsertRow(MembershipEntry entry, Tab... method UpdateRow (line 91) | async Task IMembershipTable.UpdateRow(MembershipEntry entry, str... method GetMembershipEntry (line 97) | private static MembershipEntry? GetMembershipEntry(Row row) method GetMembershipTableData (line 131) | private async Task GetMembershipTableData(RowSet ... method ReadAll (line 163) | async Task IMembershipTable.ReadAll() method ReadRow (line 168) | async Task IMembershipTable.ReadRow(SiloAddress key) method UpdateIAmAlive (line 173) | async Task IMembershipTable.UpdateIAmAlive(MembershipEntry entry) method CleanupDefunctSiloEntries (line 194) | public async Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) FILE: src/Cassandra/Orleans.Clustering.Cassandra/CassandraGatewayListProvider.cs class CassandraGatewayListProvider (line 14) | internal sealed class CassandraGatewayListProvider : IGatewayListProvider method CassandraGatewayListProvider (line 31) | public CassandraGatewayListProvider( method InitializeGatewayListProvider (line 50) | async Task IGatewayListProvider.InitializeGatewayListProvider() method GetGateways (line 63) | async Task> IGatewayListProvider.GetGateways() FILE: src/Cassandra/Orleans.Clustering.Cassandra/Hosting/CassandraClusteringOptions.cs class CassandraClusteringOptions (line 12) | public class CassandraClusteringOptions method GetCassandraTtlSeconds (line 38) | internal int? GetCassandraTtlSeconds(ClusterMembershipOptions clusterM... method ConfigureClient (line 51) | public void ConfigureClient(string connectionString, string keyspace =... method ConfigureClient (line 69) | public void ConfigureClient(Func> con... FILE: src/Cassandra/Orleans.Clustering.Cassandra/Hosting/CassandraMembershipHostingExtensions.cs class CassandraMembershipHostingExtensions (line 15) | public static class CassandraMembershipHostingExtensions method UseCassandraClustering (line 22) | public static IClientBuilder UseCassandraClustering(this IClientBuilde... method UseCassandraClustering (line 34) | public static IClientBuilder UseCassandraClustering(this IClientBuilde... method UseCassandraClustering (line 47) | public static IClientBuilder UseCassandraClustering(this IClientBuilde... method UseCassandraClustering (line 61) | public static IClientBuilder UseCassandraClustering(this IClientBuilde... method UseCassandraClustering (line 74) | public static ISiloBuilder UseCassandraClustering(this ISiloBuilder bu... method UseCassandraClustering (line 86) | public static ISiloBuilder UseCassandraClustering(this ISiloBuilder bu... method UseCassandraClustering (line 99) | public static ISiloBuilder UseCassandraClustering(this ISiloBuilder bu... method UseCassandraClustering (line 113) | public static ISiloBuilder UseCassandraClustering(this ISiloBuilder bu... FILE: src/Cassandra/Orleans.Clustering.Cassandra/OrleansQueries.cs class OrleansQueries (line 14) | internal sealed class OrleansQueries method CreateInstance (line 30) | public static Task CreateInstance(ISession session) method OrleansQueries (line 35) | private OrleansQueries(ISession session) method EnsureTableExistsAsync (line 43) | internal async Task EnsureTableExistsAsync(TimeSpan maxRetryDelay, int... method EnsureClusterVersionExistsAsync (line 65) | internal async Task EnsureClusterVersionExistsAsync(TimeSpan maxRetryD... method DoesClusterVersionAlreadyExistAsync (line 87) | private async Task DoesClusterVersionAlreadyExistAsync(string cl... method DoesTableAlreadyExistAsync (line 101) | private async Task DoesTableAlreadyExistAsync() method MakeTableAsync (line 119) | private async Task MakeTableAsync(int? ttlSeconds) method CheckIfClusterVersionExists (line 129) | public IStatement CheckIfClusterVersionExists(string clusterIdentifier... method CheckIfTableExists (line 134) | public IStatement CheckIfTableExists(string keyspace, ConsistencyLevel... method EnsureTableExists (line 144) | public IStatement EnsureTableExists(int? defaultTimeToLiveSeconds) => ... method InsertMembership (line 171) | public async ValueTask InsertMembership(string clusterIden... method InsertMembershipVersion (line 208) | public async ValueTask InsertMembershipVersion(string clus... method DeleteMembershipTableEntries (line 224) | public async ValueTask DeleteMembershipTableEntries(string... method UpdateIAmAliveTime (line 233) | public async ValueTask UpdateIAmAliveTime(string clusterId... method UpdateIAmAliveTimeWithTtL (line 266) | public async ValueTask UpdateIAmAliveTimeWithTtL( method DeleteMembershipEntry (line 319) | public async ValueTask DeleteMembershipEntry(string cluste... method UpdateMembership (line 339) | public async ValueTask UpdateMembership(string clusterIden... method MembershipReadVersion (line 370) | public async ValueTask MembershipReadVersion(string cluste... method MembershipReadAll (line 384) | public async ValueTask MembershipReadAll(string clusterIde... method MembershipReadRow (line 408) | public async ValueTask MembershipReadRow(string clusterIde... method GatewaysQuery (line 441) | public async ValueTask GatewaysQuery(string clusterIdentif... method PrepareStatementAsync (line 466) | private async ValueTask PrepareStatementAsync(strin... method GetSuspectTimesString (line 473) | private static string? GetSuspectTimesString(MembershipEntry entry) => FILE: src/Dashboard/Orleans.Dashboard.Abstractions/NoProfilingAttribute.cs class NoProfilingAttribute (line 27) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inheri... FILE: src/Dashboard/Orleans.Dashboard.App/src/components/alert.tsx type AlertProps (line 3) | interface AlertProps { class Alert (line 9) | class Alert extends React.Component { method constructor (line 10) | constructor(props: AlertProps) { method handleClick (line 15) | handleClick() { method render (line 21) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/brand-header.tsx function BrandHeader (line 4) | function BrandHeader() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/checkbox-filter.tsx type Settings (line 3) | interface Settings { type CheckboxFilterProps (line 8) | interface CheckboxFilterProps { type CheckboxFilterState (line 14) | interface CheckboxFilterState { class CheckboxFilter (line 18) | class CheckboxFilter extends React.Component) { method render (line 44) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/counter-widget.tsx type CounterWidgetProps (line 3) | interface CounterWidgetProps { class CounterWidget (line 11) | class CounterWidget extends React.Component { method constructor (line 12) | constructor(props: CounterWidgetProps) { method renderMore (line 17) | renderMore() { method render (line 26) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/display-grain-state.tsx type DisplayGrainStateProps (line 3) | interface DisplayGrainStateProps { class DisplayGrainState (line 7) | class DisplayGrainState extends React.Component { method constructor (line 8) | constructor(props: DisplayGrainStateProps) { method render (line 12) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/gauge-widget.tsx type GaugeWidgetProps (line 4) | interface GaugeWidgetProps { type GaugeWidgetState (line 11) | interface GaugeWidgetState { class GaugeWidget (line 15) | class GaugeWidget extends React.Component { method constructor (line 16) | constructor(props: GrainMethodTableProps) { method renderRow (line 21) | renderRow(value: GrainMethodValue) { method render (line 38) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/grain-table.tsx type GrainStat (line 4) | interface GrainStat { type AggregatedGrainStat (line 14) | interface AggregatedGrainStat { type GrainTableProps (line 23) | interface GrainTableProps { type GrainTableState (line 28) | interface GrainTableState { class GrainTable (line 33) | class GrainTable extends React.Component numb... method handleChangeSort (line 76) | handleChangeSort(e: React.MouseEvent) { method render (line 139) | render() { function sortByActivationCountAsc (line 253) | function sortByActivationCountAsc(a: AggregatedGrainStat, b: AggregatedG... function sortByActivationCountDesc (line 257) | function sortByActivationCountDesc(a: AggregatedGrainStat, b: Aggregated... function sortByGrainAsc (line 261) | function sortByGrainAsc(a: AggregatedGrainStat, b: AggregatedGrainStat):... function sortBygrainDesc (line 271) | function sortBygrainDesc(a: AggregatedGrainStat, b: AggregatedGrainStat)... function sortByExceptionRateAsc (line 275) | function sortByExceptionRateAsc(a: AggregatedGrainStat, b: AggregatedGra... function sortByExceptionRateDesc (line 279) | function sortByExceptionRateDesc(a: AggregatedGrainStat, b: AggregatedGr... function sortBytotalCallsAsc (line 283) | function sortBytotalCallsAsc(a: AggregatedGrainStat, b: AggregatedGrainS... function sortBytotalCallsDec (line 287) | function sortBytotalCallsDec(a: AggregatedGrainStat, b: AggregatedGrainS... function sortByTotalAwaitTimeAsc (line 291) | function sortByTotalAwaitTimeAsc(a: AggregatedGrainStat, b: AggregatedGr... function sortByTotalAwaitTimeDesc (line 301) | function sortByTotalAwaitTimeDesc(a: AggregatedGrainStat, b: AggregatedG... FILE: src/Dashboard/Orleans.Dashboard.App/src/components/loading.tsx class Loading (line 3) | class Loading extends React.Component { method render (line 4) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/menu.tsx type MenuSectionProps (line 3) | interface MenuSectionProps { type MenuItem (line 11) | interface MenuItem { type MenuProps (line 19) | interface MenuProps { class MenuSection (line 23) | class MenuSection extends React.Component { method render (line 24) | render() { class Menu (line 40) | class Menu extends React.Component { method render (line 41) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/multi-series-chart-widget.tsx type MultiSeriesChartWidgetProps (line 6) | interface MultiSeriesChartWidgetProps { type MultiSeriesChartWidgetState (line 10) | interface MultiSeriesChartWidgetState { class MultiSeriesChartWidget (line 16) | class MultiSeriesChartWidget extends React.Component { method render (line 10) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/panel.tsx type PanelProps (line 3) | interface PanelProps { class Panel (line 10) | class Panel extends React.Component { method render (line 11) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/preferences.tsx type Settings (line 6) | interface Settings { type PreferencesProps (line 11) | interface PreferencesProps { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/properties-widget.tsx type PropertiesWidgetProps (line 3) | interface PropertiesWidgetProps { class PropertiesWidget (line 7) | class PropertiesWidget extends React.Component { method constructor (line 8) | constructor(props: PropertiesWidgetProps) { method renderRow (line 13) | renderRow(key: string) { method render (line 24) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/reminder-table.tsx type ReminderData (line 3) | interface ReminderData { type ReminderTableProps (line 12) | interface ReminderTableProps { type ReminderTableState (line 16) | interface ReminderTableState { class ReminderTable (line 24) | class ReminderTable extends React.Component) { method renderReminder (line 45) | renderReminder(reminderData: ReminderData, index: number) { method filterData (line 68) | filterData(data: ReminderData[]): ReminderData[] { method render (line 93) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/theme-buttons.tsx type ThemeButtonsProps (line 3) | interface ThemeButtonsProps { type ThemeButtonsState (line 9) | interface ThemeButtonsState { class ThemeButtons (line 13) | class ThemeButtons extends React.Component) { method pickDark (line 31) | pickDark(event: React.MouseEvent) { method render (line 39) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/components/time-series-chart.tsx type TimeSeriesChartProps (line 4) | interface TimeSeriesChartProps { type TimeSeriesChartState (line 9) | interface TimeSeriesChartState { class TimeSeriesChart (line 14) | class TimeSeriesChart extends React.Component) { method handleGrainTypeChange (line 31) | handleGrainTypeChange(event: React.ChangeEvent) { method handleSubmit (line 35) | handleSubmit(event: React.MouseEvent) { method renderEmpty (line 47) | renderEmpty() { method renderState (line 51) | renderState() { method render (line 103) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/grains/grain.tsx function formatMemberName (line 13) | function formatMemberName(value: string): string { type GrainMethodValue (line 31) | interface GrainMethodValue { type GrainStats (line 38) | interface GrainStats { type SimpleGrainStat (line 44) | interface SimpleGrainStat { type DashboardCounters (line 54) | interface DashboardCounters { type GrainProps (line 58) | interface GrainProps { type GrainGraphProps (line 64) | interface GrainGraphProps { class Grain (line 103) | class Grain extends React.Component { method renderEmpty (line 104) | renderEmpty() { method renderGraphs (line 108) | renderGraphs() { method render (line 215) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/grains/grains.tsx type SimpleGrainStat (line 7) | interface SimpleGrainStat { type DashboardCounters (line 12) | interface DashboardCounters { type GrainsProps (line 17) | interface GrainsProps { class Grains (line 21) | class Grains extends React.Component { method render (line 22) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/grains/silo-table.tsx type SiloStat (line 3) | interface SiloStat { type GrainStat (line 12) | interface GrainStat { type SiloTableProps (line 22) | interface SiloTableProps { class SiloTable (line 27) | class SiloTable extends React.Component { method renderStat (line 28) | renderStat(stat: SiloStat) { method render (line 73) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/index.tsx type Settings (line 53) | interface Settings { type MenuItem (line 58) | interface MenuItem { type GrainStatItem (line 66) | interface GrainStatItem { function scroll (line 92) | function scroll() { function showError (line 99) | function showError(message: string) { function closeError (line 108) | function closeError() { function setIntervalDebounced (line 116) | function setIntervalDebounced(action: () => Promise, interval: numb... function loadDashboardCounters (line 123) | function loadDashboardCounters() { function getVersion (line 130) | function getVersion() { function renderLoading (line 165) | function renderLoading() { function renderPage (line 175) | function renderPage(jsx: JSX.Element, path: string) { function getMenu (line 535) | function getMenu(): MenuItem[] { function getFilter (line 582) | function getFilter(settings: Settings): string { function light (line 593) | function light() { function dark (line 604) | function dark() { FILE: src/Dashboard/Orleans.Dashboard.App/src/lib/http.ts type HttpCallback (line 3) | type HttpCallback = (error: string | null, result?: any) => void; function makeRequest (line 5) | function makeRequest(method: string, uri: string, body: string | null, c... type ErrorHandler (line 28) | type ErrorHandler = (error: string) => void; FILE: src/Dashboard/Orleans.Dashboard.App/src/lib/routie.ts type RouteKey (line 1) | interface RouteKey { type RouteMap (line 6) | interface RouteMap { type NavigateOptions (line 10) | interface NavigateOptions { class Route (line 19) | class Route { method constructor (line 27) | constructor(path: string, name: string | null) { method addHandler (line 36) | addHandler(fn: Function): void { method removeHandler (line 40) | removeHandler(fn: Function): void { method run (line 50) | run(params: any[]): void { method match (line 56) | match(path: string, params: any[]): boolean { method toURL (line 75) | toURL(params: { [key: string]: string }): string { type RoutieFunction (line 139) | interface RoutieFunction { FILE: src/Dashboard/Orleans.Dashboard.App/src/lib/storage.ts type StorageInterface (line 2) | interface StorageInterface { FILE: src/Dashboard/Orleans.Dashboard.App/src/lib/typeName.ts function trimIdentifier (line 1) | function trimIdentifier(id: string): string { function stripAssemblyDetails (line 10) | function stripAssemblyDetails(value: string): string { function findMatchingCloser (line 22) | function findMatchingCloser(value: string, start: number, opener: string... function splitTopLevelArguments (line 36) | function splitTopLevelArguments(value: string): string[] { function parseSuffix (line 55) | function parseSuffix(rem: string): string { function parseType (line 79) | function parseType(str: string): string { function getName (line 126) | function getName(value: string): string { FILE: src/Dashboard/Orleans.Dashboard.App/src/logstream/log-stream.tsx type LogStreamProps (line 3) | interface LogStreamProps { type LogStreamState (line 7) | interface LogStreamState { class LogStream (line 14) | class LogStream extends React.Component { method constructor (line 17) | constructor(props: LogStreamProps) { method scroll (line 32) | scroll() { method onProgress (line 38) | onProgress() { method componentDidMount (line 64) | componentDidMount() { method componentWillUnmount (line 70) | componentWillUnmount() { method toggle (line 74) | toggle() { method filterChanged (line 80) | filterChanged(event: React.ChangeEvent) { method getFilteredLog (line 92) | getFilteredLog(): string { method render (line 99) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/overview/overview.tsx type ClusterStatsValue (line 7) | interface ClusterStatsValue { type ClusterStats (line 14) | interface ClusterStats { type SimpleGrainStat (line 18) | interface SimpleGrainStat { type DashboardCounters (line 26) | interface DashboardCounters { type GrainMethodStat (line 31) | interface GrainMethodStat { type GrainMethodStats (line 38) | interface GrainMethodStats { type OverviewProps (line 44) | interface OverviewProps { type ClusterGraphProps (line 50) | interface ClusterGraphProps { class Overview (line 84) | class Overview extends React.Component { method render (line 85) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/reminders/reminders.tsx type Reminder (line 6) | interface Reminder { type RemindersData (line 10) | interface RemindersData { type RemindersProps (line 15) | interface RemindersProps { class Reminders (line 20) | class Reminders extends React.Component { method render (line 21) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/silos/host-table.tsx type SimpleGrainStat (line 5) | interface SimpleGrainStat { type Silo (line 10) | interface Silo { type DashboardCounters (line 18) | interface DashboardCounters { type HostTableProps (line 23) | interface HostTableProps { function sortFunction (line 27) | function sortFunction(a: Silo, b: Silo): number { class HostTable (line 35) | class HostTable extends React.Component { method constructor (line 36) | constructor(props: HostTableProps) { method renderHost (line 41) | renderHost(host: string, silo: Silo) { method render (line 84) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/silos/silo-counters.tsx type Counter (line 4) | interface Counter { type SiloCountersProps (line 10) | interface SiloCountersProps { class SiloCounters (line 14) | class SiloCounters extends React.Component { method renderItem (line 15) | renderItem(item: Counter) { method render (line 29) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/silos/silo-grid.tsx type Host (line 4) | interface Host { type DashboardCounters (line 11) | interface DashboardCounters { type SiloGridProps (line 15) | interface SiloGridProps { class SiloGrid (line 19) | class SiloGrid extends React.Component { method constructor (line 20) | constructor(props: SiloGridProps) { method renderSilo (line 26) | renderSilo(silo: Host) { method renderZone (line 37) | renderZone(updateZone: number, faultZone: number) { method render (line 44) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/silos/silo-state-label.tsx type SiloStatus (line 3) | type SiloStatus = 'Created' | 'Joining' | 'Active' | 'ShuttingDown' | 'S... type SiloStateLabelProps (line 14) | interface SiloStateLabelProps { class SiloStateLabel (line 18) | class SiloStateLabel extends React.Component { method render (line 19) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/silos/silo.tsx type SiloDataPoint (line 9) | interface SiloDataPoint { type SiloStatsData (line 27) | interface SiloStatsData { type SimpleGrainStat (line 31) | interface SimpleGrainStat { type Host (line 36) | interface Host { type DashboardCounters (line 46) | interface DashboardCounters { type SiloProperties (line 51) | interface SiloProperties { type SiloMetadata (line 56) | interface SiloMetadata { type SiloProps (line 60) | interface SiloProps { type SiloGraphProps (line 69) | interface SiloGraphProps { class Silo (line 104) | class Silo extends React.Component { method hasData (line 105) | hasData(value: (SiloDataPoint | null)[]): boolean { method querySeries (line 112) | querySeries(lambda: (x: SiloDataPoint) => number): number[] { method hasSeries (line 119) | hasSeries(lambda: (x: SiloDataPoint) => boolean): boolean { method render (line 132) | render() { FILE: src/Dashboard/Orleans.Dashboard.App/src/silos/silos.tsx type DashboardCounters (line 8) | interface DashboardCounters { type SilosProps (line 14) | interface SilosProps { class Silos (line 18) | class Silos extends React.Component { method render (line 19) | render() { FILE: src/Dashboard/Orleans.Dashboard/Core/DashboardClient.cs class DashboardClient (line 10) | internal sealed class DashboardClient(IGrainFactory grainFactory) : IDas... method DashboardCounters (line 16) | public async Task> DashboardCounters(stri... method ClusterStats (line 18) | public async Task>> Clus... method GetReminders (line 20) | public async Task> GetReminders(int pageNu... method HistoricalStats (line 22) | public async Task> HistoricalStats(... method SiloProperties (line 24) | public async Task>> SiloPropertie... method SiloMetadata (line 26) | public async Task>> SiloMetadata(... method SiloStats (line 28) | public async Task>> Silo... method GetCounters (line 30) | public async Task> GetCounters(string siloAdd... method GrainStats (line 32) | public async Task... method Silo (line 37) | private ISiloGrainProxy Silo(string siloAddress) => _grainFactory.GetG... method GetGrainState (line 39) | public async Task> GetGrainState(string id, string g... method GetGrainTypes (line 41) | public async Task> GetGrainTypes(string[] exclusio... FILE: src/Dashboard/Orleans.Dashboard/Core/Extensions.cs class Extensions (line 7) | internal static class Extensions method PrimaryKeyAsString (line 11) | public static string PrimaryKeyAsString(this GrainReference grainRef) method ToPeriodString (line 32) | public static string ToPeriodString(this DateTime value) => value.ToSt... method ToPeriodNumber (line 34) | public static long ToPeriodNumber(this DateTime value) => (long)value.... method ToISOString (line 36) | public static string ToISOString(this DateTime value) => value.ToUnive... FILE: src/Dashboard/Orleans.Dashboard/Core/IDashboardClient.cs type IDashboardClient (line 10) | internal interface IDashboardClient method DashboardCounters (line 12) | Task> DashboardCounters(string[] exclusio... method ClusterStats (line 14) | Task>> ClusterStats(); method GetReminders (line 16) | Task> GetReminders(int pageNumber, int pag... method HistoricalStats (line 18) | Task> HistoricalStats(string siloAd... method SiloProperties (line 20) | Task>> SiloProperties(string silo... method SiloMetadata (line 22) | Task>> SiloMetadata(string siloAd... method SiloStats (line 24) | Task>> SiloStats(string ... method GetCounters (line 26) | Task> GetCounters(string siloAddress); method GrainStats (line 28) | Task>... method TopGrainMethods (line 30) | Task>> TopGrainMe... method GetGrainState (line 32) | Task> GetGrainState(string id, string grainType); method GetGrainTypes (line 34) | Task> GetGrainTypes(string[] exclusions = null); FILE: src/Dashboard/Orleans.Dashboard/Core/IDashboardGrain.cs type IDashboardGrain (line 9) | [Alias("Orleans.Dashboard.Core.IDashboardGrain")] method InitializeAsync (line 12) | [OneWay] method SubmitTracing (line 16) | [OneWay] method GetCounters (line 20) | [Alias("GetCounters")] method GetGrainTracing (line 23) | [Alias("GetGrainTracing")] method GetClusterTracing (line 26) | [Alias("GetClusterTracing")] method GetSiloTracing (line 29) | [Alias("GetSiloTracing")] method TopGrainMethods (line 32) | [Alias("TopGrainMethods")] method GetGrainState (line 35) | [Alias("GetGrainState")] method GetGrainTypes (line 38) | [Alias("GetGrainTypes")] FILE: src/Dashboard/Orleans.Dashboard/Core/IDashboardRemindersGrain.cs type IDashboardRemindersGrain (line 7) | [Alias("Orleans.Dashboard.Core.IDashboardRemindersGrain")] method GetReminders (line 10) | [Alias("GetReminders")] FILE: src/Dashboard/Orleans.Dashboard/Core/ISiloGrainClient.cs type ISiloGrainClient (line 6) | internal interface ISiloGrainClient : IGrainServiceClient Task.Com... method ActivateSiloGrainAsync (line 34) | private async Task ActivateSiloGrainAsync() method ActivateDashboardGrainAsync (line 47) | private async Task ActivateDashboardGrainAsync() method StartOpenTelemetryConsumerAsync (line 60) | private Task StartOpenTelemetryConsumerAsync() method DisposeAsync (line 69) | public async ValueTask DisposeAsync() method Dispose (line 94) | public void Dispose() method GetOrleansVersion (line 106) | private static string GetOrleansVersion() method GetHostVersion (line 112) | private static string GetHostVersion() FILE: src/Dashboard/Orleans.Dashboard/DashboardOptions.cs class DashboardOptions (line 6) | public sealed class DashboardOptions FILE: src/Dashboard/Orleans.Dashboard/EmbeddedAssetProvider.cs class EmbeddedAssetProvider (line 15) | internal sealed class EmbeddedAssetProvider method EmbeddedAssetProvider (line 29) | public EmbeddedAssetProvider() method ServeAsset (line 42) | public IResult ServeAsset(string name, HttpContext context) method IsGZipAccepted (line 77) | private static bool IsGZipAccepted(HttpRequest httpRequest) method CreateResourceEntry (line 97) | private static ResourceEntry CreateResourceEntry(string fullResourceName) class ResourceEntry (line 128) | private sealed class ResourceEntry(byte[] decompressedContent, byte[] ... FILE: src/Dashboard/Orleans.Dashboard/GrainProfilerOptions.cs class GrainProfilerOptions (line 6) | public sealed class GrainProfilerOptions FILE: src/Dashboard/Orleans.Dashboard/Implementation/DashboardLogger.cs class DashboardLogger (line 9) | internal sealed class DashboardLogger : ILoggerProvider, ILogger method Add (line 14) | public void Add(Action action) => _actions ... method Remove (line 16) | public void Remove(Action action) => _actio... method Dispose (line 18) | public void Dispose() method CreateLogger (line 22) | public ILogger CreateLogger(string categoryName) => this; method Log (line 24) | public void Log(LogLevel logLevel, EventId eventId, TState sta... method IsEnabled (line 41) | public bool IsEnabled(LogLevel logLevel) => true; method BeginScope (line 43) | public IDisposable BeginScope(TState state) => _scope; class NoopDisposable (line 45) | private sealed class NoopDisposable : IDisposable method Dispose (line 47) | public void Dispose() FILE: src/Dashboard/Orleans.Dashboard/Implementation/DashboardTelemetryExporter.cs class DashboardTelemetryExporter (line 14) | internal sealed class DashboardTelemetryExporter( type Value (line 24) | public readonly struct Value method Value (line 29) | public Value(T value) method Value (line 34) | public Value(T last, T current) method Update (line 41) | public Value Update(T newValue) => new(Current, newValue); method Export (line 44) | public override ExportResult Export(in Batch batch) method CollectMetricsFromBatch (line 79) | private void CollectMetricsFromBatch(in Batch batch) method CollectMetric (line 107) | private void CollectMetric(Metric metric, Func ge... method ComputeDelta (line 118) | private static string ComputeDelta(Value metric) FILE: src/Dashboard/Orleans.Dashboard/Implementation/Details/MembershipTableSiloDetailsProvider.cs class MembershipTableSiloDetailsProvider (line 10) | internal sealed class MembershipTableSiloDetailsProvider : ISiloDetailsP... method MembershipTableSiloDetailsProvider (line 14) | public MembershipTableSiloDetailsProvider(IGrainFactory grainFactory) method GetSiloDetails (line 19) | public async Task GetSiloDetails() FILE: src/Dashboard/Orleans.Dashboard/Implementation/Details/SiloStatusOracleSiloDetailsProvider.cs class SiloStatusOracleSiloDetailsProvider (line 9) | internal sealed class SiloStatusOracleSiloDetailsProvider(ISiloStatusOra... method GetSiloDetails (line 11) | public Task GetSiloDetails() FILE: src/Dashboard/Orleans.Dashboard/Implementation/GrainProfilerFilter.cs class GrainProfilerFilter (line 11) | internal sealed class GrainProfilerFilter( method Invoke (line 25) | public async Task Invoke(IIncomingGrainCallContext context) method Track (line 54) | private void Track(IIncomingGrainCallContext context, Stopwatch stopwa... method FormatMethodName (line 72) | private static string FormatMethodName(IIncomingGrainCallContext context) method ShouldSkipProfiling (line 91) | private bool ShouldSkipProfiling(IIncomingGrainCallContext context) FILE: src/Dashboard/Orleans.Dashboard/Implementation/Grains/DashboardGrain.cs class DashboardGrain (line 22) | [Reentrant] method DashboardGrain (line 38) | public DashboardGrain( method OnActivateAsync (line 61) | public override Task OnActivateAsync(CancellationToken cancellationToken) method EnsureIsActive (line 84) | private Task EnsureIsActive() method BroadcaseEnabled (line 97) | private async Task BroadcaseEnabled() method EnsureCountersAreUpToDate (line 112) | private async Task EnsureCountersAreUpToDate() method RecalculateCounters (line 146) | internal void RecalculateCounters(int activationCount, SiloDetails[] h... method GetCounters (line 187) | public async Task> GetCounters(string[] e... method GetGrainTracing (line 208) | public async Task>> GetC... method GetSiloTracing (line 225) | public async Task>> GetS... method TopGrainMethods (line 233) | public async Task... method InitializeAsync (line 266) | public Task InitializeAsync() => method SubmitTracing (line 270) | public Task SubmitTracing(string siloAddress, Immutable> GetGrainState(string id, string g... method GetGrainTypes (line 357) | public Task> GetGrainTypes(string[] exclusions) FILE: src/Dashboard/Orleans.Dashboard/Implementation/Grains/DashboardRemindersGrain.cs class DashboardRemindersGrain (line 10) | internal sealed class DashboardRemindersGrain : Grain, IDashboardReminde... method DashboardRemindersGrain (line 19) | public DashboardRemindersGrain(IServiceProvider serviceProvider) method GetReminders (line 24) | public async Task> GetReminders(int pageNu... method ToReminderInfo (line 52) | private static ReminderInfo ToReminderInfo(ReminderEntry entry) FILE: src/Dashboard/Orleans.Dashboard/Implementation/Grains/SiloGrainProxy.cs class SiloGrainProxy (line 13) | [PreferLocalPlacement] method SiloGrainProxy (line 19) | public SiloGrainProxy(ISiloGrainClient siloGrainClient, ISiloMetadataC... method SetVersion (line 26) | public Task SetVersion(string orleans, string host) => _siloGrainServi... method ReportCounters (line 28) | public Task ReportCounters(Immutable stats) => _siloGra... method Enable (line 30) | public Task Enable(bool enabled) => _siloGrainService.Enable(enabled); method GetExtendedProperties (line 32) | public Task>> GetExtendedProperti... method GetMetadata (line 34) | public Task>> GetMetadata() => Ta... method GetRuntimeStatistics (line 36) | public Task> GetRuntimeStatistics()... method GetCounters (line 38) | public Task> GetCounters() => _siloGrainServi... FILE: src/Dashboard/Orleans.Dashboard/Implementation/Helpers/GrainStateHelper.cs class GrainStateHelper (line 9) | internal static class GrainStateHelper method GetGrainId (line 11) | public static (object, string) GetGrainId(string id, Type implementati... method GetPropertiesAndFieldsForGrainState (line 56) | public static IEnumerable GetPropertiesAndFieldsForGrainState(Ty... method GenerateGetGrainMethod (line 73) | public static MethodInfo GenerateGetGrainMethod(IGrainFactory grainFac... FILE: src/Dashboard/Orleans.Dashboard/Implementation/SiloGrainClient.cs class SiloGrainClient (line 8) | internal sealed class SiloGrainClient(IServiceProvider serviceProvider) ... method GrainService (line 10) | public ISiloGrainService GrainService(SiloAddress destination) FILE: src/Dashboard/Orleans.Dashboard/Implementation/SiloGrainService.cs class SiloGrainService (line 15) | internal sealed class SiloGrainService : GrainService, ISiloGrainService method SiloGrainService (line 28) | public SiloGrainService( method Start (line 43) | public override async Task Start() method CollectStatistics (line 67) | private async Task CollectStatistics(bool canDeactivate) method SetVersion (line 94) | public Task SetVersion(string orleans, string host) method GetExtendedProperties (line 102) | public Task>> GetExtendedProperti... method ReportCounters (line 113) | public Task ReportCounters(Immutable reportCounters) method GetRuntimeStatistics (line 126) | public Task> GetRuntimeStatistics() method GetCounters (line 131) | public Task> GetCounters() method Enable (line 136) | public Task Enable(bool enabled) FILE: src/Dashboard/Orleans.Dashboard/Implementation/TraceWriter.cs class TraceWriter (line 10) | internal class TraceWriter : IAsyncDisposable method TraceWriter (line 16) | public TraceWriter(DashboardLogger traceListener, HttpContext context) method Write (line 26) | private void Write(EventId eventId, LogLevel level, string message) method WriteAsync (line 33) | public async Task WriteAsync(string message) method WriteAsync (line 49) | public async Task WriteAsync(EventId eventId, LogLevel level, string m... method DisposeAsync (line 64) | public ValueTask DisposeAsync() method GetLogLevelString (line 71) | private static string GetLogLevelString(LogLevel logLevel) FILE: src/Dashboard/Orleans.Dashboard/Metrics/Details/ISiloDetailsProvider.cs type ISiloDetailsProvider (line 6) | internal interface ISiloDetailsProvider method GetSiloDetails (line 8) | Task GetSiloDetails(); FILE: src/Dashboard/Orleans.Dashboard/Metrics/GrainProfiler.cs class GrainProfiler (line 18) | internal sealed class GrainProfiler( method Participate (line 32) | public void Participate(ISiloLifecycle lifecycle) => lifecycle.Subscri... method OnStart (line 34) | private Task OnStart() method OnStop (line 40) | private Task OnStop() method Track (line 46) | public void Track(double elapsedMs, Type grainType, [CallerMemberName]... method ProcessStats (line 89) | private void ProcessStats(object state) method Enable (line 122) | public void Enable(bool enabled) => _isEnabled = enabled; FILE: src/Dashboard/Orleans.Dashboard/Metrics/GrainProfilerExtensions.cs class GrainProfilerExtensions (line 8) | internal static class GrainProfilerExtensions method Track (line 10) | public static void Track(this IGrainProfiler profiler, double elaps... method TrackAsync (line 13) | public static async Task TrackAsync(this IGrainProfiler profiler, F... FILE: src/Dashboard/Orleans.Dashboard/Metrics/History/GrainTraceEntryEqualityComparer.cs class GrainTraceEqualityComparer (line 7) | internal sealed class GrainTraceEqualityComparer : IEqualityComparer QueryAll(); method QuerySilo (line 14) | Dictionary QuerySilo(string siloAddress); method QueryGrain (line 16) | Dictionary> QueryGrain(str... method GroupByGrainAndSilo (line 18) | IEnumerable GroupByGrainAndSilo(); method AggregateByGrainMethod (line 20) | IEnumerable AggregateByGrainMethod(string[] excl... FILE: src/Dashboard/Orleans.Dashboard/Metrics/History/RingBuffer.cs class RingBuffer (line 3) | internal sealed class RingBuffer(int capacity) method Add (line 20) | public void Add(T item) FILE: src/Dashboard/Orleans.Dashboard/Metrics/History/TraceHistory.cs class TraceHistory (line 10) | internal sealed class TraceHistory(int capacity = 100) : ITraceHistory method QueryGrain (line 14) | public Dictionary> QueryGr... method QueryAll (line 28) | public Dictionary QueryAll() => GetTracings([... method QuerySilo (line 30) | public Dictionary QuerySilo(string siloAddress) method GetTracings (line 33) | private Dictionary GetTracings(IEnumerable now.AddSeconds(-... method GroupByGrainAndSilo (line 112) | public IEnumerable GroupByGrainAndSilo() method AggregateByGrainMethod (line 145) | public IEnumerable AggregateByGrainMethod(string... FILE: src/Dashboard/Orleans.Dashboard/Metrics/IGrainProfiler.cs type IGrainProfiler (line 9) | internal interface IGrainProfiler method Track (line 18) | void Track(double elapsedMs, Type grainType, [CallerMemberName] string... method Enable (line 24) | void Enable(bool enabled); FILE: src/Dashboard/Orleans.Dashboard/Metrics/TypeFormatting/ParseState.cs type ParseState (line 3) | internal enum ParseState FILE: src/Dashboard/Orleans.Dashboard/Metrics/TypeFormatting/Token.cs type Token (line 3) | internal readonly struct Token(TokenType type, string value) method ToString (line 7) | public override string ToString() => $"{Type} = {Value}"; FILE: src/Dashboard/Orleans.Dashboard/Metrics/TypeFormatting/TokenType.cs type TokenType (line 3) | internal enum TokenType FILE: src/Dashboard/Orleans.Dashboard/Metrics/TypeFormatting/TypeFormatter.cs class TypeFormatter (line 7) | internal sealed class TypeFormatter method Parse (line 11) | public static string Parse(string typeName) => Cache.GetOrAdd(typeName... method Format (line 13) | private static string Format(string typeName) method Format (line 20) | private static string Format(TypeSpec typeSpec) FILE: src/Dashboard/Orleans.Dashboard/Model/DashboardCounters.cs class DashboardCounters (line 7) | [GenerateSerializer] method DashboardCounters (line 29) | public DashboardCounters() method DashboardCounters (line 33) | public DashboardCounters(int initialLength) FILE: src/Dashboard/Orleans.Dashboard/Model/GrainTraceEntry.cs class GrainTraceEntry (line 5) | [GenerateSerializer] FILE: src/Dashboard/Orleans.Dashboard/Model/History/GrainMethodAggregate.cs type GrainMethodAggregate (line 3) | [GenerateSerializer] FILE: src/Dashboard/Orleans.Dashboard/Model/History/TraceAggregate.cs type TraceAggregate (line 3) | internal struct TraceAggregate FILE: src/Dashboard/Orleans.Dashboard/Model/ReminderInfo.cs class ReminderInfo (line 5) | [GenerateSerializer] FILE: src/Dashboard/Orleans.Dashboard/Model/ReminderResponse.cs class ReminderResponse (line 3) | [GenerateSerializer] FILE: src/Dashboard/Orleans.Dashboard/Model/SiloDetails.cs class SiloDetails (line 5) | [GenerateSerializer] FILE: src/Dashboard/Orleans.Dashboard/Model/SiloGrainTraceEntry.cs class SiloGrainTraceEntry (line 3) | [GenerateSerializer] FILE: src/Dashboard/Orleans.Dashboard/Model/SimpleGrainStatisticCounter.cs class SimpleGrainStatisticCounter (line 3) | [GenerateSerializer] FILE: src/Dashboard/Orleans.Dashboard/Model/StatCounter.cs type StatCounter (line 3) | [GenerateSerializer] method StatCounter (line 17) | public StatCounter(string name, string value, string delta) : this() FILE: src/Dashboard/Orleans.Dashboard/ServiceCollectionExtensions.cs class ServiceCollectionExtensions (line 30) | public static class ServiceCollectionExtensions method AddDashboard (line 38) | public static ISiloBuilder AddDashboard(this ISiloBuilder siloBuilder,... method AddOrleansDashboardForSiloCore (line 44) | internal static IServiceCollection AddOrleansDashboardForSiloCore( method MapOrleansDashboard (line 93) | public static RouteGroupBuilder MapOrleansDashboard( method GetRemindersPage (line 304) | private static async Task GetRemindersPage(int page, IDashboa... method StreamTraceAsync (line 322) | private static async Task StreamTraceAsync(HttpContext context, Dashbo... method CreateUnavailableResult (line 348) | private static IResult CreateUnavailableResult(bool lostConnectivity) method SanitizeExclusionFilters (line 357) | private static string[] SanitizeExclusionFilters(string[] filters) method AddDashboard (line 372) | public static IClientBuilder AddDashboard(this IClientBuilder clientBu... FILE: src/Dashboard/Orleans.Dashboard/TimeSpanConverter.cs class TimeSpanConverter (line 8) | internal sealed class TimeSpanConverter : JsonConverter method Read (line 10) | public override TimeSpan Read(ref Utf8JsonReader reader, Type typeToCo... method Write (line 16) | public override void Write(Utf8JsonWriter writer, TimeSpan value, Json... FILE: src/Orleans.Analyzers/AbstractPropertiesCannotBeSerializedAnalyzer.cs class AbstractPropertiesCannotBeSerializedAnalyzer (line 8) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 20) | public override void Initialize(AnalysisContext context) method AnalyzeAttribute (line 43) | private static void AnalyzeAttribute(OperationAnalysisContext context,... FILE: src/Orleans.Analyzers/AliasClashAttributeAnalyzer.cs class AliasClashAttributeAnalyzer (line 13) | [DiagnosticAnalyzer(LanguageNames.CSharp)] type TypeAliasInfo (line 16) | private readonly record struct TypeAliasInfo(string TypeName, Location... method Initialize (line 33) | public override void Initialize(AnalysisContext context) method CollectTypeAliases (line 80) | private static void CollectTypeAliases( method CheckMethodAliases (line 114) | private static void CheckMethodAliases( method ParsePrefixAndNumericSuffix (line 173) | private static (string Prefix, ulong Suffix) ParsePrefixAndNumericSuff... method GetNumericSuffixLength (line 187) | private static int GetNumericSuffixLength(string input) FILE: src/Orleans.Analyzers/AliasClashAttributeCodeFix.cs class AliasClashAttributeCodeFix (line 15) | [ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(GenerateAlias... method GetFixAllProvider (line 19) | public override FixAllProvider GetFixAllProvider() => WellKnownFixAllP... method RegisterCodeFixesAsync (line 21) | public override async Task RegisterCodeFixesAsync(CodeFixContext context) FILE: src/Orleans.Analyzers/AlwaysInterleaveDiagnosticAnalyzer.cs class AlwaysInterleaveDiagnosticAnalyzer (line 9) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 23) | public override void Initialize(AnalysisContext context) method AnalyzeMethod (line 37) | private static void AnalyzeMethod(SymbolAnalysisContext context, IName... FILE: src/Orleans.Analyzers/AtMostOneOrleansConstructorAnalyzer.cs class AtMostOneOrleansConstructorAnalyzer (line 7) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 19) | public override void Initialize(AnalysisContext context) method AnalyzeNamedType (line 33) | private void AnalyzeNamedType(SymbolAnalysisContext context, INamedTyp... FILE: src/Orleans.Analyzers/ConfigureAwaitAnalyzer.cs class ConfigureAwaitAnalyzer (line 14) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 45) | public override void Initialize(AnalysisContext context) method AnalyzeInvocation (line 52) | private static void AnalyzeInvocation(SyntaxNodeAnalysisContext context) method IsConfigureAwaitCall (line 125) | private static bool IsConfigureAwaitCall(InvocationExpressionSyntax in... method IsInsideGrainClass (line 138) | private static bool IsInsideGrainClass(SyntaxNode node, SemanticModel ... method IsTaskLikeType (line 165) | private static bool IsTaskLikeType(INamedTypeSymbol type) method IsConfigureAwaitOptionsType (line 183) | private static bool IsConfigureAwaitOptionsType(ITypeSymbol type) method HasContinueOnCapturedContextFlag (line 196) | private static bool HasContinueOnCapturedContextFlag(ExpressionSyntax ... method ExpressionIncludesContinueOnCapturedContext (line 214) | private static bool ExpressionIncludesContinueOnCapturedContext(Expres... FILE: src/Orleans.Analyzers/ConfigureAwaitCodeFix.cs class ConfigureAwaitCodeFix (line 20) | [ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(ConfigureAwai... method GetFixAllProvider (line 24) | public sealed override FixAllProvider GetFixAllProvider() => WellKnown... method RegisterCodeFixesAsync (line 26) | public sealed override async Task RegisterCodeFixesAsync(CodeFixContex... method FixConfigureAwaitBoolAsync (line 78) | private static async Task FixConfigureAwaitBoolAsync( method FixConfigureAwaitOptionsAsync (line 96) | private static async Task FixConfigureAwaitOptionsAsync( FILE: src/Orleans.Analyzers/Constants.cs class Constants (line 3) | internal static class Constants FILE: src/Orleans.Analyzers/GenerateAliasAttributesAnalyzer.cs class GenerateAliasAttributesAnalyzer (line 12) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 25) | public override void Initialize(AnalysisContext context) method AnalyzeNamedType (line 41) | private void AnalyzeNamedType( method GetArity (line 125) | private static int GetArity(TypeDeclarationSyntax typeDeclarationSyntax) method GetNamespaceAndNesting (line 138) | private static string GetNamespaceAndNesting(TypeDeclarationSyntax typ... method TryGetDeclarationSyntax (line 171) | private static bool TryGetDeclarationSyntax(ISymbol symbol, o... method ReportFor (line 178) | private static void ReportFor(SymbolAnalysisContext context, Location ... FILE: src/Orleans.Analyzers/GenerateAliasAttributesCodeFix.cs class GenerateAliasAttributesCodeFix (line 14) | [ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(GenerateAlias... method GetFixAllProvider (line 18) | public override FixAllProvider GetFixAllProvider() => WellKnownFixAllP... method RegisterCodeFixesAsync (line 20) | public override async Task RegisterCodeFixesAsync(CodeFixContext context) method FixFor (line 48) | private static async Task FixFor(CodeFixContext context, Diagnostic di... FILE: src/Orleans.Analyzers/GenerateGenerateSerializerAttributeAnalyzer.cs class GenerateGenerateSerializerAttributeAnalyzer (line 7) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 20) | public override void Initialize(AnalysisContext context) method AnalyzeNamedType (line 35) | private static void AnalyzeNamedType(SymbolAnalysisContext context, IN... FILE: src/Orleans.Analyzers/GenerateSerializationAttributesAnalyzer.cs class GenerateSerializationAttributesAnalyzer (line 10) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 23) | public override void Initialize(AnalysisContext context) method CheckSyntaxNode (line 30) | private void CheckSyntaxNode(SyntaxNodeAnalysisContext context) method GetGenerateFieldIdsValue (line 50) | private static GenerateFieldIds GetGenerateFieldIdsValue(AttributeSynt... type GenerateFieldIds (line 75) | private enum GenerateFieldIds FILE: src/Orleans.Analyzers/GenerateSerializationAttributesCodeFix.cs class GenerateOrleansSerializationAttributesCodeFix (line 16) | [ExportCodeFixProvider(LanguageNames.CSharp)] method GetFixAllProvider (line 21) | public override FixAllProvider GetFixAllProvider() => WellKnownFixAllP... method RegisterCodeFixesAsync (line 23) | public override async Task RegisterCodeFixesAsync(CodeFixContext context) method AddGenerateSerializerAttribute (line 48) | private static async Task AddGenerateSerializerAttribute(Typ... method AddSerializationAttributes (line 59) | private static async Task AddSerializationAttributes(TypeDec... method AddNonSerializedAttributes (line 77) | private static async Task AddNonSerializedAttributes(SyntaxN... FILE: src/Orleans.Analyzers/GrainInterfaceMethodReturnTypeDiagnosticAnalyzer.cs class GrainInterfaceMethodReturnTypeDiagnosticAnalyzer (line 10) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 24) | public override void Initialize(AnalysisContext context) method AnalyzeMethod (line 57) | private static void AnalyzeMethod(SymbolAnalysisContext context, IName... FILE: src/Orleans.Analyzers/GrainInterfacePropertyDiagnosticAnalyzer.cs class GrainInterfacePropertyDiagnosticAnalyzer (line 9) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 22) | public override void Initialize(AnalysisContext context) method AnalyzeSyntax (line 29) | private static void AnalyzeSyntax(SyntaxNodeAnalysisContext context) FILE: src/Orleans.Analyzers/IdClashAttributeAnalyzer.cs class IdClashAttributeAnalyzer (line 11) | [DiagnosticAnalyzer(LanguageNames.CSharp)] type AliasBag (line 14) | private readonly record struct AliasBag(string Name, Location Location); method Initialize (line 29) | public override void Initialize(AnalysisContext context) method AnalyzeNamedType (line 44) | private static void AnalyzeNamedType(SymbolAnalysisContext context, IN... FILE: src/Orleans.Analyzers/IdClashAttributeCodeFix.cs class IdClashAttributeCodeFix (line 14) | [ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(IdClashAttrib... method GetFixAllProvider (line 18) | public override FixAllProvider GetFixAllProvider() => WellKnownFixAllP... method RegisterCodeFixesAsync (line 20) | public override async Task RegisterCodeFixesAsync(CodeFixContext context) FILE: src/Orleans.Analyzers/IncorrectAttributeUseAnalyzer.cs class IncorrectAttributeUseAnalyzer (line 7) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 23) | public override void Initialize(AnalysisContext context) method AnalyzeNamedType (line 40) | private static void AnalyzeNamedType(SymbolAnalysisContext context, IN... method TryReportFor (line 52) | private static void TryReportFor(INamedTypeSymbol attributeSymbol, Sym... FILE: src/Orleans.Analyzers/IncorrectAttributeUseCodeFix.cs class IncorrectAttributeUseCodeFix (line 12) | [ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(IncorrectAttr... method GetFixAllProvider (line 16) | public sealed override FixAllProvider GetFixAllProvider() => WellKnown... method RegisterCodeFixesAsync (line 18) | public sealed override async Task RegisterCodeFixesAsync(CodeFixContex... FILE: src/Orleans.Analyzers/NoRefParamsDiagnosticAnalyzer.cs class NoRefParamsDiagnosticAnalyzer (line 10) | [DiagnosticAnalyzer(LanguageNames.CSharp)] method Initialize (line 22) | public override void Initialize(AnalysisContext context) method AnalyzeMethodSymbol (line 36) | private static void AnalyzeMethodSymbol(SymbolAnalysisContext context,... FILE: src/Orleans.Analyzers/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: src/Orleans.Analyzers/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: src/Orleans.Analyzers/SerializationAttributesHelper.cs class SerializationAttributesHelper (line 10) | internal static class SerializationAttributesHelper method ShouldGenerateSerializer (line 12) | public static bool ShouldGenerateSerializer(INamedTypeSymbol symbol, I... type TypeAnalysis (line 22) | public readonly record struct TypeAnalysis method AnalyzeTypeDeclaration (line 28) | public static TypeAnalysis AnalyzeTypeDeclaration(TypeDeclarationSynta... FILE: src/Orleans.Analyzers/SymbolHelpers.cs class SymbolHelpers (line 5) | internal static class SymbolHelpers method HasAttribute (line 7) | public static bool HasAttribute(this ISymbol symbol, INamedTypeSymbol ... method HasAttribute (line 22) | public static bool HasAttribute(this ISymbol symbol, INamedTypeSymbol ... method DerivesFrom (line 25) | public static bool DerivesFrom(this ITypeSymbol symbol, ITypeSymbol ca... FILE: src/Orleans.Analyzers/SyntaxHelpers.cs type AttributeArgumentBag (line 11) | internal readonly record struct AttributeArgumentBag(T Value, Locatio... class SyntaxHelpers (line 13) | internal static class SyntaxHelpers method TryGetTypeName (line 15) | private static bool TryGetTypeName(this AttributeSyntax attributeSynta... method IsAttribute (line 29) | public static bool IsAttribute(this AttributeSyntax attributeSyntax, s... method HasAttribute (line 34) | public static bool HasAttribute(this MemberDeclarationSyntax member, s... method TryGetAttribute (line 50) | public static bool TryGetAttribute(this MemberDeclarationSyntax member... method IsAbstract (line 68) | public static bool IsAbstract(this MemberDeclarationSyntax member) => ... method HasModifier (line 70) | private static bool HasModifier(this MemberDeclarationSyntax member, S... method IsInstanceMember (line 84) | public static bool IsInstanceMember(this MemberDeclarationSyntax member) method IsFieldOrAutoProperty (line 98) | public static bool IsFieldOrAutoProperty(this MemberDeclarationSyntax ... method ExtendsGrainInterface (line 134) | public static bool ExtendsGrainInterface(this INamedTypeSymbol symbol) method InheritsGrainClass (line 151) | public static bool InheritsGrainClass(this ClassDeclarationSyntax decl... method IsGrainClass (line 181) | public static bool IsGrainClass(this INamedTypeSymbol typeSymbol) method GetArgumentBag (line 202) | public static AttributeArgumentBag GetArgumentBag(this Attribute... method GetAttributeSyntaxes (line 220) | public static IEnumerable GetAttributeSyntaxes(this S... method GetArgumentValue (line 225) | public static string GetArgumentValue(this AttributeSyntax attribute, ... FILE: src/Orleans.BroadcastChannel/BroadcastChannelConsumerExtension.cs type IBroadcastChannelConsumerExtension (line 8) | internal interface IBroadcastChannelConsumerExtension : IGrainExtension method OnError (line 10) | Task OnError(InternalChannelId streamId, Exception exception); method OnPublished (line 11) | Task OnPublished(InternalChannelId streamId, object item); class BroadcastChannelConsumerExtension (line 14) | internal class BroadcastChannelConsumerExtension : IBroadcastChannelCons... type ICallback (line 20) | private interface ICallback method OnError (line 22) | Task OnError(Exception exception); method OnPublished (line 24) | Task OnPublished(object item); class Callback (line 27) | private class Callback : ICallback method NoOp (line 32) | private static Task NoOp(Exception _) => Task.CompletedTask; method Callback (line 34) | public Callback(Func onPublished, Func onE... method OnError (line 40) | public Task OnError(Exception exception) => _onError(exception); method OnPublished (line 42) | public Task OnPublished(object item) method BroadcastChannelConsumerExtension (line 50) | public BroadcastChannelConsumerExtension(IGrainContextAccessor grainCo... method OnError (line 59) | public async Task OnError(InternalChannelId streamId, Exception except... method OnPublished (line 68) | public async Task OnPublished(InternalChannelId streamId, object item) method Attach (line 77) | public void Attach(InternalChannelId streamId, Func onPubl... method GetStreamCallback (line 82) | private async ValueTask GetStreamCallback(InternalChannelId... FILE: src/Orleans.BroadcastChannel/BroadcastChannelOptions.cs class BroadcastChannelOptions (line 6) | public class BroadcastChannelOptions FILE: src/Orleans.BroadcastChannel/BroadcastChannelProvider.cs type IBroadcastChannelProvider (line 11) | public interface IBroadcastChannelProvider method GetChannelWriter (line 19) | IBroadcastChannelWriter GetChannelWriter(ChannelId streamId); class BroadcastChannelProvider (line 22) | internal class BroadcastChannelProvider : IBroadcastChannelProvider method BroadcastChannelProvider (line 30) | public BroadcastChannelProvider( method GetChannelWriter (line 45) | public IBroadcastChannelWriter GetChannelWriter(ChannelId streamId) method Create (line 61) | public static IBroadcastChannelProvider Create(IServiceProvider sp, st... FILE: src/Orleans.BroadcastChannel/BroadcastChannelSubscription.cs type IBroadcastChannelSubscription (line 6) | public interface IBroadcastChannelSubscription method Attach (line 12) | Task Attach(Func onPublished, Func onErro... type IOnBroadcastChannelSubscribed (line 15) | public interface IOnBroadcastChannelSubscribed method OnSubscribed (line 17) | public Task OnSubscribed(IBroadcastChannelSubscription streamSubscript... class BroadcastChannelSubscription (line 20) | internal class BroadcastChannelSubscription : IBroadcastChannelSubscription method BroadcastChannelSubscription (line 29) | public BroadcastChannelSubscription(BroadcastChannelConsumerExtension ... method Attach (line 35) | public Task Attach(Func onPublished, Func... FILE: src/Orleans.BroadcastChannel/BroadcastChannelWriter.cs type IBroadcastChannelWriter (line 15) | public interface IBroadcastChannelWriter method Publish (line 21) | Task Publish(T item); class BroadcastChannelWriter (line 25) | internal partial class BroadcastChannelWriter : IBroadcastChannelWrit... method BroadcastChannelWriter (line 35) | public BroadcastChannelWriter( method Publish (line 50) | public async Task Publish(T item) method PublishToSubscriber (line 87) | private async Task PublishToSubscriber(IBroadcastChannelConsumerExtens... method LogDebugNoConsumerFound (line 103) | [LoggerMessage( method LogDebugPublishingItem (line 109) | [LoggerMessage( method LogErrorExceptionWhenSendingItem (line 115) | [LoggerMessage( FILE: src/Orleans.BroadcastChannel/ChannelId.cs type ChannelId (line 14) | [Serializable, GenerateSerializer, Immutable] method ChannelId (line 44) | private ChannelId(byte[] fullKey, ushort keyIndex, int hash) method ChannelId (line 51) | internal ChannelId(byte[] fullKey, ushort keyIndex) method ChannelId (line 56) | private ChannelId(SerializationInfo info, StreamingContext context) method Create (line 68) | public static ChannelId Create(ReadOnlySpan ns, ReadOnlySpan fullKey.AsSpan().SequenceComp... method Equals (line 133) | public bool Equals(ChannelId other) => fullKey.AsSpan().SequenceEqual(... method Equals (line 136) | public override bool Equals(object? obj) => obj is ChannelId other ? t... method GetObjectData (line 155) | public void GetObjectData(SerializationInfo info, StreamingContext con... method ToString (line 163) | public override string ToString() => $"{this}"; method ToString (line 164) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 166) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method GetHashCode (line 191) | public override int GetHashCode() => this.hash; method GetUniformHashCode (line 193) | internal uint GetUniformHashCode() => (uint)hash; method GetKeyIndex (line 195) | internal uint GetKeyIndex() => keyIndex; method GetKeyAsString (line 201) | public string GetKeyAsString() => Encoding.UTF8.GetString(fullKey, key... method GetNamespace (line 207) | public string? GetNamespace() => keyIndex == 0 ? null : Encoding.UTF8.... method GetKeyIdSpan (line 209) | internal IdSpan GetKeyIdSpan() => keyIndex == 0 ? IdSpan.UnsafeCreate(... type InternalChannelId (line 212) | [Serializable, GenerateSerializer, Immutable] method InternalChannelId (line 221) | public InternalChannelId(string providerName, ChannelId streamId) method InternalChannelId (line 227) | private InternalChannelId(SerializationInfo info, StreamingContext con... method Equals (line 235) | public bool Equals(InternalChannelId other) => ChannelId.Equals(other)... method Equals (line 237) | public override bool Equals(object? obj) => obj is InternalChannelId o... method CompareTo (line 243) | public int CompareTo(InternalChannelId other) => ChannelId.CompareTo(o... method GetObjectData (line 245) | public void GetObjectData(SerializationInfo info, StreamingContext con... method GetHashCode (line 251) | public override int GetHashCode() => HashCode.Combine(ProviderName, Ch... method ToString (line 253) | public override string ToString() => $"{ProviderName}/{ChannelId}"; method ToString (line 254) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 256) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method GetNamespace (line 259) | internal string? GetNamespace() => ChannelId.GetNamespace(); FILE: src/Orleans.BroadcastChannel/Hosting/BroadcastChannelProviderBuilder.cs class BroadcastChannelProviderBuilder (line 12) | internal sealed class BroadcastChannelProviderBuilder : IProviderBuilder... method Configure (line 14) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... method Configure (line 19) | public void Configure(IClientBuilder builder, string name, IConfigurat... FILE: src/Orleans.BroadcastChannel/Hosting/ChannelHostingExtensions.cs class ChannelHostingExtensions (line 10) | public static class ChannelHostingExtensions method AddBroadcastChannel (line 19) | public static ISiloBuilder AddBroadcastChannel(this ISiloBuilder @this... method AddBroadcastChannel (line 32) | public static ISiloBuilder AddBroadcastChannel(this ISiloBuilder @this... method AddBroadcastChannel (line 45) | public static IClientBuilder AddBroadcastChannel(this IClientBuilder @... method AddBroadcastChannel (line 57) | public static IClientBuilder AddBroadcastChannel(this IClientBuilder @... method GetBroadcastChannelProvider (line 68) | public static IBroadcastChannelProvider GetBroadcastChannelProvider(th... method AddBroadcastChannel (line 71) | private static void AddBroadcastChannel(this IServiceCollection servic... FILE: src/Orleans.BroadcastChannel/IdMapping/DefaultChannelIdMapper.cs class DefaultChannelIdMapper (line 12) | public sealed class DefaultChannelIdMapper : IChannelIdMapper method GetGrainKeyId (line 20) | public IdSpan GetGrainKeyId(GrainBindings grainBindings, ChannelId str... method GetGuidKey (line 51) | private static IdSpan GetGuidKey(ChannelId streamId, bool includeNames... method GetIntegerKey (line 63) | private static IdSpan GetIntegerKey(ChannelId streamId, bool includeNa... FILE: src/Orleans.BroadcastChannel/IdMapping/IChannelIdMapper.cs type IChannelIdMapper (line 9) | public interface IChannelIdMapper method GetGrainKeyId (line 17) | IdSpan GetGrainKeyId(GrainBindings grainBindings, ChannelId streamId); FILE: src/Orleans.BroadcastChannel/SubscriberTable/ImplicitChannelSubscriberTable.cs class ImplicitChannelSubscriberTable (line 15) | internal class ImplicitChannelSubscriberTable method ImplicitChannelSubscriberTable (line 27) | public ImplicitChannelSubscriberTable( method GetCache (line 39) | private Cache GetCache() method BuildCache (line 60) | private Cache BuildCache(MajorMinorVersion version, ImmutableDictionar... method GetImplicitSubscribers (line 116) | internal Dictionary GetImpli... method GetOrAddImplicitSubscribers (line 141) | private HashSet GetOrAddImplicitSubscriber... method MakeSubscriptionGuid (line 155) | private Guid MakeSubscriptionGuid(GrainType grainType, InternalChannel... method FindImplicitSubscribers (line 169) | private static HashSet FindImplicitSubscri... method MakeConsumerReference (line 190) | private static IBroadcastChannelConsumerExtension MakeConsumerReference( class BroadcastChannelSubscriberPredicate (line 199) | private class BroadcastChannelSubscriberPredicate method BroadcastChannelSubscriberPredicate (line 201) | public BroadcastChannelSubscriberPredicate(BroadcastChannelSubscribe... class BroadcastChannelSubscriber (line 211) | private sealed class BroadcastChannelSubscriber : IEquatable Equals(obj as BroadcastCh... method Equals (line 227) | public bool Equals(BroadcastChannelSubscriber other) => other != nul... method GetHashCode (line 229) | public override int GetHashCode() => GrainType.GetHashCode(); method GetGrainId (line 231) | internal GrainId GetGrainId(InternalChannelId channelId) class Cache (line 238) | private class Cache method Cache (line 240) | public Cache(MajorMinorVersion version, List> GetBindings(IServicePro... class RegexImplicitChannelSubscriptionAttribute (line 107) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] method RegexImplicitChannelSubscriptionAttribute (line 114) | public RegexImplicitChannelSubscriptionAttribute([StringSyntax(StringS... FILE: src/Orleans.BroadcastChannel/SubscriberTable/Predicates/RegexChannelNamespacePredicate.cs class RegexChannelNamespacePredicate (line 10) | public class RegexChannelNamespacePredicate : IChannelNamespacePredicate method RegexChannelNamespacePredicate (line 24) | public RegexChannelNamespacePredicate(string regex) method IsMatch (line 32) | public bool IsMatch(string streamNameSpace) FILE: src/Orleans.Clustering.Consul/ConsulBasedMembershipTable.cs class ConsulBasedMembershipTable (line 18) | public partial class ConsulBasedMembershipTable : IMembershipTable method ConsulBasedMembershipTable (line 28) | public ConsulBasedMembershipTable( method InitializeMembershipTable (line 50) | public Task InitializeMembershipTable(bool tryInitTableVersion) method ReadRow (line 56) | public async Task ReadRow(SiloAddress siloAddress) method ReadAll (line 63) | public Task ReadAll() method ReadAll (line 68) | public static async Task ReadAll(IConsulClient co... method InsertRow (line 92) | public async Task InsertRow(MembershipEntry entry, TableVersion ... method UpdateRow (line 118) | public async Task UpdateRow(MembershipEntry entry, string etag, ... method UpdateIAmAlive (line 145) | public async Task UpdateIAmAlive(MembershipEntry entry) method DeleteMembershipTableEntries (line 151) | public async Task DeleteMembershipTableEntries(string clusterId) method GetTableVersion (line 156) | private static TableVersion GetTableVersion(string versionKey, QueryRe... method GetVersionRowUpdate (line 178) | private KVTxnOp GetVersionRowUpdate(TableVersion version) method GetConsulSiloRegistration (line 185) | private async Task<(ConsulSiloRegistration, TableVersion)> GetConsulSi... method AssembleMembershipTableData (line 201) | private static MembershipTableData AssembleMembershipTableData(TableVe... method CleanupDefunctSiloEntries (line 211) | public async Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method LogDebugCouldNotFindSiloRegistrations (line 243) | [LoggerMessage( method LogDebugConsulMembershipProviderFailedToInsertRow (line 249) | [LoggerMessage( method LogInformationConsulMembershipProviderFailedToInsertRegistration (line 255) | [LoggerMessage( method LogDebugConsulMembershipProviderFailedCASCheck (line 261) | [LoggerMessage( method LogInformationConsulMembershipProviderFailedToUpdateRegistration (line 267) | [LoggerMessage( method LogDebugCouldNotFindSiloRegistrationsForCleanup (line 273) | [LoggerMessage( FILE: src/Orleans.Clustering.Consul/ConsulClusteringProviderBuilder.cs class ConsulClusteringProviderBuilder (line 13) | internal sealed class ConsulClusteringProviderBuilder : IProviderBuilder... method Configure (line 15) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... method Configure (line 20) | public void Configure(IClientBuilder builder, string name, IConfigurat... FILE: src/Orleans.Clustering.Consul/ConsulGatewayListProvider.cs class ConsulGatewayListProvider (line 13) | public class ConsulGatewayListProvider : IGatewayListProvider method ConsulGatewayListProvider (line 22) | public ConsulGatewayListProvider( method InitializeGatewayListProvider (line 44) | public Task InitializeGatewayListProvider() method GetGateways (line 50) | public async Task> GetGateways() FILE: src/Orleans.Clustering.Consul/ConsulUtilsHostingExtensions.cs class ConsulUtilsHostingExtensions (line 10) | public static class ConsulUtilsHostingExtensions method UseConsulSiloClustering (line 24) | public static ISiloBuilder UseConsulSiloClustering( method UseConsulSiloClustering (line 52) | public static ISiloBuilder UseConsulSiloClustering( method UseConsulClientClustering (line 76) | public static IClientBuilder UseConsulClientClustering( method UseConsulClientClustering (line 103) | public static IClientBuilder UseConsulClientClustering( FILE: src/Orleans.Clustering.Consul/Options/ConsulClusteringOptions.cs class ConsulClusteringOptions (line 10) | public class ConsulClusteringOptions method ConfigureConsulClient (line 25) | public void ConfigureConsulClient(Func createClientCall... method ConfigureConsulClient (line 33) | public void ConfigureConsulClient(Uri address, string aclClientToken =... method ConsulClusteringOptions (line 44) | public ConsulClusteringOptions() method Validate (line 49) | internal void Validate(string name) class ConsulClusteringOptionsValidator (line 58) | public class ConsulClusteringOptionsValidator : IConfiguration... method ConsulClusteringOptionsValidator (line 60) | public ConsulClusteringOptionsValidator(TOptions options, string name ... method ValidateConfiguration (line 69) | public virtual void ValidateConfiguration() FILE: src/Orleans.Clustering.Consul/SerializableMembershipTypes.cs class ConsulSiloRegistration (line 13) | [JsonObject] method ConsulSiloRegistration (line 63) | [JsonConstructor] class SuspectingSilo (line 73) | [JsonObject] class ConsulSiloRegistrationAssembler (line 87) | internal class ConsulSiloRegistrationAssembler method FormatVersionKey (line 94) | internal static string FormatVersionKey(string deploymentId, string ro... method FormatDeploymentKVPrefix (line 96) | internal static string FormatDeploymentKVPrefix(string deploymentId, s... method FormatDeploymentSiloKey (line 109) | internal static string FormatDeploymentSiloKey(string deploymentId, st... method FormatSiloIAmAliveKey (line 114) | internal static string FormatSiloIAmAliveKey(string siloKey) method FormatSiloIAmAliveKey (line 119) | internal static string FormatSiloIAmAliveKey(string deploymentId, stri... method FromKVPairs (line 124) | internal static ConsulSiloRegistration FromKVPairs(string deploymentId... method FromMembershipEntry (line 141) | internal static ConsulSiloRegistration FromMembershipEntry(string depl... method ToKVPair (line 160) | internal static KVPair ToKVPair(ConsulSiloRegistration siloRegistratio... method ToIAmAliveKVPair (line 168) | internal static KVPair ToIAmAliveKVPair(string deploymentId, string ro... method ToMembershipEntry (line 175) | internal static Tuple ToMembershipEntry(Consu... FILE: src/Orleans.Clustering.ZooKeeper/MembershipSerializerSettings.cs class MembershipSerializerSettings (line 9) | internal class MembershipSerializerSettings : JsonSerializerSettings method MembershipSerializerSettings (line 13) | private MembershipSerializerSettings() class MembershipEntryConverter (line 20) | private class MembershipEntryConverter : JsonConverter method CanConvert (line 22) | public override bool CanConvert(Type objectType) method WriteJson (line 27) | public override void WriteJson(JsonWriter writer, object value, Json... method ReadJson (line 42) | public override object ReadJson(JsonReader reader, Type objectType, ... class SiloAddressConverter (line 59) | private class SiloAddressConverter : JsonConverter method CanConvert (line 61) | public override bool CanConvert(Type objectType) method WriteJson (line 66) | public override void WriteJson(JsonWriter writer, object value, Json... method ReadJson (line 75) | public override object ReadJson(JsonReader reader, Type objectType, ... FILE: src/Orleans.Clustering.ZooKeeper/Options/ZooKeeperClusteringSiloOptions.cs class ZooKeeperClusteringSiloOptions (line 6) | public class ZooKeeperClusteringSiloOptions FILE: src/Orleans.Clustering.ZooKeeper/Options/ZooKeeperGatewayListProviderOptions.cs class ZooKeeperGatewayListProviderOptions (line 3) | public class ZooKeeperGatewayListProviderOptions FILE: src/Orleans.Clustering.ZooKeeper/ZooKeeperBasedMembershipTable.cs class ZooKeeperBasedMembershipTable (line 37) | public partial class ZooKeeperBasedMembershipTable : IMembershipTable method ZooKeeperBasedMembershipTable (line 60) | public ZooKeeperBasedMembershipTable( method InitializeMembershipTable (line 78) | public async Task InitializeMembershipTable(bool tryInitPath) method ReadRow (line 108) | public Task ReadRow(SiloAddress siloAddress) method ReadAll (line 138) | public Task ReadAll() method ReadAll (line 143) | internal static Task ReadAll(string deploymentCon... method InsertRow (line 175) | public Task InsertRow(MembershipEntry entry, TableVersion tableV... method UpdateRow (line 207) | public Task UpdateRow(MembershipEntry entry, string etag, TableV... method UpdateIAmAlive (line 235) | public Task UpdateIAmAlive(MembershipEntry entry) method DeleteMembershipTableEntries (line 246) | public Task DeleteMembershipTableEntries(string clusterId) method TryTransaction (line 256) | private async Task TryTransaction(Func... method GetRow (line 280) | private static async Task> GetRow(ZooKe... method UsingZookeeper (line 298) | private static Task UsingZookeeper(Func> zkMe... method UsingZookeeper (line 303) | private Task UsingZookeeper(string connectString, Func(byte[] data) method CleanupDefunctSiloEntries (line 336) | public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method LogInformationCreatedNewDeploymentPath (line 341) | [LoggerMessage( method LogDebugDeploymentPathAlreadyExists (line 347) | [LoggerMessage( class ZooKeeperWatcher (line 358) | internal partial class ZooKeeperWatcher : Watcher method ZooKeeperWatcher (line 361) | public ZooKeeperWatcher(ILogger logger) method process (line 366) | public override Task process(WatchedEvent @event) method LogDebugWatchedEvent (line 372) | [LoggerMessage( FILE: src/Orleans.Clustering.ZooKeeper/ZooKeeperClusteringProviderBuilder.cs class ZooKeeperClusteringProviderBuilder (line 13) | internal sealed class ZooKeeperClusteringProviderBuilder : IProviderBuil... method Configure (line 15) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... method Configure (line 20) | public void Configure(IClientBuilder builder, string name, IConfigurat... FILE: src/Orleans.Clustering.ZooKeeper/ZooKeeperGatewayListProvider.cs class ZooKeeperGatewayListProvider (line 12) | public class ZooKeeperGatewayListProvider : IGatewayListProvider method ZooKeeperGatewayListProvider (line 27) | public ZooKeeperGatewayListProvider( method InitializeGatewayListProvider (line 42) | public Task InitializeGatewayListProvider() => Task.CompletedTask; method GetGateways (line 48) | public async Task> GetGateways() FILE: src/Orleans.Clustering.ZooKeeper/ZooKeeperHostingExtensions.cs class ZooKeeperHostingExtensions (line 11) | public static class ZooKeeperHostingExtensions method UseZooKeeperClustering (line 25) | public static ISiloBuilder UseZooKeeperClustering( method UseZooKeeperClustering (line 53) | public static ISiloBuilder UseZooKeeperClustering( method UseZooKeeperClustering (line 77) | public static IClientBuilder UseZooKeeperClustering( method UseZooKeeperClustering (line 105) | public static IClientBuilder UseZooKeeperClustering( FILE: src/Orleans.CodeGenerator/ActivatorGenerator.cs class ActivatorGenerator (line 9) | internal class ActivatorGenerator type ConstructorArgument (line 13) | private struct ConstructorArgument method ActivatorGenerator (line 20) | public ActivatorGenerator(CodeGenerator codeGenerator) method GenerateActivator (line 25) | public ClassDeclarationSyntax GenerateActivator(ISerializableTypeDescr... method GetSimpleClassName (line 71) | public static string GetSimpleClassName(ISerializableTypeDescription s... method GenerateConstructor (line 73) | private ConstructorDeclarationSyntax GenerateConstructor( method GenerateCreateMethod (line 105) | private MemberDeclarationSyntax GenerateCreateMethod(ISerializableType... FILE: src/Orleans.CodeGenerator/ApplicationPartAttributeGenerator.cs class ApplicationPartAttributeGenerator (line 9) | internal static class ApplicationPartAttributeGenerator method GenerateSyntax (line 11) | public static List GenerateSyntax(LibraryTypes we... FILE: src/Orleans.CodeGenerator/CodeGenerator.cs class CodeGeneratorOptions (line 19) | public class CodeGeneratorOptions class CodeGenerator (line 29) | public class CodeGenerator method CodeGenerator (line 37) | public CodeGenerator(Compilation compilation, CodeGeneratorOptions opt... method GenerateCode (line 62) | public CompilationUnitSyntax GenerateCode(CancellationToken cancellati... method GetGeneratedNamespaceName (line 424) | public static string GetGeneratedNamespaceName(ITypeSymbol type) => ty... method AddMember (line 430) | public void AddMember(string ns, MemberDeclarationSyntax member) method ComputeAssembliesToExamine (line 440) | private void ComputeAssembliesToExamine(IAssemblySymbol asm, HashSet GetDataMembers(FieldIdA... method GetId (line 502) | public uint? GetId(ISymbol memberSymbol) => GetId(LibraryTypes, member... method GetId (line 504) | internal static uint? GetId(LibraryTypes libraryTypes, ISymbol memberS... method CreateHashedMethodId (line 511) | internal static string CreateHashedMethodId(IMethodSymbol methodSymbol) method GetWellKnownTypeId (line 569) | private uint? GetWellKnownTypeId(ISymbol symbol) => GetId(symbol); method GetAlias (line 571) | public string GetAlias(ISymbol symbol) => (string)symbol.GetAttribute(... method GetCompoundTypeAlias (line 573) | private CompoundTypeAliasComponent[] GetCompoundTypeAlias(ISymbol symbol) method GetGeneratedCodeAttributes (line 608) | internal static AttributeListSyntax GetGeneratedCodeAttributes() => Ge... method GetMethodImplAttributeSyntax (line 621) | internal static AttributeSyntax GetMethodImplAttributeSyntax() => Meth... method VisitInterface (line 626) | internal void VisitInterface(INamedTypeSymbol interfaceType) method TryGetInvokableInterfaceDescription (line 652) | internal bool TryGetInvokableInterfaceDescription(INamedTypeSymbol int... method GetProxyBases (line 665) | internal List GetProxyBases(INamedTypeSymbol... method TryGetProxyBaseDescription (line 688) | internal bool TryGetProxyBaseDescription(INamedTypeSymbol interfaceTyp... method GetProxyBaseDescription (line 701) | private InvokableMethodProxyBase GetProxyBaseDescription(AttributeData... method GetProxyBase (line 734) | internal InvokableMethodProxyBase GetProxyBase(INamedTypeSymbol interf... method GetInvokableInterfaceDescription (line 744) | private ProxyInterfaceDescription GetInvokableInterfaceDescription(INa... method GetProxyMethodDescription (line 769) | internal ProxyMethodDescription GetProxyMethodDescription(INamedTypeSy... FILE: src/Orleans.CodeGenerator/CopierGenerator.cs class CopierGenerator (line 13) | internal class CopierGenerator method CopierGenerator (line 20) | public CopierGenerator(CodeGenerator codeGenerator) method GenerateCopier (line 27) | public ClassDeclarationSyntax GenerateCopier( method GetSimpleClassName (line 113) | public static string GetSimpleClassName(ISerializableTypeDescription s... method GetSimpleClassName (line 115) | public static string GetSimpleClassName(string name) => $"Copier_{name}"; method GetFieldDeclarations (line 117) | private MemberDeclarationSyntax[] GetFieldDeclarations(List GetFieldDescriptions( method GetBaseTypeField (line 271) | private BaseCopierFieldDescription GetBaseTypeField(ISerializableTypeD... method GetCopierFieldDescriptions (line 285) | public void GetCopierFieldDescriptions(IEnumerable... method GenerateMemberwiseDeepCopyMethod (line 354) | private MemberDeclarationSyntax GenerateMemberwiseDeepCopyMethod( method GetCreateValueExpression (line 492) | private ExpressionSyntax GetCreateValueExpression(ISerializableTypeDes... method GenerateBaseCopierDeepCopyMethod (line 501) | private MemberDeclarationSyntax GenerateBaseCopierDeepCopyMethod( method GenerateMemberwiseCopy (line 561) | private void GenerateMemberwiseCopy( method GenerateMemberCopy (line 595) | public ExpressionSyntax GenerateMemberCopy( method AddSerializationCallbacks (line 646) | private void AddSerializationCallbacks(ISerializableTypeDescription ty... class BaseCopierFieldDescription (line 676) | internal sealed class BaseCopierFieldDescription : GeneratedFieldDescr... method BaseCopierFieldDescription (line 678) | public BaseCopierFieldDescription(TypeSyntax fieldType, bool concret... class CopierFieldDescription (line 684) | internal sealed class CopierFieldDescription : GeneratedFieldDescripti... method CopierFieldDescription (line 686) | public CopierFieldDescription(TypeSyntax fieldType, string fieldName... FILE: src/Orleans.CodeGenerator/Diagnostics/CanNotGenerateImplicitFieldIdsDiagnostic.cs class CanNotGenerateImplicitFieldIdsDiagnostic (line 6) | public static class CanNotGenerateImplicitFieldIdsDiagnostic method CreateDiagnostic (line 15) | internal static Diagnostic CreateDiagnostic(ISymbol symbol, string rea... FILE: src/Orleans.CodeGenerator/Diagnostics/DiagnosticRuleId.cs class DiagnosticRuleId (line 4) | internal static class DiagnosticRuleId FILE: src/Orleans.CodeGenerator/Diagnostics/GenerateCodeForDeclaringAssemblyAttribute_NoDeclaringAssembly_Diagnostic.cs class GenerateCodeForDeclaringAssemblyAttribute_NoDeclaringAssembly_Diagnostic (line 5) | public static class GenerateCodeForDeclaringAssemblyAttribute_NoDeclarin... method CreateDiagnostic (line 14) | internal static Diagnostic CreateDiagnostic(AttributeData attribute, I... FILE: src/Orleans.CodeGenerator/Diagnostics/InaccessibleSerializableTypeDiagnostic.cs class InaccessibleSerializableTypeDiagnostic (line 6) | public static class InaccessibleSerializableTypeDiagnostic method CreateDiagnostic (line 16) | internal static Diagnostic CreateDiagnostic(ISymbol symbol) => Diagnos... FILE: src/Orleans.CodeGenerator/Diagnostics/InaccessibleSetterDiagnostic.cs class InaccessibleSetterDiagnostic (line 5) | public static class InaccessibleSetterDiagnostic method CreateDiagnostic (line 15) | public static Diagnostic CreateDiagnostic(Location location, string id... FILE: src/Orleans.CodeGenerator/Diagnostics/IncorrectProxyBaseClassSpecificationDiagnostic.cs class IncorrectProxyBaseClassSpecificationDiagnostic (line 5) | public static class IncorrectProxyBaseClassSpecificationDiagnostic method CreateDiagnostic (line 15) | internal static Diagnostic CreateDiagnostic(INamedTypeSymbol baseClass... FILE: src/Orleans.CodeGenerator/Diagnostics/InvalidRpcMethodReturnTypeDiagnostic.cs class InvalidRpcMethodReturnTypeDiagnostic (line 6) | public static class InvalidRpcMethodReturnTypeDiagnostic method CreateDiagnostic (line 16) | public static Diagnostic CreateDiagnostic(Location location, string re... method CreateDiagnostic (line 18) | internal static Diagnostic CreateDiagnostic(InvokableMethodDescription... FILE: src/Orleans.CodeGenerator/Diagnostics/MultipleCancellationTokenParametersDiagnostic.cs class MultipleCancellationTokenParametersDiagnostic (line 6) | public static class MultipleCancellationTokenParametersDiagnostic method CreateDiagnostic (line 15) | internal static Diagnostic CreateDiagnostic(IMethodSymbol symbol) => D... FILE: src/Orleans.CodeGenerator/Diagnostics/ReferenceAssemblyWithGenerateSerializerDiagnostic.cs class ReferenceAssemblyWithGenerateSerializerDiagnostic (line 6) | public static class ReferenceAssemblyWithGenerateSerializerDiagnostic method CreateDiagnostic (line 16) | internal static Diagnostic CreateDiagnostic(ISymbol symbol) => Diagnos... FILE: src/Orleans.CodeGenerator/Diagnostics/RpcInterfacePropertyDiagnostic.cs class RpcInterfacePropertyDiagnostic (line 6) | public static class RpcInterfacePropertyDiagnostic method CreateDiagnostic (line 15) | internal static Diagnostic CreateDiagnostic(INamedTypeSymbol interface... FILE: src/Orleans.CodeGenerator/Diagnostics/UnhandledCodeGenerationExceptionDiagnostic.cs class UnhandledCodeGenerationExceptionDiagnostic (line 6) | public static class UnhandledCodeGenerationExceptionDiagnostic method CreateDiagnostic (line 16) | internal static Diagnostic CreateDiagnostic(Exception exception) => Di... FILE: src/Orleans.CodeGenerator/FieldIdAssignmentHelper.cs class FieldIdAssignmentHelper (line 16) | internal class FieldIdAssignmentHelper method FieldIdAssignmentHelper (line 28) | public FieldIdAssignmentHelper(INamedTypeSymbol typeSymbol, ImmutableA... method TryGetSymbolKey (line 39) | public bool TryGetSymbolKey(ISymbol symbol, out (uint, bool) key) => _... method HasMemberWithIdAnnotation (line 41) | private bool HasMemberWithIdAnnotation() => Array.Exists(_memberSymbol... method GetMembers (line 43) | private IEnumerable GetMembers(INamedTypeSymbol symbol) method ExtractFieldIdAnnotations (line 66) | private bool ExtractFieldIdAnnotations() method GetCanonicalNameAndFieldId (line 126) | private static (string, uint) GetCanonicalNameAndFieldId(ITypeSymbol t... method GenerateImplicitFieldIds (line 144) | private bool GenerateImplicitFieldIds() FILE: src/Orleans.CodeGenerator/Hashing/BitOperations.cs class BitOperations (line 9) | internal static class BitOperations method RotateLeft (line 19) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.CodeGenerator/Hashing/HexConverter.cs class HexConverter (line 10) | internal static class HexConverter method ToString (line 12) | public static unsafe string ToString(ReadOnlySpan bytes) FILE: src/Orleans.CodeGenerator/Hashing/NonCryptographicHashAlgorithm.cs class NonCryptographicHashAlgorithm (line 18) | internal abstract class NonCryptographicHashAlgorithm method NonCryptographicHashAlgorithm (line 36) | protected NonCryptographicHashAlgorithm(int hashLengthInBytes) method Append (line 50) | public abstract void Append(ReadOnlySpan source); method Reset (line 56) | public abstract void Reset(); method GetCurrentHashCore (line 76) | protected abstract void GetCurrentHashCore(Span destination); method Append (line 86) | public void Append(byte[] source) method Append (line 105) | public void Append(Stream stream) method AppendAsync (line 145) | public Task AppendAsync(Stream stream, CancellationToken cancellationT... method AppendAsyncCore (line 155) | private async Task AppendAsyncCore(Stream stream, CancellationToken ca... method GetCurrentHash (line 184) | public byte[] GetCurrentHash() method TryGetCurrentHash (line 203) | public bool TryGetCurrentHash(Span destination, out int bytesWri... method GetCurrentHash (line 228) | public int GetCurrentHash(Span destination) method GetHashAndReset (line 245) | public byte[] GetHashAndReset() method TryGetHashAndReset (line 265) | public bool TryGetHashAndReset(Span destination, out int bytesWr... method GetHashAndReset (line 290) | public int GetHashAndReset(Span destination) method GetHashAndResetCore (line 324) | protected virtual void GetHashAndResetCore(Span destination) method GetHashCode (line 339) | [EditorBrowsable(EditorBrowsableState.Never)] FILE: src/Orleans.CodeGenerator/Hashing/XxHash32.State.cs class XxHash32 (line 15) | internal sealed partial class XxHash32 type State (line 17) | private struct State method State (line 32) | internal State(uint seed) method ProcessStripe (line 43) | internal void ProcessStripe(ReadOnlySpan source) method Converge (line 56) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ApplyRound (line 66) | private static uint ApplyRound(uint acc, ReadOnlySpan lane) method Complete (line 75) | internal readonly uint Complete(int length, ReadOnlySpan remai... FILE: src/Orleans.CodeGenerator/Hashing/XxHash32.cs class XxHash32 (line 16) | internal sealed partial class XxHash32 : NonCryptographicHashAlgorithm method XxHash32 (line 33) | public XxHash32() method XxHash32 (line 45) | public XxHash32(int seed) method Reset (line 55) | public override void Reset() method Append (line 66) | public override void Append(ReadOnlySpan source) method GetCurrentHashCore (line 113) | protected override void GetCurrentHashCore(Span destination) method Hash (line 135) | public static byte[] Hash(byte[] source) method Hash (line 154) | public static byte[] Hash(byte[] source, int seed) method Hash (line 170) | public static byte[] Hash(ReadOnlySpan source, int seed = 0) method TryHash (line 190) | public static bool TryHash(ReadOnlySpan source, Span desti... method Hash (line 211) | public static int Hash(ReadOnlySpan source, Span destinati... method StaticHash (line 219) | private static int StaticHash(ReadOnlySpan source, Span de... FILE: src/Orleans.CodeGenerator/InvokableGenerator.cs class InvokableGenerator (line 17) | internal class InvokableGenerator method InvokableGenerator (line 21) | public InvokableGenerator(CodeGenerator codeGenerator) method Generate (line 28) | public GeneratedInvokableDescription Generate(InvokableMethodDescripti... method GetClassDeclarationSyntax (line 112) | private ClassDeclarationSyntax GetClassDeclarationSyntax( method GenerateResponseTimeoutPropertyMembers (line 170) | private MemberDeclarationSyntax[] GenerateResponseTimeoutPropertyMembe... method AddOptionalMembers (line 192) | private ClassDeclarationSyntax AddOptionalMembers(ClassDeclarationSynt... method GetCompoundTypeAliasAttribute (line 195) | internal AttributeSyntax GetCompoundTypeAliasAttribute(CompoundTypeAli... method GetCompoundTypeAliasAttributeArguments (line 214) | internal static List GetCompoundTypeAlia... method GetCompoundTypeAliasComponents (line 227) | public static CompoundTypeAliasComponent[] GetCompoundTypeAliasCompone... method GetBaseClassType (line 255) | private INamedTypeSymbol GetBaseClassType(InvokableMethodDescription m... method GenerateSetTargetMethod (line 280) | private MemberDeclarationSyntax GenerateSetTargetMethod( method GenerateGetTargetMethod (line 330) | private static MethodDeclarationSyntax GenerateGetTargetMethod(TargetF... method GenerateGetCancellationTokenMethod (line 339) | private MemberDeclarationSyntax GenerateGetCancellationTokenMethod(Inv... method GenerateIsCancellableProperty (line 357) | private MemberDeclarationSyntax GenerateIsCancellableProperty(Invokabl... method GenerateTryCancelMethod (line 373) | private MemberDeclarationSyntax GenerateTryCancelMethod(InvokableMetho... method GenerateGetArgumentMethod (line 410) | private MemberDeclarationSyntax GenerateGetArgumentMethod( method GenerateSetArgumentMethod (line 471) | private MemberDeclarationSyntax GenerateSetArgumentMethod( method GenerateInvokeInnerMethod (line 549) | private MemberDeclarationSyntax GenerateInvokeInnerMethod( method GenerateDisposeMethod (line 585) | private MemberDeclarationSyntax GenerateDisposeMethod( method GenerateGetArgumentCount (line 628) | private MemberDeclarationSyntax GenerateGetArgumentCount(InvokableMeth... method GenerateGetActivityName (line 635) | private MemberDeclarationSyntax GenerateGetActivityName(InvokableMetho... method GenerateGetMethodName (line 655) | private MemberDeclarationSyntax GenerateGetMethodName( method GenerateGetInterfaceName (line 666) | private MemberDeclarationSyntax GenerateGetInterfaceName( method GenerateGetInterfaceType (line 677) | private MemberDeclarationSyntax GenerateGetInterfaceType( method GenerateGetMethod (line 686) | private MemberDeclarationSyntax GenerateGetMethod() method GetSimpleClassName (line 692) | public static string GetSimpleClassName(InvokableMethodDescription met... method GetFieldDeclarations (line 700) | private MemberDeclarationSyntax[] GetFieldDeclarations( method GetTypesArray (line 749) | private ExpressionSyntax GetTypesArray(InvokableMethodDescription meth... method GenerateConstructor (line 757) | private (ConstructorDeclarationSyntax Constructor, List Co... method GetFieldDescriptions (line 813) | private List GetFieldDescriptions(InvokableMe... class InvokerFieldDescription (line 836) | internal abstract class InvokerFieldDescription method InvokerFieldDescription (line 838) | protected InvokerFieldDescription(ITypeSymbol fieldType, string fiel... class TargetFieldDescription (line 850) | internal sealed class TargetFieldDescription : InvokerFieldDescription method TargetFieldDescription (line 852) | public TargetFieldDescription(ITypeSymbol fieldType) : base(fieldTyp... class CancellationTokenSourceFieldDescription (line 858) | internal sealed class CancellationTokenSourceFieldDescription(LibraryT... class CancellationTokenFieldDescription (line 864) | internal sealed class CancellationTokenFieldDescription(LibraryTypes l... class MethodParameterFieldDescription (line 870) | internal class MethodParameterFieldDescription : InvokerFieldDescripti... method MethodParameterFieldDescription (line 872) | public MethodParameterFieldDescription( method GetTypeSyntax (line 932) | public TypeSyntax GetTypeSyntax(ITypeSymbol typeSymbol) => typeSymbo... class MethodInfoFieldDescription (line 935) | internal sealed class MethodInfoFieldDescription : InvokerFieldDescrip... method MethodInfoFieldDescription (line 937) | public MethodInfoFieldDescription(ITypeSymbol fieldType, string fiel... FILE: src/Orleans.CodeGenerator/LibraryTypes.cs class LibraryTypes (line 13) | internal sealed class LibraryTypes method FromCompilation (line 17) | public static LibraryTypes FromCompilation(Compilation compilation, Co... method LibraryTypes (line 19) | private LibraryTypes(Compilation compilation, CodeGeneratorOptions opt... method IsShallowCopyable (line 317) | public bool IsShallowCopyable(ITypeSymbol type) method IsValueTypeFieldsShallowCopyable (line 396) | private bool IsValueTypeFieldsShallowCopyable(ITypeSymbol type) method AreShallowCopyable (line 419) | private bool AreShallowCopyable(ImmutableArray types) method AreShallowCopyable (line 428) | private bool AreShallowCopyable(ImmutableArray fields) class LibraryExtensions (line 438) | internal static class LibraryExtensions method FindByUnderlyingType (line 440) | public static WellKnownCodecDescription? FindByUnderlyingType(this Wel... method FindByUnderlyingType (line 449) | public static WellKnownCopierDescription? FindByUnderlyingType(this We... method HasScopedKeyword (line 458) | public static bool HasScopedKeyword(this LibraryTypes libraryTypes) =>... FILE: src/Orleans.CodeGenerator/MetadataGenerator.cs class MetadataGenerator (line 10) | internal class MetadataGenerator method MetadataGenerator (line 14) | public MetadataGenerator(CodeGenerator codeGenerator) method GenerateMetadata (line 21) | public ClassDeclarationSyntax GenerateMetadata() method AddCompoundTypeAliases (line 129) | private void AddCompoundTypeAliases(IdentifierNameSyntax configParam, ... method GetCodecTypeName (line 204) | public static TypeSyntax GetCodecTypeName(ISerializableTypeDescription... method GetCopierTypeName (line 216) | public static TypeSyntax GetCopierTypeName(ISerializableTypeDescriptio... method GetActivatorTypeName (line 228) | public static TypeSyntax GetActivatorTypeName(ISerializableTypeDescrip... FILE: src/Orleans.CodeGenerator/Model/FieldDescription.cs class FieldDescription (line 9) | internal class FieldDescription : IFieldDescription method FieldDescription (line 11) | public FieldDescription(uint fieldId, bool isPrimaryConstructorParamet... method GetTypeSyntax (line 43) | public TypeSyntax GetTypeSyntax(ITypeSymbol typeSymbol) => typeSymbol.... type IFieldDescription (line 46) | internal interface IFieldDescription : IMemberDescription FILE: src/Orleans.CodeGenerator/Model/GenerateFieldIds.cs type GenerateFieldIds (line 6) | public enum GenerateFieldIds FILE: src/Orleans.CodeGenerator/Model/GeneratedInvokableDescription.cs class GeneratedInvokableDescription (line 11) | [DebuggerDisplay("{MethodDescription}")] method GeneratedInvokableDescription (line 18) | public GeneratedInvokableDescription( method GetObjectCreationExpression (line 89) | public ExpressionSyntax GetObjectCreationExpression() => ObjectCreatio... method CreateTypeSyntax (line 91) | private TypeSyntax CreateTypeSyntax() method CreateOpenTypeSyntax (line 104) | private TypeSyntax CreateOpenTypeSyntax() FILE: src/Orleans.CodeGenerator/Model/GeneratedProxyDescription.cs class GeneratedProxyDescription (line 8) | internal class GeneratedProxyDescription method GeneratedProxyDescription (line 10) | public GeneratedProxyDescription(ProxyInterfaceDescription interfaceDe... method GetProxyTypeName (line 30) | private static TypeSyntax GetProxyTypeName(ProxyInterfaceDescription i... FILE: src/Orleans.CodeGenerator/Model/ICodecDescription.cs type ICopierDescription (line 5) | internal interface ICopierDescription FILE: src/Orleans.CodeGenerator/Model/IMemberDescription.cs type IMemberDescription (line 8) | internal interface IMemberDescription method GetTypeSyntax (line 18) | TypeSyntax GetTypeSyntax(ITypeSymbol typeSymbol); class MemberDescriptionTypeComparer (line 24) | internal sealed class MemberDescriptionTypeComparer : IEqualityComparer<... method Equals (line 28) | public bool Equals(IMemberDescription x, IMemberDescription y) method GetHashCode (line 43) | public int GetHashCode(IMemberDescription obj) FILE: src/Orleans.CodeGenerator/Model/ISerializableTypeDescription.cs type ISerializableTypeDescription (line 7) | internal interface ISerializableTypeDescription method GetObjectCreationExpression (line 31) | ExpressionSyntax GetObjectCreationExpression(); FILE: src/Orleans.CodeGenerator/Model/InvokableMethodDescription.cs class InvokableMethodDescription (line 16) | internal sealed class InvokableMethodDescription : IEquatable Key.Equals(oth... method Equals (line 216) | public override bool Equals(object obj) => obj is InvokableMethodDescr... method GetHashCode (line 217) | public override int GetHashCode() => Key.GetHashCode(); method ToString (line 218) | public override string ToString() => $"{ProxyBase}/{ContainingInterfac... FILE: src/Orleans.CodeGenerator/Model/InvokableMethodId.cs type InvokableMethodId (line 9) | internal readonly struct InvokableMethodId(InvokableMethodProxyBase prox... method Equals (line 26) | public bool Equals(InvokableMethodId other) => method Equals (line 31) | public override bool Equals(object obj) => obj is InvokableMethodId im... method GetHashCode (line 32) | public override int GetHashCode() method ToString (line 42) | public override string ToString() => $"{ProxyBase}/{InterfaceType.Name... FILE: src/Orleans.CodeGenerator/Model/InvokableMethodProxyBase.cs class InvokableMethodProxyBase (line 11) | internal sealed class InvokableMethodProxyBase : IEquatable other is not nul... method Equals (line 51) | public override bool Equals(object obj) => obj is InvokableMethodProxy... method GetHashCode (line 52) | public override int GetHashCode() => Key.GetHashCode(); method ToString (line 53) | public override string ToString() => Key.ToString(); FILE: src/Orleans.CodeGenerator/Model/InvokableMethodProxyBaseId.cs type InvokableMethodProxyBaseId (line 10) | internal readonly struct InvokableMethodProxyBaseId : IEquatable SymbolEquality... method Equals (line 55) | public override bool Equals(object obj) => obj is InvokableMethodProxy... method GetHashCode (line 56) | public override int GetHashCode() => IsExtension.GetHashCode() * 17 ^ ... method ToString (line 57) | public override string ToString() => GeneratedClassNameComponent; FILE: src/Orleans.CodeGenerator/Model/MetadataModel.cs class MetadataModel (line 8) | internal class MetadataModel class CompoundTypeAliasTree (line 31) | internal sealed class CompoundTypeAliasTree method CompoundTypeAliasTree (line 38) | private CompoundTypeAliasTree(CompoundTypeAliasComponent key, TypeSynt... method Create (line 57) | public static CompoundTypeAliasTree Create() => new(default, default); method GetChildOrDefault (line 61) | internal CompoundTypeAliasTree GetChildOrDefault(object key) method TryGetChild (line 67) | internal bool TryGetChild(object key, out CompoundTypeAliasTree result) method Add (line 78) | public void Add(CompoundTypeAliasComponent[] key, TypeSyntax value) method Add (line 83) | public void Add(ReadOnlySpan keys, TypeSyn... method Add (line 106) | public CompoundTypeAliasTree Add(ITypeSymbol key) => AddInternal(new C... method Add (line 112) | public CompoundTypeAliasTree Add(string key) => AddInternal(new Compou... method Add (line 119) | public CompoundTypeAliasTree Add(string key, TypeSyntax value) => AddI... method Add (line 126) | public CompoundTypeAliasTree Add(ITypeSymbol key, TypeSyntax value) =>... method AddInternal (line 128) | private CompoundTypeAliasTree AddInternal(CompoundTypeAliasComponent k... method AddInternal (line 129) | private CompoundTypeAliasTree AddInternal(CompoundTypeAliasComponent k... type CompoundTypeAliasComponent (line 150) | internal readonly struct CompoundTypeAliasComponent : IEquatable _value = new Either... method CompoundTypeAliasComponent (line 154) | public CompoundTypeAliasComponent(ITypeSymbol value) => _value = new E... method Equals (line 163) | public bool Equals(CompoundTypeAliasComponent other) => (Value, other.... method Equals (line 170) | public override bool Equals(object obj) => obj is CompoundTypeAliasCom... method GetHashCode (line 171) | public override int GetHashCode() => _value.RawValue switch type EqualityComparer (line 178) | internal readonly struct EqualityComparer : IEqualityComparer obj.GetHas... method ToString (line 185) | public override string ToString() => _value.RawValue?.ToString(); type Either (line 188) | internal readonly struct Either where T : class where U : class method Either (line 192) | public Either(T value) method Either (line 198) | public Either(U value) FILE: src/Orleans.CodeGenerator/Model/MethodSignatureComparer.cs class MethodSignatureComparer (line 7) | internal sealed class MethodSignatureComparer : IEqualityComparer typeSymbol.... FILE: src/Orleans.CodeGenerator/Model/ProxyInterfaceDescription.cs class ProxyInterfaceDescription (line 11) | [DebuggerDisplay("{InterfaceType} (proxy base {ProxyBaseType})")] method ProxyInterfaceDescription (line 17) | public ProxyInterfaceDescription( method GetMethods (line 75) | private List GetMethods() method ValidateBaseClass (line 120) | private static void ValidateBaseClass(LibraryTypes l, INamedTypeSymbol... method Equals (line 273) | public bool Equals(ProxyInterfaceDescription other) => SymbolEqualityC... method Equals (line 274) | public override bool Equals(object obj) => obj is ProxyInterfaceDescri... method GetHashCode (line 275) | public override int GetHashCode() => SymbolEqualityComparer.Default.Ge... method ToString (line 276) | public override string ToString() => $"Type: {InterfaceType}, ProxyBas... FILE: src/Orleans.CodeGenerator/Model/ProxyMethodDescription.cs class ProxyMethodDescription (line 17) | [DebuggerDisplay("{Method} (from {ProxyInterface})")] method Create (line 21) | public static ProxyMethodDescription Create( method ProxyMethodDescription (line 27) | private ProxyMethodDescription(ProxyInterfaceDescription proxyInterfac... method GetHashCode (line 100) | public override int GetHashCode() => ProxyInterface.GetHashCode() * 17... method Equals (line 101) | public bool Equals(ProxyMethodDescription other) => other is not null ... method Equals (line 102) | public override bool Equals(object other) => other is ProxyMethodDescr... class ConstructedGeneratedInvokableDescription (line 104) | internal sealed class ConstructedGeneratedInvokableDescription : ISeri... method ConstructedGeneratedInvokableDescription (line 111) | public ConstructedGeneratedInvokableDescription(GeneratedInvokableDe... method GetObjectCreationExpression (line 162) | public ExpressionSyntax GetObjectCreationExpression() => ObjectCreat... method CreateTypeSyntax (line 164) | private TypeSyntax CreateTypeSyntax() FILE: src/Orleans.CodeGenerator/Model/SerializableTypeDescription.cs class SerializableTypeDescription (line 11) | internal class SerializableTypeDescription : ISerializableTypeDescription method SerializableTypeDescription (line 18) | public SerializableTypeDescription(Compilation compilation, INamedType... method GetEffectiveBaseType (line 121) | private INamedTypeSymbol GetEffectiveBaseType() method GetObjectCreationExpression (line 211) | public ExpressionSyntax GetObjectCreationExpression() FILE: src/Orleans.CodeGenerator/Model/WellKnownCodecDescription.cs class WellKnownCodecDescription (line 5) | internal sealed class WellKnownCodecDescription method WellKnownCodecDescription (line 7) | public WellKnownCodecDescription(ITypeSymbol underlyingType, INamedTyp... class WellKnownCopierDescription (line 17) | internal sealed class WellKnownCopierDescription : ICopierDescription method WellKnownCopierDescription (line 19) | public WellKnownCopierDescription(ITypeSymbol underlyingType, INamedTy... FILE: src/Orleans.CodeGenerator/OrleansGeneratorDiagnosticAnalysisException.cs class OrleansGeneratorDiagnosticAnalysisException (line 6) | public class OrleansGeneratorDiagnosticAnalysisException : Exception method OrleansGeneratorDiagnosticAnalysisException (line 8) | public OrleansGeneratorDiagnosticAnalysisException(Diagnostic diagnost... FILE: src/Orleans.CodeGenerator/OrleansSourceGenerator.cs class OrleansSerializationSourceGenerator (line 14) | [Generator] method Execute (line 17) | public void Execute(GeneratorExecutionContext context) method Initialize (line 85) | public void Initialize(GeneratorInitializationContext context) FILE: src/Orleans.CodeGenerator/PropertyUtility.cs class PropertyUtility (line 10) | public static class PropertyUtility method GetMatchingProperty (line 14) | public static IPropertySymbol? GetMatchingProperty(IFieldSymbol field) method IsCompilerGenerated (line 21) | public static bool IsCompilerGenerated(this ISymbol? symbol) method IsCompilerGenerated (line 24) | public static bool IsCompilerGenerated(this IPropertySymbol? property) method GetMatchingPrimaryConstructorParameter (line 27) | public static IParameterSymbol? GetMatchingPrimaryConstructorParameter... method GetMatchingProperty (line 37) | public static IPropertySymbol? GetMatchingProperty(IFieldSymbol field,... method GetMatchingField (line 52) | public static IFieldSymbol? GetMatchingField(IPropertySymbol property) method GetMatchingField (line 59) | public static IFieldSymbol? GetMatchingField(IPropertySymbol property,... method GetCanonicalName (line 69) | public static string GetCanonicalName(string name) FILE: src/Orleans.CodeGenerator/ProxyGenerator.cs class ProxyGenerator (line 19) | internal class ProxyGenerator method ProxyGenerator (line 25) | public ProxyGenerator(CodeGenerator codeGenerator) method Generate (line 32) | public (ClassDeclarationSyntax, GeneratedProxyDescription) Generate(Pr... method GetSimpleClassName (line 61) | public static string GetSimpleClassName(ProxyInterfaceDescription inte... method GetFieldDescriptions (line 64) | private List GetFieldDescriptions( method GetFieldDeclarations (line 77) | private MemberDeclarationSyntax[] GetFieldDeclarations(List $"Codec_{name}"; method GetGeneratedNamespaceName (line 117) | public static string GetGeneratedNamespaceName(ITypeSymbol type) => ty... method GetFieldDeclarations (line 123) | private MemberDeclarationSyntax[] GetFieldDeclarations(List GetFieldDescriptions( method GetBaseTypeField (line 335) | private BaseCodecFieldDescription GetBaseTypeField(ISerializableTypeDe... method GenerateSerializeMethod (line 349) | private MemberDeclarationSyntax GenerateSerializeMethod( method AddSerializationMembers (line 422) | private void AddSerializationMembers(ISerializableTypeDescription type... method GenerateDeserializeMethod (line 494) | private MemberDeclarationSyntax GenerateDeserializeMethod( method AddSerializationCallbacks (line 687) | private void AddSerializationCallbacks(ISerializableTypeDescription ty... method GenerateCompoundTypeWriteFieldMethod (line 710) | private MemberDeclarationSyntax GenerateCompoundTypeWriteFieldMethod( method GenerateCompoundTypeReadValueMethod (line 846) | private MemberDeclarationSyntax GenerateCompoundTypeReadValueMethod( method GenerateEnumWriteMethod (line 961) | private MemberDeclarationSyntax GenerateEnumWriteMethod( method GenerateEnumReadMethod (line 1010) | private MemberDeclarationSyntax GenerateEnumReadMethod( class GeneratedFieldDescription (line 1043) | internal abstract class GeneratedFieldDescription method GeneratedFieldDescription (line 1045) | protected GeneratedFieldDescription(TypeSyntax fieldType, string fie... class BaseCodecFieldDescription (line 1056) | internal sealed class BaseCodecFieldDescription : GeneratedFieldDescri... method BaseCodecFieldDescription (line 1058) | public BaseCodecFieldDescription(TypeSyntax fieldType, bool concrete... class ActivatorFieldDescription (line 1064) | internal sealed class ActivatorFieldDescription : GeneratedFieldDescri... method ActivatorFieldDescription (line 1066) | public ActivatorFieldDescription(TypeSyntax fieldType, string fieldN... class CodecFieldDescription (line 1073) | internal sealed class CodecFieldDescription : GeneratedFieldDescription method CodecFieldDescription (line 1075) | public CodecFieldDescription(TypeSyntax fieldType, string fieldName,... class TypeFieldDescription (line 1084) | internal sealed class TypeFieldDescription : GeneratedFieldDescription method TypeFieldDescription (line 1086) | public TypeFieldDescription(TypeSyntax fieldType, string fieldName, ... class CodecFieldTypeFieldDescription (line 1097) | internal sealed class CodecFieldTypeFieldDescription : GeneratedFieldD... method CodecFieldTypeFieldDescription (line 1099) | public CodecFieldTypeFieldDescription(TypeSyntax fieldType, string f... class FieldAccessorDescription (line 1108) | internal sealed class FieldAccessorDescription : GeneratedFieldDescrip... method FieldAccessorDescription (line 1110) | public FieldAccessorDescription(TypeSyntax containingType, TypeSynta... class SerializationHookFieldDescription (line 1123) | internal sealed class SerializationHookFieldDescription : GeneratedFie... method SerializationHookFieldDescription (line 1125) | public SerializationHookFieldDescription(TypeSyntax fieldType, strin... type ISerializableMember (line 1132) | internal interface ISerializableMember method GetGetter (line 1150) | ExpressionSyntax GetGetter(ExpressionSyntax instance); method GetSetter (line 1158) | ExpressionSyntax GetSetter(ExpressionSyntax instance, ExpressionSynt... method GetGetterFieldDescription (line 1160) | FieldAccessorDescription GetGetterFieldDescription(); method GetSetterFieldDescription (line 1161) | FieldAccessorDescription GetSetterFieldDescription(); class SerializableMethodMember (line 1167) | internal class SerializableMethodMember : ISerializableMember method SerializableMethodMember (line 1171) | public SerializableMethodMember(MethodParameterFieldDescription member) method GetGetter (line 1197) | public ExpressionSyntax GetGetter(ExpressionSyntax instance) => inst... method GetSetter (line 1205) | public ExpressionSyntax GetSetter(ExpressionSyntax instance, Express... method GetGetterFieldDescription (line 1210) | public FieldAccessorDescription GetGetterFieldDescription() => null; method GetSetterFieldDescription (line 1211) | public FieldAccessorDescription GetSetterFieldDescription() => null; class SerializableMember (line 1217) | internal class SerializableMember : ISerializableMember method SerializableMember (line 1228) | public SerializableMember(CodeGenerator codeGenerator, IMemberDescri... method GetGetter (line 1319) | public ExpressionSyntax GetGetter(ExpressionSyntax instance) method GetSetter (line 1355) | public ExpressionSyntax GetSetter(ExpressionSyntax instance, Express... method GetGetterFieldDescription (line 1399) | public FieldAccessorDescription GetGetterFieldDescription() method GetSetterFieldDescription (line 1406) | public FieldAccessorDescription GetSetterFieldDescription() method GetFieldAccessor (line 1413) | public static FieldAccessorDescription GetFieldAccessor(INamedTypeSy... FILE: src/Orleans.CodeGenerator/SyntaxGeneration/FSharpUtils.cs class FSharpUtilities (line 11) | internal static class FSharpUtilities method IsUnionCase (line 17) | public static bool IsUnionCase(LibraryTypes libraryTypes, INamedTypeSy... method IsRecord (line 69) | public static bool IsRecord(LibraryTypes libraryTypes, INamedTypeSymbo... class FSharpUnionCaseTypeDescription (line 109) | public class FSharpUnionCaseTypeDescription : SerializableTypeDescription method FSharpUnionCaseTypeDescription (line 111) | public FSharpUnionCaseTypeDescription(Compilation compilation, IName... method GetUnionCaseDataMembers (line 115) | private static IEnumerable GetUnionCaseDataMembe... class FSharpUnionCasePropertyNameComparer (line 133) | private class FSharpUnionCasePropertyNameComparer : IComparer typeSym... method GetGetter (line 209) | public ExpressionSyntax GetGetter(ExpressionSyntax instance) => in... method GetSetter (line 217) | public ExpressionSyntax GetSetter(ExpressionSyntax instance, Expre... method GetGetterFieldDescription (line 230) | public FieldAccessorDescription GetGetterFieldDescription() => null; method GetSetterFieldDescription (line 232) | public FieldAccessorDescription GetSetterFieldDescription() class FSharpRecordTypeDescription (line 237) | public class FSharpRecordTypeDescription : SerializableTypeDescription method FSharpRecordTypeDescription (line 239) | public FSharpRecordTypeDescription(Compilation compilation, INamedTy... method GetRecordDataMembers (line 243) | private static IEnumerable GetRecordDataMembers(... class FSharpRecordPropertyDescription (line 263) | private class FSharpRecordPropertyDescription : IMemberDescription, ... method FSharpRecordPropertyDescription (line 268) | public FSharpRecordPropertyDescription(LibraryTypes libraryTypes, ... method GetTypeSyntax (line 318) | public TypeSyntax GetTypeSyntax(ITypeSymbol typeSymbol) => typeSym... method GetGetter (line 325) | public ExpressionSyntax GetGetter(ExpressionSyntax instance) => in... method GetSetter (line 333) | public ExpressionSyntax GetSetter(ExpressionSyntax instance, Expre... method GetGetterFieldDescription (line 346) | public FieldAccessorDescription GetGetterFieldDescription() => null; method GetSetterFieldDescription (line 348) | public FieldAccessorDescription GetSetterFieldDescription() FILE: src/Orleans.CodeGenerator/SyntaxGeneration/Identifier.cs class Identifier (line 5) | internal static class Identifier method IsCSharpKeyword (line 7) | internal static bool IsCSharpKeyword(string identifier) method SanitizeIdentifierName (line 121) | public static string SanitizeIdentifierName(string input) => SanitizeI... FILE: src/Orleans.CodeGenerator/SyntaxGeneration/StringExtensions.cs class StringExtensions (line 10) | internal static class StringExtensions method GetLiteralExpression (line 21) | public static LiteralExpressionSyntax GetLiteralExpression(this string... method ToIdentifier (line 31) | public static SyntaxToken ToIdentifier(this string identifier) method EscapeIdentifier (line 46) | public static string EscapeIdentifier(this string str) method ToIdentifierName (line 56) | public static IdentifierNameSyntax ToIdentifierName(this string identi... FILE: src/Orleans.CodeGenerator/SyntaxGeneration/SymbolExtensions.cs class SymbolExtensions (line 14) | internal static class SymbolExtensions type DisplayNameOptions (line 19) | public struct DisplayNameOptions method DisplayNameOptions (line 21) | public DisplayNameOptions() method HasAttribute (line 31) | public static bool HasAttribute(this INamedTypeSymbol symbol, INamedTy... method GetAttribute (line 33) | public static AttributeData? GetAttribute(this INamedTypeSymbol symbol... method ToTypeSyntax (line 63) | public static TypeSyntax ToTypeSyntax(this ITypeSymbol typeSymbol) method ToTypeSyntax (line 78) | public static TypeSyntax ToTypeSyntax(this ITypeSymbol typeSymbol, Dic... method ToDisplayName (line 100) | public static string ToDisplayName(this ITypeSymbol typeSymbol, Dictio... method ToDisplayName (line 105) | public static string ToDisplayName(this ITypeSymbol typeSymbol, Displa... method ToDisplayName (line 117) | public static string ToDisplayName(this ITypeSymbol typeSymbol) method ToDisplayName (line 132) | public static string ToDisplayName(this IAssemblySymbol assemblySymbol) method ToTypeSyntaxInner (line 147) | private static void ToTypeSyntaxInner(ITypeSymbol typeSymbol, StringBu... method ToTypeSyntax (line 235) | public static TypeSyntax ToTypeSyntax(this ITypeSymbol typeSymbol, par... method ToOpenTypeSyntax (line 265) | public static TypeSyntax ToOpenTypeSyntax(this ITypeSymbol typeSymbol) method ToNameSyntax (line 290) | public static NameSyntax ToNameSyntax(this ITypeSymbol typeSymbol) => ... method GetValidIdentifier (line 292) | public static string GetValidIdentifier(this ITypeSymbol type) => type... method HasBaseType (line 301) | public static bool HasBaseType(this ITypeSymbol typeSymbol, INamedType... method HasAnyAttribute (line 314) | public static bool HasAnyAttribute(this ISymbol symbol, INamedTypeSymb... method GetAnyAttribute (line 316) | public static AttributeData? GetAnyAttribute(this ISymbol symbol, INam... method HasAttribute (line 331) | public static bool HasAttribute(this ISymbol symbol, INamedTypeSymbol ... method GetAttribute (line 333) | public static AttributeData? GetAttribute(this ISymbol symbol, INamedT... method GetAttributes (line 349) | public static bool GetAttributes(this ISymbol symbol, INamedTypeSymbol... method GetAttributes (line 374) | public static bool GetAttributes(this INamedTypeSymbol symbol, INamedT... method GetAllMembers (line 415) | public static IEnumerable GetAllMembers(this ITypeSy... method GetAllMembers (line 428) | public static IEnumerable GetAllMembers(this ITypeSy... method GetAllMembers (line 441) | public static IEnumerable GetAllMembers(this ITypeSy... method GetDeclaredInstanceMembers (line 473) | public static IEnumerable GetDeclaredInstanceMembers... method GetNamespaceAndNesting (line 489) | public static string GetNamespaceAndNesting(this ISymbol symbol) method GetAllTypeParameters (line 513) | public static IEnumerable GetAllTypeParameters(t... method GetAllTypeArguments (line 531) | public static IEnumerable GetAllTypeArguments(this INamed... method IsAssignableFrom (line 547) | public static bool IsAssignableFrom(this INamedTypeSymbol symbol, INam... method IsBaseAssignableFromInternal (line 557) | private static bool IsBaseAssignableFromInternal(this INamedTypeSymbol... method IsInterfaceAssignableFromInternal (line 568) | private static bool IsInterfaceAssignableFromInternal(this INamedTypeS... method GetDeclaredTypes (line 586) | public static IEnumerable GetDeclaredTypes(this IAss... FILE: src/Orleans.CodeGenerator/SyntaxGeneration/SymbolSyntaxExtensions.cs class SymbolSyntaxExtensions (line 12) | internal static class SymbolSyntaxExtensions method GetBindingFlagsParenthesizedExpressionSyntax (line 14) | public static ParenthesizedExpressionSyntax GetBindingFlagsParenthesiz... method ToExpression (line 45) | public static ExpressionSyntax ToExpression(this TypedConstant constant) method DisplayEnumConstant (line 72) | private static ExpressionSyntax DisplayEnumConstant(TypedConstant cons... method ConvertToUInt64 (line 116) | private static ulong ConvertToUInt64(object value) FILE: src/Orleans.CodeGenerator/SyntaxGeneration/SyntaxFactoryUtility.cs class SyntaxFactoryUtility (line 10) | internal static class SyntaxFactoryUtility method Member (line 24) | public static MemberAccessExpressionSyntax Member(this ExpressionSynta... method Member (line 38) | public static MemberAccessExpressionSyntax Member(this ExpressionSynta... method Member (line 40) | public static MemberAccessExpressionSyntax Member(this ExpressionSynta... method Member (line 42) | public static MemberAccessExpressionSyntax Member( method ToGenericName (line 49) | public static GenericNameSyntax ToGenericName(this string identifier) ... method AddGenericTypeParameters (line 51) | public static ClassDeclarationSyntax AddGenericTypeParameters( method GetTypeParameterConstraints (line 74) | public static List<(string Name, List C... FILE: src/Orleans.Connections.Security/Hosting/HostingExtensions.IClientBuilder.cs class OrleansConnectionSecurityHostingExtensions (line 8) | public static partial class OrleansConnectionSecurityHostingExtensions method UseTls (line 20) | public static IClientBuilder UseTls( method UseTls (line 45) | public static IClientBuilder UseTls( method UseTls (line 78) | public static IClientBuilder UseTls( method UseTls (line 104) | public static IClientBuilder UseTls( FILE: src/Orleans.Connections.Security/Hosting/HostingExtensions.ISiloBuilder.cs class OrleansConnectionSecurityHostingExtensions (line 8) | public static partial class OrleansConnectionSecurityHostingExtensions method UseTls (line 20) | public static ISiloBuilder UseTls( method UseTls (line 45) | public static ISiloBuilder UseTls( method UseTls (line 78) | public static ISiloBuilder UseTls( method UseTls (line 104) | public static ISiloBuilder UseTls( FILE: src/Orleans.Connections.Security/Hosting/HostingExtensions.cs class TlsConnectionBuilderExtensions (line 10) | public static class TlsConnectionBuilderExtensions method UseServerTls (line 12) | public static void UseServerTls( method UseClientTls (line 29) | public static void UseClientTls( method ThrowNoPrivateKey (line 46) | internal static void ThrowNoPrivateKey(X509Certificate2 certificate, s... FILE: src/Orleans.Connections.Security/Security/CertificateLoader.cs class CertificateLoader (line 7) | public static class CertificateLoader method LoadFromStoreCert (line 17) | public static X509Certificate2 LoadFromStoreCert(string subject, strin... method IsCertificateAllowedForServerAuth (line 50) | internal static bool IsCertificateAllowedForServerAuth(X509Certificate... method IsCertificateAllowedForClientAuth (line 52) | internal static bool IsCertificateAllowedForClientAuth(X509Certificate... method IsCertificateAllowedForKeyUsage (line 54) | private static bool IsCertificateAllowedForKeyUsage(X509Certificate2 c... method DoesCertificateHaveAnAccessiblePrivateKey (line 88) | internal static bool DoesCertificateHaveAnAccessiblePrivateKey(X509Cer... method DisposeCertificates (line 91) | private static void DisposeCertificates(X509Certificate2Collection cer... FILE: src/Orleans.Connections.Security/Security/DuplexPipeStream.cs class DuplexPipeStream (line 11) | internal class DuplexPipeStream : Stream method DuplexPipeStream (line 22) | public DuplexPipeStream(IDuplexPipe pipe) method Dispose (line 28) | protected override void Dispose(bool disposing) method DisposeAsync (line 38) | public override async ValueTask DisposeAsync() method Flush (line 44) | public override void Flush() method FlushAsync (line 49) | public override async Task FlushAsync(CancellationToken cancellationTo... method Read (line 55) | public override int Read(byte[] buffer, int offset, int count) method ReadAsync (line 65) | public override Task ReadAsync(byte[] buffer, int offset, int cou... method ReadAsync (line 72) | public override async ValueTask ReadAsync(Memory buffer, Ca... method BeginRead (line 113) | public override IAsyncResult BeginRead(byte[] buffer, int offset, int ... method EndRead (line 118) | public override int EndRead(IAsyncResult asyncResult) method Seek (line 123) | public override long Seek(long offset, SeekOrigin origin) method SetLength (line 128) | public override void SetLength(long value) method Write (line 133) | public override void Write(byte[] buffer, int offset, int count) method WriteAsync (line 138) | public override Task WriteAsync(byte[] buffer, int offset, int count, ... method WriteAsync (line 145) | public override async ValueTask WriteAsync(ReadOnlyMemory buffer... method BeginWrite (line 151) | public override IAsyncResult BeginWrite(byte[] buffer, int offset, int... method EndWrite (line 156) | public override void EndWrite(IAsyncResult asyncResult) method CopyToAsync (line 161) | public override Task CopyToAsync(Stream destination, int bufferSize, C... class TaskToApm (line 169) | internal static class TaskToApm method Begin (line 179) | public static IAsyncResult Begin(Task task, AsyncCallback callback, ... method End (line 184) | public static void End(IAsyncResult asyncResult) method End (line 197) | public static TResult End(IAsyncResult asyncResult) method GetTask (line 209) | public static Task GetTask(IAsyncResult asyncResult) => (asyncResult... method ThrowArgumentException (line 212) | private static void ThrowArgumentException(IAsyncResult asyncResult) => class TaskAsyncResult (line 223) | internal sealed class TaskAsyncResult : IAsyncResult method TaskAsyncResult (line 234) | internal TaskAsyncResult(Task task, object state, AsyncCallback ca... method InvokeCallback (line 259) | private void InvokeCallback() FILE: src/Orleans.Connections.Security/Security/DuplexPipeStreamAdapter.cs class DuplexPipeStreamAdapter (line 13) | internal class DuplexPipeStreamAdapter : DuplexPipeStream, IDup... method DuplexPipeStreamAdapter (line 22) | public DuplexPipeStreamAdapter(IDuplexPipe duplexPipe, Func GetRemoteCertificateAsync(CancellationToken can... FILE: src/Orleans.Connections.Security/Security/MemoryPoolExtensions.cs class MemoryPoolExtensions (line 6) | internal static class MemoryPoolExtensions method GetMinimumSegmentSize (line 13) | public static int GetMinimumSegmentSize(this MemoryPool pool) method GetMinimumAllocSize (line 23) | public static int GetMinimumAllocSize(this MemoryPool pool) FILE: src/Orleans.Connections.Security/Security/OrleansApplicationProtocol.cs class OrleansApplicationProtocol (line 5) | internal static class OrleansApplicationProtocol FILE: src/Orleans.Connections.Security/Security/RemoteCertificateMode.cs type RemoteCertificateMode (line 6) | public enum RemoteCertificateMode FILE: src/Orleans.Connections.Security/Security/TlsClientAuthenticationOptions.cs class TlsClientAuthenticationOptions (line 10) | public class TlsClientAuthenticationOptions FILE: src/Orleans.Connections.Security/Security/TlsClientConnectionMiddleware.cs class TlsClientConnectionMiddleware (line 13) | internal class TlsClientConnectionMiddleware method TlsClientConnectionMiddleware (line 21) | public TlsClientConnectionMiddleware(ConnectionDelegate next, TlsOptio... method OnConnectionAsync (line 39) | public Task OnConnectionAsync(ConnectionContext context) method InnerOnConnectionAsync (line 44) | private async Task InnerOnConnectionAsync(ConnectionContext context) method ValidateCertificate (line 199) | private static X509Certificate2 ValidateCertificate(X509Certificate2 c... method EnsureCertificateIsAllowedForClientAuth (line 218) | protected static void EnsureCertificateIsAllowedForClientAuth(X509Cert... method ConvertToX509Certificate2 (line 231) | private static X509Certificate2 ConvertToX509Certificate2(X509Certific... FILE: src/Orleans.Connections.Security/Security/TlsConnectionFeature.cs class TlsConnectionFeature (line 10) | internal class TlsConnectionFeature : ITlsConnectionFeature, ITlsApplica... method GetRemoteCertificateAsync (line 42) | public Task GetRemoteCertificateAsync(CancellationTo... FILE: src/Orleans.Connections.Security/Security/TlsDuplexPipe.cs class TlsDuplexPipe (line 8) | internal class TlsDuplexPipe : DuplexPipeStreamAdapter method TlsDuplexPipe (line 10) | public TlsDuplexPipe(IDuplexPipe transport, StreamPipeReaderOptions re... method TlsDuplexPipe (line 16) | public TlsDuplexPipe(IDuplexPipe transport, StreamPipeReaderOptions re... FILE: src/Orleans.Connections.Security/Security/TlsOptions.cs class TlsOptions (line 15) | public class TlsOptions method AllowAnyRemoteCertificate (line 82) | public void AllowAnyRemoteCertificate() FILE: src/Orleans.Connections.Security/Security/TlsServerAuthenticationOptions.cs class TlsServerAuthenticationOptions (line 10) | public class TlsServerAuthenticationOptions FILE: src/Orleans.Connections.Security/Security/TlsServerConnectionMiddleware.cs class TlsServerConnectionMiddleware (line 13) | internal class TlsServerConnectionMiddleware method TlsServerConnectionMiddleware (line 21) | public TlsServerConnectionMiddleware(ConnectionDelegate next, TlsOptio... method OnConnectionAsync (line 53) | public Task OnConnectionAsync(ConnectionContext context) method InnerOnConnectionAsync (line 58) | private async Task InnerOnConnectionAsync(ConnectionContext context) method EnsureCertificateIsAllowedForServerAuth (line 231) | protected static void EnsureCertificateIsAllowedForServerAuth(X509Cert... method ConvertToX509Certificate2 (line 239) | private static X509Certificate2 ConvertToX509Certificate2(X509Certific... FILE: src/Orleans.Core.Abstractions/Cancellation/GrainCancellationToken.cs class GrainCancellationToken (line 12) | [Immutable] method GrainCancellationToken (line 39) | internal GrainCancellationToken(Guid id) method GrainCancellationToken (line 58) | internal GrainCancellationToken(Guid id, bool canceled, IGrainCancella... method Cancel (line 89) | internal Task Cancel() method AddGrainReference (line 115) | internal void AddGrainReference(IGrainCancellationTokenRuntime runtime... method Dispose (line 123) | public void Dispose() FILE: src/Orleans.Core.Abstractions/Cancellation/GrainCancellationTokenSource.cs class GrainCancellationTokenSource (line 10) | public sealed class GrainCancellationTokenSource : IDisposable method GrainCancellationTokenSource (line 20) | public GrainCancellationTokenSource() method Cancel (line 71) | public Task Cancel() method Dispose (line 82) | public void Dispose() FILE: src/Orleans.Core.Abstractions/Cancellation/ICancellationSourcesExtension.cs type ICancellationSourcesExtension (line 10) | internal interface ICancellationSourcesExtension : IGrainExtension method CancelRemoteToken (line 21) | [AlwaysInterleave] FILE: src/Orleans.Core.Abstractions/CodeGeneration/IOnDeserialized.cs type IOnDeserialized (line 8) | public interface IOnDeserialized method OnDeserialized (line 14) | void OnDeserialized(DeserializationContext context); class DeserializationContext (line 17) | public abstract class DeserializationContext FILE: src/Orleans.Core.Abstractions/CodeGeneration/InvokeMethodOptions.cs type InvokeMethodOptions (line 10) | [Flags] FILE: src/Orleans.Core.Abstractions/CodeGeneration/VersionAttribute.cs class VersionAttribute (line 11) | [AttributeUsage(AttributeTargets.Interface)] method VersionAttribute (line 20) | public VersionAttribute(ushort version) method Populate (line 31) | void IGrainInterfacePropertiesProviderAttribute.Populate(IServiceProvi... FILE: src/Orleans.Core.Abstractions/Concurrency/GrainAttributeConcurrency.cs class ReadOnlyAttribute (line 18) | [InvokableCustomInitializer(nameof(IRequest.AddInvokeMethodOptions), Inv... class ReentrantAttribute (line 32) | [AttributeUsage(AttributeTargets.Class)] method Populate (line 36) | public void Populate(IServiceProvider services, Type grainClass, Grain... class UnorderedAttribute (line 49) | [AttributeUsage(AttributeTargets.Interface)] class StatelessWorkerAttribute (line 59) | [AttributeUsage(AttributeTargets.Class)] method StatelessWorkerAttribute (line 66) | public StatelessWorkerAttribute(int maxLocalWorkers) method StatelessWorkerAttribute (line 75) | public StatelessWorkerAttribute(int maxLocalWorkers, bool removeIdleWo... method StatelessWorkerAttribute (line 83) | public StatelessWorkerAttribute() method Populate (line 89) | public override void Populate(IServiceProvider services, Type grainCla... class AlwaysInterleaveAttribute (line 103) | [InvokableCustomInitializer(nameof(IRequest.AddInvokeMethodOptions), Inv... class MayInterleaveAttribute (line 117) | [AttributeUsage(AttributeTargets.Class)] method MayInterleaveAttribute (line 127) | public MayInterleaveAttribute(string callbackMethodName) method Populate (line 139) | public void Populate(IServiceProvider services, Type grainClass, Grain... class OneWayAttribute (line 148) | [InvokableCustomInitializer(nameof(IRequest.AddInvokeMethodOptions), Inv... FILE: src/Orleans.Core.Abstractions/Core/DeactivationReason.cs type DeactivationReason (line 8) | public readonly struct DeactivationReason method DeactivationReason (line 19) | public DeactivationReason(DeactivationReasonCode code, string text) method DeactivationReason (line 38) | public DeactivationReason(DeactivationReasonCode code, Exception? exce... method ToString (line 61) | public override string ToString() FILE: src/Orleans.Core.Abstractions/Core/Grain.cs class Grain (line 16) | public abstract partial class Grain : IGrainBase, IAddressable method Grain (line 47) | protected Grain() : this(RuntimeContext.Current!, grainRuntime: null) method Grain (line 55) | protected Grain(IGrainContext grainContext, IGrainRuntime? grainRuntim... method RegisterTimer (line 101) | [Obsolete("Use 'this.RegisterGrainTimer(callback, state, new() { DueTi... method DeactivateOnIdle (line 117) | protected void DeactivateOnIdle() method MigrateOnIdle (line 130) | protected void MigrateOnIdle() method DelayDeactivation (line 143) | protected void DelayDeactivation(TimeSpan timeSpan) method OnActivateAsync (line 157) | public virtual Task OnActivateAsync(CancellationToken cancellationToke... method OnDeactivateAsync (line 164) | public virtual Task OnDeactivateAsync(DeactivationReason reason, Cance... method EnsureRuntime (line 166) | internal void EnsureRuntime() method Grain (line 194) | protected Grain() method Grain (line 215) | protected Grain(IStorage storage) method ClearStateAsync (line 235) | protected virtual Task ClearStateAsync() => _storage.ClearStateAsync(); method WriteStateAsync (line 243) | protected virtual Task WriteStateAsync() => _storage.WriteStateAsync(); method ReadStateAsync (line 254) | protected virtual Task ReadStateAsync() => _storage.ReadStateAsync(); class LifecycleObserver (line 256) | private class LifecycleObserver : ILifecycleObserver, IGrainMigrationP... method LifecycleObserver (line 262) | public LifecycleObserver(Grain grain) => _grain = grain; method SetupStorage (line 264) | private void SetupStorage() => _grain._storage ??= _grain.Runtime.Ge... method OnDehydrate (line 266) | public void OnDehydrate(IDehydrationContext dehydrationContext) method OnRehydrate (line 276) | public void OnRehydrate(IRehydrationContext rehydrationContext) method OnStart (line 286) | public Task OnStart(CancellationToken cancellationToken = default) method OnStop (line 303) | public Task OnStop(CancellationToken cancellationToken = default) =>... class Grain (line 179) | public class Grain : Grain method Grain (line 47) | protected Grain() : this(RuntimeContext.Current!, grainRuntime: null) method Grain (line 55) | protected Grain(IGrainContext grainContext, IGrainRuntime? grainRuntim... method RegisterTimer (line 101) | [Obsolete("Use 'this.RegisterGrainTimer(callback, state, new() { DueTi... method DeactivateOnIdle (line 117) | protected void DeactivateOnIdle() method MigrateOnIdle (line 130) | protected void MigrateOnIdle() method DelayDeactivation (line 143) | protected void DelayDeactivation(TimeSpan timeSpan) method OnActivateAsync (line 157) | public virtual Task OnActivateAsync(CancellationToken cancellationToke... method OnDeactivateAsync (line 164) | public virtual Task OnDeactivateAsync(DeactivationReason reason, Cance... method EnsureRuntime (line 166) | internal void EnsureRuntime() method Grain (line 194) | protected Grain() method Grain (line 215) | protected Grain(IStorage storage) method ClearStateAsync (line 235) | protected virtual Task ClearStateAsync() => _storage.ClearStateAsync(); method WriteStateAsync (line 243) | protected virtual Task WriteStateAsync() => _storage.WriteStateAsync(); method ReadStateAsync (line 254) | protected virtual Task ReadStateAsync() => _storage.ReadStateAsync(); class LifecycleObserver (line 256) | private class LifecycleObserver : ILifecycleObserver, IGrainMigrationP... method LifecycleObserver (line 262) | public LifecycleObserver(Grain grain) => _grain = grain; method SetupStorage (line 264) | private void SetupStorage() => _grain._storage ??= _grain.Runtime.Ge... method OnDehydrate (line 266) | public void OnDehydrate(IDehydrationContext dehydrationContext) method OnRehydrate (line 276) | public void OnRehydrate(IRehydrationContext rehydrationContext) method OnStart (line 286) | public Task OnStart(CancellationToken cancellationToken = default) method OnStop (line 303) | public Task OnStop(CancellationToken cancellationToken = default) =>... FILE: src/Orleans.Core.Abstractions/Core/GrainExtensions.cs class GrainExtensions (line 10) | public static class GrainExtensions method AsReference (line 19) | internal static GrainReference AsReference(this IAddressable grain) method AsReference (line 56) | public static TGrainInterface AsReference(this IAddre... method Cast (line 78) | public static TGrainInterface Cast(this IAddressable ... method AsReference (line 90) | public static object AsReference(this IAddressable grain, Type interfa... method Cast (line 103) | public static object Cast(this IAddressable grain, Type interfaceType)... method GetGrainId (line 111) | public static GrainId GetGrainId(this IAddressable grain) method GetWrongGrainTypeErrorMessage (line 135) | private static string GetWrongGrainTypeErrorMessage(IAddressable grain... method IsPrimaryKeyBasedOnLong (line 146) | public static bool IsPrimaryKeyBasedOnLong(this IAddressable grain) method GetPrimaryKeyLong (line 169) | public static long GetPrimaryKeyLong(this IAddressable grain, out stri... method GetPrimaryKeyLong (line 191) | public static long GetPrimaryKeyLong(this IAddressable grain) method GetPrimaryKey (line 214) | public static Guid GetPrimaryKey(this IAddressable grain, out string? ... method GetPrimaryKey (line 242) | public static Guid GetPrimaryKey(this IAddressable grain) method GetPrimaryKeyString (line 265) | public static string GetPrimaryKeyString(this IAddressable grain) method ThrowGrainNull (line 280) | [DoesNotReturn] FILE: src/Orleans.Core.Abstractions/Core/IConfigurationValidator.cs type IConfigurationValidator (line 6) | public interface IConfigurationValidator method ValidateConfiguration (line 11) | void ValidateConfiguration(); FILE: src/Orleans.Core.Abstractions/Core/IGrain.cs type IGrain (line 10) | public interface IGrain : IAddressable type IGrainWithGuidKey (line 17) | public interface IGrainWithGuidKey : IGrain type IGrainWithIntegerKey (line 24) | public interface IGrainWithIntegerKey : IGrain type IGrainWithStringKey (line 31) | public interface IGrainWithStringKey : IGrain type IGrainWithGuidCompoundKey (line 38) | public interface IGrainWithGuidCompoundKey : IGrain type IGrainWithIntegerCompoundKey (line 45) | public interface IGrainWithIntegerCompoundKey : IGrain FILE: src/Orleans.Core.Abstractions/Core/IGrainBase.cs type IGrainBase (line 13) | public interface IGrainBase method OnActivateAsync (line 25) | Task OnActivateAsync(CancellationToken token) => Task.CompletedTask; method OnDeactivateAsync (line 33) | Task OnDeactivateAsync(DeactivationReason reason, CancellationToken to... class GrainBaseExtensions (line 39) | public static class GrainBaseExtensions method DeactivateOnIdle (line 46) | public static void DeactivateOnIdle(this IGrainBase grain) => method MigrateOnIdle (line 54) | public static void MigrateOnIdle(this IGrainBase grain) => grain.Grain... method RegisterGrainTimer (line 97) | public static IGrainTimer RegisterGrainTimer(this IGrainBase g... method RegisterGrainTimer (line 151) | public static IGrainTimer RegisterGrainTimer(this IGrainBase grain, Fu... method RegisterGrainTimer (line 157) | public static IGrainTimer RegisterGrainTimer(this IGrainBase grain, Fu... method RegisterGrainTimer (line 166) | public static IGrainTimer RegisterGrainTimer(this IGrainBase g... method RegisterGrainTimer (line 218) | public static IGrainTimer RegisterGrainTimer(this IGrainBase grain, Fu... method RegisterGrainTimer (line 222) | public static IGrainTimer RegisterGrainTimer(this IGrainBase grain, Fu... method RegisterGrainTimer (line 228) | public static IGrainTimer RegisterGrainTimer(this IGrainBase g... method RegisterGrainTimer (line 234) | public static IGrainTimer RegisterGrainTimer(this IGrainBase g... type DeactivationReasonCode (line 241) | [GenerateSerializer] class DeactivationReasonCodeExtensions (line 313) | internal static class DeactivationReasonCodeExtensions method IsTransientError (line 315) | public static bool IsTransientError(this DeactivationReasonCode reason... FILE: src/Orleans.Core.Abstractions/Core/IGrainCallContext.cs type IGrainCallContext (line 32) | public interface IGrainCallContext method Invoke (line 90) | Task Invoke(); type IIncomingGrainCallContext (line 96) | public interface IIncomingGrainCallContext : IGrainCallContext type IOutgoingGrainCallContext (line 112) | public interface IOutgoingGrainCallContext : IGrainCallContext FILE: src/Orleans.Core.Abstractions/Core/IGrainCallFilter.cs type IIncomingGrainCallFilter (line 8) | public interface IIncomingGrainCallFilter method Invoke (line 15) | Task Invoke(IIncomingGrainCallContext context); type IOutgoingGrainCallFilter (line 21) | public interface IOutgoingGrainCallFilter method Invoke (line 28) | Task Invoke(IOutgoingGrainCallContext context); FILE: src/Orleans.Core.Abstractions/Core/IGrainContext.cs type IGrainContext (line 12) | public interface IGrainContext : ITargetHolder, IEquatable method SetComponent (line 64) | void SetComponent(TComponent? value) where TComponent : cl... method ReceiveMessage (line 70) | void ReceiveMessage(object message); method Activate (line 77) | void Activate(Dictionary? requestContext, Cancellation... method Deactivate (line 84) | void Deactivate(DeactivationReason deactivationReason, CancellationTok... method Rehydrate (line 89) | void Rehydrate(IRehydrationContext context); method Migrate (line 98) | void Migrate(Dictionary? requestContext, CancellationT... class GrainContextExtensions (line 104) | public static class GrainContextExtensions method DeactivateAsync (line 119) | [Obsolete("This method is error-prone: waiting deactivation to complet... type ICollectibleGrainContext (line 130) | internal interface ICollectibleGrainContext : IGrainContext method IsStale (line 166) | bool IsStale(); method GetIdleness (line 174) | TimeSpan GetIdleness(); method DelayDeactivation (line 180) | void DelayDeactivation(TimeSpan timeSpan); type IWorkItemScheduler (line 186) | public interface IWorkItemScheduler method QueueAction (line 194) | void QueueAction(Action action); method QueueTask (line 200) | void QueueTask(Task task); method QueueAction (line 207) | void QueueAction(Action action, object state); type IGrainContextAccessor (line 213) | public interface IGrainContextAccessor type IGrainExtensionBinder (line 224) | public interface IGrainExtensionBinder method GetExtension (line 235) | TExtensionInterface GetExtension() where TExtensi... method GetOrSetExtension (line 244) | (TExtension, TExtensionInterface) GetOrSetExtension(this IGrainFac... method GetGrain (line 34) | public static TGrainInterface GetGrain(this IGrainFac... type IGrainFactory (line 44) | public interface IGrainFactory method GetGrain (line 53) | TGrainInterface GetGrain(Guid primaryKey, string? gra... method GetGrain (line 62) | TGrainInterface GetGrain(long primaryKey, string? gra... method GetGrain (line 71) | TGrainInterface GetGrain(string primaryKey, string? g... method GetGrain (line 81) | TGrainInterface GetGrain(Guid primaryKey, string keyE... method GetGrain (line 91) | TGrainInterface GetGrain(long primaryKey, string keyE... method CreateObjectReference (line 101) | TGrainObserverInterface CreateObjectReference... method DeleteObjectReference (line 111) | void DeleteObjectReference(IGrainObserver obj... method GetGrain (line 125) | IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey); method GetGrain (line 139) | IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey); method GetGrain (line 153) | IGrain GetGrain(Type grainInterfaceType, string grainPrimaryKey); method GetGrain (line 170) | IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey, string ... method GetGrain (line 187) | IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey, string ... method GetGrain (line 201) | TGrainInterface GetGrain(GrainId grainId) where TGrai... method GetGrain (line 212) | IAddressable GetGrain(GrainId grainId); method GetGrain (line 226) | IAddressable GetGrain(GrainId grainId, GrainInterfaceType interfaceType); method GetGrain (line 237) | IAddressable GetGrain(Type interfaceType, IdSpan grainKey, string grai... method GetGrain (line 247) | IAddressable GetGrain(Type interfaceType, IdSpan grainKey); FILE: src/Orleans.Core.Abstractions/Core/IGrainObserver.cs type IGrainObserver (line 10) | public interface IGrainObserver : IAddressable FILE: src/Orleans.Core.Abstractions/Core/ILocalActivationStatusChecker.cs type ILocalActivationStatusChecker (line 8) | public interface ILocalActivationStatusChecker method IsLocallyActivated (line 15) | bool IsLocallyActivated(GrainId grainId); FILE: src/Orleans.Core.Abstractions/Core/IStorage.cs type IStorage (line 9) | public interface IStorage method ClearStateAsync (line 34) | Task ClearStateAsync(); method WriteStateAsync (line 45) | Task WriteStateAsync(); method ReadStateAsync (line 56) | Task ReadStateAsync(); method ClearStateAsync (line 69) | Task ClearStateAsync(CancellationToken cancellationToken) => ClearStat... method WriteStateAsync (line 81) | Task WriteStateAsync(CancellationToken cancellationToken) => WriteStat... method ReadStateAsync (line 93) | Task ReadStateAsync(CancellationToken cancellationToken) => ReadStateA... type IStorage (line 99) | public interface IStorage : IStorage method ClearStateAsync (line 34) | Task ClearStateAsync(); method WriteStateAsync (line 45) | Task WriteStateAsync(); method ReadStateAsync (line 56) | Task ReadStateAsync(); method ClearStateAsync (line 69) | Task ClearStateAsync(CancellationToken cancellationToken) => ClearStat... method WriteStateAsync (line 81) | Task WriteStateAsync(CancellationToken cancellationToken) => WriteStat... method ReadStateAsync (line 93) | Task ReadStateAsync(CancellationToken cancellationToken) => ReadStateA... FILE: src/Orleans.Core.Abstractions/Core/Immutable.cs type Immutable (line 15) | [GenerateSerializer, Immutable] method Immutable (line 26) | public Immutable(T value) => Value = value; class ImmutableExtensions (line 32) | public static class ImmutableExtensions method AsImmutable (line 41) | public static Immutable AsImmutable(this T value) => new(value); FILE: src/Orleans.Core.Abstractions/Core/Internal/ICallChainReentrantGrainContext.cs type ICallChainReentrantGrainContext (line 9) | public interface ICallChainReentrantGrainContext method OnEnterReentrantSection (line 14) | void OnEnterReentrantSection(Guid reentrancyId); method OnExitReentrantSection (line 19) | void OnExitReentrantSection(Guid reentrancyId); FILE: src/Orleans.Core.Abstractions/Core/Internal/IGrainManagementExtension.cs type IGrainManagementExtension (line 9) | public interface IGrainManagementExtension : IGrainExtension method DeactivateOnIdle (line 15) | ValueTask DeactivateOnIdle(); method MigrateOnIdle (line 21) | ValueTask MigrateOnIdle(); FILE: src/Orleans.Core.Abstractions/Diagnostics/ActivitySources.cs class ActivitySources (line 5) | public static class ActivitySources FILE: src/Orleans.Core.Abstractions/Diagnostics/ActivityTagKeys.cs class ActivityTagKeys (line 6) | internal static class ActivityTagKeys FILE: src/Orleans.Core.Abstractions/Diagnostics/OpenTelemetryHeaders.cs class OpenTelemetryHeaders (line 3) | internal static class OpenTelemetryHeaders FILE: src/Orleans.Core.Abstractions/Exceptions/ClientNotAvailableException.cs class ClientNotAvailableException (line 9) | [Serializable] method ClientNotAvailableException (line 21) | internal ClientNotAvailableException(GrainId clientId) method ClientNotAvailableException (line 32) | internal ClientNotAvailableException(string message) method ClientNotAvailableException (line 46) | internal ClientNotAvailableException(string message, Exception innerEx... method ClientNotAvailableException (line 60) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/GatewayTooBusyException.cs class GatewayTooBusyException (line 14) | [Serializable] method GatewayTooBusyException (line 21) | public GatewayTooBusyException() method GatewayTooBusyException (line 32) | public GatewayTooBusyException(string message) method GatewayTooBusyException (line 46) | public GatewayTooBusyException(string message, Exception innerException) method GatewayTooBusyException (line 60) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/GrainExtensionNotInstalledException.cs class GrainExtensionNotInstalledException (line 9) | [Serializable] method GrainExtensionNotInstalledException (line 16) | public GrainExtensionNotInstalledException() method GrainExtensionNotInstalledException (line 27) | public GrainExtensionNotInstalledException(string message) method GrainExtensionNotInstalledException (line 41) | public GrainExtensionNotInstalledException(string message, Exception i... method GrainExtensionNotInstalledException (line 55) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/LimitExceededException.cs class LimitExceededException (line 14) | [Serializable] method LimitExceededException (line 21) | public LimitExceededException() method LimitExceededException (line 32) | public LimitExceededException(string message) method LimitExceededException (line 46) | public LimitExceededException(string message, Exception innerException) method LimitExceededException (line 66) | public LimitExceededException(string limitName, int current, int thres... method LimitExceededException (line 80) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/OrleansConfigurationException.cs class OrleansConfigurationException (line 9) | [Serializable] method OrleansConfigurationException (line 14) | public OrleansConfigurationException(string message) method OrleansConfigurationException (line 20) | public OrleansConfigurationException(string message, Exception innerEx... method OrleansConfigurationException (line 28) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/OrleansException.cs class OrleansException (line 13) | [Serializable] method OrleansException (line 20) | public OrleansException() method OrleansException (line 31) | public OrleansException(string message) method OrleansException (line 45) | public OrleansException(string message, Exception innerException) method OrleansException (line 61) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/OrleansLifecycleCanceledException.cs class OrleansLifecycleCanceledException (line 9) | [Serializable] method OrleansLifecycleCanceledException (line 19) | internal OrleansLifecycleCanceledException(string message) method OrleansLifecycleCanceledException (line 33) | internal OrleansLifecycleCanceledException(string message, Exception i... method OrleansLifecycleCanceledException (line 49) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/OrleansMessageRejectionException.cs class OrleansMessageRejectionException (line 9) | [Serializable] method OrleansMessageRejectionException (line 19) | internal OrleansMessageRejectionException(string message) method OrleansMessageRejectionException (line 33) | internal OrleansMessageRejectionException(string message, Exception in... method OrleansMessageRejectionException (line 53) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/SiloUnavailableException.cs class SiloUnavailableException (line 9) | [Serializable] method SiloUnavailableException (line 16) | public SiloUnavailableException() method SiloUnavailableException (line 27) | public SiloUnavailableException(string msg) method SiloUnavailableException (line 41) | public SiloUnavailableException(string message, Exception innerException) method SiloUnavailableException (line 57) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Exceptions/WrappedException.cs class WrappedException (line 16) | [Serializable] method WrappedException (line 26) | public WrappedException(string message) method WrappedException (line 42) | [Obsolete] method GetObjectData (line 56) | [Obsolete] method CreateAndRethrow (line 67) | [DoesNotReturn] method CreateFromException (line 80) | private static WrappedException CreateFromException(Exception exception) method ToString (line 98) | public override string ToString() FILE: src/Orleans.Core.Abstractions/GrainDirectory/GrainDirectoryAttribute.cs class GrainDirectoryAttribute (line 11) | [AttributeUsage(AttributeTargets.Class)] method GrainDirectoryAttribute (line 22) | public GrainDirectoryAttribute() : this(DEFAULT_GRAIN_DIRECTORY) method GrainDirectoryAttribute (line 32) | public GrainDirectoryAttribute(string grainDirectoryName) method Populate (line 43) | public void Populate(IServiceProvider services, Type grainClass, Grain... FILE: src/Orleans.Core.Abstractions/GrainDirectory/IGrainDirectory.cs type IGrainDirectory (line 10) | public interface IGrainDirectory method Register (line 19) | Task Register(GrainAddress address); method Register (line 28) | Task Register(GrainAddress address, GrainAddress? previ... method Unregister (line 39) | Task Unregister(GrainAddress address); method Lookup (line 46) | Task Lookup(GrainId grainId); method UnregisterSilos (line 58) | Task UnregisterSilos(List siloAddresses); class GrainDirectoryExtension (line 61) | internal static class GrainDirectoryExtension method Register (line 63) | internal static async Task Register(IGrainDirectory dir... FILE: src/Orleans.Core.Abstractions/IDs/ActivationId.cs type ActivationId (line 14) | [Serializable, GenerateSerializer, Immutable] method ActivationId (line 26) | public ActivationId(Guid key) => Key = key; method NewId (line 37) | public static ActivationId NewId() => new(Guid.NewGuid()); method GetDeterministic (line 44) | public static ActivationId GetDeterministic(GrainId grain) method Equals (line 54) | public override bool Equals(object? obj) => obj is ActivationId other ... method Equals (line 57) | public bool Equals(ActivationId other) => Key.Equals(other.Key); method GetHashCode (line 60) | public override int GetHashCode() => Key.GetHashCode(); method ToString (line 63) | public override string ToString() => $"@{Key:N}"; method ToString (line 65) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 67) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method ToParsableString (line 74) | public string ToParsableString() => ToString(); method FromParsableString (line 81) | public static ActivationId FromParsableString(string activationId) class ActivationIdConverter (line 107) | public sealed class ActivationIdConverter : JsonConverter method Read (line 110) | public override ActivationId Read(ref Utf8JsonReader reader, Type type... method Write (line 113) | public override void Write(Utf8JsonWriter writer, ActivationId value, ... FILE: src/Orleans.Core.Abstractions/IDs/ClientGrainId.cs type ClientGrainId (line 8) | internal readonly struct ClientGrainId : IEquatable, ICom... method ClientGrainId (line 13) | private ClientGrainId(GrainId grainId) => this.GrainId = grainId; method Create (line 23) | public static ClientGrainId Create() => Create(GrainIdKeyExtensions.Cr... method Create (line 28) | public static ClientGrainId Create(string id) method Create (line 37) | public static ClientGrainId Create(IdSpan id) => new ClientGrainId(new... method TryParse (line 42) | public static bool TryParse(GrainId grainId, out ClientGrainId clientId) method Equals (line 63) | public override bool Equals(object? obj) => obj is ClientGrainId clien... method GetHashCode (line 66) | public override int GetHashCode() => this.GrainId.GetHashCode(); method ToString (line 69) | public override string ToString() => this.GrainId.ToString(); method ToString (line 71) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 73) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method Equals (line 77) | public bool Equals(ClientGrainId other) => this.GrainId.Equals(other.G... method CompareTo (line 80) | public int CompareTo(ClientGrainId other) => this.GrainId.CompareTo(ot... FILE: src/Orleans.Core.Abstractions/IDs/GrainAddress.cs class GrainAddress (line 12) | [GenerateSerializer, Immutable] method Equals (line 46) | public override bool Equals(object? obj) => Equals(obj as GrainAddress); method Equals (line 48) | public bool Equals(GrainAddress? other) method Matches (line 61) | public bool Matches([NotNullWhen(true)] GrainAddress? other) method MatchesGrainIdAndSilo (line 68) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method GetHashCode (line 78) | public override int GetHashCode() => HashCode.Combine(SiloAddress, _gr... method ToString (line 80) | public override string ToString() => $"[{nameof(GrainAddress)} GrainId... method ToString (line 82) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 84) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method ToFullString (line 87) | public string ToFullString() => $"[{nameof(GrainAddress)} GrainId {_gr... method NewActivationAddress (line 89) | internal static GrainAddress NewActivationAddress(SiloAddress silo, Gr... method GetAddress (line 91) | internal static GrainAddress GetAddress(SiloAddress? silo, GrainId gra... FILE: src/Orleans.Core.Abstractions/IDs/GrainAddressCacheUpdate.cs class GrainAddressCacheUpdate (line 9) | [GenerateSerializer, Immutable] method GrainAddressCacheUpdate (line 33) | public GrainAddressCacheUpdate(GrainAddress invalidAddress, GrainAddre... method ToString (line 97) | public override string ToString() => $"[{nameof(GrainAddressCacheUpdat... method ToString (line 99) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 101) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method ToFullString (line 104) | public string ToFullString() => $"[{nameof(GrainAddressCacheUpdate)} G... method ThrowGrainIdDoesNotMatch (line 106) | [DoesNotReturn] FILE: src/Orleans.Core.Abstractions/IDs/GrainId.cs type GrainId (line 13) | [Serializable, GenerateSerializer, Immutable] method GrainId (line 26) | public GrainId(GrainType type, IdSpan key) method GrainId (line 35) | private GrainId(SerializationInfo info, StreamingContext context) method Create (line 54) | public static GrainId Create(string type, string key) => Create(GrainT... method Create (line 59) | public static GrainId Create(GrainType type, string key) method Create (line 68) | public static GrainId Create(GrainType type, IdSpan key) => new GrainI... method Parse (line 73) | public static GrainId Parse(ReadOnlySpan value, IFormatProvider?... method TryParse (line 89) | public static bool TryParse(ReadOnlySpan value, IFormatProvider?... method Parse (line 113) | public static GrainId Parse(string value) method Parse (line 119) | public static GrainId Parse(string value, IFormatProvider? provider = ... method TryParse (line 126) | public static bool TryParse(string? value, out GrainId result) method TryParse (line 133) | public static bool TryParse(string? value, IFormatProvider? provider, ... method Equals (line 142) | public override bool Equals(object? obj) => obj is GrainId id && Equal... method Equals (line 145) | public bool Equals(GrainId other) => _key.Equals(other._key) && _type.... method GetHashCode (line 148) | public override int GetHashCode() => HashCode.Combine(_type, _key); method GetUniformHashCode (line 153) | public uint GetUniformHashCode() method GetObjectData (line 161) | public void GetObjectData(SerializationInfo info, StreamingContext con... method CompareTo (line 170) | public int CompareTo(GrainId other) method ToString (line 195) | public override string ToString() => $"{_type}/{_key}"; method ToString (line 197) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 199) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... class GrainIdJsonConverter (line 206) | public sealed class GrainIdJsonConverter : JsonConverter method Read (line 209) | public override GrainId Read(ref Utf8JsonReader reader, Type typeToCon... method ReadAsPropertyName (line 226) | public override GrainId ReadAsPropertyName(ref Utf8JsonReader reader, ... method Write (line 230) | public override void Write(Utf8JsonWriter writer, GrainId value, JsonS... method WriteAsPropertyName (line 234) | public override void WriteAsPropertyName(Utf8JsonWriter writer, [Disal... method WriteGrainId (line 237) | private static void WriteGrainId(Utf8JsonWriter writer, GrainId value,... FILE: src/Orleans.Core.Abstractions/IDs/GrainIdKeyExtensions.cs class GrainIdKeyExtensions (line 11) | public static class GrainIdKeyExtensions method CreateIntegerKey (line 22) | public static IdSpan CreateIntegerKey(long key) method CreateIntegerKey (line 42) | public static IdSpan CreateIntegerKey(long key, ReadOnlySpan key... method CreateIntegerKey (line 70) | public static IdSpan CreateIntegerKey(long key, string? keyExtension) method CreateGuidKey (line 99) | public static IdSpan CreateGuidKey(Guid key) method CreateGuidKey (line 119) | public static IdSpan CreateGuidKey(Guid key, ReadOnlySpan keyExt... method CreateGuidKey (line 144) | public static IdSpan CreateGuidKey(Guid key, string? keyExtension) method TryGetIntegerKey (line 176) | public static bool TryGetIntegerKey(this GrainId grainId, out long key... method TryGetIntegerKey (line 201) | internal static bool TryGetIntegerKey(this GrainId grainId, out long key) method GetIntegerKey (line 216) | public static long GetIntegerKey(this GrainId grainId, out string? key... method GetIntegerKey (line 231) | public static long GetIntegerKey(this GrainId grainId) method TryGetGuidKey (line 256) | public static bool TryGetGuidKey(this GrainId grainId, out Guid key, o... method TryGetGuidKey (line 286) | internal static bool TryGetGuidKey(this GrainId grainId, out Guid key) method GetGuidKey (line 308) | public static Guid GetGuidKey(this GrainId grainId, out string? keyExt) method GetGuidKey (line 323) | public static Guid GetGuidKey(this GrainId grainId) method ThrowInvalidGuidKeyFormat (line 339) | private static void ThrowInvalidGuidKeyFormat(GrainId grainId) => thro... method ThrowInvalidIntegerKeyFormat (line 347) | private static void ThrowInvalidIntegerKeyFormat(GrainId grainId) => t... FILE: src/Orleans.Core.Abstractions/IDs/GrainInterfaceType.cs type GrainInterfaceType (line 8) | [Serializable, GenerateSerializer, Immutable] method GrainInterfaceType (line 20) | public GrainInterfaceType(string value) method GrainInterfaceType (line 29) | public GrainInterfaceType(IdSpan value) => _value = value; method Create (line 44) | public static GrainInterfaceType Create(string value) => new GrainInte... method Equals (line 47) | public override bool Equals(object? obj) => obj is GrainInterfaceType ... method Equals (line 50) | public bool Equals(GrainInterfaceType other) => _value.Equals(other._v... method GetHashCode (line 53) | public override int GetHashCode() => _value.GetHashCode(); method ToString (line 59) | public override string ToString() => _value.ToString(); method ToString (line 61) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 63) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... type IGrainInterfaceTypeProvider (line 86) | public interface IGrainInterfaceTypeProvider method TryGetGrainInterfaceType (line 96) | bool TryGetGrainInterfaceType(Type type, out GrainInterfaceType grainI... class AttributeGrainInterfaceTypeProvider (line 102) | public class AttributeGrainInterfaceTypeProvider : IGrainInterfaceTypePr... method AttributeGrainInterfaceTypeProvider (line 112) | public AttributeGrainInterfaceTypeProvider(IServiceProvider servicePro... method TryGetGrainInterfaceType (line 118) | public bool TryGetGrainInterfaceType(Type type, out GrainInterfaceType... type IGrainInterfaceTypeProviderAttribute (line 138) | public interface IGrainInterfaceTypeProviderAttribute method GetGrainInterfaceType (line 148) | GrainInterfaceType GetGrainInterfaceType(IServiceProvider services, Ty... class GrainInterfaceTypeAttribute (line 154) | [AttributeUsage(AttributeTargets.Interface, AllowMultiple = false)] method GrainInterfaceTypeAttribute (line 165) | public GrainInterfaceTypeAttribute(string value) method GetGrainInterfaceType (line 171) | public GrainInterfaceType GetGrainInterfaceType(IServiceProvider servi... FILE: src/Orleans.Core.Abstractions/IDs/GrainType.cs type GrainType (line 10) | [Serializable, GenerateSerializer, Immutable] method GrainType (line 22) | public GrainType(IdSpan id) => _value = id; method GrainType (line 30) | public GrainType(byte[] value) => _value = new IdSpan(value); method GrainType (line 41) | private GrainType(SerializationInfo info, StreamingContext context) method AsSpan (line 57) | public ReadOnlySpan AsSpan() => _value.AsSpan(); method Create (line 68) | public static GrainType Create(string value) method Equals (line 94) | public override bool Equals(object? obj) => obj is GrainType kind && E... method Equals (line 97) | public bool Equals(GrainType obj) => _value.Equals(obj._value); method GetHashCode (line 100) | public override int GetHashCode() => _value.GetHashCode(); method GetUniformHashCode (line 108) | public uint GetUniformHashCode() => _value.GetUniformHashCode(); method UnsafeGetArray (line 118) | public static byte[]? UnsafeGetArray(GrainType id) => IdSpan.UnsafeGet... method CompareTo (line 121) | public int CompareTo(GrainType other) => _value.CompareTo(other._value); method GetObjectData (line 124) | public void GetObjectData(SerializationInfo info, StreamingContext con... method ToString (line 136) | public override string? ToString() => _value.ToString(); method ToString (line 138) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 140) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... FILE: src/Orleans.Core.Abstractions/IDs/GrainTypePrefix.cs class GrainTypePrefix (line 9) | public static class GrainTypePrefix method IsClient (line 66) | public static bool IsClient(this in GrainType type) => type.AsSpan().S... method IsSystemTarget (line 73) | public static bool IsSystemTarget(this in GrainType type) => type.AsSp... method IsLegacyGrain (line 80) | public static bool IsLegacyGrain(this in GrainType type) => type.AsSpa... method IsGrainService (line 87) | public static bool IsGrainService(this in GrainType type) => type.AsSp... method IsClient (line 94) | public static bool IsClient(this in GrainId id) => id.Type.IsClient(); method IsSystemTarget (line 101) | public static bool IsSystemTarget(this in GrainId id) => id.Type.IsSys... FILE: src/Orleans.Core.Abstractions/IDs/GuidId.cs class GuidId (line 9) | [Serializable] method GuidId (line 28) | private GuidId(Guid guid) method GetNewGuidId (line 37) | public static GuidId GetNewGuidId() method GetGuidId (line 47) | public static GuidId GetGuidId(Guid guid) method FindOrCreateGuidId (line 57) | private static GuidId FindOrCreateGuidId(Guid guid) method CompareTo (line 63) | public int CompareTo(GuidId? other) => other is null ? 1 : Guid.Compar... method Equals (line 66) | public bool Equals(GuidId? other) => other is not null && Guid.Equals(... method Equals (line 69) | public override bool Equals(object? obj) => Equals(obj as GuidId); method GetHashCode (line 72) | public override int GetHashCode() => Guid.GetHashCode(); method ToString (line 75) | public override string ToString() => Guid.ToString(); method GetObjectData (line 94) | public void GetObjectData(SerializationInfo info, StreamingContext con... method GuidId (line 99) | private GuidId(SerializationInfo info, StreamingContext context) FILE: src/Orleans.Core.Abstractions/IDs/IdSpan.cs type IdSpan (line 10) | [Serializable, GenerateSerializer, Immutable] method IdSpan (line 31) | public IdSpan(byte[] value) method IdSpan (line 46) | private IdSpan(byte[]? value, int hashCode) method IdSpan (line 61) | private IdSpan(SerializationInfo info, StreamingContext context) method Create (line 83) | public static IdSpan Create(string id) => new(Encoding.UTF8.GetBytes(i... method AsSpan (line 91) | public ReadOnlySpan AsSpan() => _value; method Equals (line 94) | public override bool Equals(object? obj) => obj is IdSpan kind && Equa... method Equals (line 97) | public bool Equals(IdSpan obj) method GetHashCode (line 113) | public override int GetHashCode() => _hashCode; method GetUniformHashCode (line 121) | public uint GetUniformHashCode() => unchecked((uint)_hashCode); method GetObjectData (line 124) | public void GetObjectData(SerializationInfo info, StreamingContext con... method UnsafeCreate (line 145) | public static IdSpan UnsafeCreate(byte[]? value, int hashCode) => new(... method UnsafeGetArray (line 152) | public static byte[]? UnsafeGetArray(IdSpan id) => id._value; method CompareTo (line 155) | public int CompareTo(IdSpan other) method ToString (line 176) | public override string ToString() => _value is null ? "" : Encoding.UT... method TryFormat (line 178) | public bool TryFormat(Span destination, out int charsWritten) method ToString (line 197) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 199) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... FILE: src/Orleans.Core.Abstractions/IDs/IdSpanCodec.cs class IdSpanCodec (line 13) | [RegisterSerializer] method WriteField (line 19) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteRaw (line 45) | public static void WriteRaw( method ReadRaw (line 65) | public static unsafe IdSpan ReadRaw(ref Reader reader) method ReadValue (line 77) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Core.Abstractions/IDs/Legacy/LegacyGrainId.cs class LegacyGrainId (line 11) | [Serializable, GenerateSerializer, Immutable] method LegacyGrainId (line 32) | internal LegacyGrainId(UniqueKey key) method NewId (line 39) | public static LegacyGrainId NewId() method NewClientId (line 44) | public static LegacyGrainId NewClientId() method NewClientId (line 49) | internal static LegacyGrainId NewClientId(Guid id) method GetGrainId (line 54) | internal static LegacyGrainId GetGrainId(UniqueKey key) method GetGrainIdForTesting (line 60) | internal static LegacyGrainId GetGrainIdForTesting(Guid guid) method GetSystemTargetGrainId (line 65) | internal static LegacyGrainId GetSystemTargetGrainId(long typeData) method GetGrainType (line 70) | internal static GrainType GetGrainType(long typeCode, bool isKeyExt) method GetGrainId (line 77) | internal static LegacyGrainId GetGrainId(long typeCode, long primaryKe... method GetGrainId (line 84) | internal static LegacyGrainId GetGrainId(long typeCode, Guid primaryKe... method GetGrainId (line 91) | internal static LegacyGrainId GetGrainId(long typeCode, string primary... method GetGrainServiceGrainId (line 98) | internal static LegacyGrainId GetGrainServiceGrainId(short id, int typ... method GetGrainServiceGrainId (line 103) | internal static LegacyGrainId GetGrainServiceGrainId(int typeData, str... method GetPrimaryKeyLong (line 133) | public long GetPrimaryKeyLong(out string? keyExt) method GetPrimaryKeyLong (line 138) | internal long GetPrimaryKeyLong() method GetPrimaryKey (line 143) | public Guid GetPrimaryKey(out string? keyExt) method GetPrimaryKey (line 148) | internal Guid GetPrimaryKey() method GetPrimaryKeyString (line 153) | internal string GetPrimaryKeyString() method GetGrainType (line 161) | private static GrainType GetGrainType(UniqueKey key) method CreateGrainType (line 173) | private static byte[] CreateGrainType(ReadOnlyMemory prefixBytes... method CreateGrainTypeForGrain (line 183) | public static GrainType CreateGrainTypeForGrain(int typeCode) method CreateGrainTypeForSystemTarget (line 188) | public static GrainType CreateGrainTypeForSystemTarget(int typeCode) method GetGrainKey (line 193) | private IdSpan GetGrainKey() method ToGrainId (line 198) | public GrainId ToGrainId() method TryConvertFromGrainId (line 203) | public static bool TryConvertFromGrainId(GrainId id, [NotNullWhen(true... method FromGrainId (line 209) | public static LegacyGrainId FromGrainId(GrainId id) method FromGrainIdInternal (line 214) | private static LegacyGrainId? FromGrainIdInternal(GrainId id) method ThrowNotLegacyGrainId (line 245) | private static LegacyGrainId ThrowNotLegacyGrainId(GrainId id) method FindOrCreateGrainId (line 250) | private static LegacyGrainId FindOrCreateGrainId(UniqueKey key) method Equals (line 255) | public bool Equals(LegacyGrainId? other) method Equals (line 260) | public override bool Equals(object? obj) method GetHashCode (line 267) | public override int GetHashCode() method GetUniformHashCode (line 277) | public uint GetUniformHashCode() method ToString (line 282) | public override string ToString() method ToDetailedString (line 288) | internal string ToDetailedString() method ToStringImpl (line 294) | private string ToStringImpl(bool detailed) method IsLegacyGrainType (line 335) | public static bool IsLegacyGrainType(Type type) method IsLegacyKeyExtGrainType (line 344) | public static bool IsLegacyKeyExtGrainType(Type type) method ToParsableString (line 354) | internal string ToParsableString() method FromParsableString (line 366) | internal static LegacyGrainId FromParsableString(string grainId) method FromParsableString (line 376) | internal static LegacyGrainId FromParsableString(ReadOnlySpan gr... method GetHashCode_Modulo (line 384) | public uint GetHashCode_Modulo(uint umod) method CompareTo (line 392) | public int CompareTo(LegacyGrainId? other) FILE: src/Orleans.Core.Abstractions/IDs/Legacy/UniqueKey.cs class UniqueKey (line 9) | [Serializable, GenerateSerializer, Immutable] type Category (line 16) | public enum Category : byte method IsSystemTarget (line 49) | private static bool IsSystemTarget(Category category) method IsKeyExt (line 54) | private static bool IsKeyExt(Category category) method Parse (line 59) | internal static UniqueKey Parse(ReadOnlySpan input) method NewKey (line 83) | internal static UniqueKey NewKey(ulong n0, ulong n1, Category category... method NewKey (line 86) | internal static UniqueKey NewKey(long longKey, Category category = Cat... method NewKey (line 95) | public static UniqueKey NewKey() => new UniqueKey { Guid = Guid.NewGui... method NewKey (line 97) | internal static UniqueKey NewKey(Guid guid) => new UniqueKey { Guid = ... method NewKey (line 99) | internal static UniqueKey NewKey(Guid guid, Category category = Catego... method NewEmptySystemTargetKey (line 108) | internal static UniqueKey NewEmptySystemTargetKey(long typeData) method NewSystemTargetKey (line 111) | public static UniqueKey NewSystemTargetKey(Guid guid, long typeData) method NewSystemTargetKey (line 114) | public static UniqueKey NewSystemTargetKey(short systemId) method NewGrainServiceKey (line 117) | public static UniqueKey NewGrainServiceKey(short key, long typeData) method NewGrainServiceKey (line 120) | public static UniqueKey NewGrainServiceKey(string key, long typeData) method NewKey (line 123) | internal static UniqueKey NewKey(ulong n0, ulong n1, ulong typeCodeDat... method NewKey (line 131) | private static UniqueKey NewKey(ulong typeCodeData, string? keyExt) method ThrowIfIsNotLong (line 142) | private void ThrowIfIsNotLong() method ThrowIfIsSystemTargetKey (line 148) | private static void ThrowIfIsSystemTargetKey(Category category) method ThrowIfHasKeyExt (line 155) | private void ThrowIfHasKeyExt(string methodName) method PrimaryKeyToLong (line 164) | public long PrimaryKeyToLong(out string? extendedKey) method PrimaryKeyToLong (line 172) | public long PrimaryKeyToLong() method PrimaryKeyToGuid (line 179) | public Guid PrimaryKeyToGuid(out string? extendedKey) method PrimaryKeyToGuid (line 185) | public Guid PrimaryKeyToGuid() method Equals (line 191) | public override bool Equals(object? o) => o is UniqueKey key && Equals... method Equals (line 195) | public bool Equals(UniqueKey? other) method CompareTo (line 206) | public int CompareTo(UniqueKey? other) method GetHashCode (line 220) | public override int GetHashCode() method GetUniformHashCode (line 225) | internal uint GetUniformHashCode() method ToByteArray (line 254) | internal ReadOnlySpan ToByteArray() method ToString (line 310) | public override string ToString() method ToHexString (line 315) | internal string ToHexString() method ToGrainKeyString (line 322) | internal string ToGrainKeyString() method GetCategory (line 338) | internal static Category GetCategory(ulong typeCodeData) method GetTypeCodeData (line 343) | private static ulong GetTypeCodeData(Category category, long typeData ... FILE: src/Orleans.Core.Abstractions/IDs/ObserverGrainId.cs type ObserverGrainId (line 8) | internal readonly struct ObserverGrainId : IEquatable, ... method ObserverGrainId (line 18) | private ObserverGrainId(GrainId grainId) method Create (line 37) | public static ObserverGrainId Create(ClientGrainId clientId) => Create... method Create (line 51) | public static ObserverGrainId Create(ClientGrainId clientId, IdSpan sc... method IsObserverGrainId (line 62) | public static bool IsObserverGrainId(GrainId grainId) => grainId.IsCli... method TryParse (line 76) | public static bool TryParse(GrainId grainId, out ObserverGrainId obser... method ConstructGrainId (line 88) | private static GrainId ConstructGrainId(ClientGrainId clientId, IdSpan... method Equals (line 102) | public bool Equals(ObserverGrainId other) => this.GrainId.Equals(other... method Equals (line 105) | public override bool Equals(object? obj) => obj is ObserverGrainId obs... method GetHashCode (line 108) | public override int GetHashCode() => this.GrainId.GetHashCode(); method ToString (line 111) | public override string ToString() => this.GrainId.ToString(); method ToString (line 113) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 115) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method CompareTo (line 119) | public int CompareTo(ObserverGrainId other) => this.GrainId.CompareTo(... FILE: src/Orleans.Core.Abstractions/IDs/SiloAddress.cs class SiloAddress (line 20) | [Serializable, Immutable] method New (line 67) | public static SiloAddress New(IPEndPoint ep, int gen) method New (line 81) | public static SiloAddress New(IPAddress address, int port, int generat... method SiloAddress (line 93) | private SiloAddress(IPEndPoint endpoint, int generation) method AllocateNewGeneration (line 106) | public static int AllocateNewGeneration() method ToParsableString (line 124) | public string ToParsableString() method ToUtf8String (line 136) | internal byte[] ToUtf8String() method FromParsableString (line 173) | public static SiloAddress FromParsableString(string addr) method FromUtf8String (line 195) | public static SiloAddress FromUtf8String(ReadOnlySpan addr) method ThrowInvalidUtf8SiloAddress (line 228) | [DoesNotReturn] method ToString (line 239) | public override string ToString() => $"{this}"; method ToString (line 241) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 243) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method ToStringWithHashCode (line 266) | public string ToStringWithHashCode() => $"{this:H}"; method Equals (line 269) | public override bool Equals(object? obj) => Equals(obj as SiloAddress); method GetHashCode (line 272) | public override int GetHashCode() => Endpoint.GetHashCode() ^ Generation; method GetConsistentHashCode (line 276) | public int GetConsistentHashCode() => hashCodeSet ? hashCode : Calcula... method GetConsistentHashCode (line 280) | internal int GetConsistentHashCode(int seed) method CalculateConsistentHashCode (line 295) | private int CalculateConsistentHashCode() method InternalSetConsistentHashCode (line 311) | internal void InternalSetConsistentHashCode(int hashCode) method GetUniformHashCodes (line 322) | public uint[] GetUniformHashCodes(int numHashes) method GetUniformHashCodesImpl (line 329) | private uint[] GetUniformHashCodesImpl(int numHashes) method Matches (line 370) | internal bool Matches([NotNullWhen(true)] SiloAddress? other) method Equals (line 377) | public bool Equals([NotNullWhen(true)] SiloAddress? other) method IsSameLogicalSilo (line 389) | internal bool IsSameLogicalSilo([NotNullWhen(true)] SiloAddress? other) method IsSuccessorOf (line 401) | public bool IsSuccessorOf(SiloAddress other) => IsSameLogicalSilo(othe... method IsPredecessorOf (line 412) | public bool IsPredecessorOf(SiloAddress other) => IsSameLogicalSilo(ot... method CompareTo (line 415) | public int CompareTo(SiloAddress? other) method CompareIpAddresses (line 437) | private static int CompareIpAddresses(IPAddress one, IPAddress two) class SiloAddressConverter (line 466) | public sealed class SiloAddressConverter : JsonConverter method Read (line 469) | public override SiloAddress? Read(ref Utf8JsonReader reader, Type type... method Write (line 472) | public override void Write(Utf8JsonWriter writer, SiloAddress value, J... FILE: src/Orleans.Core.Abstractions/IDs/SiloAddressCodec.cs class SiloAddressCodec (line 15) | [RegisterSerializer] method WriteField (line 19) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 38) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Core.Abstractions/IDs/StableHash.cs class StableHash (line 10) | public static class StableHash method ComputeHash (line 21) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ComputeHash (line 38) | public static uint ComputeHash(string data) => ComputeHash(BitConverte... FILE: src/Orleans.Core.Abstractions/IDs/SystemTargetGrainId.cs type SystemTargetGrainId (line 12) | [Immutable] method SystemTargetGrainId (line 24) | private SystemTargetGrainId(GrainId grainId) => _grainId = grainId; method Create (line 43) | public static SystemTargetGrainId Create(GrainType kind, SiloAddress a... method Create (line 60) | public static SystemTargetGrainId Create(GrainType kind, SiloAddress a... method IsSystemTargetGrainId (line 85) | public static bool IsSystemTargetGrainId(in GrainId id) => id.Type.AsS... method TryParse (line 99) | public static bool TryParse(GrainId grainId, out SystemTargetGrainId s... method WithSiloAddress (line 120) | public SystemTargetGrainId WithSiloAddress(SiloAddress siloAddress) method GetSiloAddress (line 144) | public SiloAddress GetSiloAddress() method CreateGrainServiceGrainId (line 168) | public static GrainId CreateGrainServiceGrainId(int typeCode, string g... method CreateGrainServiceGrainType (line 181) | internal static GrainType CreateGrainServiceGrainType(int typeCode, st... method CreateGrainServiceGrainId (line 202) | internal static GrainId CreateGrainServiceGrainId(GrainType grainType,... method CreateGrainType (line 214) | public static GrainType CreateGrainType(string name) => GrainType.Crea... method Equals (line 217) | public bool Equals(SystemTargetGrainId other) => _grainId.Equals(other... method Equals (line 220) | public override bool Equals(object? obj) => obj is SystemTargetGrainId... method GetHashCode (line 223) | public override int GetHashCode() => _grainId.GetHashCode(); method ToString (line 226) | public override string ToString() => _grainId.ToString(); method ToString (line 228) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 230) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method CompareTo (line 234) | public int CompareTo(SystemTargetGrainId other) => _grainId.CompareTo(... FILE: src/Orleans.Core.Abstractions/Lifecycle/IGrainLifecycle.cs type IGrainLifecycle (line 16) | public interface IGrainLifecycle : ILifecycleObservable method AddMigrationParticipant (line 22) | void AddMigrationParticipant(IGrainMigrationParticipant participant); method RemoveMigrationParticipant (line 28) | void RemoveMigrationParticipant(IGrainMigrationParticipant participant); type IGrainMigrationParticipant (line 31) | public interface IGrainMigrationParticipant method OnDehydrate (line 38) | void OnDehydrate(IDehydrationContext dehydrationContext); method OnRehydrate (line 45) | void OnRehydrate(IRehydrationContext rehydrationContext); type IDehydrationContext (line 51) | public interface IDehydrationContext method AddBytes (line 63) | void AddBytes(string key, ReadOnlySpan value); method AddBytes (line 71) | void AddBytes(string key, Action> valueWrite... method TryAddValue (line 80) | bool TryAddValue(string key, T? value); type IRehydrationContext (line 86) | public interface IRehydrationContext method TryGetBytes (line 99) | bool TryGetBytes(string key, out ReadOnlySequence value); method TryGetValue (line 109) | bool TryGetValue(string key, [NotNullWhen(true)] out T? value); FILE: src/Orleans.Core.Abstractions/Lifecycle/ILifecycleObservable.cs type ILifecycleObservable (line 10) | public interface ILifecycleObservable method Subscribe (line 19) | IDisposable Subscribe(string observerName, int stage, ILifecycleObserv... FILE: src/Orleans.Core.Abstractions/Lifecycle/ILifecycleObserver.cs type ILifecycleObserver (line 9) | public interface ILifecycleObserver method OnStart (line 20) | Task OnStart(CancellationToken cancellationToken = default); method OnStop (line 31) | Task OnStop(CancellationToken cancellationToken = default); FILE: src/Orleans.Core.Abstractions/Lifecycle/ILifecycleParticipant.cs type ILifecycleParticipant (line 11) | public interface ILifecycleParticipant method Participate (line 20) | void Participate(TLifecycleObservable lifecycle); FILE: src/Orleans.Core.Abstractions/Lifecycle/ILifecycleSubject.cs type ILifecycleSubject (line 7) | public interface ILifecycleSubject : ILifecycleObservable, ILifecycleObs... FILE: src/Orleans.Core.Abstractions/Lifecycle/LifecycleExtensions.cs class LifecycleExtensions (line 10) | public static class LifecycleExtensions method Subscribe (line 21) | public static IDisposable Subscribe(this ILifecycleObservable observab... method Subscribe (line 49) | public static IDisposable Subscribe(this ILifecycleObservable observab... method Subscribe (line 64) | public static IDisposable Subscribe(this ILifecycleObservab... method Subscribe (line 80) | public static IDisposable Subscribe(this ILifecycleObservab... method Subscribe (line 95) | public static IDisposable Subscribe(this ILifecycleObservab... method Subscribe (line 107) | public static IDisposable Subscribe(this ILifecycleObservable observab... class Observer (line 112) | private class Observer : ILifecycleObserver method Observer (line 117) | public Observer(Func onStart, Func this.onStart(ct); method OnStop (line 124) | public Task OnStop(CancellationToken ct) => this.onStop(ct); class StartupObserver (line 127) | private sealed class StartupObserver : ILifecycleObserver method StartupObserver (line 132) | private StartupObserver(ILifecycleObservable observable, string obse... method Create (line 138) | public static IDisposable Create(ILifecycleObservable observable, st... method OnStart (line 144) | public Task OnStart(CancellationToken ct) method OnStop (line 151) | public Task OnStop(CancellationToken ct) => Task.CompletedTask; method GetTypeName (line 154) | private static string GetTypeName(Type type) => type.FullName ?? type.... FILE: src/Orleans.Core.Abstractions/Logging/ErrorCodes.cs type ErrorCode (line 7) | public enum ErrorCode FILE: src/Orleans.Core.Abstractions/Logging/LogFormatter.cs class LogFormatter (line 12) | public static class LogFormatter method PrintDate (line 24) | public static string PrintDate(DateTime date) method ParseDate (line 34) | public static DateTime ParseDate(string dateStr) method PrintTime (line 44) | public static string PrintTime(DateTime date) method PrintException (line 54) | public static string PrintException(Exception exception) method SetExceptionDecoder (line 69) | public static void SetExceptionDecoder(Type exceptionType, Func va... method ToDetailedString (line 38) | public string ToDetailedString() class WellKnownGrainInterfaceProperties (line 63) | public static class WellKnownGrainInterfaceProperties type IGrainInterfacePropertiesProvider (line 85) | public interface IGrainInterfacePropertiesProvider method Populate (line 99) | void Populate(Type interfaceType, GrainInterfaceType grainInterfaceTyp... type IGrainInterfacePropertiesProviderAttribute (line 105) | public interface IGrainInterfacePropertiesProviderAttribute method Populate (line 119) | void Populate(IServiceProvider services, Type interfaceType, Dictionar... class AttributeGrainInterfacePropertiesProvider (line 125) | internal sealed class AttributeGrainInterfacePropertiesProvider : IGrain... method AttributeGrainInterfacePropertiesProvider (line 135) | public AttributeGrainInterfacePropertiesProvider(IServiceProvider serv... method Populate (line 141) | public void Populate(Type interfaceType, GrainInterfaceType grainInter... class DefaultGrainTypeAttribute (line 156) | [AttributeUsage(AttributeTargets.Interface, AllowMultiple = false)] method DefaultGrainTypeAttribute (line 167) | public DefaultGrainTypeAttribute(string grainType) method Populate (line 173) | void IGrainInterfacePropertiesProviderAttribute.Populate(IServiceProvi... FILE: src/Orleans.Core.Abstractions/Manifest/GrainManifest.cs class GrainManifest (line 10) | [Serializable, GenerateSerializer, Immutable] method GrainManifest (line 22) | public GrainManifest( FILE: src/Orleans.Core.Abstractions/Manifest/GrainProperties.cs class GrainProperties (line 13) | [Serializable, GenerateSerializer, Immutable] method GrainProperties (line 22) | public GrainProperties(ImmutableDictionary values) method ToDetailedString (line 39) | public string ToDetailedString() class WellKnownGrainTypeProperties (line 64) | public static class WellKnownGrainTypeProperties type IGrainPropertiesProvider (line 180) | public interface IGrainPropertiesProvider method Populate (line 194) | void Populate(Type grainClass, GrainType grainType, Dictionary> GetBindings(IServiceProvider s... class AttributeGrainBindingsProvider (line 277) | public sealed class AttributeGrainBindingsProvider : IGrainPropertiesPro... method AttributeGrainBindingsProvider (line 292) | public AttributeGrainBindingsProvider(IServiceProvider serviceProvider) method Populate (line 298) | public void Populate(Type grainClass, GrainType grainType, Dictionary<... FILE: src/Orleans.Core.Abstractions/Manifest/IGrainTypeProvider.cs type IGrainTypeProvider (line 10) | public interface IGrainTypeProvider method TryGetGrainType (line 15) | bool TryGetGrainType(Type type, out GrainType grainType); class AttributeGrainTypeProvider (line 22) | public class AttributeGrainTypeProvider : IGrainTypeProvider method AttributeGrainTypeProvider (line 32) | public AttributeGrainTypeProvider(IServiceProvider serviceProvider) method TryGetGrainType (line 38) | public bool TryGetGrainType(Type grainClass, out GrainType grainType) type IGrainTypeProviderAttribute (line 58) | public interface IGrainTypeProviderAttribute method GetGrainType (line 69) | GrainType GetGrainType(IServiceProvider services, Type type); class GrainTypeAttribute (line 78) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method GrainTypeAttribute (line 92) | public GrainTypeAttribute(string grainType) method GetGrainType (line 98) | public GrainType GetGrainType(IServiceProvider services, Type type) =>... FILE: src/Orleans.Core.Abstractions/Manifest/MajorMinorVersion.cs type MajorMinorVersion (line 8) | [Serializable, GenerateSerializer, Immutable] method MajorMinorVersion (line 16) | public MajorMinorVersion(long majorVersion, long minorVersion) method CompareTo (line 45) | public int CompareTo(MajorMinorVersion other) method Equals (line 54) | public bool Equals(MajorMinorVersion other) => Major == other.Major &&... method Equals (line 57) | public override bool Equals(object? obj) => obj is MajorMinorVersion o... method GetHashCode (line 60) | public override int GetHashCode() => HashCode.Combine(Major, Minor); method Parse (line 71) | public static MajorMinorVersion Parse(string value) method ToString (line 81) | public override string ToString() => $"{Major}.{Minor}"; FILE: src/Orleans.Core.Abstractions/Placement/ActivationCountBasedPlacement.cs class ActivationCountBasedPlacement (line 22) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Placement/ClientObserversPlacement.cs class ClientObserversPlacement (line 3) | [GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Placement/HashBasedPlacement.cs class HashBasedPlacement (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Placement/PlacementAttribute.cs class PlacementAttribute (line 12) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method PlacementAttribute (line 17) | protected PlacementAttribute(PlacementStrategy placement) method Populate (line 25) | public virtual void Populate(IServiceProvider services, Type grainClas... class RandomPlacementAttribute (line 38) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method RandomPlacementAttribute (line 41) | public RandomPlacementAttribute() : class HashBasedPlacementAttribute (line 51) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method HashBasedPlacementAttribute (line 54) | public HashBasedPlacementAttribute() : class PreferLocalPlacementAttribute (line 63) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method PreferLocalPlacementAttribute (line 69) | public PreferLocalPlacementAttribute() class ActivationCountBasedPlacementAttribute (line 80) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method ActivationCountBasedPlacementAttribute (line 86) | public ActivationCountBasedPlacementAttribute() class SiloRoleBasedPlacementAttribute (line 96) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method SiloRoleBasedPlacementAttribute (line 99) | public SiloRoleBasedPlacementAttribute() : class ResourceOptimizedPlacementAttribute (line 108) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method ResourceOptimizedPlacementAttribute (line 111) | public ResourceOptimizedPlacementAttribute() : class ImmovableAttribute (line 120) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method Populate (line 130) | public void Populate(IServiceProvider services, Type grainClass, Grain... type ImmovableKind (line 137) | [Flags] FILE: src/Orleans.Core.Abstractions/Placement/PlacementFilterAttribute.cs class PlacementFilterAttribute (line 11) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] method PlacementFilterAttribute (line 19) | protected PlacementFilterAttribute(PlacementFilterStrategy placement) method Populate (line 26) | public virtual void Populate(IServiceProvider services, Type grainClas... FILE: src/Orleans.Core.Abstractions/Placement/PlacementFilterStrategy.cs class PlacementFilterStrategy (line 12) | public abstract class PlacementFilterStrategy method PlacementFilterStrategy (line 16) | protected PlacementFilterStrategy(int order) method Initialize (line 27) | public void Initialize(GrainProperties properties) method AdditionalInitialize (line 40) | public virtual void AdditionalInitialize(GrainProperties properties) method PopulateGrainProperties (line 51) | public void PopulateGrainProperties(IServiceProvider services, Type gr... method GetPlacementFilterGrainProperty (line 71) | protected string? GetPlacementFilterGrainProperty(string key, GrainPro... method GetAdditionalGrainProperties (line 77) | protected virtual IEnumerable> GetAdditio... FILE: src/Orleans.Core.Abstractions/Placement/PlacementStrategy.cs class PlacementStrategy (line 16) | [Serializable, SerializerTransparent] method Initialize (line 31) | public virtual void Initialize(GrainProperties properties) method PopulateGrainProperties (line 42) | public virtual void PopulateGrainProperties(IServiceProvider services,... FILE: src/Orleans.Core.Abstractions/Placement/PreferLocalPlacement.cs class PreferLocalPlacement (line 13) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Placement/RandomPlacement.cs class RandomPlacement (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Placement/ResourceOptimizedPlacement.cs class ResourceOptimizedPlacement (line 16) | [GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Placement/SiloRoleBasedPlacement.cs class SiloRoleBasedPlacement (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Placement/StatelessWorkerPlacement.cs class StatelessWorkerPlacement (line 11) | [Serializable, GenerateSerializer] method StatelessWorkerPlacement (line 41) | internal StatelessWorkerPlacement(int maxLocal) : this(maxLocal, true) method StatelessWorkerPlacement (line 54) | internal StatelessWorkerPlacement(int maxLocal, bool removeIdleWorkers) method StatelessWorkerPlacement (line 65) | public StatelessWorkerPlacement() : this(-1) method ToString (line 70) | public override string ToString() => $"StatelessWorkerPlacement(MaxLoc... method Initialize (line 73) | public override void Initialize(GrainProperties properties) method PopulateGrainProperties (line 97) | public override void PopulateGrainProperties(IServiceProvider services... FILE: src/Orleans.Core.Abstractions/Placement/SystemTargetPlacementStrategy.cs class SystemTargetPlacementStrategy (line 6) | [GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: src/Orleans.Core.Abstractions/Providers/IProviderBuilder.cs type IProviderBuilder (line 9) | public interface IProviderBuilder method Configure (line 17) | void Configure(TBuilder builder, string? name, IConfigurationSection c... FILE: src/Orleans.Core.Abstractions/Providers/ProviderConstants.cs class ProviderConstants (line 6) | public static class ProviderConstants FILE: src/Orleans.Core.Abstractions/Providers/ProviderGrainAttributes.cs class StorageProviderAttribute (line 13) | [AttributeUsage(AttributeTargets.Class)] method StorageProviderAttribute (line 24) | public StorageProviderAttribute() class LogConsistencyProviderAttribute (line 41) | [AttributeUsage(AttributeTargets.Class)] method LogConsistencyProviderAttribute (line 52) | public LogConsistencyProviderAttribute() FILE: src/Orleans.Core.Abstractions/Runtime/AsyncEnumerableRequest.cs type EnumerationResult (line 21) | [GenerateSerializer] class EnumeratorResultExtensions (line 70) | internal static class EnumeratorResultExtensions method IsTerminated (line 73) | public static bool IsTerminated(this EnumerationResult value) => ((int... method IsActive (line 74) | public static bool IsActive(this EnumerationResult value) => ((int)val... type IAsyncEnumerableGrainExtension (line 80) | public interface IAsyncEnumerableGrainExtension : IGrainExtension method StartEnumeration (line 89) | [AlwaysInterleave] method StartEnumeration (line 101) | [AlwaysInterleave] method MoveNext (line 110) | [AlwaysInterleave] method MoveNext (line 121) | [AlwaysInterleave] method DisposeAsync (line 129) | [AlwaysInterleave] type IAsyncEnumerableRequest (line 136) | public interface IAsyncEnumerableRequest : IRequest method InvokeImplementation (line 147) | IAsyncEnumerable InvokeImplementation(); class AsyncEnumerableRequest (line 154) | [GenerateSerializer] method GetAsyncEnumerator (line 170) | public IAsyncEnumerator GetAsyncEnumerator(CancellationToken cancel... method InitializeRequest (line 173) | public IAsyncEnumerable InitializeRequest(GrainReference targetGrai... method Invoke (line 180) | public override ValueTask Invoke() => throw new NotImplement... method InvokeImplementation (line 183) | public IAsyncEnumerable InvokeImplementation() => InvokeInner(); method InvokeInner (line 186) | protected abstract IAsyncEnumerable InvokeInner(); class AsyncEnumeratorProxy (line 192) | internal sealed class AsyncEnumeratorProxy : IAsyncEnumerator method AsyncEnumeratorProxy (line 213) | public AsyncEnumeratorProxy(AsyncEnumerableRequest request, Cancell... method DisposeAsync (line 266) | public async ValueTask DisposeAsync() method MoveNextAsync (line 303) | public async ValueTask MoveNextAsync() class AsyncEnumerableExtensions (line 397) | public static class AsyncEnumerableExtensions method WithBatchSize (line 406) | public static IAsyncEnumerable WithBatchSize(this IAsyncEnumerab... class EnumerationAbortedException (line 421) | [GenerateSerializer] method EnumerationAbortedException (line 427) | public EnumerationAbortedException() method EnumerationAbortedException (line 434) | public EnumerationAbortedException(string message) : base(message) method EnumerationAbortedException (line 441) | public EnumerationAbortedException(string message, Exception innerExce... method EnumerationAbortedException (line 448) | [Obsolete] FILE: src/Orleans.Core.Abstractions/Runtime/GrainContextComponentExtensions.cs class GrainContextComponentExtensions (line 9) | public static class GrainContextComponentExtensions method GetGrainExtension (line 23) | public static TComponent GetGrainExtension(this IGrainCont... FILE: src/Orleans.Core.Abstractions/Runtime/GrainLifecycleStage.cs class GrainLifecycleStage (line 10) | public static class GrainLifecycleStage FILE: src/Orleans.Core.Abstractions/Runtime/GrainReference.cs class GrainReferenceShared (line 21) | public class GrainReferenceShared method GrainReferenceShared (line 23) | public GrainReferenceShared( class GrainReferenceCodec (line 87) | [RegisterSerializer] method GrainReferenceCodec (line 97) | public GrainReferenceCodec(IGrainFactory grainFactory, IValueSerialize... method ConvertFromSurrogate (line 104) | public override IAddressable ConvertFromSurrogate(ref GrainReferenceSu... method ConvertToSurrogate (line 110) | public override void ConvertToSurrogate(IAddressable value, ref GrainR... class GrainReferenceCopier (line 118) | [RegisterCopier] class GrainReferenceCopierProvider (line 124) | internal class GrainReferenceCopierProvider : ISpecializableCopier method GetSpecializedCopier (line 128) | public IDeepCopier GetSpecializedCopier(Type type) => (IDeepCopier)Act... method IsSupportedType (line 131) | public bool IsSupportedType(Type type) => typeof(IAddressable).IsAssig... class TypedGrainReferenceCopier (line 138) | internal class TypedGrainReferenceCopier : IDeepCopier (IFieldCodec)Acti... method IsSupportedType (line 173) | public bool IsSupportedType(Type type) => typeof(IAddressable).IsAssig... method ThrowGrainObserverInvalidException (line 179) | internal static void ThrowGrainObserverInvalidException(IGrainObserver... class TypedGrainReferenceCodec (line 187) | internal class TypedGrainReferenceCodec : GeneralizedReferenceTypeSur... method TypedGrainReferenceCodec (line 197) | public TypedGrainReferenceCodec(IGrainFactory grainFactory, IValueSeri... method ConvertFromSurrogate (line 203) | public override T ConvertFromSurrogate(ref GrainReferenceSurrogate sur... method ConvertToSurrogate (line 209) | public override void ConvertToSurrogate(T value, ref GrainReferenceSur... type GrainReferenceSurrogate (line 230) | [GenerateSerializer] class GrainReference (line 249) | [Alias("GrainRef")] method GrainReference (line 307) | protected GrainReference(GrainReferenceShared shared, IdSpan key) method FromGrainId (line 316) | internal static GrainReference FromGrainId(GrainReferenceShared shared... method Cast (line 325) | public virtual TGrainInterface Cast() method Equals (line 335) | public override bool Equals(object? obj) method Equals (line 341) | public bool Equals(GrainReference? other) => other is not null && this... method GetHashCode (line 344) | public override int GetHashCode() => this.GrainId.GetHashCode(); method GetUniformHashCode (line 352) | public uint GetUniformHashCode() method ToString (line 397) | public sealed override string ToString() => $"GrainReference:{GrainId}... method ToString (line 399) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 401) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method GetInvokable (line 404) | protected TInvokable GetInvokable() => ActivatorUtilities.... method InvokeAsync (line 412) | protected ValueTask InvokeAsync(IRequest methodDescription) method InvokeAsync (line 422) | protected ValueTask InvokeAsync(IRequest methodDescription) method Invoke (line 431) | protected void Invoke(IRequest methodDescription) type IRequest (line 440) | public interface IRequest : IInvokable method AddInvokeMethodOptions (line 453) | void AddInvokeMethodOptions(InvokeMethodOptions options); method ToString (line 459) | public static string ToString(IRequest request) method ToMethodCallString (line 511) | public static string ToMethodCallString(IRequest request) class RequestBase (line 537) | [SuppressReferenceTracking] method GetArgumentCount (line 548) | public virtual int GetArgumentCount() => 0; method AddInvokeMethodOptions (line 556) | public void AddInvokeMethodOptions(InvokeMethodOptions options) method Invoke (line 562) | public abstract ValueTask Invoke(); method GetTarget (line 565) | public abstract object GetTarget(); method SetTarget (line 568) | public abstract void SetTarget(ITargetHolder holder); method GetArgument (line 571) | public virtual object GetArgument(int index) => throw new ArgumentOutO... method SetArgument (line 574) | public virtual void SetArgument(int index, object value) => throw new ... method Dispose (line 577) | public abstract void Dispose(); method GetMethodName (line 580) | public abstract string GetMethodName(); method GetInterfaceName (line 583) | public abstract string GetInterfaceName(); method GetActivityName (line 586) | public abstract string GetActivityName(); method GetInterfaceType (line 589) | public abstract Type GetInterfaceType(); method GetMethod (line 592) | public abstract MethodInfo GetMethod(); method ToString (line 595) | public override string ToString() => IRequest.ToString(this); method GetDefaultResponseTimeout (line 598) | public virtual TimeSpan? GetDefaultResponseTimeout() => null; method TryCancel (line 600) | public virtual bool TryCancel() => false; method GetCancellationToken (line 602) | public virtual CancellationToken GetCancellationToken() => default; class Request (line 610) | [SerializerTransparent] method Invoke (line 613) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 632) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 646) | protected abstract ValueTask InvokeInner(); method Invoke (line 659) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 677) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 694) | protected abstract ValueTask InvokeInner(); class Request (line 655) | [SerializerTransparent] method Invoke (line 613) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 632) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 646) | protected abstract ValueTask InvokeInner(); method Invoke (line 659) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 677) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 694) | protected abstract ValueTask InvokeInner(); class TaskRequest (line 703) | [SerializerTransparent] method Invoke (line 707) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 725) | private static async ValueTask CompleteInvokeAsync(Task InvokeInner(); method Invoke (line 752) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 771) | private static async ValueTask CompleteInvokeAsync(Task resu... method InvokeInner (line 788) | protected abstract Task InvokeInner(); class TaskRequest (line 748) | [SerializerTransparent] method Invoke (line 707) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 725) | private static async ValueTask CompleteInvokeAsync(Task InvokeInner(); method Invoke (line 752) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 771) | private static async ValueTask CompleteInvokeAsync(Task resu... method InvokeInner (line 788) | protected abstract Task InvokeInner(); class VoidRequest (line 794) | [SerializerTransparent] method VoidRequest (line 797) | protected VoidRequest() method Invoke (line 804) | public sealed override ValueTask Invoke() method InvokeInner (line 820) | protected abstract void InvokeInner(); FILE: src/Orleans.Core.Abstractions/Runtime/GrainReferenceNotBoundException.cs class GrainReferenceNotBoundException (line 9) | [Serializable, GenerateSerializer] method GrainReferenceNotBoundException (line 16) | internal GrainReferenceNotBoundException(GrainReference grainReference... method GrainReferenceNotBoundException (line 22) | internal GrainReferenceNotBoundException(string message) : base(messag... method GrainReferenceNotBoundException (line 29) | internal GrainReferenceNotBoundException(string message, Exception inn... method GrainReferenceNotBoundException (line 36) | [Obsolete] method CreateMessage (line 42) | private static string CreateMessage(GrainReference grainReference) FILE: src/Orleans.Core.Abstractions/Runtime/IAddressable.cs type IAddressable (line 6) | [GenerateMethodSerializers(typeof(GrainReference))] FILE: src/Orleans.Core.Abstractions/Runtime/IGrainCancellationTokenRuntime.cs type IGrainCancellationTokenRuntime (line 11) | internal interface IGrainCancellationTokenRuntime method Cancel (line 20) | Task Cancel(Guid id, CancellationTokenSource tokenSource, ConcurrentDi... FILE: src/Orleans.Core.Abstractions/Runtime/IGrainExtension.cs type IGrainExtension (line 6) | [GenerateMethodSerializers(typeof(GrainReference), isExtension: true)] FILE: src/Orleans.Core.Abstractions/Runtime/IGrainReferenceRuntime.cs type IGrainReferenceRuntime (line 12) | public interface IGrainReferenceRuntime method InvokeMethodAsync (line 22) | ValueTask InvokeMethodAsync(GrainReference reference, IInvokable... method InvokeMethodAsync (line 31) | ValueTask InvokeMethodAsync(GrainReference reference, IInvokable reque... method InvokeMethod (line 39) | void InvokeMethod(GrainReference reference, IInvokable request, Invoke... method Cast (line 47) | object Cast(IAddressable grain, Type interfaceType); FILE: src/Orleans.Core.Abstractions/Runtime/IGrainRuntime.cs type IGrainRuntime (line 10) | public interface IGrainRuntime method DeactivateOnIdle (line 47) | void DeactivateOnIdle(IGrainContext grainContext); method DelayDeactivation (line 54) | void DelayDeactivation(IGrainContext grainContext, TimeSpan timeSpan); method GetStorage (line 62) | IStorage GetStorage(IGrainContext grainConte... FILE: src/Orleans.Core.Abstractions/Runtime/IGrainTimer.cs type IGrainTimer (line 9) | public interface IGrainTimer : IDisposable method Change (line 22) | void Change(TimeSpan dueTime, TimeSpan period); FILE: src/Orleans.Core.Abstractions/Runtime/MembershipVersion.cs type MembershipVersion (line 10) | [Serializable, GenerateSerializer, Immutable] method MembershipVersion (line 18) | public MembershipVersion(long version) method CompareTo (line 35) | public int CompareTo(MembershipVersion other) => this.Value.CompareTo(... method Equals (line 38) | public bool Equals(MembershipVersion other) => this.Value == other.Value; method Equals (line 41) | public override bool Equals(object? obj) => obj is MembershipVersion o... method GetHashCode (line 44) | public override int GetHashCode() => this.Value.GetHashCode(); method ToString (line 47) | public override string ToString() => Value != MinValue.Value ? $"{Valu... class MembershipVersionConverter (line 101) | public sealed class MembershipVersionConverter : JsonConverter new(R... method Get (line 68) | public static object? Get(string key) method Set (line 86) | public static void Set(string key, object value) method Remove (line 122) | public static bool Remove(string key) method Clear (line 155) | public static void Clear() type ContextProperties (line 174) | internal readonly struct ContextProperties type ReentrancySection (line 180) | public readonly struct ReentrancySection : IDisposable method ReentrancySection (line 185) | public ReentrancySection(Guid originalReentrancyId, Guid newReentran... method Dispose (line 202) | public void Dispose() FILE: src/Orleans.Core.Abstractions/Runtime/RuntimeContext.cs class RuntimeContext (line 9) | internal static class RuntimeContext method SetExecutionContext (line 27) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ResetExecutionContext (line 38) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Core.Abstractions/Services/IGrainService.cs type IGrainService (line 6) | public interface IGrainService : ISystemTarget FILE: src/Orleans.Core.Abstractions/Services/IGrainServiceClient.cs type IGrainServiceClient (line 7) | public interface IGrainServiceClient FILE: src/Orleans.Core.Abstractions/Statistics/EnvironmentStatisticExtensions.cs class EnvironmentStatisticExtensions (line 9) | internal static class EnvironmentStatisticExtensions method IsValid (line 11) | public static bool IsValid(this EnvironmentStatistics statistics) FILE: src/Orleans.Core.Abstractions/Statistics/IAppEnvironmentStatistics.cs type IAppEnvironmentStatistics (line 8) | [Obsolete($"This functionality will be removed, use {nameof(IEnvironment... FILE: src/Orleans.Core.Abstractions/Statistics/IEnvironmentStatisticsProvider.cs type IEnvironmentStatisticsProvider (line 11) | public interface IEnvironmentStatisticsProvider method GetEnvironmentStatistics (line 16) | EnvironmentStatistics GetEnvironmentStatistics(); type EnvironmentStatistics (line 25) | [Immutable] method FormatBytes (line 184) | private static string FormatBytes(long bytes) method ToString (line 198) | public override string ToString() method EnvironmentStatistics (line 204) | internal EnvironmentStatistics( FILE: src/Orleans.Core.Abstractions/Statistics/IHostEnvironmentStatistics.cs type IHostEnvironmentStatistics (line 9) | [Obsolete($"This functionality will be removed, use {nameof(IEnvironment... FILE: src/Orleans.Core.Abstractions/SystemTargetInterfaces/ISystemTarget.cs type ISystemTarget (line 12) | public interface ISystemTarget : IAddressable FILE: src/Orleans.Core.Abstractions/SystemTargetInterfaces/ISystemTargetBase.cs type ISystemTargetBase (line 8) | internal interface ISystemTargetBase : IGrainContext FILE: src/Orleans.Core.Abstractions/SystemTargetInterfaces/IVersionManager.cs type IVersionManager (line 11) | public interface IVersionManager method SetCompatibilityStrategy (line 18) | Task SetCompatibilityStrategy(CompatibilityStrategy strategy); method SetSelectorStrategy (line 25) | Task SetSelectorStrategy(VersionSelectorStrategy strategy); method SetCompatibilityStrategy (line 33) | Task SetCompatibilityStrategy(GrainInterfaceType interfaceType, Compat... method SetSelectorStrategy (line 41) | Task SetSelectorStrategy(GrainInterfaceType interfaceType, VersionSele... FILE: src/Orleans.Core.Abstractions/Timers/GrainTimerCreationOptions.cs type GrainTimerCreationOptions (line 11) | public readonly struct GrainTimerCreationOptions() method GrainTimerCreationOptions (line 25) | [SetsRequiredMembers] FILE: src/Orleans.Core.Abstractions/Timers/ITimerRegistry.cs type ITimerRegistry (line 11) | public interface ITimerRegistry method RegisterTimer (line 31) | [Obsolete("Use 'RegisterGrainTimer(grainContext, callback, state, new(... method RegisterGrainTimer (line 37) | IGrainTimer RegisterGrainTimer(IGrainContext grainContext, Fun... FILE: src/Orleans.Core.Abstractions/Utils/Interner.cs class InternerConstants (line 10) | internal static class InternerConstants class Interner (line 52) | internal sealed class Interner : IDisposable method Interner (line 65) | public Interner(int initialSize = InternerConstants.SIZE_SMALL) method FindOrCreate (line 84) | public TValue FindOrCreate(TKey key, Func creatorFunc) method FindOrCreate (line 114) | public TValue FindOrCreate(TKey key, Func _value = value; method ToString (line 13) | public override string ToString() => $"{this}"; method ToString (line 14) | public string ToString(string? format, IFormatProvider? formatProvider... method TryFormat (line 16) | public bool TryFormat(Span destination, out int charsWritten, Re... type SpanFormattableIPAddress (line 30) | internal readonly struct SpanFormattableIPAddress : ISpanFormattable method SpanFormattableIPAddress (line 34) | public SpanFormattableIPAddress(IPAddress value) => _value = value; method ToString (line 36) | public override string ToString() => _value.ToString(); method ToString (line 37) | public string ToString(string? format, IFormatProvider? formatProvider... method TryFormat (line 39) | public bool TryFormat(Span destination, out int charsWritten, Re... FILE: src/Orleans.Core.Abstractions/Utils/Utils.cs class Utils (line 14) | public static partial class Utils method EnumerableToString (line 26) | public static string EnumerableToString(IEnumerable? collection,... method DictionaryToString (line 81) | public static string DictionaryToString(ICollection ticks / TimeSpan... method AverageTicksToMilliSeconds (line 124) | public static float AverageTicksToMilliSeconds(float ticks) => ticks /... method ToIPEndPoint (line 131) | public static System.Net.IPEndPoint? ToIPEndPoint(this Uri uri) => uri... method ToGatewayAddress (line 141) | public static SiloAddress? ToGatewayAddress(this Uri uri) => uri.Schem... method ToGatewayUri (line 152) | public static Uri ToGatewayUri(this System.Net.IPEndPoint ep) => new($... method ToGatewayUri (line 159) | public static Uri ToGatewayUri(this SiloAddress address) => new($"gwy.... method SafeExecute (line 161) | public static void SafeExecute(Action action) method SafeExecute (line 170) | public static void SafeExecute(Action action, ILogger? logger = null, ... method SafeExecuteAsync (line 183) | public static async Task SafeExecuteAsync(Task task) method LogIgnoredException (line 192) | internal static void LogIgnoredException(ILogger logger, Exception exc... method BatchIEnumerable (line 210) | public static IEnumerable> BatchIEnumerable(this IEnumerabl... method GetStackTrace (line 229) | [MethodImpl(MethodImplOptions.NoInlining)] type ExceptionTypeLogValue (line 236) | private readonly struct ExceptionTypeLogValue(Exception exc) method ToString (line 238) | public override string? ToString() => exc.GetType().FullName; method LogWarningIgnoringException (line 241) | [LoggerMessage( FILE: src/Orleans.Core.Abstractions/Versions/Compatibility/AllVersionsCompatible.cs class AllVersionsCompatible (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Versions/Compatibility/BackwardCompatible.cs class BackwardCompatible (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Versions/Compatibility/ICompatibilityDirector.cs type ICompatibilityDirector (line 8) | public interface ICompatibilityDirector method IsCompatible (line 16) | bool IsCompatible(ushort requestedVersion, ushort currentVersion); class CompatibilityStrategy (line 22) | [Serializable, SerializerTransparent] FILE: src/Orleans.Core.Abstractions/Versions/Compatibility/StrictVersionCompatible.cs class StrictVersionCompatible (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Versions/IVersionStore.cs type IVersionStore (line 12) | public interface IVersionStore : IVersionManager method GetCompatibilityStrategies (line 23) | Task> GetCompati... method GetSelectorStrategies (line 29) | Task> GetSelec... method GetCompatibilityStrategy (line 35) | Task GetCompatibilityStrategy(); method GetSelectorStrategy (line 41) | Task GetSelectorStrategy(); FILE: src/Orleans.Core.Abstractions/Versions/Selector/AllCompatibleVersions.cs class AllCompatibleVersions (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Versions/Selector/IVersionSelector.cs type IVersionSelector (line 9) | public interface IVersionSelector method GetSuitableVersion (line 18) | ushort[] GetSuitableVersion(ushort requestedVersion, ushort[] availabl... class VersionSelectorStrategy (line 24) | [Serializable, SerializerTransparent] FILE: src/Orleans.Core.Abstractions/Versions/Selector/LatestVersion.cs class LatestVersion (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core.Abstractions/Versions/Selector/MinimumVersion.cs class MinimumVersion (line 8) | [Serializable, GenerateSerializer, Immutable, SuppressReferenceTracking] FILE: src/Orleans.Core/Async/AsyncExecutorWithRetries.cs class AsyncExecutorWithRetries (line 13) | public static class AsyncExecutorWithRetries method ExecuteWithRetries (line 41) | public static Task ExecuteWithRetries( method ExecuteWithRetries (line 82) | public static Task ExecuteWithRetries( method ExecuteWithRetries (line 137) | public static Task ExecuteWithRetries( method ExecuteWithRetriesHelper (line 199) | private static async Task ExecuteWithRetriesHelper( type IBackoffProvider (line 293) | public interface IBackoffProvider method Next (line 300) | TimeSpan Next(int attempt); class FixedBackoff (line 306) | public class FixedBackoff : IBackoffProvider method FixedBackoff (line 316) | public FixedBackoff(TimeSpan delay) method Next (line 322) | public TimeSpan Next(int attempt) class ExponentialBackoff (line 333) | internal class ExponentialBackoff : IBackoffProvider method ExponentialBackoff (line 354) | public ExponentialBackoff(TimeSpan minDelay, TimeSpan maxDelay, TimeSp... method Next (line 367) | public TimeSpan Next(int attempt) FILE: src/Orleans.Core/Async/AsyncLock.cs class AsyncLock (line 47) | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA... method AsyncLock (line 55) | public AsyncLock() method LockAsync (line 64) | public ValueTask LockAsync() class LockReleaser (line 83) | private class LockReleaser : IDisposable method LockReleaser (line 87) | internal LockReleaser(AsyncLock target) method Dispose (line 92) | public void Dispose() FILE: src/Orleans.Core/Async/AsyncSerialExecutor.cs class AsyncSerialExecutor (line 15) | public class AsyncSerialExecutor class InterlockedExchangeLock (line 23) | private class InterlockedExchangeLock method TryGetLock (line 35) | public bool TryGetLock() method ReleaseLock (line 43) | public void ReleaseLock() method AddNext (line 56) | public Task AddNext(Func> func) method ExecuteNext (line 69) | private async Task ExecuteNext() method AddNext (line 122) | public Task AddNext(Func func) method Wrap (line 127) | private static async Task Wrap(Func func) class AsyncSerialExecutor (line 111) | public class AsyncSerialExecutor class InterlockedExchangeLock (line 23) | private class InterlockedExchangeLock method TryGetLock (line 35) | public bool TryGetLock() method ReleaseLock (line 43) | public void ReleaseLock() method AddNext (line 56) | public Task AddNext(Func> func) method ExecuteNext (line 69) | private async Task ExecuteNext() method AddNext (line 122) | public Task AddNext(Func func) method Wrap (line 127) | private static async Task Wrap(Func func) FILE: src/Orleans.Core/Async/BatchWorker.cs class BatchWorker (line 17) | public abstract class BatchWorker method Work (line 42) | protected abstract Task Work(); method Notify (line 52) | public void Notify() method Notify (line 74) | public void Notify(DateTime utcTime) method ScheduleNotify (line 96) | private async Task ScheduleNotify(DateTime time, DateTime now) method Start (line 106) | private Task Start() method CheckForMoreWork (line 123) | private void CheckForMoreWork() method IsIdle (line 157) | public bool IsIdle() => currentWorkCycle == null; method WaitForCurrentWorkToBeServiced (line 162) | public Task WaitForCurrentWorkToBeServiced() method CreateNextWorkCyclePromise (line 181) | private Task CreateNextWorkCyclePromise() method NotifyAndWaitForWorkToBeServiced (line 191) | public Task NotifyAndWaitForWorkToBeServiced() class BatchWorkerFromDelegate (line 211) | public class BatchWorkerFromDelegate : BatchWorker method BatchWorkerFromDelegate (line 220) | public BatchWorkerFromDelegate(Func work, CancellationToken canc... method Work (line 227) | protected override Task Work() FILE: src/Orleans.Core/Async/MultiTaskCompletionSource.cs class MultiTaskCompletionSource (line 10) | internal sealed class MultiTaskCompletionSource method MultiTaskCompletionSource (line 24) | public MultiTaskCompletionSource(int count) method SetOneResult (line 40) | public void SetOneResult() FILE: src/Orleans.Core/Async/TaskExtensions.cs class OrleansTaskExtentions (line 12) | internal static class OrleansTaskExtentions method SuppressThrowing (line 14) | public static ConfiguredTaskAwaitable SuppressThrowing(this ValueTask ... method SuppressThrowing (line 15) | public static ConfiguredTaskAwaitable SuppressThrowing(this Task task)... method Ignore (line 17) | public static void Ignore(this ValueTask valueTask) method LogException (line 29) | public static async Task LogException(this Task task, ILogger logger, ... method SafeExecute (line 44) | public static async Task SafeExecute(Func action) method ExecuteAndIgnoreException (line 49) | public static async Task ExecuteAndIgnoreException(Func action) method ToString (line 61) | internal static string ToString(this Task t) => t == null ? "null" : $... method WaitWithThrow (line 63) | public static void WaitWithThrow(this Task task, TimeSpan timeout) method WaitForResultWithThrow (line 71) | internal static T WaitForResultWithThrow(this Task task, TimeSpa... method WithTimeout (line 88) | public static async Task WithTimeout(this Task taskToComplete, TimeSpa... method WithTimeout (line 123) | public static async Task WithTimeout(this Task taskToComplete... method WithCancellation (line 154) | internal static async Task WithCancellation( method WithCancellation (line 175) | internal static Task WithCancellation(this Task taskToComplete, Cancel... method MakeCancellable (line 191) | private static async Task MakeCancellable(Task task, CancellationToken... method WrapInTask (line 208) | internal static Task WrapInTask(Action action) method GetResult (line 223) | internal static T GetResult(this Task task) method WhenCancelled (line 228) | internal static Task WhenCancelled(this CancellationToken token) FILE: src/Orleans.Core/Caching/ConcurrentLruCache.cs class ConcurrentLruCache (line 44) | internal class ConcurrentLruCache( method ConcurrentLruCache (line 64) | public ConcurrentLruCache(int capacity) : this(capacity, comparer: null) method GetEnumerator (line 106) | public IEnumerator> GetEnumerator() method Get (line 115) | public V Get(K key) method TryGet (line 126) | public bool TryGet(K key, [MaybeNullWhen(false)] out V value) method TryAdd (line 141) | public bool TryAdd(K key, V value) method GetOrAdd (line 158) | public V GetOrAdd(K key, Func valueFactory) method GetOrAdd (line 187) | public V GetOrAdd(K key, Func valueFactory, TArg fac... method TryRemove (line 212) | public bool TryRemove(K key, Func predicate, TArg... method TryRemove (line 240) | public bool TryRemove(KeyValuePair item) method TryRemove (line 269) | public bool TryRemove(K key, [MaybeNullWhen(false)] out V value) method TryRemove (line 283) | public bool TryRemove(K key) => TryRemove(key, out _); method OnRemove (line 285) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method TryUpdate (line 308) | public bool TryUpdate(K key, V value) method AddOrUpdate (line 333) | public void AddOrUpdate(K key, V value) method Clear (line 358) | public void Clear() method Trim (line 380) | public void Trim(int itemCount) method TrimLiveItems (line 396) | private void TrimLiveItems(int itemCount, ItemRemovedReason reason) method TrimWarmOrHot (line 433) | private void TrimWarmOrHot(ItemRemovedReason reason) method Cycle (line 445) | private void Cycle(int hotCount) method CycleDuringWarmup (line 483) | [MethodImpl(MethodImplOptions.NoInlining)] method CycleHot (line 516) | private (ItemDestination, int) CycleHot(int hotCount) method CycleHotUnchecked (line 526) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CycleWarm (line 543) | private (ItemDestination, int) CycleWarm(int count) method CycleWarmUnchecked (line 553) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CycleCold (line 586) | private (ItemDestination, int) CycleCold(int count) method TryRemoveCold (line 596) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method LastWarmToCold (line 620) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ConstrainCold (line 637) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Move (line 647) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method GetEnumerator (line 683) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); method FormatLruString (line 690) | internal string FormatLruString() method RouteHot (line 706) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method RouteWarm (line 722) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method RouteCold (line 738) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class LruItem (line 776) | [DebuggerDisplay("[{Key}] = {Value}")] method MarkAccessed (line 833) | public void MarkAccessed() method SeqLockRead (line 841) | internal V SeqLockRead() method SeqLockWrite (line 866) | internal void SeqLockWrite(V value) type TelemetryPolicy (line 879) | [DebuggerDisplay("Hit = {Hits}, Miss = {Misses}, Upd = {Updated}, Evic... method TelemetryPolicy (line 887) | public TelemetryPolicy() method IncrementMiss (line 910) | public readonly void IncrementMiss() => _missCount.Increment(); method IncrementHit (line 913) | public readonly void IncrementHit() => _hitCount.Increment(); method IncrementEvicted (line 916) | public readonly void IncrementEvicted() => _evictedCount.Increment(); method IncrementUpdated (line 919) | public readonly void IncrementUpdated() => _updatedCount.Increment(); type ItemDestination (line 922) | private enum ItemDestination type ItemRemovedReason (line 929) | private enum ItemRemovedReason type ITestAccessor (line 937) | internal interface ITestAccessor method DisposeValue (line 946) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Core/Caching/Internal/CacheDebugView.cs class CacheDebugView (line 11) | [ExcludeFromCodeCoverage] method CacheDebugView (line 17) | public CacheDebugView(ConcurrentLruCache cache) FILE: src/Orleans.Core/Caching/Internal/CapacityPartition.cs type CapacityPartition (line 12) | [DebuggerDisplay("{Hot}/{Warm}/{Cold}")] method CapacityPartition (line 25) | public CapacityPartition(int totalCapacity) method CapacityPartition (line 35) | public CapacityPartition(int totalCapacity, double warmRatio) method ComputeQueueCapacity (line 56) | private static (int hot, int warm, int cold) ComputeQueueCapacity(int ... FILE: src/Orleans.Core/Caching/Internal/Counter.cs class Counter (line 18) | internal sealed class Counter : Striped64 method Counter (line 23) | public Counter() { } method Count (line 29) | public long Count() method Increment (line 47) | public void Increment() method Add (line 56) | public void Add(long value) FILE: src/Orleans.Core/Caching/Internal/ICacheMetrics.cs type ICacheMetrics (line 9) | internal interface ICacheMetrics FILE: src/Orleans.Core/Caching/Internal/PaddedLong.cs type PaddedLong (line 11) | [StructLayout(LayoutKind.Explicit, Size = 2 * Padding.CACHE_LINE_SIZE)] ... method VolatileRead (line 24) | public long VolatileRead() => Volatile.Read(ref Value); method CompareAndSwap (line 32) | public bool CompareAndSwap(long expected, long updated) => Interlocked... FILE: src/Orleans.Core/Caching/Internal/PaddedQueueCount.cs type PaddedQueueCount (line 8) | [DebuggerDisplay("Hot = {Hot}, Warm = {Warm}, Cold = {Cold}")] FILE: src/Orleans.Core/Caching/Internal/Padding.cs class Padding (line 5) | internal static class Padding FILE: src/Orleans.Core/Caching/Internal/Striped64.cs class Striped64 (line 83) | [ExcludeFromCodeCoverage] class Cell (line 105) | protected sealed class Cell(long value) method CasCellsBusy (line 116) | private bool CasCellsBusy() => Interlocked.CompareExchange(ref _cellsB... method VolatileWriteNotBusy (line 118) | private void VolatileWriteNotBusy() => Volatile.Write(ref _cellsBusy, 0); method GetProbe (line 124) | protected static int GetProbe() => method AdvanceProbe (line 133) | private static int AdvanceProbe(int probe) method LongAccumulate (line 152) | protected void LongAccumulate(long x, bool wasUncontended) FILE: src/Orleans.Core/Caching/Internal/TypeProps.cs class TypeProps (line 6) | internal static class TypeProps method IsWriteAtomicPrivate (line 11) | private static bool IsWriteAtomicPrivate() FILE: src/Orleans.Core/Cancellation/IGrainCallCancellationExtension.cs type IGrainCallCancellationExtension (line 8) | internal interface IGrainCallCancellationExtension : IGrainExtension method CancelRequestAsync (line 22) | [AlwaysInterleave, OneWay] type IGrainCallCancellationManager (line 29) | internal interface IGrainCallCancellationManager method SignalCancellation (line 34) | void SignalCancellation(SiloAddress? targetSilo, GrainId targetGrainId... class ExternalClientGrainCallCancellationManager (line 37) | internal sealed class ExternalClientGrainCallCancellationManager(IIntern... method SignalCancellation (line 39) | public void SignalCancellation(SiloAddress? targetSilo, GrainId target... FILE: src/Orleans.Core/ClientObservers/ClientGatewayObserver.cs type IClientGatewayObserver (line 9) | internal interface IClientGatewayObserver : IGrainObserver method StopSendingToGateway (line 15) | void StopSendingToGateway(SiloAddress gateway); class ClientGatewayObserver (line 21) | internal sealed class ClientGatewayObserver : ClientObserver, IClientGat... method ClientGatewayObserver (line 33) | public ClientGatewayObserver(GatewayManager gatewayManager) method StopSendingToGateway (line 39) | public void StopSendingToGateway(SiloAddress gateway) => this.gatewayM... method GetObserverGrainId (line 41) | internal override ObserverGrainId GetObserverGrainId(ClientGrainId cli... method GetObserver (line 43) | internal static IClientGatewayObserver GetObserver(IInternalGrainFacto... FILE: src/Orleans.Core/ClientObservers/ClientObserver.cs class ClientObserver (line 8) | internal abstract class ClientObserver method GetObserverGrainId (line 15) | internal abstract ObserverGrainId GetObserverGrainId(ClientGrainId cli... FILE: src/Orleans.Core/CodeGeneration/GrainInterfaceUtils.cs class GrainInterfaceUtils (line 13) | internal static class GrainInterfaceUtils method GetMethods (line 21) | public static MethodInfo[] GetMethods(Type grainType, bool bAllMethods... method GetGrainClassTypeCode (line 104) | public static int GetGrainClassTypeCode(Type grainClass) => (int)Stabl... class MethodInfoComparer (line 106) | private sealed class MethodInfoComparer : IEqualityComparer class GrainState (line 31) | [Serializable] method GrainState (line 50) | public GrainState() method GrainState (line 60) | public GrainState(T state) : this(state, null) method GrainState (line 73) | public GrainState(T state, string eTag) FILE: src/Orleans.Core/Configuration/CollectionAgeLimitAttribute.cs class CollectionAgeLimitAttribute (line 11) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method CollectionAgeLimitAttribute (line 22) | public CollectionAgeLimitAttribute() { } method CollectionAgeLimitAttribute (line 28) | public CollectionAgeLimitAttribute(string inactivityPeriod) => _value ... method Populate (line 61) | public void Populate(IServiceProvider services, Type grainClass, Grain... method CalculateValue (line 77) | private TimeSpan CalculateValue() class KeepAliveAttribute (line 91) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method Populate (line 95) | public void Populate(IServiceProvider services, Type grainClass, Grain... FILE: src/Orleans.Core/Configuration/ConfigUtilities.cs class ConfigUtilities (line 14) | public static class ConfigUtilities method ParseTimeSpan (line 17) | internal static TimeSpan ParseTimeSpan(string input, string errorMessage) method ResolveIPAddressOrDefault (line 55) | internal static IPAddress ResolveIPAddressOrDefault(byte[] subnet, Add... method ResolveIPAddressOrDefault (line 68) | internal static IPAddress ResolveIPAddressOrDefault(string addrOrHost,... method PickIPAddress (line 99) | private static IPAddress PickIPAddress(IList nodeIps, byte[... method PickIPAddress (line 123) | private static IPAddress PickIPAddress(IReadOnlyList candid... method GetLocalIPAddress (line 167) | internal static IPAddress GetLocalIPAddress(AddressFamily family = Add... method ResolveLocalIPAddress (line 207) | internal static IPAddress ResolveLocalIPAddress(IReadOnlyList t... method Configure (line 39) | public void Configure(GrainTypeOptions options) class GrainTypeOptionsValidator (line 81) | public sealed class GrainTypeOptionsValidator : IConfigurationValidator method GrainTypeOptionsValidator (line 91) | public GrainTypeOptionsValidator(IOptions options, I... method ValidateConfiguration (line 98) | public void ValidateConfiguration() FILE: src/Orleans.Core/Configuration/NamedServiceConfigurator.cs type INamedServiceConfigurator (line 12) | public interface INamedServiceConfigurator class NamedServiceConfigurator (line 29) | public class NamedServiceConfigurator : INamedServiceConfigurator method NamedServiceConfigurator (line 46) | public NamedServiceConfigurator(string name, Action(this INamedServiceConfigurator ... method ConfigureComponent (line 88) | public static void ConfigureComponent(this IName... method ConfigureComponent (line 102) | public static void ConfigureComponent(this INamedServiceCo... method ConfigureLifecycle (line 111) | public static void ConfigureLifecycle(this INamedServiceConfigurato... FILE: src/Orleans.Core/Configuration/OptionLogger/DefaultOptionsFormatter.cs class DefaultOptionsFormatter (line 13) | internal sealed class DefaultOptionsFormatter : IOptionFormatter w... method DefaultOptionsFormatter (line 21) | public DefaultOptionsFormatter(IOptions options) method DefaultOptionsFormatter (line 32) | internal DefaultOptionsFormatter(string name, T options) method Format (line 47) | public IEnumerable Format() method IsFormattableProperty (line 63) | private static bool IsFormattableProperty(PropertyInfo prop) method IsAccessibleMethod (line 73) | private static bool IsAccessibleMethod(MethodInfo accessor) method IsFormattableType (line 81) | private static bool IsFormattableType(Type type) method FormatProperty (line 88) | private static IEnumerable FormatProperty(object options, Prop... class DefaultOptionsFormatterResolver (line 133) | internal class DefaultOptionsFormatterResolver : IOptionFormatterReso... method DefaultOptionsFormatterResolver (line 137) | public DefaultOptionsFormatterResolver(IOptionsMonitor optionsMonitor) method Resolve (line 142) | public IOptionFormatter Resolve(string name) => new DefaultOptionsF... FILE: src/Orleans.Core/Configuration/OptionLogger/IOptionFormatter.cs type IOptionFormatter (line 8) | public interface IOptionFormatter method Format (line 19) | IEnumerable Format(); type IOptionFormatter (line 26) | public interface IOptionFormatter : IOptionFormatter method Format (line 19) | IEnumerable Format(); type IOptionFormatterResolver (line 34) | public interface IOptionFormatterResolver method Resolve (line 41) | IOptionFormatter Resolve(string name); class OptionFormattingUtilities (line 47) | public static class OptionFormattingUtilities method Format (line 72) | public static string Format(object key, object value, string formattin... method Name (line 85) | public static string Name(string name = null, string formatt... FILE: src/Orleans.Core/Configuration/OptionLogger/IOptionsLogger.cs class ClientOptionsLogger (line 15) | internal class ClientOptionsLogger : OptionsLogger, ILifecycleParticipan... method ClientOptionsLogger (line 31) | public ClientOptionsLogger(ILogger logger, IServi... method Participate (line 37) | public void Participate(IClusterClientLifecycle lifecycle) method OnStart (line 43) | public Task OnStart(CancellationToken token) class OptionsLogger (line 53) | public abstract partial class OptionsLogger method OptionsLogger (line 67) | protected OptionsLogger(ILogger logger, IServiceProvider services) method LogOptions (line 76) | public void LogOptions() method LogOptions (line 85) | public void LogOptions(IEnumerable formatters) method LogOption (line 97) | public void LogOption(IOptionFormatter formatter) method LogInformationOptions (line 115) | [LoggerMessage( method LogErrorOptions (line 121) | [LoggerMessage( FILE: src/Orleans.Core/Configuration/OptionLogger/OptionFormatterExtensionMethods.cs class OptionConfigureExtensionMethods (line 10) | public static class OptionConfigureExtensionMethods method ConfigureFormatter (line 27) | public static IServiceCollection ConfigureFormatter(this ISe... method TryConfigureFormatter (line 81) | public static IServiceCollection TryConfigureFormatter options) method ValidateConfiguration (line 61) | public void ValidateConfiguration() FILE: src/Orleans.Core/Configuration/Options/GatewayOptions.cs class GatewayOptions (line 8) | public class GatewayOptions FILE: src/Orleans.Core/Configuration/Options/GrainVersioningOptions.cs class GrainVersioningOptions (line 10) | public class GrainVersioningOptions FILE: src/Orleans.Core/Configuration/Options/LoadSheddingOptions.cs class LoadSheddingOptions (line 8) | public class LoadSheddingOptions FILE: src/Orleans.Core/Configuration/Options/MessagingOptions.cs class MessagingOptions (line 9) | public abstract class MessagingOptions FILE: src/Orleans.Core/Configuration/Options/StaticGatewayListProviderOptions.cs class StaticGatewayListProviderOptions (line 13) | public class StaticGatewayListProviderOptions FILE: src/Orleans.Core/Configuration/Options/TypeManagementOptions.cs class TypeManagementOptions (line 8) | public class TypeManagementOptions FILE: src/Orleans.Core/Configuration/OptionsOverrides.cs class OptionsOverrides (line 12) | public static class OptionsOverrides method GetProviderClusterOptions (line 18) | public static IOptions GetProviderClusterOptions(this ... method GetOverridableOption (line 23) | private static IOptions GetOverridableOption(this ... FILE: src/Orleans.Core/Configuration/ServiceCollectionExtensions.cs class ServiceCollectionExtensions (line 10) | public static class ServiceCollectionExtensions method AddFromExisting (line 18) | public static void AddFromExisting(this ISe... method AddFromExisting (line 29) | public static void AddFromExisting(this IServiceCollection services, T... method TryAddFromExisting (line 59) | public static void TryAddFromExisting(this ... FILE: src/Orleans.Core/Configuration/Validators/ClientClusteringValidator.cs class ClientClusteringValidator (line 12) | internal class ClientClusteringValidator : IConfigurationValidator method ClientClusteringValidator (line 37) | public ClientClusteringValidator(IServiceProvider serviceProvider) method ValidateConfiguration (line 43) | public void ValidateConfiguration() FILE: src/Orleans.Core/Configuration/Validators/LoadSheddingValidator.cs class LoadSheddingValidator (line 15) | internal class LoadSheddingValidator(IOptions loadS... method ValidateConfiguration (line 20) | public void ValidateConfiguration() FILE: src/Orleans.Core/Configuration/Validators/SerializerConfigurationValidator.cs class SerializerConfigurationValidator (line 17) | public class SerializerConfigurationValidator : IConfigurationValidator method SerializerConfigurationValidator (line 35) | public SerializerConfigurationValidator(ICodecProvider codecProvider, ... method ValidateConfiguration (line 53) | void IConfigurationValidator.ValidateConfiguration() FILE: src/Orleans.Core/Core/ClientBuilder.cs class ClientBuilder (line 9) | public class ClientBuilder : IClientBuilder method ClientBuilder (line 17) | public ClientBuilder(IServiceCollection services, IConfiguration confi... FILE: src/Orleans.Core/Core/ClientBuilderExtensions.cs class ClientBuilderExtensions (line 20) | public static class ClientBuilderExtensions method UseConnectionRetryFilter (line 28) | public static IClientBuilder UseConnectionRetryFilter(this IClientBuil... method UseConnectionRetryFilter (line 39) | public static IClientBuilder UseConnectionRetryFilter(this IClientBuil... method UseConnectionRetryFilter (line 49) | public static IClientBuilder UseConnectionRetryFilter ShouldRetryConnectionAttempt(Exception exception, ... method ConfigureServices (line 67) | public static IClientBuilder ConfigureServices(this IClientBuilder bui... method Configure (line 81) | public static IClientBuilder Configure(this IClientBuilder b... method Configure (line 93) | public static IClientBuilder Configure(this IClientBuilder b... method AddGatewayCountChangedHandler (line 101) | public static IClientBuilder AddGatewayCountChangedHandler(this IClien... method AddGatewayCountChangedHandler (line 110) | public static IClientBuilder AddGatewayCountChangedHandler(this IClien... method AddClusterConnectionStatusObserver (line 119) | public static IClientBuilder AddClusterConnectionStatusObserver(Guid primaryKey, stri... method GetGrain (line 88) | public TGrainInterface GetGrain(long primaryKey, stri... method GetGrain (line 92) | public TGrainInterface GetGrain(string primaryKey, st... method GetGrain (line 96) | public TGrainInterface GetGrain(Guid primaryKey, stri... method GetGrain (line 100) | public TGrainInterface GetGrain(long primaryKey, stri... method CreateObjectReference (line 104) | public TGrainObserverInterface CreateObjectReference(IGrainObser... method CreateObjectReference (line 111) | public TGrainObserverInterface CreateObjectReference... method GetSystemTarget (line 117) | public TGrainInterface GetSystemTarget(GrainId grainI... method Cast (line 120) | TGrainInterface IInternalGrainFactory.Cast(IAddressab... method GetGrain (line 123) | TGrainInterface IGrainFactory.GetGrain(GrainId grainI... method GetGrain (line 126) | IAddressable IGrainFactory.GetGrain(GrainId grainId) => _runtimeClient... method GetGrain (line 129) | public IGrain GetGrain(Type grainInterfaceType, string grainPrimaryKey) method GetGrain (line 133) | public IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey) method GetGrain (line 137) | public IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey) method GetGrain (line 141) | public IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey, ... method GetGrain (line 145) | public IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey, ... method Cast (line 149) | public object Cast(IAddressable grain, Type outputGrainInterfaceType) method GetGrain (line 153) | public IAddressable GetGrain(GrainId grainId, GrainInterfaceType inter... method GetGrain (line 157) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey, stri... method GetGrain (line 161) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey) method LogClientShuttingDown (line 164) | [LoggerMessage( method LogClientShutdownCompleted (line 170) | [LoggerMessage( FILE: src/Orleans.Core/Core/DefaultClientServices.cs class DefaultClientServices (line 36) | internal static class DefaultClientServices method AddDefaultServices (line 44) | public static void AddDefaultServices(IClientBuilder builder) method ApplyConfiguration (line 178) | private static void ApplyConfiguration(IClientBuilder builder) class RootConfiguration (line 271) | internal partial class RootConfiguration class AllowOrleansTypes (line 279) | private class AllowOrleansTypes : ITypeNameFilter method IsTypeNameAllowed (line 282) | public bool? IsTypeNameAllowed(string typeName, string assemblyName) class ServicesAdded (line 296) | private class ServicesAdded { } FILE: src/Orleans.Core/Core/GatewayCountChangedEventArgs.cs class GatewayCountChangedEventArgs (line 22) | public class GatewayCountChangedEventArgs : EventArgs method GatewayCountChangedEventArgs (line 48) | public GatewayCountChangedEventArgs(int currentNumberOfConnectedGatewa... FILE: src/Orleans.Core/Core/GrainCallFilterServiceCollectionExtensions.cs class GrainCallFilterServiceCollectionExtensions (line 10) | public static class GrainCallFilterServiceCollectionExtensions method AddGrainCallFilter (line 18) | [Obsolete("Use ISiloBuilder." + nameof(AddIncomingGrainCallFilter), er... method AddGrainCallFilter (line 30) | [Obsolete("Use ISiloBuilder." + nameof(AddIncomingGrainCallFilter), er... method AddGrainCallFilter (line 43) | [Obsolete("Use ISiloBuilder." + nameof(AddIncomingGrainCallFilter), er... method AddIncomingGrainCallFilter (line 55) | internal static IServiceCollection AddIncomingGrainCallFilter(this ISe... method AddIncomingGrainCallFilter (line 66) | internal static IServiceCollection AddIncomingGrainCallFilter this.interc... class IncomingGrainCallFilterWrapper (line 142) | private class IncomingGrainCallFilterWrapper : IIncomingGrainCallFilter method IncomingGrainCallFilterWrapper (line 152) | public IncomingGrainCallFilterWrapper(IncomingGrainCallFilterDelegat... method Invoke (line 162) | public Task Invoke(IIncomingGrainCallContext context) => this.interc... FILE: src/Orleans.Core/Core/GrainFactory.cs class GrainFactory (line 12) | internal class GrainFactory : IInternalGrainFactory method GrainFactory (line 26) | public GrainFactory( method GetGrain (line 41) | public TGrainInterface GetGrain(Guid primaryKey, stri... method GetGrain (line 48) | public TGrainInterface GetGrain(long primaryKey, stri... method GetGrain (line 55) | public TGrainInterface GetGrain(string primaryKey, st... method GetGrain (line 64) | public TGrainInterface GetGrain(Guid primaryKey, stri... method GetGrain (line 74) | public TGrainInterface GetGrain(long primaryKey, stri... method CreateObjectReference (line 85) | public TGrainObserverInterface CreateObjectReference( method CreateObjectReference (line 99) | public TGrainObserverInterface CreateObjectReference(IAddressable grain) method Cast (line 113) | public object Cast(IAddressable grain, Type interfaceType) => this.Gra... method GetSystemTarget (line 115) | public TGrainInterface GetSystemTarget(GrainType grai... method GetSystemTarget (line 123) | public TGrainInterface GetSystemTarget(GrainId grainId) method GetGrain (line 143) | public TGrainInterface GetGrain(GrainId grainId) wher... method GetGrain (line 149) | public IAddressable GetGrain(GrainId grainId) => this.referenceActivat... method GetGrain (line 152) | public IGrain GetGrain(Type grainInterfaceType, Guid key) method GetGrain (line 159) | public IGrain GetGrain(Type grainInterfaceType, long key) method GetGrain (line 166) | public IGrain GetGrain(Type grainInterfaceType, string key) method GetGrain (line 174) | public IGrain GetGrain(Type grainInterfaceType, Guid key, string keyEx... method GetGrain (line 181) | public IGrain GetGrain(Type grainInterfaceType, long key, string keyEx... method GetGrain (line 188) | public IAddressable GetGrain(GrainId grainId, GrainInterfaceType inter... method GetGrain (line 194) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey) => G... method GetGrain (line 207) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey, stri... method CreateGrainReference (line 234) | private object CreateGrainReference(Type interfaceType, GrainId grainId) method CreateObjectReference (line 246) | private object CreateObjectReference(Type interfaceType, IAddressable ... method ValidateGrainKeyExtension (line 268) | private static void ValidateGrainKeyExtension(string keyExt) FILE: src/Orleans.Core/Core/GrainInterfaceTypeToGrainTypeResolver.cs class GrainInterfaceTypeToGrainTypeResolver (line 18) | public class GrainInterfaceTypeToGrainTypeResolver method GrainInterfaceTypeToGrainTypeResolver (line 33) | public GrainInterfaceTypeToGrainTypeResolver(IClusterManifestProvider ... method GetGrainType (line 41) | public GrainType GetGrainType(GrainInterfaceType interfaceType, string... method GetGrainType (line 103) | public GrainType GetGrainType(GrainInterfaceType interfaceType) method TryGetGrainType (line 117) | public bool TryGetGrainType(GrainInterfaceType interfaceType, out Grai... method GetCache (line 176) | private Cache GetCache() method BuildCache (line 201) | private static Cache BuildCache(ClusterManifest clusterManifest) class Cache (line 262) | private class Cache method Cache (line 269) | public Cache(MajorMinorVersion version, Dictionary ShouldRetryConnectionAttempt(Exception exception, Cancellat... class LinearBackoffClientConnectionRetryFilter (line 22) | internal sealed class LinearBackoffClientConnectionRetryFilter : IClient... method ShouldRetryConnectionAttempt (line 29) | public async Task ShouldRetryConnectionAttempt( FILE: src/Orleans.Core/Core/IClusterClient.cs type IClusterClient (line 8) | public interface IClusterClient : IGrainFactory FILE: src/Orleans.Core/Core/IClusterConnectionStatusListener.cs type IClusterConnectionStatusListener (line 6) | internal interface IClusterConnectionStatusListener method NotifyGatewayCountChanged (line 17) | void NotifyGatewayCountChanged(int currentNumberOfGateways, int previo... method NotifyClusterConnectionLost (line 22) | void NotifyClusterConnectionLost(); FILE: src/Orleans.Core/Core/IClusterConnectionStatusObserver.cs type IClusterConnectionStatusObserver (line 6) | public interface IClusterConnectionStatusObserver method NotifyGatewayCountChanged (line 18) | void NotifyGatewayCountChanged(int currentNumberOfGateways, int previo... method NotifyClusterConnectionLost (line 23) | void NotifyClusterConnectionLost(); FILE: src/Orleans.Core/Core/IInternalClusterClient.cs type IInternalClusterClient (line 6) | internal interface IInternalClusterClient : IClusterClient, IInternalGra... FILE: src/Orleans.Core/Core/IInternalGrainFactory.cs type IInternalGrainFactory (line 10) | internal interface IInternalGrainFactory : IGrainFactory method CreateObjectReference (line 18) | TGrainObserverInterface CreateObjectReference... method GetSystemTarget (line 28) | TGrainInterface GetSystemTarget(GrainType grainType, ... method GetSystemTarget (line 37) | TGrainInterface GetSystemTarget(GrainId grainId) wher... method Cast (line 47) | TGrainInterface Cast(IAddressable grain); method Cast (line 55) | object Cast(IAddressable grain, Type interfaceType); FILE: src/Orleans.Core/Core/InterfaceToImplementationMappingCache.cs class InterfaceToImplementationMappingCache (line 15) | internal class InterfaceToImplementationMappingCache type Entry (line 20) | public readonly struct Entry method Entry (line 22) | public Entry(MethodInfo implementationMethod, MethodInfo interfaceMe... method GetConstructedGenericMethod (line 40) | public (MethodInfo ImplementationMethod, MethodInfo InterfaceMethod)... class TypeArrayComparer (line 57) | private sealed class TypeArrayComparer : IEqualityComparer method Equals (line 61) | public bool Equals(Type[] x, Type[] y) => ReferenceEquals(x, y) ||... method GetHashCode (line 63) | public int GetHashCode([DisallowNull] Type[] obj) method GetOrCreate (line 90) | public Dictionary GetOrCreate(Type implementationTy... method CreateInterfaceToImplementationMap (line 113) | private static Dictionary> CreateI... FILE: src/Orleans.Core/Core/InvalidSchedulingContextException.cs class InvalidSchedulingContextException (line 10) | [Serializable] method InvalidSchedulingContextException (line 20) | public InvalidSchedulingContextException(string message) : base(messag... method InvalidSchedulingContextException (line 31) | public InvalidSchedulingContextException(string message, Exception inn... method InvalidSchedulingContextException (line 42) | [Obsolete] FILE: src/Orleans.Core/Diagnostics/ActivityNames.cs class ActivityNames (line 3) | public static class ActivityNames FILE: src/Orleans.Core/Diagnostics/ActivityPropagationGrainCallFilter.cs class ActivityPropagationGrainCallFilter (line 9) | internal abstract class ActivityPropagationGrainCallFilter method GetActivitySource (line 14) | protected static ActivitySource GetActivitySource(IGrainCallContext co... method GetRequestContextValue (line 42) | protected static void GetRequestContextValue(object carrier, string fi... method Process (line 48) | protected static async Task Process(IGrainCallContext context, Activit... class ActivityPropagationOutgoingGrainCallFilter (line 101) | internal class ActivityPropagationOutgoingGrainCallFilter : ActivityProp... method ActivityPropagationOutgoingGrainCallFilter (line 109) | public ActivityPropagationOutgoingGrainCallFilter(DistributedContextPr... method Invoke (line 115) | public Task Invoke(IOutgoingGrainCallContext context) class ActivityPropagationIncomingGrainCallFilter (line 133) | internal class ActivityPropagationIncomingGrainCallFilter : ActivityProp... method ActivityPropagationIncomingGrainCallFilter (line 141) | public ActivityPropagationIncomingGrainCallFilter(DistributedContextPr... method Invoke (line 147) | public Task Invoke(IIncomingGrainCallContext context) FILE: src/Orleans.Core/Diagnostics/EventSourceEvents.cs class OrleansCallBackDataEvent (line 8) | [EventSource(Name = "Microsoft-Orleans-CallBackData")] method OnTimeout (line 17) | [NonEvent] method OnTimeout (line 29) | [Event(1, Level = EventLevel.Warning)] method OnTargetSiloFail (line 36) | [NonEvent] method OnTargetSiloFail (line 48) | [Event(2, Level = EventLevel.Warning)] method DoCallback (line 54) | [NonEvent] method DoCallback (line 66) | [Event(3, Level = EventLevel.Verbose)] method OnCanceled (line 72) | [NonEvent] method OnCanceled (line 84) | [Event(4, Level = EventLevel.Verbose)] class OrleansOutsideRuntimeClientEvent (line 88) | [EventSource(Name = "Microsoft-Orleans-OutsideRuntimeClient")] method SendRequest (line 93) | [NonEvent] method SendRequest (line 102) | [Event(1, Level = EventLevel.Verbose)] method ReceiveResponse (line 105) | [NonEvent] method ReceiveResponse (line 114) | [Event(2, Level = EventLevel.Verbose)] method SendResponse (line 117) | [NonEvent] method SendResponse (line 126) | [Event(3, Level = EventLevel.Verbose)] class OrleansDispatcherEvent (line 130) | [EventSource(Name = "Microsoft-Orleans-Dispatcher")] method ReceiveMessage (line 135) | [NonEvent] method ReceiveMessage (line 144) | [Event(1, Level = EventLevel.Verbose)] class OrleansInsideRuntimeClientEvent (line 148) | [EventSource(Name = "Microsoft-Orleans-InsideRuntimeClient")] method SendRequest (line 153) | [NonEvent] method SendRequest (line 162) | [Event(1, Level = EventLevel.Verbose)] method ReceiveResponse (line 165) | [NonEvent] method ReceiveResponse (line 174) | [Event(2, Level = EventLevel.Verbose)] method SendResponse (line 177) | [NonEvent] method SendResponse (line 186) | [Event(3, Level = EventLevel.Verbose)] class OrleansIncomingMessageAgentEvent (line 190) | [EventSource(Name = "Microsoft-Orleans-IncomingMessageAgent")] method ReceiveMessage (line 195) | [NonEvent] method ReceiveMessage (line 204) | [Event(1, Level = EventLevel.Verbose)] FILE: src/Orleans.Core/Diagnostics/MessagingTrace.cs class MessagingTrace (line 10) | internal class MessagingTrace : DiagnosticListener, ILogger method MessagingTrace (line 67) | public MessagingTrace(ILoggerFactory loggerFactory) : base(Category) method OnSendMessage (line 72) | public void OnSendMessage(Message message) method OnIncomingMessageAgentReceiveMessage (line 80) | public void OnIncomingMessageAgentReceiveMessage(Message message) method OnDispatcherReceiveMessage (line 91) | public void OnDispatcherReceiveMessage(Message message) method OnDropExpiredMessage (line 102) | internal void OnDropExpiredMessage(Message message, MessagingInstrumen... method OnDropBlockedApplicationMessage (line 113) | internal void OnDropBlockedApplicationMessage(Message message) method OnSiloDropSendingMessage (line 123) | internal void OnSiloDropSendingMessage(SiloAddress localSiloAddress, M... method OnEnqueueInboundMessage (line 129) | public void OnEnqueueInboundMessage(Message message) method OnDequeueInboundMessage (line 139) | public void OnDequeueInboundMessage(Message message) method OnCreateMessage (line 149) | internal void OnCreateMessage(Message message) method OnScheduleMessage (line 157) | public void OnScheduleMessage(Message message) method OnEnqueueMessageOnActivation (line 165) | public void OnEnqueueMessageOnActivation(Message message, IGrainContex... method OnInvokeMessage (line 175) | public void OnInvokeMessage(Message message) method OnRejectSendMessageToDeadSilo (line 183) | public void OnRejectSendMessageToDeadSilo(SiloAddress localSilo, Messa... method OnSendRequest (line 200) | internal void OnSendRequest(Message message) method BeginScope (line 205) | public IDisposable BeginScope(TState state) method IsEnabled (line 210) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Log (line 216) | public void Log(LogLevel logLevel, EventId eventId, TState sta... FILE: src/Orleans.Core/Diagnostics/Metrics/Aggregators/AggregatorKey.cs type AggregatorKey (line 7) | internal readonly struct AggregatorKey : IEquatable method AggregatorKey (line 9) | public AggregatorKey(string instrumentName, KeyValuePair HashCode.Combine(InstrumentName, ... method Equals (line 18) | public bool Equals(AggregatorKey other) => InstrumentName == other.Ins... method Equals (line 20) | public override bool Equals(object obj) => obj is AggregatorKey key &&... FILE: src/Orleans.Core/Diagnostics/Metrics/Aggregators/CounterAggregator.cs class CounterAggregator (line 8) | internal sealed class CounterAggregator method CounterAggregator (line 12) | public CounterAggregator() method CounterAggregator (line 17) | public CounterAggregator(in TagList tagList) method Add (line 58) | public void Add(long measurement) => Interlocked.Add(ref _value, measu... method Collect (line 60) | public Measurement Collect() => new(_value, _tags); FILE: src/Orleans.Core/Diagnostics/Metrics/Aggregators/CounterAggregatorGroup.cs class CounterAggregatorGroup (line 7) | internal sealed class CounterAggregatorGroup method FindOrCreate (line 11) | public CounterAggregator FindOrCreate(TagList tagList) method Add (line 20) | public void Add(long measurement, string tagName1, object tagValue1) method Add (line 23) | public void Add(long measurement, string tagName1, object tagValue1, s... method Add (line 26) | public void Add(long measurement, string tagName1, object tagValue1, s... method Add (line 29) | public void Add(long measurement, string tagName1, object tagValue1, s... method Add (line 32) | public void Add(long measurement, TagList tagList) method Collect (line 36) | public IEnumerable> Collect() FILE: src/Orleans.Core/Diagnostics/Metrics/Aggregators/HistogramAggregator.cs class HistogramAggregator (line 9) | internal class HistogramAggregator method HistogramAggregator (line 16) | public HistogramAggregator(long[] buckets, KeyValuePair> CollectBuckets() method CollectCount (line 50) | public Measurement CollectCount() => new(_count, _tags); method CollectSum (line 52) | public Measurement CollectSum() => new(_sum, _tags); FILE: src/Orleans.Core/Diagnostics/Metrics/Aggregators/HistogramBucketAggregator.cs class HistogramBucketAggregator (line 9) | internal class HistogramBucketAggregator method HistogramBucketAggregator (line 15) | public HistogramBucketAggregator(KeyValuePair[] tags, ... method Add (line 25) | public void Add(long measurement) => Interlocked.Add(ref _value, measu... method Collect (line 27) | public Measurement Collect() FILE: src/Orleans.Core/Diagnostics/Metrics/Aggregators/TagList.cs type TagList (line 3) | internal record struct TagList( FILE: src/Orleans.Core/Diagnostics/Metrics/ApplicationRequestInstruments.cs class ApplicationRequestInstruments (line 5) | internal class ApplicationRequestInstruments method ApplicationRequestInstruments (line 16) | internal ApplicationRequestInstruments(OrleansInstruments instruments) method OnAppRequestsEnd (line 26) | internal void OnAppRequestsEnd(long durationMilliseconds) method OnAppRequestsTimedOut (line 32) | internal void OnAppRequestsTimedOut() method OnAppRequestsCanceled (line 37) | internal void OnAppRequestsCanceled() FILE: src/Orleans.Core/Diagnostics/Metrics/CatalogInstruments.cs class CatalogInstruments (line 7) | internal static class CatalogInstruments method ActivationShutdownViaCollection (line 15) | internal static void ActivationShutdownViaCollection() => ActivationSh... method ActivationShutdownViaDeactivateOnIdle (line 16) | internal static void ActivationShutdownViaDeactivateOnIdle() => Activa... method ActivationShutdownViaMigration (line 17) | internal static void ActivationShutdownViaMigration() => ActivationShu... method ActivationShutdownViaDeactivateStuckActivation (line 18) | internal static void ActivationShutdownViaDeactivateStuckActivation() ... method RegisterActivationCountObserve (line 29) | internal static void RegisterActivationCountObserve(Func observeV... method RegisterActivationWorkingSetObserve (line 35) | internal static void RegisterActivationWorkingSetObserve(Func obs... FILE: src/Orleans.Core/Diagnostics/Metrics/ClientInstruments.cs class ClientInstruments (line 6) | public static class ClientInstruments method RegisterConnectedGatewayCountObserve (line 9) | internal static void RegisterConnectedGatewayCountObserve(Func ob... FILE: src/Orleans.Core/Diagnostics/Metrics/ConsistentRingInstruments.cs class ConsistentRingInstruments (line 6) | internal static class ConsistentRingInstruments method RegisterRingSizeObserve (line 9) | internal static void RegisterRingSizeObserve(Func observeValue) method RegisterMyRangeRingPercentageObserve (line 15) | internal static void RegisterMyRangeRingPercentageObserve(Func ... method RegisterAverageRingPercentageObserve (line 20) | internal static void RegisterAverageRingPercentageObserve(Func ... FILE: src/Orleans.Core/Diagnostics/Metrics/DirectoryInstruments.cs class DirectoryInstruments (line 6) | internal static class DirectoryInstruments method RegisterDirectoryPartitionSizeObserve (line 31) | internal static void RegisterDirectoryPartitionSizeObserve(Func o... method RegisterCacheSizeObserve (line 37) | internal static void RegisterCacheSizeObserve(Func observeValue) method RegisterRingSizeObserve (line 43) | internal static void RegisterRingSizeObserve(Func observeValue) method RegisterMyPortionRingDistanceObserve (line 49) | internal static void RegisterMyPortionRingDistanceObserve(Func o... method RegisterMyPortionRingPercentageObserve (line 55) | internal static void RegisterMyPortionRingPercentageObserve(Func obser... FILE: src/Orleans.Core/Diagnostics/Metrics/NetworkingInstruments.cs class NetworkingInstruments (line 7) | internal static class NetworkingInstruments method OnOpenedSocket (line 12) | internal static void OnOpenedSocket(ConnectionDirection direction) method OnClosedSocket (line 17) | internal static void OnClosedSocket(ConnectionDirection direction) FILE: src/Orleans.Core/Diagnostics/Metrics/OrleansInstruments.cs class OrleansInstruments (line 10) | public class OrleansInstruments(IMeterFactory meterFactory) FILE: src/Orleans.Core/Diagnostics/Metrics/ReminderInstruments.cs class ReminderInstruments (line 6) | internal static class ReminderInstruments method RegisterActiveRemindersObserve (line 10) | public static void RegisterActiveRemindersObserve(Func observeValue) FILE: src/Orleans.Core/Diagnostics/Metrics/SchedulerInstruments.cs class SchedulerInstruments (line 5) | internal class SchedulerInstruments FILE: src/Orleans.Core/Diagnostics/Metrics/StorageInstruments.cs class StorageInstruments (line 7) | internal static class StorageInstruments method OnStorageRead (line 16) | internal static void OnStorageRead(TimeSpan latency, string providerTy... method OnStorageWrite (line 30) | internal static void OnStorageWrite(TimeSpan latency, string providerT... method OnStorageReadError (line 44) | internal static void OnStorageReadError(string providerTypeName, strin... method OnStorageWriteError (line 57) | internal static void OnStorageWriteError(string providerTypeName, stri... method OnStorageDelete (line 70) | internal static void OnStorageDelete(TimeSpan latency, string provider... method OnStorageDeleteError (line 83) | internal static void OnStorageDeleteError(string providerTypeName, str... FILE: src/Orleans.Core/Diagnostics/Metrics/StreamInstruments.cs class StreamInstruments (line 6) | internal static class StreamInstruments method RegisterPersistentStreamPullingAgentsObserve (line 16) | public static void RegisterPersistentStreamPullingAgentsObserve(Func RegisterAsync(GrainAddress address, int hopCount =... method RegisterAsync (line 35) | Task RegisterAsync(GrainAddress address, GrainAddress? ... method UnregisterAsync (line 46) | Task UnregisterAsync(GrainAddress address, UnregistrationCause cause, ... method UnregisterManyAsync (line 56) | Task UnregisterManyAsync(List addresses, UnregistrationC... method DeleteGrainAsync (line 67) | Task DeleteGrainAsync(GrainId grainId, int hopCount = 0); method LookupAsync (line 77) | Task LookupAsync(GrainId grainId, int hopCount = 0); type AddressAndTag (line 83) | [Serializable, GenerateSerializer, Immutable] method AddressAndTag (line 98) | public AddressAndTag(GrainAddress? address, int versionTag) type UnregistrationCause (line 109) | public enum UnregistrationCause : byte FILE: src/Orleans.Core/GrainDirectory/IGrainLocator.cs type IGrainLocator (line 11) | public interface IGrainLocator method Register (line 18) | Task Register(GrainAddress address, GrainAddress? previ... method Unregister (line 26) | Task Unregister(GrainAddress address, UnregistrationCause cause); method Lookup (line 33) | ValueTask Lookup(GrainId grainId); method UpdateCache (line 40) | void UpdateCache(GrainId grainId, SiloAddress siloAddress); method InvalidateCache (line 48) | void InvalidateCache(GrainId grainId); method InvalidateCache (line 56) | void InvalidateCache(GrainAddress address); method TryLookupInCache (line 64) | bool TryLookupInCache(GrainId grainId, [NotNullWhen(true)] out GrainAd... FILE: src/Orleans.Core/GrainReferences/GrainReferenceActivator.cs class GrainReferenceActivator (line 25) | public sealed class GrainReferenceActivator method GrainReferenceActivator (line 41) | public GrainReferenceActivator( method CreateReference (line 55) | public GrainReference CreateReference(GrainId grainId, GrainInterfaceT... method CreateActivator (line 73) | private IGrainReferenceActivator CreateActivator(GrainType grainType, ... class UntypedGrainReferenceActivatorProvider (line 105) | internal class UntypedGrainReferenceActivatorProvider : IGrainReferenceA... method UntypedGrainReferenceActivatorProvider (line 120) | public UntypedGrainReferenceActivatorProvider( method TryGet (line 133) | public bool TryGet(GrainType grainType, GrainInterfaceType interfaceTy... class UntypedGrainReferenceActivator (line 160) | private class UntypedGrainReferenceActivator : IGrainReferenceActivator method UntypedGrainReferenceActivator (line 168) | public UntypedGrainReferenceActivator(GrainReferenceShared shared) method CreateReference (line 174) | public GrainReference CreateReference(GrainId grainId) class RpcProvider (line 184) | internal class RpcProvider method RpcProvider (line 195) | public RpcProvider( method TryGet (line 254) | public bool TryGet(GrainInterfaceType interfaceType, [NotNullWhen(true... class GrainReferenceActivatorProvider (line 286) | internal class GrainReferenceActivatorProvider : IGrainReferenceActivato... method GrainReferenceActivatorProvider (line 305) | public GrainReferenceActivatorProvider( method TryGet (line 322) | public bool TryGet(GrainType grainType, GrainInterfaceType interfaceTy... class GrainReferenceActivator (line 358) | private sealed class GrainReferenceActivator : IGrainReferenceActivator method GrainReferenceActivator (line 368) | public GrainReferenceActivator(Type referenceType, GrainReferenceSha... method CreateReference (line 385) | public GrainReference CreateReference(GrainId grainId) => _create(_s... type IGrainReferenceActivatorProvider (line 392) | public interface IGrainReferenceActivatorProvider method TryGet (line 401) | bool TryGet(GrainType grainType, GrainInterfaceType interfaceType, [No... type IGrainReferenceActivator (line 407) | public interface IGrainReferenceActivator method CreateReference (line 414) | public GrainReference CreateReference(GrainId grainId); FILE: src/Orleans.Core/Hosting/OrleansClientGenericHostExtensions.cs class OrleansClientGenericHostExtensions (line 13) | public static class OrleansClientGenericHostExtensions method UseOrleansClient (line 27) | public static HostApplicationBuilder UseOrleansClient(this HostApplica... method UseOrleansClient (line 42) | public static HostApplicationBuilder UseOrleansClient( method UseOrleansClient (line 64) | public static IHostApplicationBuilder UseOrleansClient(this IHostAppli... method UseOrleansClient (line 79) | public static IHostApplicationBuilder UseOrleansClient( method UseOrleansClient (line 101) | public static IHostBuilder UseOrleansClient(this IHostBuilder hostBuil... method UseOrleansClient (line 115) | public static IHostBuilder UseOrleansClient(this IHostBuilder hostBuil... method UseOrleansClient (line 130) | public static IHostBuilder UseOrleansClient(this IHostBuilder hostBuil... method AddOrleansClient (line 157) | public static IServiceCollection AddOrleansClient(this IServiceCollect... method AddOrleansClient (line 179) | public static IServiceCollection AddOrleansClient(this IServiceCollect... method AddOrleansClient (line 188) | private static IClientBuilder AddOrleansClient(IServiceCollection serv... method GetOrleansSiloAddedException (line 211) | private static OrleansConfigurationException GetOrleansSiloAddedExcept... class OrleansBuilderMarker (line 218) | internal sealed class OrleansBuilderMarker method OrleansBuilderMarker (line 224) | public OrleansBuilderMarker(object builderInstance) => BuilderInstance... FILE: src/Orleans.Core/IDs/GenericGrainInterfaceType.cs type GenericGrainInterfaceType (line 11) | [Immutable] method GenericGrainInterfaceType (line 18) | private GenericGrainInterfaceType(GrainInterfaceType value, int arity) method TryParse (line 42) | public static bool TryParse(GrainInterfaceType grainType, out GenericG... method GetGenericGrainType (line 64) | public GenericGrainInterfaceType GetGenericGrainType() method Construct (line 73) | public GenericGrainInterfaceType Construct(TypeConverter formatter, pa... method GetArguments (line 87) | public Type[] GetArguments(TypeConverter formatter) => formatter.GetAr... method ToString (line 92) | public override string ToString() => Value.ToString(); method ThrowIncorrectArgumentLength (line 94) | [DoesNotReturn] FILE: src/Orleans.Core/IDs/GenericGrainType.cs type GenericGrainType (line 12) | [Immutable] method GenericGrainType (line 20) | private GenericGrainType(GrainType grainType, int arity) method TryParse (line 44) | public static bool TryParse(GrainType grainType, out GenericGrainType ... method GetUnconstructedGrainType (line 60) | public GenericGrainType GetUnconstructedGrainType() method Construct (line 69) | public GenericGrainType Construct(TypeConverter formatter, params Type... method GetArguments (line 85) | public Type[] GetArguments(TypeConverter converter) => converter.GetAr... method ToString (line 88) | public override string ToString() => this.GrainType.ToString(); method Equals (line 91) | public bool Equals(GenericGrainType other) => this.GrainType.Equals(ot... method Equals (line 94) | public override bool Equals(object obj) => obj is GenericGrainType oth... method GetHashCode (line 97) | public override int GetHashCode() => this.GrainType.GetHashCode(); method ThrowIncorrectArgumentLength (line 99) | [DoesNotReturn] FILE: src/Orleans.Core/Lifecycle/ClusterClientLifecycle.cs class ClusterClientLifecycle (line 9) | internal class ClusterClientLifecycle : LifecycleSubject, IClusterClient... method ClusterClientLifecycle (line 15) | public ClusterClientLifecycle(ILogger logger) : base(logger) FILE: src/Orleans.Core/Lifecycle/ClusterClientLifecycleExtensions.cs class LifecycleParticipantExtensions (line 7) | public static class LifecycleParticipantExtensions method ParticipateIn (line 15) | public static ILifecycleParticipant ParticipateIn : ILifecycleParticipant method Bridge (line 29) | public Bridge(ILifecycleParticipant participant) method Participate (line 34) | public void Participate(TLifecycle lifecycle) FILE: src/Orleans.Core/Lifecycle/IClusterClientLifecycle.cs type IClusterClientLifecycle (line 6) | public interface IClusterClientLifecycle : ILifecycleObservable FILE: src/Orleans.Core/Lifecycle/LifecycleSubject.cs class LifecycleSubject (line 24) | public abstract partial class LifecycleSubject : ILifecycleSubject method LifecycleSubject (line 30) | protected LifecycleSubject(ILogger logger) method GetStageName (line 41) | protected virtual string GetStageName(int stage) => stage.ToString(); method GetStageNames (line 49) | protected static ImmutableDictionary GetStageNames(Type t... method PerfMeasureOnStart (line 87) | protected virtual void PerfMeasureOnStart(int stage, TimeSpan elapsed) method OnStart (line 93) | public virtual async Task OnStart(CancellationToken cancellationToken ... method OnStartStageCompleted (line 140) | protected virtual void OnStartStageCompleted(int stage) { } method PerfMeasureOnStop (line 147) | protected virtual void PerfMeasureOnStop(int stage, TimeSpan elapsed) method OnStop (line 153) | public virtual async Task OnStop(CancellationToken cancellationToken =... method CallObserverStopAsync (line 188) | protected virtual Task CallObserverStopAsync(ILifecycleObserver observ... method OnStopStageCompleted (line 204) | protected virtual void OnStopStageCompleted(int stage) { } method Subscribe (line 206) | public virtual IDisposable Subscribe(string observerName, int stage, I... class OrderedObserver (line 219) | private class OrderedObserver : IDisposable method OrderedObserver (line 236) | public OrderedObserver(int stage, ILifecycleObserver observer) method Dispose (line 243) | public void Dispose() => Observer = null; method LogErrorLifecycleStartFailure (line 246) | [LoggerMessage( method LogWarningLifecycleStopFailure (line 253) | [LoggerMessage( method LogWarningLifecycleStopCanceled (line 260) | [LoggerMessage( method LogLifecycleStageStarted (line 266) | [LoggerMessage( method LogLifecycleStageStopped (line 273) | [LoggerMessage( FILE: src/Orleans.Core/Lifecycle/MigrationContext.cs class MigrationContext (line 16) | [GenerateSerializer, Immutable, Alias("MigrationCtx")] method MigrationContext (line 30) | [GeneratedActivatorConstructor] method AddBytes (line 42) | public void AddBytes(string key, ReadOnlySpan value) method AddBytes (line 51) | public void AddBytes(string key, Action> val... method TryAddValue (line 62) | public bool TryAddValue(string key, T? value) method Reset (line 90) | public void Reset() method Dispose (line 100) | public void Dispose() => Reset(); method TryGetBytes (line 102) | public bool TryGetBytes(string key, out ReadOnlySequence value) method TryGetValue (line 117) | public bool TryGetValue(string key, [NotNullWhen(true)] out T? value) method Advance (line 137) | void IBufferWriter.Advance(int count) => _buffer.Advance(count); method GetMemory (line 138) | Memory IBufferWriter.GetMemory(int sizeHint) => _buffer.Ge... method GetSpan (line 139) | Span IBufferWriter.GetSpan(int sizeHint) => _buffer.GetSpa... method GetEnumerator (line 141) | IEnumerator IEnumerable.GetEnumerator() => new Enumera... method GetEnumerator (line 142) | IEnumerator IEnumerable.GetEnumerator() => new Enumerator(this); class Enumerator (line 144) | private sealed class Enumerator(MigrationContext context) : IEnumerato... method Dispose (line 150) | public void Dispose() => _value.Dispose(); method MoveNext (line 151) | public bool MoveNext() => _value.MoveNext(); method Reset (line 152) | public void Reset() FILE: src/Orleans.Core/Lifecycle/ServiceLifecycle.cs type IServiceLifecycle (line 11) | public interface IServiceLifecycle class ServiceLifecycle (line 29) | internal sealed class ServiceLifecycle(ILogger callback, ... class ServiceLifecycleNotificationStage (line 51) | internal sealed partial class ServiceLifecycleNotificationStage(ILogger ... method WaitAsync (line 65) | public Task WaitAsync(CancellationToken cancellationToken) => _tcs.Tas... method Register (line 67) | public IDisposable Register(Func cal... method NotifyCompleted (line 106) | public async Task NotifyCompleted(CancellationToken cancellationToken) method CancelTokenAsync (line 179) | private async Task CancelTokenAsync() method ExecuteParticipantAsync (line 193) | private async Task ExecuteParticipantAsync(StageParticipant participan... method Unregister (line 222) | private void Unregister(StageParticipant participant) type StageParticipant (line 230) | private record StageParticipant(ServiceLifecycleNotificationStage Stage, method LogStageAlreadyCompleted (line 237) | [LoggerMessage(Level = LogLevel.Information, Message = "Lifecycle stag... method LogLateCallbackError (line 240) | [LoggerMessage(Level = LogLevel.Error, Message = "Error executing late... method LogStageCanceled (line 243) | [LoggerMessage(Level = LogLevel.Information, Message = "Lifecycle stag... method LogCallbackError (line 246) | [LoggerMessage(Level = LogLevel.Error, Message = "Error executing call... method LogCancellationCallbackError (line 249) | [LoggerMessage(Level = LogLevel.Error, Message = "An exception occurre... FILE: src/Orleans.Core/Lifecycle/ServiceLifecycleStage.cs class ServiceLifecycleStage (line 7) | public static class ServiceLifecycleStage FILE: src/Orleans.Core/Manifest/ClientClusterManifestProvider.cs class ClientClusterManifestProvider (line 22) | internal partial class ClientClusterManifestProvider : IClusterManifestP... method ClientClusterManifestProvider (line 35) | public ClientClusterManifestProvider( method StartAsync (line 74) | public Task StartAsync() method StopAsync (line 80) | public async Task StopAsync(CancellationToken cancellationToken) method RunAsync (line 101) | private async Task RunAsync() method GetClusterManifestUpdate (line 202) | private async Task GetClusterManifestUpdate(IC... method DisposeAsync (line 222) | public async ValueTask DisposeAsync() method Dispose (line 237) | public void Dispose() method LogGracefulShutdownCanceled (line 242) | [LoggerMessage( method LogStoppingClusterManifestProvider (line 248) | [LoggerMessage( method LogRefreshedClusterManifest (line 254) | [LoggerMessage( method LogErrorTryingToGetClusterManifest (line 260) | [LoggerMessage( method LogStoppedRefreshingClusterManifest (line 266) | [LoggerMessage( method LogFailedToFetchClusterManifestUpdate (line 272) | [LoggerMessage( FILE: src/Orleans.Core/Manifest/ClientManifestProvider.cs class ClientManifestProvider (line 13) | internal class ClientManifestProvider method ClientManifestProvider (line 15) | public ClientManifestProvider( method CreateInterfaceManifest (line 29) | private static ImmutableDictionary R... method GetCache (line 196) | private Cache GetCache() method BuildLocalVersionMap (line 218) | private static Dictionary BuildLocalVersio... method BuildCache (line 237) | private static Cache BuildCache(ClusterManifest clusterManifest) class Cache (line 321) | private class Cache method Cache (line 323) | public Cache( FILE: src/Orleans.Core/Manifest/IClusterManifestProvider.cs type IClusterManifestProvider (line 10) | public interface IClusterManifestProvider FILE: src/Orleans.Core/Manifest/IClusterManifestSystemTarget.cs type IClusterManifestSystemTarget (line 11) | internal interface IClusterManifestSystemTarget : ISystemTarget method GetClusterManifest (line 17) | ValueTask GetClusterManifest(); method GetClusterManifestUpdate (line 23) | ValueTask GetClusterManifestUpdate(MajorMinorV... class ClusterManifestUpdate (line 29) | [GenerateSerializer, Immutable] method ClusterManifestUpdate (line 32) | public ClusterManifestUpdate( FILE: src/Orleans.Core/Manifest/ImplementedInterfaceProvider.cs class ImplementedInterfaceProvider (line 10) | internal sealed class ImplementedInterfaceProvider : IGrainPropertiesPro... method ImplementedInterfaceProvider (line 19) | public ImplementedInterfaceProvider(GrainInterfaceTypeResolver interfa... method Populate (line 25) | public void Populate(Type grainClass, GrainType grainType, Dictionary<... method GetKey (line 44) | private static string GetKey(int counter) => $"{WellKnownGrainTypeProp... method IsGrainInterface (line 51) | public static bool IsGrainInterface(Type type) FILE: src/Orleans.Core/Manifest/TypeNameGrainPropertiesProvider.cs class TypeNameGrainPropertiesProvider (line 11) | internal sealed class TypeNameGrainPropertiesProvider : IGrainProperties... method Populate (line 14) | public void Populate(Type grainClass, GrainType grainType, Dictionary<... method Populate (line 23) | public void Populate(Type interfaceType, GrainInterfaceType interfaceI... FILE: src/Orleans.Core/Messaging/CachingIdSpanCodec.cs class CachingIdSpanCodec (line 14) | internal sealed class CachingIdSpanCodec method CachingIdSpanCodec (line 27) | public CachingIdSpanCodec() method ReadRaw (line 32) | public IdSpan ReadRaw(ref Reader reader) method PurgeStaleEntries (line 76) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteRaw (line 89) | public void WriteRaw(ref Writer writer, ... FILE: src/Orleans.Core/Messaging/CachingSiloAddressCodec.cs class CachingSiloAddressCodec (line 15) | internal sealed class CachingSiloAddressCodec method CachingSiloAddressCodec (line 28) | public CachingSiloAddressCodec() method ReadRaw (line 33) | public SiloAddress ReadRaw(ref Reader reader) method PurgeStaleEntries (line 84) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadSiloAddressInner (line 97) | private static SiloAddress ReadSiloAddressInner(ref Reader(ref Writer writer, ... method WriteSiloAddressInner (line 153) | private static void WriteSiloAddressInner(ref Writer GetGatewayConnection(Message msg) method UpdateBucket (line 350) | private void UpdateBucket(uint index, ClientOutboundConnection connect... method RegisterLocalMessageHandler (line 360) | public void RegisterLocalMessageHandler(Action handler) method RejectMessage (line 365) | public void RejectMessage(Message msg, string reason, Exception exc = ... method OnGatewayConnectionOpen (line 382) | internal void OnGatewayConnectionOpen() method OnGatewayConnectionClosed (line 388) | internal void OnGatewayConnectionClosed() method Dispose (line 399) | public void Dispose() method LogNotRunning (line 404) | [LoggerMessage( method LogSendingMessage (line 411) | [LoggerMessage( method LogClientMessageCenterStarted (line 418) | [LoggerMessage( method LogSendFailed (line 424) | [LoggerMessage( method LogNoGatewayAvailableForMessage (line 431) | [LoggerMessage( method LogDroppingMessage (line 438) | [LoggerMessage( method LogRejectingMessage (line 445) | [LoggerMessage( FILE: src/Orleans.Core/Messaging/CorrelationId.cs type CorrelationId (line 7) | [Serializable, GenerateSerializer, Immutable] method CorrelationId (line 14) | public CorrelationId(long value) => id = value; method CorrelationId (line 16) | public CorrelationId(CorrelationId other) => id = other.id; method GetNext (line 18) | public static CorrelationId GetNext() => new(System.Threading.Interloc... method GetHashCode (line 20) | public override int GetHashCode() => id.GetHashCode(); method Equals (line 22) | public override bool Equals(object? obj) => obj is CorrelationId corre... method Equals (line 24) | public bool Equals(CorrelationId other) => id == other.id; method CompareTo (line 30) | public int CompareTo(CorrelationId other) => id.CompareTo(other.id); method ToString (line 32) | public override string ToString() => id.ToString("X16"); method ToString (line 34) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 36) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method ToInt64 (line 46) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Core/Messaging/GatewayManager.cs class GatewayManager (line 23) | internal partial class GatewayManager : IDisposable method GatewayManager (line 46) | public GatewayManager( method StartAsync (line 62) | public async Task StartAsync(CancellationToken cancellationToken) method StopAsync (line 98) | public async Task StopAsync(CancellationToken cancellationToken) method MarkAsDead (line 107) | public void MarkAsDead(SiloAddress gateway) method MarkAsUnavailableForSend (line 120) | public void MarkAsUnavailableForSend(SiloAddress gateway) method ToString (line 133) | public override string ToString() method GetLiveGateway (line 164) | public SiloAddress? GetLiveGateway() method GetLiveGateways (line 183) | public List GetLiveGateways() method IsGatewayAvailable (line 209) | public bool IsGatewayAvailable(SiloAddress siloAddress) method ExpediteUpdateLiveGatewaysSnapshot (line 214) | internal void ExpediteUpdateLiveGatewaysSnapshot() method PeriodicallyRefreshGatewaySnapshot (line 237) | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "... method RefreshGatewaySnapshot (line 253) | private async Task RefreshGatewaySnapshot() method UpdateLiveGatewaysSnapshot (line 275) | private async Task UpdateLiveGatewaysSnapshot(IEnumerable... method CloseEvictedGatewayConnections (line 352) | private async Task CloseEvictedGatewayConnections(List li... method Dispose (line 378) | public void Dispose() method LogNoGatewayDuringInitialization (line 383) | [LoggerMessage( type UrisLogValue (line 390) | private readonly struct UrisLogValue(IList uris) method ToString (line 392) | public override readonly string ToString() => Utils.EnumerableToStri... method LogFoundGateways (line 395) | [LoggerMessage( method LogAllGatewaysMarkedDead (line 402) | [LoggerMessage( method LogErrorRefreshingGateways (line 408) | [LoggerMessage( method LogClosingConnectionToDeadGateway (line 415) | [LoggerMessage( method LogAllGatewaysDead (line 421) | [LoggerMessage( type SiloAddressesLogValue (line 428) | private readonly struct SiloAddressesLogValue(List addres... method ToString (line 430) | public override string ToString() => Utils.EnumerableToString(addres... method LogRefreshedLiveGatewayList (line 433) | [LoggerMessage( FILE: src/Orleans.Core/Messaging/IGatewayListProvider.cs type IGatewayListProvider (line 10) | public interface IGatewayListProvider method InitializeGatewayListProvider (line 16) | Task InitializeGatewayListProvider(); method GetGateways (line 23) | Task> GetGateways(); FILE: src/Orleans.Core/Messaging/IMessageCenter.cs type IMessageCenter (line 3) | internal interface IMessageCenter method SendMessage (line 5) | void SendMessage(Message msg); method DispatchLocalMessage (line 7) | void DispatchLocalMessage(Message message); FILE: src/Orleans.Core/Messaging/InvalidMessageFrameException.cs class InvalidMessageFrameException (line 11) | [GenerateSerializer] method InvalidMessageFrameException (line 17) | public InvalidMessageFrameException() method InvalidMessageFrameException (line 25) | public InvalidMessageFrameException(string message) : base(message) method InvalidMessageFrameException (line 34) | public InvalidMessageFrameException(string message, Exception innerExc... method InvalidMessageFrameException (line 38) | [Obsolete] FILE: src/Orleans.Core/Messaging/Message.cs class Message (line 10) | [Id(101)] type Directions (line 41) | [GenerateSerializer] type ResponseTypes (line 50) | [GenerateSerializer] type RejectionTypes (line 60) | [GenerateSerializer] method GetTimeToLiveMilliseconds (line 226) | internal long GetTimeToLiveMilliseconds() => -_timeToExpiry.ElapsedMil... method SetTimeToLiveMilliseconds (line 228) | internal void SetTimeToLiveMilliseconds(long milliseconds) method SetInfiniteTimeToLive (line 234) | internal void SetInfiniteTimeToLive() method IsExpirableMessage (line 270) | public bool IsExpirableMessage() method AddToCacheInvalidationHeader (line 279) | internal void AddToCacheInvalidationHeader(GrainAddress invalidAddress... method ToString (line 307) | public override string ToString() => $"{this}"; method ToString (line 309) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 311) | bool ISpanFormattable.TryFormat(Span dst, out int charsWritten, ... method IsPing (line 373) | internal bool IsPing() => _requestContextData?.TryGetValue(RequestCont... type MessageFlags (line 375) | [Flags] type PackedHeaders (line 399) | internal struct PackedHeaders method HasFlag (line 436) | public readonly bool HasFlag(MessageFlags flag) => (_fields & (uint)... method SetFlag (line 438) | public void SetFlag(MessageFlags flag, bool value) => _fields = valu... FILE: src/Orleans.Core/Messaging/MessageFactory.cs class MessageFactory (line 10) | internal partial class MessageFactory method MessageFactory (line 21) | public MessageFactory(DeepCopier deepCopier, ILogger l... method CreateMessage (line 32) | public Message CreateMessage(object body, InvokeMethodOptions options) method GetNextCorrelationId (line 49) | private CorrelationId GetNextCorrelationId() method CreateResponseMessage (line 55) | public Message CreateResponseMessage(Message request) method CreateRejectionResponse (line 77) | public Message CreateRejectionResponse(Message request, Message.Reject... method CreateDiagnosticResponseMessage (line 91) | internal Message CreateDiagnosticResponseMessage(Message request, bool... method LogCreatingRejectionResponse (line 101) | [LoggerMessage( type DiagnosticsLogValue (line 107) | private readonly struct DiagnosticsLogValue(List diagnostics) method ToString (line 109) | public override string ToString() => string.Join(", ", diagnostics); method LogCreatingStatusUpdate (line 112) | [LoggerMessage( FILE: src/Orleans.Core/Messaging/MessageSerializer.cs class MessageSerializer (line 24) | internal sealed class MessageSerializer method MessageSerializer (line 41) | public MessageSerializer( method TryRead (line 56) | public (int RequiredBytes, int HeaderLength, int BodyLength) TryRead(r... method ReadBodyObject (line 128) | private void ReadBodyObject(Message message, ref Reader throw new I... method ThrowInvalidBodyLength (line 222) | private void ThrowInvalidBodyLength(int bodyLength) => throw new Inval... method Serialize (line 224) | private void Serialize(ref Writer writer... method Deserialize (line 261) | private void Deserialize(ref Reader reader, Message re... method ReadCacheInvalidationHeaders (line 303) | internal List ReadCacheInvalidationHeaders(ref Writer<... method ReadString (line 342) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteString (line 359) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteRequestContext (line 373) | private static void WriteRequestContext(ref Writer ReadRequestContext(r... method ReadGrainId (line 399) | private GrainId ReadGrainId(ref Reader reader) method WriteGrainId (line 406) | private void WriteGrainId(ref Writer wri... type MessageBufferWriter (line 413) | internal readonly struct MessageBufferWriter : IBufferWriter method MessageBufferWriter (line 416) | public MessageBufferWriter(PrefixingBufferWriter buffer) => _buffer = ... method Advance (line 417) | public void Advance(int count) => _buffer.Advance(count); method GetMemory (line 418) | public Memory GetMemory(int sizeHint = 0) => _buffer.GetMemory(s... method GetSpan (line 419) | public Span GetSpan(int sizeHint = 0) => _buffer.GetSpan(sizeHint); FILE: src/Orleans.Core/Messaging/OverloadDetectionLogic.cs class OverloadDetectionLogic (line 6) | internal static class OverloadDetectionLogic method IsOverloaded (line 12) | public static bool IsOverloaded(ref readonly EnvironmentStatistics sta... FILE: src/Orleans.Core/Messaging/PrefixingBufferWriter.cs class PrefixingBufferWriter (line 17) | internal sealed class PrefixingBufferWriter : IBufferWriter, IDisp... method PrefixingBufferWriter (line 67) | public PrefixingBufferWriter(int prefixSize, int payloadSizeHint, Memo... method Advance (line 83) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method AdvancePrivateWriter (line 97) | [MethodImpl(MethodImplOptions.NoInlining)] method GetMemory (line 105) | public Memory GetMemory(int sizeHint = 0) method GetSpan (line 123) | public Span GetSpan(int sizeHint = 0) method Complete (line 139) | public void Complete(ReadOnlySpan prefix) method CompletePrivateWriter (line 162) | private void CompletePrivateWriter() method Init (line 174) | public void Init(PipeWriter writer) => innerWriter = writer; method Reset (line 179) | public void Reset() method Dispose (line 190) | public void Dispose() method Initialize (line 199) | private void Initialize(int sizeHint) class Sequence (line 213) | [DebuggerDisplay("{" + nameof(DebuggerDisplay) + ",nq}")] method Sequence (line 230) | public Sequence(MemoryPool memoryPool) method Advance (line 254) | public void Advance(int count) => last.Advance(count); method GetMemory (line 261) | public Memory GetMemory(int sizeHint) method Dispose (line 269) | public void Dispose() method Append (line 280) | private Memory Append(int sizeHint) method RecycleAndGetNext (line 324) | private SequenceSegment RecycleAndGetNext(SequenceSegment segment) class SequenceSegment (line 333) | private sealed class SequenceSegment : ReadOnlySequenceSegment method SetMemory (line 369) | internal void SetMemory(IMemoryOwner memoryOwner) method ResetMemory (line 375) | internal void ResetMemory() method SetNext (line 388) | internal void SetNext(SequenceSegment segment) method Advance (line 394) | public void Advance(int count) FILE: src/Orleans.Core/Messaging/RejectionResponse.cs class RejectionResponse (line 5) | [Id(102), GenerateSerializer, Immutable] FILE: src/Orleans.Core/Messaging/StaticGatewayListProvider.cs class StaticGatewayListProvider (line 12) | public class StaticGatewayListProvider : IGatewayListProvider method StaticGatewayListProvider (line 22) | public StaticGatewayListProvider(IOptions Task.CompletedTask; method GetGateways (line 32) | public Task> GetGateways() => Task.FromResult>(t... FILE: src/Orleans.Core/Messaging/StaticGatewayListProviderBuilder.cs class StaticGatewayListProviderBuilder (line 13) | internal sealed class StaticGatewayListProviderBuilder : IProviderBuilde... method Configure (line 15) | public void Configure(IClientBuilder builder, string name, IConfigurat... FILE: src/Orleans.Core/Messaging/StatusResponse.cs class StatusResponse (line 6) | [Id(103), Serializable, GenerateSerializer, Immutable] method StatusResponse (line 12) | public StatusResponse(bool isExecuting, bool isWaiting, List d... method ToString (line 27) | public override string ToString() => $"IsExecuting: {IsExecuting}, IsW... FILE: src/Orleans.Core/Networking/ClientConnectionOptions.cs class ClientConnectionOptions (line 9) | public class ClientConnectionOptions method ConfigureConnection (line 17) | public void ConfigureConnection(Action configure) ... method ConfigureConnectionBuilder (line 23) | internal void ConfigureConnectionBuilder(IConnectionBuilder builder) =... FILE: src/Orleans.Core/Networking/ClientOutboundConnection.cs method ClientOutboundConnection (line 20) | public ClientOutboundConnection( method RecordMessageReceive (line 46) | protected override void RecordMessageReceive(Message msg, int numTotalBy... method RecordMessageSend (line 51) | protected override void RecordMessageSend(Message msg, int numTotalBytes... method OnReceivedMessage (line 56) | protected override void OnReceivedMessage(Message message) FILE: src/Orleans.Core/Networking/ClientOutboundConnectionFactory.cs class ClientOutboundConnectionFactory (line 10) | internal sealed class ClientOutboundConnectionFactory : ConnectionFactory method ClientOutboundConnectionFactory (line 26) | public ClientOutboundConnectionFactory( method CreateConnection (line 40) | protected override Connection CreateConnection(SiloAddress address, Co... method ConfigureConnectionBuilder (line 56) | protected override void ConfigureConnectionBuilder(IConnectionBuilder ... method EnsureInitialized (line 62) | private void EnsureInitialized() FILE: src/Orleans.Core/Networking/Connection.cs class Connection (line 19) | internal abstract partial class Connection method Connection (line 43) | protected Connection( method ConfigureBuilder (line 76) | public static void ConfigureBuilder(ConnectionBuilder builder) => buil... method Run (line 82) | public async Task Run() method OnConnectedAsync (line 100) | private static Task OnConnectedAsync(ConnectionContext context) method RunInternal (line 109) | protected virtual async Task RunInternal() method PrepareMessageForSend (line 123) | protected abstract bool PrepareMessageForSend(Message msg); method RetryMessage (line 125) | protected abstract void RetryMessage(Message msg, Exception ex = null); method CloseAsync (line 127) | public Task CloseAsync(Exception exception) method OnTransportConnectionClosed (line 133) | private void OnTransportConnectionClosed() method StartClosing (line 139) | private void StartClosing(Exception exception) method CloseAsync (line 163) | private async Task CloseAsync() method Send (line 255) | public virtual void Send(Message message) method ToString (line 264) | public override string ToString() => $"[Local: {this.LocalEndPoint}, R... method RecordMessageReceive (line 266) | protected abstract void RecordMessageReceive(Message msg, int numTotal... method RecordMessageSend (line 267) | protected abstract void RecordMessageSend(Message msg, int numTotalByt... method OnReceivedMessage (line 268) | protected abstract void OnReceivedMessage(Message message); method OnSendMessageFailure (line 269) | protected abstract void OnSendMessageFailure(Message message, string e... method ProcessIncoming (line 271) | private async Task ProcessIncoming() method ProcessOutgoing (line 338) | private async Task ProcessOutgoing() method RerouteMessage (line 403) | private void RerouteMessage(Message message) method NormalizeEndpoint (line 414) | private static EndPoint NormalizeEndpoint(EndPoint endpoint) method HandleReceiveMessageFailure (line 431) | private bool HandleReceiveMessageFailure(Message message, Exception ex... method HandleSendMessageFailure (line 470) | private bool HandleSendMessageFailure(Message message, Exception excep... class MessageHandlerPoolPolicy (line 516) | private sealed class MessageHandlerPoolPolicy : PooledObjectPolicy new MessageHandler(); method Return (line 520) | public override bool Return(MessageHandler obj) class MessageHandler (line 527) | private sealed class MessageHandler : IThreadPoolWorkItem method Set (line 532) | public void Set(Message m, Connection c) method Execute (line 538) | public void Execute() method Reset (line 544) | public void Reset() type EndPointLogValue (line 551) | private readonly struct EndPointLogValue(EndPoint endPoint) method ToString (line 553) | public override string ToString() => endPoint?.ToString() ?? "(never... method LogInformationClosingConnection (line 556) | [LoggerMessage( method LogWarningExceptionProcessingIncomingMessages (line 562) | [LoggerMessage( method LogWarningExceptionProcessingOutgoingMessages (line 568) | [LoggerMessage( method LogWarningExceptionAbortingConnection (line 574) | [LoggerMessage( method LogWarningExceptionTerminatingConnection (line 580) | [LoggerMessage( method LogInformationReroutingMessages (line 586) | [LoggerMessage( method LogInformationReroutedMessages (line 592) | [LoggerMessage( method LogWarningExceptionProcessingMessagesFromRemote (line 598) | [LoggerMessage( method LogWarningExceptionProcessingMessagesToRemote (line 604) | [LoggerMessage( method LogInformationReroutingMessage (line 610) | [LoggerMessage( method LogErrorExceptionReadingMessage (line 616) | [LoggerMessage( method LogErrorExceptionSendingMessage (line 622) | [LoggerMessage( method LogWarningDroppingMessage (line 628) | [LoggerMessage( FILE: src/Orleans.Core/Networking/ConnectionBuilderDelegates.cs class ConnectionBuilderDelegates (line 7) | internal class ConnectionBuilderDelegates method Add (line 11) | public void Add(Action configure) method Invoke (line 14) | public void Invoke(IConnectionBuilder builder) FILE: src/Orleans.Core/Networking/ConnectionFactory.cs class ConnectionFactory (line 10) | internal abstract class ConnectionFactory method ConnectionFactory (line 16) | protected ConnectionFactory( method ConfigureConnectionBuilder (line 55) | protected virtual void ConfigureConnectionBuilder(IConnectionBuilder c... method CreateConnection (line 57) | protected abstract Connection CreateConnection(SiloAddress address, Co... method ConnectAsync (line 59) | public virtual async ValueTask ConnectAsync(SiloAddress ad... FILE: src/Orleans.Core/Networking/ConnectionFailedException.cs class ConnectionFailedException (line 9) | public class ConnectionFailedException : OrleansException method ConnectionFailedException (line 14) | public ConnectionFailedException() method ConnectionFailedException (line 22) | public ConnectionFailedException(string message) : base(message) method ConnectionFailedException (line 31) | public ConnectionFailedException(string message, Exception innerExcept... method ConnectionFailedException (line 40) | [Obsolete] FILE: src/Orleans.Core/Networking/ConnectionLogScope.cs class ConnectionLogScope (line 7) | internal class ConnectionLogScope : IReadOnlyList> GetEnumerator() method GetEnumerator (line 51) | IEnumerator IEnumerable.GetEnumerator() method ToString (line 56) | public override string ToString() FILE: src/Orleans.Core/Networking/ConnectionManager.cs class ConnectionManager (line 15) | internal sealed partial class ConnectionManager method ConnectionManager (line 32) | public ConnectionManager( method GetConnectedAddresses (line 47) | public List GetConnectedAddresses() => connections.Select... method GetConnection (line 49) | public ValueTask GetConnection(SiloAddress endpoint) method TryGetConnection (line 66) | public bool TryGetConnection(SiloAddress endpoint, out Connection conn... method GetConnectionAsync (line 78) | private async Task GetConnectionAsync(SiloAddress endpoint) method OnConnectionFailed (line 114) | private void OnConnectionFailed(ConnectionEntry entry) method OnConnected (line 125) | public void OnConnected(SiloAddress address, Connection connection) =>... method OnConnected (line 127) | private void OnConnected(SiloAddress address, Connection connection, C... method OnConnectionTerminated (line 140) | public void OnConnectionTerminated(SiloAddress address, Connection con... method GetOrCreateEntry (line 172) | private ConnectionEntry GetOrCreateEntry(SiloAddress address) => conne... method ConnectAsync (line 174) | private async Task ConnectAsync(SiloAddress address, Conne... method CloseAsync (line 216) | public async Task CloseAsync(SiloAddress endpoint) method Close (line 255) | public async Task Close(CancellationToken ct) method StartConnection (line 306) | private void StartConnection(SiloAddress address, Connection connection) method RunConnectionAsync (line 315) | private async Task RunConnectionAsync(SiloAddress address, Connection ... method BeginConnectionScope (line 335) | private IDisposable BeginConnectionScope(Connection connection) class ConnectionEntry (line 345) | private sealed class ConnectionEntry method GetRemainingRetryDelay (line 351) | public TimeSpan GetRemainingRetryDelay(ConnectionOptions options) method HasSufficientConnections (line 367) | public bool HasSufficientConnections(ConnectionOptions options) => C... method NextConnection (line 369) | public Connection NextConnection() method RemoveDefunct (line 381) | public void RemoveDefunct() => Connections = Connections.RemoveAll(c... method LogInformationConnectionEstablished (line 384) | [LoggerMessage( method LogWarningConnectionTerminated (line 390) | [LoggerMessage( method LogDebugConnectionClosed (line 396) | [LoggerMessage( method LogInformationEstablishingConnection (line 402) | [LoggerMessage( method LogInformationConnectedToEndpoint (line 408) | [LoggerMessage( method LogWarningConnectionAttemptFailed (line 414) | [LoggerMessage( method LogDebugShuttingDownConnections (line 420) | [LoggerMessage( method LogWarningWaitingForConnectionsToTerminate (line 426) | [LoggerMessage( method LogWarningExceptionDuringShutdown (line 432) | [LoggerMessage( FILE: src/Orleans.Core/Networking/ConnectionManagerLifecycleAdapter.cs class ConnectionManagerLifecycleAdapter (line 6) | internal class ConnectionManagerLifecycleAdapter method ConnectionManagerLifecycleAdapter (line 11) | public ConnectionManagerLifecycleAdapter(ConnectionManager connectionM... method OnStart (line 16) | public Task OnStart(CancellationToken ct) => Task.CompletedTask; method OnStop (line 18) | public async Task OnStop(CancellationToken ct) method Participate (line 23) | public void Participate(TLifecycle lifecycle) FILE: src/Orleans.Core/Networking/ConnectionOptions.cs class ConnectionOptions (line 9) | public class ConnectionOptions FILE: src/Orleans.Core/Networking/ConnectionPreamble.cs class ConnectionPreamble (line 11) | [GenerateSerializer, Immutable] class ConnectionPreambleHelper (line 27) | internal sealed class ConnectionPreambleHelper method ConnectionPreambleHelper (line 31) | public ConnectionPreambleHelper(Serializer preambl... method Write (line 36) | internal async ValueTask Write(ConnectionContext connection, Connectio... method WriteLength (line 63) | private static void WriteLength(PrefixingBufferWriter outputWriter, in... method Read (line 70) | internal async ValueTask Read(ConnectionContext co... FILE: src/Orleans.Core/Networking/ConnectionShared.cs class ConnectionCommon (line 6) | internal sealed class ConnectionCommon( FILE: src/Orleans.Core/Networking/IUnderlyingTransportFeature.cs type IUnderlyingTransportFeature (line 8) | internal interface IUnderlyingTransportFeature class UnderlyingConnectionTransportFeature (line 19) | internal class UnderlyingConnectionTransportFeature : IUnderlyingTranspo... FILE: src/Orleans.Core/Networking/NetworkProtocolVersion.cs type NetworkProtocolVersion (line 6) | public enum NetworkProtocolVersion : byte FILE: src/Orleans.Core/Networking/NetworkingTrace.cs class NetworkingTrace (line 8) | internal sealed class NetworkingTrace : DiagnosticListener, ILogger method NetworkingTrace (line 12) | public NetworkingTrace(ILoggerFactory loggerFactory) : base(typeof(Net... method BeginScope (line 17) | public IDisposable BeginScope(TState state) method IsEnabled (line 22) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Log (line 28) | public void Log(LogLevel logLevel, EventId eventId, TState sta... FILE: src/Orleans.Core/Networking/Shared/BufferExtensions.cs class BufferExtensions (line 6) | internal static class BufferExtensions method GetArray (line 8) | public static ArraySegment GetArray(this Memory memory) =>... method GetArray (line 10) | public static ArraySegment GetArray(this ReadOnlyMemory me... FILE: src/Orleans.Core/Networking/Shared/CorrelationIdGenerator.cs class CorrelationIdGenerator (line 6) | internal static class CorrelationIdGenerator method GetNextId (line 16) | public static string GetNextId() => GenerateId(Interlocked.Increment(r... method GenerateId (line 18) | private static string GenerateId(long id) FILE: src/Orleans.Core/Networking/Shared/DuplexPipe.cs class DuplexPipe (line 5) | internal class DuplexPipe : IDuplexPipe method DuplexPipe (line 7) | public DuplexPipe(PipeReader reader, PipeWriter writer) method CreateConnectionPair (line 17) | public static DuplexPipePair CreateConnectionPair(PipeOptions inputOpt... type DuplexPipePair (line 29) | public readonly struct DuplexPipePair method DuplexPipePair (line 34) | public DuplexPipePair(IDuplexPipe transport, IDuplexPipe application) FILE: src/Orleans.Core/Networking/Shared/IOQueue.cs class IOQueue (line 8) | internal sealed class IOQueue : PipeScheduler, IThreadPoolWorkItem method Schedule (line 13) | public override void Schedule(Action action, object state) method Execute (line 25) | public void Execute() FILE: src/Orleans.Core/Networking/Shared/ISocketsTrace.cs type ISocketsTrace (line 6) | internal interface ISocketsTrace : ILogger method ConnectionReadFin (line 8) | void ConnectionReadFin(string connectionId); method ConnectionWriteFin (line 10) | void ConnectionWriteFin(string connectionId, string reason); method ConnectionError (line 12) | void ConnectionError(string connectionId, Exception ex); method ConnectionReset (line 14) | void ConnectionReset(string connectionId); method ConnectionPause (line 16) | void ConnectionPause(string connectionId); method ConnectionResume (line 18) | void ConnectionResume(string connectionId); FILE: src/Orleans.Core/Networking/Shared/KestrelMemoryPool.cs class KestrelMemoryPool (line 5) | internal static class KestrelMemoryPool method Create (line 7) | public static MemoryPool Create() method CreateSlabMemoryPool (line 12) | public static MemoryPool CreateSlabMemoryPool() FILE: src/Orleans.Core/Networking/Shared/MemoryPoolBlock.cs class MemoryPoolBlock (line 11) | internal sealed class MemoryPoolBlock : IMemoryOwner method MemoryPoolBlock (line 19) | internal MemoryPoolBlock(SlabMemoryPool pool, MemoryPoolSlab slab, int... method Dispose (line 47) | public void Dispose() method Lease (line 52) | public void Lease() FILE: src/Orleans.Core/Networking/Shared/MemoryPoolSlab.cs class MemoryPoolSlab (line 10) | internal class MemoryPoolSlab : IDisposable method MemoryPoolSlab (line 19) | public MemoryPoolSlab(byte[] data) method Create (line 40) | public static MemoryPoolSlab Create(int length) method Dispose (line 49) | protected void Dispose(bool disposing) method Dispose (line 72) | public void Dispose() FILE: src/Orleans.Core/Networking/Shared/SharedMemoryPool.cs class SharedMemoryPool (line 5) | internal sealed class SharedMemoryPool FILE: src/Orleans.Core/Networking/Shared/SlabMemoryPool.cs class SlabMemoryPool (line 12) | internal sealed class SlabMemoryPool : MemoryPool method Rent (line 68) | public override IMemoryOwner Rent(int size = AnySize) method Lease (line 83) | private MemoryPoolBlock Lease() method AllocateSlab (line 107) | private MemoryPoolBlock AllocateSlab() method Return (line 149) | internal void Return(MemoryPoolBlock block) method RefreshBlock (line 168) | internal void RefreshBlock(MemoryPoolSlab slab, int offset, int length) method Dispose (line 182) | protected override void Dispose(bool disposing) method ThrowArgumentOutOfRangeException_BufferRequestTooLarge (line 210) | private static void ThrowArgumentOutOfRangeException_BufferRequestTooL... method ThrowObjectDisposedException (line 215) | private static void ThrowObjectDisposedException() => throw new Object... FILE: src/Orleans.Core/Networking/Shared/SocketAwaitableEventArgs.cs class SocketAwaitableEventArgs (line 11) | internal class SocketAwaitableEventArgs : SocketAsyncEventArgs, ICritica... method SocketAwaitableEventArgs (line 19) | public SocketAwaitableEventArgs(PipeScheduler ioScheduler) method GetAwaiter (line 24) | public SocketAwaitableEventArgs GetAwaiter() => this; method GetResult (line 27) | public int GetResult() method OnCompleted (line 46) | public void OnCompleted(Action continuation) method UnsafeOnCompleted (line 55) | public void UnsafeOnCompleted(Action continuation) method Complete (line 60) | public void Complete() method OnCompleted (line 65) | protected override void OnCompleted(SocketAsyncEventArgs _) FILE: src/Orleans.Core/Networking/Shared/SocketConnection.cs class SocketConnection (line 14) | internal sealed partial class SocketConnection : TransportConnection method SocketConnection (line 37) | internal SocketConnection(Socket socket, method Start (line 84) | public void Start() method StartAsync (line 89) | private async Task StartAsync() method Abort (line 110) | public override void Abort(ConnectionAbortedException abortReason) method DisposeAsync (line 120) | public override async ValueTask DisposeAsync() method DoReceive (line 133) | private async Task DoReceive() method ProcessReceives (line 183) | private async Task ProcessReceives() method DoSend (line 230) | private async Task DoSend() method ProcessSends (line 269) | private async Task ProcessSends() method FireConnectionClosed (line 300) | private void FireConnectionClosed() method Shutdown (line 319) | private void Shutdown(Exception shutdownReason) method CancelConnectionClosedToken (line 354) | private void CancelConnectionClosedToken() method IsConnectionResetError (line 366) | private static bool IsConnectionResetError(SocketError errorCode) method IsConnectionAbortError (line 376) | private static bool IsConnectionAbortError(SocketError errorCode) method LogErrorUnexpectedExceptionInStartAsync (line 384) | [LoggerMessage( method LogErrorUnexpectedExceptionInCancelConnectionClosedToken (line 390) | [LoggerMessage( FILE: src/Orleans.Core/Networking/Shared/SocketConnectionFactory.cs class SocketConnectionFactory (line 15) | internal class SocketConnectionFactory : IConnectionFactory method SocketConnectionFactory (line 22) | public SocketConnectionFactory(ILoggerFactory loggerFactory, SocketSch... method ConnectAsync (line 31) | public async ValueTask ConnectAsync(EndPoint endpoi... class SingleUseSocketAsyncEventArgs (line 74) | private sealed class SingleUseSocketAsyncEventArgs : SocketAsyncEventArgs method OnCompleted (line 80) | protected override void OnCompleted(SocketAsyncEventArgs _) => this.... class SocketConnectionException (line 84) | [Serializable] method SocketConnectionException (line 88) | public SocketConnectionException(string message) : base(message) { } method SocketConnectionException (line 90) | public SocketConnectionException(string message, Exception innerExcept... method SocketConnectionException (line 92) | [Obsolete] FILE: src/Orleans.Core/Networking/Shared/SocketConnectionListener.cs class SocketConnectionListener (line 12) | internal sealed class SocketConnectionListener : IConnectionListener method SocketConnectionListener (line 22) | internal SocketConnectionListener( method Bind (line 39) | internal void Bind() method AcceptAsync (line 85) | public async ValueTask AcceptAsync(CancellationToke... method UnbindAsync (line 125) | public ValueTask UnbindAsync(CancellationToken cancellationToken) method DisposeAsync (line 132) | public ValueTask DisposeAsync() FILE: src/Orleans.Core/Networking/Shared/SocketConnectionListenerFactory.cs class SocketConnectionListenerFactory (line 11) | internal sealed class SocketConnectionListenerFactory : IConnectionListe... method SocketConnectionListenerFactory (line 17) | public SocketConnectionListenerFactory( method BindAsync (line 33) | public ValueTask BindAsync(EndPoint endpoint, Can... FILE: src/Orleans.Core/Networking/Shared/SocketConnectionOptions.cs class SocketConnectionOptions (line 9) | public class SocketConnectionOptions FILE: src/Orleans.Core/Networking/Shared/SocketExtensions.cs class SocketExtensions (line 7) | internal static class SocketExtensions method EnableFastPath (line 18) | internal static void EnableFastPath(this Socket socket) method EnableKeepAlive (line 48) | internal static void EnableKeepAlive(this Socket socket, int timeSecon... FILE: src/Orleans.Core/Networking/Shared/SocketReceiver.cs class SocketReceiver (line 7) | internal sealed class SocketReceiver : SocketSenderReceiverBase method SocketReceiver (line 9) | public SocketReceiver(Socket socket, PipeScheduler scheduler) : base(s... method WaitForDataAsync (line 13) | public SocketAwaitableEventArgs WaitForDataAsync() method ReceiveAsync (line 25) | public SocketAwaitableEventArgs ReceiveAsync(Memory buffer) FILE: src/Orleans.Core/Networking/Shared/SocketSchedulers.cs class SocketSchedulers (line 6) | internal class SocketSchedulers method SocketSchedulers (line 13) | public SocketSchedulers(IOptions options) method GetScheduler (line 33) | public PipeScheduler GetScheduler() => _schedulers[++nextScheduler % _... FILE: src/Orleans.Core/Networking/Shared/SocketSender.cs class SocketSender (line 11) | internal sealed class SocketSender : SocketSenderReceiverBase method SocketSender (line 15) | public SocketSender(Socket socket, PipeScheduler scheduler) : base(soc... method SendAsync (line 19) | public SocketAwaitableEventArgs SendAsync(in ReadOnlySequence bu... method SendAsync (line 41) | private SocketAwaitableEventArgs SendAsync(ReadOnlyMemory memory) method GetBufferList (line 59) | private List> GetBufferList(in ReadOnlySequence _awaitableEventArgs.Dispose(); FILE: src/Orleans.Core/Networking/Shared/SocketsTrace.cs class SocketsTrace (line 6) | internal partial class SocketsTrace : ISocketsTrace method SocketsTrace (line 11) | public SocketsTrace(ILogger logger) method ConnectionRead (line 16) | public void ConnectionRead(string connectionId, int count) method ConnectionReadFin (line 22) | [LoggerMessage( method ConnectionWriteFin (line 29) | [LoggerMessage( method ConnectionWrite (line 36) | public void ConnectionWrite(string connectionId, int count) method ConnectionWriteCallback (line 42) | public void ConnectionWriteCallback(string connectionId, int status) method ConnectionError (line 48) | [LoggerMessage( method ConnectionReset (line 55) | [LoggerMessage( method ConnectionPause (line 62) | [LoggerMessage( method ConnectionResume (line 69) | [LoggerMessage( method BeginScope (line 76) | public IDisposable BeginScope(TState state) => _logger.BeginSc... method IsEnabled (line 78) | public bool IsEnabled(LogLevel logLevel) => _logger.IsEnabled(logLevel); method Log (line 80) | public void Log(LogLevel logLevel, EventId eventId, TState sta... FILE: src/Orleans.Core/Networking/Shared/TransportConnection.Features.cs type IConnectionIdFeature (line 13) | internal interface IConnectionIdFeature type IConnectionTransportFeature (line 18) | internal interface IConnectionTransportFeature type IConnectionItemsFeature (line 22) | internal interface IConnectionItemsFeature class TransportConnection (line 27) | internal partial class TransportConnection : IConnectionIdFeature, method Abort (line 57) | void IConnectionLifetimeFeature.Abort() => Abort(new ConnectionAborted... method FastReset (line 78) | private void FastReset() method ResetFeatureCollection (line 89) | internal void ResetFeatureCollection() method ExtraFeatureGet (line 96) | private object ExtraFeatureGet(Type key) method ExtraFeatureSet (line 113) | private void ExtraFeatureSet(Type key, object value) method Get (line 199) | TFeature IFeatureCollection.Get() method Set (line 230) | void IFeatureCollection.Set(TFeature feature) method FastEnumerable (line 259) | private IEnumerable> FastEnumerable() method GetEnumerator (line 291) | IEnumerator> IEnumerable FastEnumerable().GetEnumera... class TransportConnection (line 60) | internal partial class TransportConnection : IFeatureCollection method Abort (line 57) | void IConnectionLifetimeFeature.Abort() => Abort(new ConnectionAborted... method FastReset (line 78) | private void FastReset() method ResetFeatureCollection (line 89) | internal void ResetFeatureCollection() method ExtraFeatureGet (line 96) | private object ExtraFeatureGet(Type key) method ExtraFeatureSet (line 113) | private void ExtraFeatureSet(Type key, object value) method Get (line 199) | TFeature IFeatureCollection.Get() method Set (line 230) | void IFeatureCollection.Set(TFeature feature) method FastEnumerable (line 259) | private IEnumerable> FastEnumerable() method GetEnumerator (line 291) | IEnumerator> IEnumerable FastEnumerable().GetEnumera... FILE: src/Orleans.Core/Networking/Shared/TransportConnection.cs class TransportConnection (line 11) | internal abstract partial class TransportConnection : ConnectionContext method TransportConnection (line 16) | public TransportConnection() method Abort (line 70) | public override void Abort(ConnectionAbortedException abortReason) FILE: src/Orleans.Core/Networking/SocketDirection.cs type ConnectionDirection (line 3) | internal enum ConnectionDirection : byte FILE: src/Orleans.Core/Placement/IPlacementContext.cs type IPlacementContext (line 8) | public interface IPlacementContext method GetCompatibleSilos (line 17) | SiloAddress[] GetCompatibleSilos(PlacementTarget target); method GetCompatibleSilosWithVersions (line 26) | IReadOnlyDictionary GetCompatibleSilosWithVersi... FILE: src/Orleans.Core/Placement/IPlacementDirector.cs type IPlacementDirector (line 10) | public interface IPlacementDirector method OnAddActivation (line 24) | Task OnAddActivation( method GetPlacementHint (line 33) | public static SiloAddress GetPlacementHint(Dictionary ... FILE: src/Orleans.Core/Placement/IPlacementFilterDirector.cs type IPlacementFilterDirector (line 8) | public interface IPlacementFilterDirector method Filter (line 10) | IEnumerable Filter(PlacementFilterStrategy filterStrategy... FILE: src/Orleans.Core/Placement/PlacementFilterExtensions.cs class PlacementFilterExtensions (line 6) | public static class PlacementFilterExtensions method AddPlacementFilter (line 16) | public static IServiceCollection AddPlacementFilter GetRebalancingReport(bool force = false); method ResumeRebalancing (line 21) | Task ResumeRebalancing(); method SuspendRebalancing (line 24) | Task SuspendRebalancing(TimeSpan? duration = null); method SubscribeToReports (line 30) | void SubscribeToReports(IActivationRebalancerReportListener listener); method UnsubscribeFromReports (line 36) | void UnsubscribeFromReports(IActivationRebalancerReportListener listen... FILE: src/Orleans.Core/Placement/Rebalancing/IActivationRebalancerMonitor.cs type IActivationRebalancerMonitor (line 8) | [Alias("IActivationRebalancerMonitor")] method Report (line 19) | [Alias("Report")] Task Report(RebalancingReport report); FILE: src/Orleans.Core/Placement/Rebalancing/IActivationRebalancerReportListener.cs type IActivationRebalancerReportListener (line 6) | public interface IActivationRebalancerReportListener method OnReport (line 12) | void OnReport(RebalancingReport report); FILE: src/Orleans.Core/Placement/Rebalancing/IActivationRebalancerWorker.cs type IActivationRebalancerWorker (line 7) | [Alias("IActivationRebalancerWorker")] method GetReport (line 14) | [AlwaysInterleave, Alias("GetReport")] ValueTask Ge... method ResumeRebalancing (line 19) | [Alias("ResumeRebalancing")] Task ResumeRebalancing(); method SuspendRebalancing (line 28) | [Alias("SuspendRebalancing")] Task SuspendRebalancing(TimeSpan? durati... FILE: src/Orleans.Core/Placement/Rebalancing/IFailedSessionBackoffProvider.cs type IFailedSessionBackoffProvider (line 12) | public interface IFailedSessionBackoffProvider : IBackoffProvider { } FILE: src/Orleans.Core/Placement/Rebalancing/RebalancingReport.cs type RebalancerStatus (line 10) | [GenerateSerializer] type RebalancingReport (line 26) | [GenerateSerializer, Immutable, Alias("RebalancingReport")] type RebalancingStatistics (line 62) | [GenerateSerializer, Immutable, Alias("RebalancingStatistics")] FILE: src/Orleans.Core/Placement/Repartitioning/IActivationRepartitionerSystemTarget.cs type IActivationRepartitionerSystemTarget (line 10) | [Alias("IActivationRepartitionerSystemTarget")] method GetReference (line 13) | static IActivationRepartitionerSystemTarget GetReference(IGrainFactory... method TriggerExchangeRequest (line 16) | [ResponseTimeout("00:10:00")] method AcceptExchangeRequest (line 19) | [ResponseTimeout("00:10:00")] method ResetCounters (line 25) | ValueTask ResetCounters(); method GetActivationCount (line 30) | ValueTask GetActivationCount(); method SetActivationCountOffset (line 35) | ValueTask SetActivationCountOffset(int activationCountOffset); method GetGrainCallFrequencies (line 40) | ValueTask> GetGrainCallFrequencies(); method FlushBuffers (line 45) | ValueTask FlushBuffers(); type Edge (line 52) | [GenerateSerializer, Immutable, DebuggerDisplay("Source: [{Source.Id} - ... method Equals (line 64) | public override bool Equals([NotNullWhen(true)] object obj) => obj is ... method Equals (line 65) | public bool Equals(Edge other) => Source == other.Source && Target == ... method GetHashCode (line 67) | public override int GetHashCode() => HashCode.Combine(Source, Target); method Flip (line 72) | public Edge Flip() => new(source: Target, target: Source); method ToString (line 74) | public override string ToString() => $"[{Source} -> {Target}]"; type EdgeVertex (line 80) | [GenerateSerializer, Immutable] method Equals (line 98) | public override bool Equals([NotNullWhen(true)] object obj) => obj is ... method Equals (line 99) | public bool Equals(EdgeVertex other) => Id == other.Id && Silo == othe... method GetHashCode (line 101) | public override int GetHashCode() => HashCode.Combine(Id, Silo, IsMigr... method ToString (line 103) | public override string ToString() => $"[{Id}@{Silo}{(IsMigratable ? ""... class CandidateVertex (line 109) | [GenerateSerializer, DebuggerDisplay("Id = {Id} | Accumulated = {Accumul... method ToString (line 131) | public override string ToString() => $"[{Id} * {AccumulatedTransferSco... type CandidateConnectedVertex (line 134) | [GenerateSerializer, Immutable] method Equals (line 146) | public override bool Equals([NotNullWhen(true)] object obj) => obj is ... method Equals (line 147) | public bool Equals(CandidateConnectedVertex other) => Id == other.Id &... method GetHashCode (line 149) | public override int GetHashCode() => HashCode.Combine(Id, TransferScore); method ToString (line 151) | public override string ToString() => $"[{Id} * {TransferScore}]"; class AcceptExchangeRequest (line 154) | [GenerateSerializer, Immutable] class AcceptExchangeResponse (line 176) | [GenerateSerializer, Immutable] type ResponseType (line 197) | [GenerateSerializer] FILE: src/Orleans.Core/Placement/Repartitioning/IImbalanceToleranceRule.cs type IImbalanceToleranceRule (line 6) | public interface IImbalanceToleranceRule method IsSatisfiedBy (line 12) | bool IsSatisfiedBy(uint imbalance); FILE: src/Orleans.Core/Placement/Repartitioning/IMessageStatisticsSink.cs type IMessageStatisticsSink (line 7) | internal interface IMessageStatisticsSink method GetMessageObserver (line 9) | Action? GetMessageObserver(); class NoOpMessageStatisticsSink (line 12) | internal sealed class NoOpMessageStatisticsSink : IMessageStatisticsSink method GetMessageObserver (line 14) | public Action? GetMessageObserver() => null; FILE: src/Orleans.Core/Providers/ClientProviderRuntime.cs class ClientProviderRuntime (line 10) | internal class ClientProviderRuntime : IProviderRuntime method ClientProviderRuntime (line 21) | public ClientProviderRuntime( method BindExtension (line 38) | public (TExtension Extension, TExtensionInterface ExtensionReference) ... FILE: src/Orleans.Core/Providers/GrainStorageHelpers.cs class GrainStorageHelpers (line 12) | public static class GrainStorageHelpers method GetGrainStorage (line 22) | public static IGrainStorage GetGrainStorage(Type grainType, IServicePr... method ThrowMissingProviderException (line 38) | [DoesNotReturn] FILE: src/Orleans.Core/Providers/IControllable.cs type IControllable (line 8) | public interface IControllable method ExecuteCommand (line 16) | Task ExecuteCommand(int command, object arg); FILE: src/Orleans.Core/Providers/IGrainStorage.cs type IGrainStorage (line 12) | public interface IGrainStorage method ReadStateAsync (line 20) | Task ReadStateAsync(string stateName, GrainId grainId, IGrainState<... method WriteStateAsync (line 28) | Task WriteStateAsync(string stateName, GrainId grainId, IGrainState... method ClearStateAsync (line 36) | Task ClearStateAsync(string stateName, GrainId grainId, IGrainState... type IRestExceptionDecoder (line 43) | public interface IRestExceptionDecoder method DecodeException (line 53) | bool DecodeException(Exception exception, out HttpStatusCode httpStatu... class InconsistentStateException (line 59) | [Serializable] method InconsistentStateException (line 80) | public InconsistentStateException() method InconsistentStateException (line 88) | public InconsistentStateException(string message) method InconsistentStateException (line 98) | public InconsistentStateException(string message, Exception innerExcep... method InconsistentStateException (line 108) | [Obsolete] method InconsistentStateException (line 124) | public InconsistentStateException( method InconsistentStateException (line 140) | public InconsistentStateException( method InconsistentStateException (line 154) | public InconsistentStateException(string storedEtag, string currentEta... method ToString (line 160) | public override string ToString() method GetObjectData (line 167) | [Obsolete] FILE: src/Orleans.Core/Providers/IGrainStorageSerializer.cs type IGrainStorageSerializer (line 11) | public interface IGrainStorageSerializer method Serialize (line 19) | BinaryData Serialize(T input); method Deserialize (line 27) | T Deserialize(BinaryData input); class GrainStorageSerializerExtensions (line 33) | public static class GrainStorageSerializerExtensions method Deserialize (line 42) | public static T Deserialize(this IGrainStorageSerializer serializer... type IStorageProviderSerializerOptions (line 49) | public interface IStorageProviderSerializerOptions class DefaultStorageProviderSerializerOptionsConfigurator (line 61) | public class DefaultStorageProviderSerializerOptionsConfigurator Acquire(string category, LeaseRequest[] lea... method Renew (line 162) | Task Renew(string category, AcquiredLease[] aqui... method Release (line 169) | Task Release(string category, AcquiredLease[] aquiredLeases); FILE: src/Orleans.Core/Providers/IMemoryStorageGrain.cs type IMemoryStorageGrain (line 8) | public interface IMemoryStorageGrain : IGrainWithIntegerKey method ReadStateAsync (line 13) | Task> ReadStateAsync(string grainStoreKey); method WriteStateAsync (line 19) | Task WriteStateAsync(string grainStoreKey, IGrainState g... method DeleteStateAsync (line 24) | Task DeleteStateAsync(string grainStoreKey, string eTag); FILE: src/Orleans.Core/Providers/IProviderRuntime.cs type IProviderRuntime (line 10) | public interface IProviderRuntime method BindExtension (line 29) | (TExtension Extension, TExtensionInterface ExtensionReference) BindExt... FILE: src/Orleans.Core/Providers/IStorageProvider.cs class BadProviderConfigException (line 10) | [Serializable, GenerateSerializer] method BadProviderConfigException (line 13) | public BadProviderConfigException() method BadProviderConfigException (line 15) | public BadProviderConfigException(string msg) method BadProviderConfigException (line 18) | public BadProviderConfigException(string msg, Exception exc) method BadProviderConfigException (line 22) | [Obsolete] FILE: src/Orleans.Core/Providers/ProviderInitializationException.cs class ProviderInitializationException (line 10) | [Serializable, GenerateSerializer] method ProviderInitializationException (line 16) | public ProviderInitializationException() method ProviderInitializationException (line 23) | public ProviderInitializationException(string message) method ProviderInitializationException (line 33) | public ProviderInitializationException(string message, Exception inner... method ProviderInitializationException (line 43) | [Obsolete] FILE: src/Orleans.Core/Providers/ProviderStateManager.cs type ProviderState (line 7) | internal enum ProviderState class ProviderStateManager (line 15) | internal class ProviderStateManager method ProviderStateManager (line 20) | public ProviderStateManager() method PresetState (line 25) | public bool PresetState(ProviderState state) method CommitState (line 68) | public void CommitState() class ProviderStateException (line 74) | [Serializable, GenerateSerializer] method ProviderStateException (line 77) | public ProviderStateException() : base("Unexpected provider state") method ProviderStateException (line 79) | public ProviderStateException(string message) : base(message) { } method ProviderStateException (line 81) | public ProviderStateException(string message, Exception innerException... method ProviderStateException (line 83) | [Obsolete] FILE: src/Orleans.Core/Providers/StorageSerializer/GrainStorageSerializer.cs class GrainStorageSerializer (line 8) | public class GrainStorageSerializer : IGrainStorageSerializer method GrainStorageSerializer (line 18) | public GrainStorageSerializer(IGrainStorageSerializer serializer, IGra... method Serialize (line 25) | public BinaryData Serialize(T input) => _serializer.Serialize(input); method Deserialize (line 28) | public T Deserialize(BinaryData input) FILE: src/Orleans.Core/Providers/StorageSerializer/JsonGrainStorageSerializer.cs class JsonGrainStorageSerializer (line 9) | public class JsonGrainStorageSerializer : IGrainStorageSerializer method JsonGrainStorageSerializer (line 16) | public JsonGrainStorageSerializer(OrleansJsonSerializer orleansJsonSer... method Serialize (line 22) | public BinaryData Serialize(T value) method Deserialize (line 29) | public T Deserialize(BinaryData input) FILE: src/Orleans.Core/Providers/StorageSerializer/OrleansGrainStateSerializer.cs class OrleansGrainStorageSerializer (line 10) | public class OrleansGrainStorageSerializer : IGrainStorageSerializer method OrleansGrainStorageSerializer (line 18) | public OrleansGrainStorageSerializer(Serializer serializer) method Serialize (line 24) | public BinaryData Serialize(T value) method Deserialize (line 32) | public T Deserialize(BinaryData input) FILE: src/Orleans.Core/Runtime/AsyncEnumerableGrainExtension.cs class AsyncEnumerableGrainExtension (line 19) | internal sealed partial class AsyncEnumerableGrainExtension : IAsyncEnum... method AsyncEnumerableGrainExtension (line 34) | public AsyncEnumerableGrainExtension( method DisposeAsync (line 60) | public ValueTask DisposeAsync(Guid requestId) => RemoveEnumeratorAsync... method RemoveExpiredAsync (line 62) | private async ValueTask RemoveExpiredAsync(CancellationToken cancellat... method StartEnumeration (line 109) | public ValueTask<(EnumerationResult Status, object Value)> StartEnumer... method MoveNext (line 131) | public ValueTask<(EnumerationResult Status, object Value)> MoveNext... method MoveNextCore (line 147) | private ValueTask<(EnumerationResult Status, object Value)> MoveNextCo... method AwaitMoveNextAsync (line 235) | private async ValueTask<(EnumerationResult Status, object Value)> Awai... method RemoveEnumeratorAsync (line 303) | private async ValueTask RemoveEnumeratorAsync(Guid requestId) method OnTerminateAsync (line 311) | private async ValueTask<(EnumerationResult Status, object Value)> OnTe... method DisposeAsync (line 318) | public async ValueTask DisposeAsync() method DisposeEnumeratorAsync (line 334) | private async ValueTask DisposeEnumeratorAsync(EnumeratorState enumera... method Dispose (line 365) | public void Dispose() method OnAsyncEnumeratorGrainExtensionCreated (line 370) | private static void OnAsyncEnumeratorGrainExtensionCreated(AsyncEnumer... method OnEnumeratorCleanupCompleted (line 378) | private static void OnEnumeratorCleanupCompleted(AsyncEnumerableGrainE... type EnumeratorState (line 386) | private struct EnumeratorState method SetSeen (line 395) | public void SetSeen() => _flags |= SeenFlag; method SetBusy (line 396) | public void SetBusy() => _flags |= BusyFlag | SeenFlag; method ClearBusy (line 397) | public void ClearBusy() => _flags = SeenFlag; method ClearSeen (line 398) | public bool ClearSeen() method LogWarningErrorCancellingEnumerator (line 407) | [LoggerMessage( method LogWarningErrorDisposingEnumerator (line 413) | [LoggerMessage( FILE: src/Orleans.Core/Runtime/CallbackData.cs class CallbackData (line 10) | internal sealed partial class CallbackData method CallbackData (line 20) | public CallbackData( method SubscribeForCancellation (line 37) | public void SubscribeForCancellation(CancellationToken cancellationToken) method SignalCancellation (line 52) | private void SignalCancellation() method OnStatusUpdate (line 63) | public void OnStatusUpdate(StatusResponse status) method IsExpired (line 68) | public bool IsExpired(long currentTimestamp) method GetResponseTimeoutStopwatchTicks (line 74) | private long GetResponseTimeoutStopwatchTicks() method GetResponseTimeout (line 85) | private TimeSpan GetResponseTimeout() => (Message.BodyObject as IInvok... method OnCancellation (line 87) | private void OnCancellation() method OnTimeout (line 114) | public void OnTimeout() method OnTargetSiloFail (line 144) | public void OnTargetSiloFail() method DoCallback (line 164) | public void DoCallback(Message response) method ResponseCallback (line 181) | private static void ResponseCallback(Message message, IResponseComplet... method LogTimeout (line 217) | [LoggerMessage( method LogTargetSiloFail (line 224) | [LoggerMessage( FILE: src/Orleans.Core/Runtime/ClientGrainContext.cs class ClientGrainContext (line 9) | internal sealed class ClientGrainContext : IGrainContext, IGrainExtensio... method ClientGrainContext (line 21) | public ClientGrainContext(OutsideRuntimeClient runtimeClient) method Equals (line 44) | public bool Equals(IGrainContext? other) => ReferenceEquals(this, other); method GetComponent (line 46) | public object? GetComponent(Type componentType) method GetTarget (line 69) | public object? GetTarget() => this; method SetComponent (line 71) | public void SetComponent(TComponent? instance) where TComp... method GetOrSetExtension (line 90) | public (TExtension, TExtensionInterface) GetOrSetExtension(out (TEx... method TryGetExtension (line 134) | private bool TryGetExtension([NotNullWhen(true)] ... method GetExtension (line 147) | public TExtensionInterface GetExtension() method ReceiveMessage (line 175) | public void ReceiveMessage(object message) => throw new NotSupportedEx... method Activate (line 177) | public void Activate(Dictionary? requestContext, Cance... method Deactivate (line 178) | public void Deactivate(DeactivationReason deactivationReason, Cancella... method Rehydrate (line 180) | public void Rehydrate(IRehydrationContext context) method Migrate (line 186) | public void Migrate(Dictionary? requestContext, Cancel... FILE: src/Orleans.Core/Runtime/ClientLocalActivationStatusChecker.cs class ClientLocalActivationStatusChecker (line 4) | internal sealed class ClientLocalActivationStatusChecker : ILocalActivat... method IsLocallyActivated (line 6) | public bool IsLocallyActivated(GrainId grainId) => false; FILE: src/Orleans.Core/Runtime/ClusterConnectionStatusObserverAdaptor.cs class ClusterConnectionStatusObserverAdaptor (line 8) | internal sealed partial class ClusterConnectionStatusObserverAdaptor( method NotifyClusterConnectionLost (line 16) | public void NotifyClusterConnectionLost() method NotifyGatewayCountChanged (line 31) | public void NotifyGatewayCountChanged(int currentNumberOfGateways, int... method LogErrorSendingClusterConnectionLostNotification (line 47) | [LoggerMessage( method LogErrorSendingGatewayCountChangedNotification (line 53) | [LoggerMessage( FILE: src/Orleans.Core/Runtime/Constants.cs class Constants (line 7) | internal static class Constants method SystemTargetName (line 62) | public static string SystemTargetName(GrainType id) => SingletonSystem... method IsSingletonSystemTarget (line 63) | public static bool IsSingletonSystemTarget(GrainType id) => SingletonS... FILE: src/Orleans.Core/Runtime/GrainCancellationTokenRuntime.cs class GrainCancellationTokenRuntime (line 12) | internal class GrainCancellationTokenRuntime : IGrainCancellationTokenRu... method Cancel (line 20) | public Task Cancel(Guid id, CancellationTokenSource tokenSource, Concu... method CancelTokenWithRetries (line 55) | private async Task CancelTokenWithRetries( class GrainCancellationTokenCodec (line 71) | [RegisterSerializer] method GrainCancellationTokenCodec (line 76) | public GrainCancellationTokenCodec(IGrainCancellationTokenRuntime runt... method ConvertFromSurrogate (line 81) | public override GrainCancellationToken ConvertFromSurrogate(ref GrainC... method ConvertToSurrogate (line 86) | public override void ConvertToSurrogate(GrainCancellationToken value, ... type GrainCancellationTokenSurrogate (line 93) | [GenerateSerializer] FILE: src/Orleans.Core/Runtime/GrainReferenceRuntime.cs class GrainReferenceRuntime (line 13) | internal class GrainReferenceRuntime : IGrainReferenceRuntime method GrainReferenceRuntime (line 21) | public GrainReferenceRuntime( method InvokeMethodAsync (line 38) | public ValueTask InvokeMethodAsync(GrainReference re... method InvokeMethodAsync (line 54) | public ValueTask InvokeMethodAsync(GrainReference reference, IInvokabl... method InvokeMethod (line 70) | public void InvokeMethod(GrainReference reference, IInvokable request,... method InvokeMethodWithFiltersAsync (line 86) | private async ValueTask InvokeMethodWithFiltersAsync... method InvokeMethodWithFiltersAsync (line 94) | private async ValueTask InvokeMethodWithFiltersAsync(GrainReference re... method Cast (line 101) | public object Cast(IAddressable grain, Type grainInterface) method SetGrainCancellationTokensTarget (line 116) | private void SetGrainCancellationTokensTarget(GrainReference target, I... FILE: src/Orleans.Core/Runtime/IHealthCheckable.cs type IHealthCheckable (line 8) | public interface IHealthCheckable method CheckHealth (line 16) | bool CheckHealth(DateTime lastCheckTime, out string reason); FILE: src/Orleans.Core/Runtime/ILocalSiloDetails.cs type ILocalSiloDetails (line 6) | public interface ILocalSiloDetails FILE: src/Orleans.Core/Runtime/IRuntimeClient.cs type IRuntimeClient (line 12) | internal interface IRuntimeClient method GetResponseTimeout (line 39) | TimeSpan GetResponseTimeout(); method SetResponseTimeout (line 45) | void SetResponseTimeout(TimeSpan timeout); method SendRequest (line 47) | void SendRequest(GrainReference target, IInvokable request, IResponseC... method SendResponse (line 49) | void SendResponse(Message request, Response response); method ReceiveResponse (line 51) | void ReceiveResponse(Message message); method CreateObjectReference (line 53) | IAddressable CreateObjectReference(IAddressable obj); method DeleteObjectReference (line 55) | void DeleteObjectReference(IAddressable obj); method BreakOutstandingMessagesToSilo (line 59) | void BreakOutstandingMessagesToSilo(SiloAddress deadSilo); method GetRunningRequestsCount (line 62) | int GetRunningRequestsCount(GrainInterfaceType grainInterfaceType); class OnDeserializedCallbacks (line 68) | public class OnDeserializedCallbacks : DeserializationContext method OnDeserializedCallbacks (line 76) | public OnDeserializedCallbacks(IServiceProvider serviceProvider) method OnDeserialized (line 96) | public void OnDeserialized(IOnDeserialized value) => value.OnDeseriali... FILE: src/Orleans.Core/Runtime/InvokableObjectManager.cs class InvokableObjectManager (line 17) | internal sealed partial class InvokableObjectManager : IDisposable method InvokableObjectManager (line 34) | public InvokableObjectManager( method TryRegister (line 52) | public bool TryRegister(IAddressable obj, ObserverGrainId objectId) method TryDeregister (line 57) | public bool TryDeregister(ObserverGrainId objectId) method Dispatch (line 62) | public void Dispatch(Message message) method Dispose (line 80) | public void Dispose() class LocalObjectData (line 87) | public sealed partial class LocalObjectData : IGrainContext, IGrainCal... method LocalObjectData (line 94) | internal LocalObjectData(IAddressable obj, ObserverGrainId observerI... method SetComponent (line 125) | void IGrainContext.SetComponent(TComponent? value) where... method GetComponent (line 135) | public object? GetComponent(Type componentType) method GetTarget (line 149) | public object? GetTarget() => this.LocalObject.Target; method Equals (line 151) | bool IEquatable.Equals(IGrainContext? other) => Refer... method ReceiveMessage (line 153) | public void ReceiveMessage(object msg) method LocalObjectMessagePumpAsync (line 229) | private async Task LocalObjectMessagePumpAsync() method ProcessMessageAsync (line 255) | private async Task ProcessMessageAsync(Message message) method SendResponseAsync (line 332) | private void SendResponseAsync(Message message, Response resultObject) method ReportException (line 358) | private void ReportException(Message message, Exception exception) method Activate (line 390) | public void Activate(Dictionary? requestContext, Can... method Deactivate (line 391) | public void Deactivate(DeactivationReason deactivationReason, Cancel... method Rehydrate (line 393) | public void Rehydrate(IRehydrationContext context) method Migrate (line 399) | public void Migrate(Dictionary? requestContext, Canc... method CancelRequestAsync (line 404) | ValueTask IGrainCallCancellationExtension.CancelRequestAsync(GrainId... method LogErrorCancellationCallbackFailed (line 511) | [LoggerMessage( type ObserverGrainIdLogValue (line 520) | private readonly struct ObserverGrainIdLogValue(ObserverGrainId observ... method ToString (line 522) | public override string ToString() => observerId.ToString(); method LogNotAddressedToAnObserver (line 525) | [LoggerMessage( method LogUnexpectedTargetInRequest (line 532) | [LoggerMessage( method LogObserverGarbageCollected (line 539) | [LoggerMessage( method LogInvokeLocalObjectAsync (line 546) | [LoggerMessage( method LogErrorSendingResponse (line 552) | [LoggerMessage( method LogErrorInvokingOneWayRequest (line 559) | [LoggerMessage( method LogErrorSendingExceptionResponse (line 566) | [LoggerMessage( method LogErrorDeserializingMessageBody (line 573) | [LoggerMessage( method LogErrorProcessingMessage (line 579) | [LoggerMessage( FILE: src/Orleans.Core/Runtime/LocalClientDetails.cs class LocalClientDetails (line 9) | internal class LocalClientDetails method LocalClientDetails (line 11) | public LocalClientDetails(IOptions clientMessa... FILE: src/Orleans.Core/Runtime/MembershipTableSnapshot.cs class MembershipTableSnapshot (line 9) | [GenerateSerializer, Immutable] method MembershipTableSnapshot (line 14) | public MembershipTableSnapshot( method Create (line 22) | public static MembershipTableSnapshot Create(MembershipTableData table... method Update (line 24) | public static MembershipTableSnapshot Update(MembershipTableSnapshot p... method Update (line 34) | public static MembershipTableSnapshot Update(MembershipTableSnapshot p... method Update (line 41) | private static MembershipTableSnapshot Update(MembershipTableSnapshot ... method PreserveIAmAliveTime (line 57) | private static MembershipEntry PreserveIAmAliveTime(MembershipTableSna... method GetSiloStatus (line 93) | public SiloStatus GetSiloStatus(SiloAddress silo) method IsSuccessorTo (line 111) | public bool IsSuccessorTo(MembershipTableSnapshot other) method ToString (line 150) | public override string ToString() FILE: src/Orleans.Core/Runtime/OutgoingCallInvoker.cs class OutgoingCallInvoker (line 12) | internal sealed class OutgoingCallInvoker : IOutgoingGrainCallC... method OutgoingCallInvoker (line 31) | public OutgoingCallInvoker( method Invoke (line 77) | public async Task Invoke() method ThrowInvalidCall (line 131) | private void ThrowInvalidCall() method ThrowBrokenCallFilterChain (line 136) | private void ThrowBrokenCallFilterChain(string filterName) FILE: src/Orleans.Core/Runtime/OutsideRuntimeClient.cs class OutsideRuntimeClient (line 21) | internal partial class OutsideRuntimeClient : IRuntimeClient, IDisposabl... method OutsideRuntimeClient (line 66) | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Reliabilit... method ConsumeServices (line 103) | internal void ConsumeServices() method StartAsync (line 146) | public async Task StartAsync(CancellationToken cancellationToken) method StopAsync (line 155) | public async Task StopAsync(CancellationToken cancellationToken) method StartInternal (line 178) | private async Task StartInternal(CancellationToken cancellationToken) method HandleMessage (line 226) | private void HandleMessage(Message message) method SendResponse (line 247) | public void SendResponse(Message request, Response response) method SendRequest (line 257) | public void SendRequest(GrainReference target, IInvokable request, IRe... method ReceiveResponse (line 300) | public void ReceiveResponse(Message response) method UnregisterCallback (line 356) | private void UnregisterCallback(CorrelationId id) method ConstructorReset (line 361) | private void ConstructorReset() method GetResponseTimeout (line 367) | public TimeSpan GetResponseTimeout() => this.sharedCallbackData.Respon... method SetResponseTimeout (line 370) | public void SetResponseTimeout(TimeSpan timeout) => this.sharedCallbac... method CreateObjectReference (line 372) | public IAddressable CreateObjectReference(IAddressable obj) method DeleteObjectReference (line 393) | public void DeleteObjectReference(IAddressable obj) method Dispose (line 411) | public void Dispose() method BreakOutstandingMessagesToSilo (line 424) | public void BreakOutstandingMessagesToSilo(SiloAddress deadSilo) method GetRunningRequestsCount (line 435) | public int GetRunningRequestsCount(GrainInterfaceType grainInterfaceType) method NotifyClusterConnectionLost (line 439) | public void NotifyClusterConnectionLost() method NotifyGatewayCountChanged (line 455) | public void NotifyGatewayCountChanged(int currentNumberOfGateways, int... method MonitorCallbackExpiry (line 473) | private async Task MonitorCallbackExpiry() method ThrowIfDisposed (line 500) | private void ThrowIfDisposed() method LogStartingClient (line 510) | [LoggerMessage( method LogConstructorException (line 517) | [LoggerMessage( method LogStartedClient (line 524) | [LoggerMessage( method LogSendingMessage (line 531) | [LoggerMessage( method LogReceivedMessage (line 537) | [LoggerMessage( method LogMessageNotSupported (line 543) | [LoggerMessage( method LogErrorSendingClusterDisconnectionNotification (line 549) | [LoggerMessage( method LogErrorSendingGatewayCountChangedNotification (line 555) | [LoggerMessage( method LogErrorWhileProcessingCallbackExpiry (line 561) | [LoggerMessage( method LogDebugNoCallbackForResponseMessage (line 567) | [LoggerMessage( type DiagnosticsLogData (line 574) | private readonly struct DiagnosticsLogData(List diagnostics) method ToString (line 576) | public override string ToString() => string.Join("\n", diagnostics); method LogReceivedStatusUpdateForPendingRequest (line 579) | [LoggerMessage( method LogReceivedStatusUpdateForUnknownRequest (line 585) | [LoggerMessage( FILE: src/Orleans.Core/Runtime/RequestContextExtensions.cs class RequestContextExtensions (line 11) | public static class RequestContextExtensions method Import (line 17) | public static void Import(Dictionary? contextData) method Export (line 36) | public static Dictionary? Export(DeepCopier copier) method GetReentrancyId (line 47) | internal static Guid GetReentrancyId(this Message message) => GetReent... method GetReentrancyId (line 49) | internal static Guid GetReentrancyId(Dictionary? conte... method TryGetActivityContext (line 59) | internal static ActivityContext? TryGetActivityContext(this Dictionary... FILE: src/Orleans.Core/Runtime/RingRange.cs type IRingRange (line 11) | public interface IRingRange method InRange (line 20) | bool InRange(uint value); method InRange (line 27) | public sealed bool InRange(GrainId grainId) => InRange(grainId.GetUnif... type IRingRangeInternal (line 31) | internal interface IRingRangeInternal : IRingRange method RangePercentage (line 33) | double RangePercentage(); type ISingleRange (line 40) | public interface ISingleRange : IRingRange class SingleRange (line 53) | [Serializable, GenerateSerializer, Immutable] method SingleRange (line 72) | public SingleRange(uint begin, uint end) method InRange (line 83) | public bool InRange(uint n) method RangeSize (line 94) | public long RangeSize() method RangePercentage (line 103) | public double RangePercentage() => RangeSize() * (100.0 / RangeFactory... method Equals (line 105) | public bool Equals(SingleRange? other) => other != null && begin == ot... method Equals (line 107) | public override bool Equals(object? obj) => Equals(obj as SingleRange); method GetHashCode (line 109) | public override int GetHashCode() => HashCode.Combine(GetType(), begin... method ToString (line 111) | public override string ToString() => begin == 0 && end == 0 ? "<(0 0],... method ToString (line 113) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 115) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method Overlaps (line 122) | internal bool Overlaps(SingleRange other) => Equals(other) || InRange(... method Merge (line 124) | internal SingleRange Merge(SingleRange other) method MergeEnds (line 150) | private SingleRange MergeEnds(SingleRange other) class RangeFactory (line 174) | public static class RangeFactory method CreateFullRange (line 194) | public static IRingRange CreateFullRange() => FullRange; method CreateRange (line 202) | public static IRingRange CreateRange(uint begin, uint end) => new Sing... method CreateRange (line 209) | public static IRingRange CreateRange(List inRanges) => inR... method GetEquallyDividedSubRange (line 223) | internal static IRingRange GetEquallyDividedSubRange(IRingRange range,... method GetSubRanges (line 231) | public static IEnumerable GetSubRanges(IRingRange range)... class GeneralMultiRange (line 239) | [Serializable, GenerateSerializer, Immutable] method GeneralMultiRange (line 250) | internal GeneralMultiRange(List ranges) method Create (line 258) | internal static IRingRange Create(List inRanges) method InRange (line 290) | public bool InRange(uint n) method RangePercentage (line 299) | public double RangePercentage() => rangeSize * (100.0 / RangeFactory.R... method ToString (line 301) | public override string ToString() => ranges.Count == 0 ? "Empty MultiR... method ToString (line 303) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 305) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... class EquallyDividedMultiRange (line 313) | internal static class EquallyDividedMultiRange method GetEquallyDividedSubRange (line 315) | private static SingleRange GetEquallyDividedSubRange(SingleRange singl... method GetEquallyDividedSubRange (line 339) | public static IRingRange GetEquallyDividedSubRange(IRingRange range, i... FILE: src/Orleans.Core/Runtime/RuntimeVersion.cs class RuntimeVersion (line 6) | internal static class RuntimeVersion method IsAssemblyDebugBuild (line 37) | internal static bool IsAssemblyDebugBuild(Assembly assembly) FILE: src/Orleans.Core/Runtime/SharedCallbackData.cs class SharedCallbackData (line 7) | internal sealed class SharedCallbackData method SharedCallbackData (line 14) | public SharedCallbackData( FILE: src/Orleans.Core/Runtime/SiloStatus.cs type SiloStatus (line 6) | [GenerateSerializer] class SiloStatusExtensions (line 48) | public static class SiloStatusExtensions method IsTerminating (line 55) | public static bool IsTerminating(this SiloStatus siloStatus) FILE: src/Orleans.Core/Serialization/OrleansJsonSerializationBinder.cs class OrleansJsonSerializationBinder (line 10) | public class OrleansJsonSerializationBinder : DefaultSerializationBinder method OrleansJsonSerializationBinder (line 18) | public OrleansJsonSerializationBinder(TypeResolver typeResolver) method BindToType (line 24) | public override Type BindToType(string assemblyName, string typeName) FILE: src/Orleans.Core/Serialization/OrleansJsonSerializer.cs class OrleansJsonSerializer (line 15) | public class OrleansJsonSerializer method OrleansJsonSerializer (line 25) | public OrleansJsonSerializer(IOptions op... method Deserialize (line 36) | public object Deserialize(Type expectedType, string input) method Serialize (line 51) | public string Serialize(object item, Type expectedType) => JsonConvert... class IPAddressConverter (line 58) | public class IPAddressConverter : JsonConverter method CanConvert (line 61) | public override bool CanConvert(Type objectType) method WriteJson (line 67) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 74) | public override object ReadJson(JsonReader reader, Type objectType, ob... class GrainIdConverter (line 85) | public class GrainIdConverter : JsonConverter method CanConvert (line 88) | public override bool CanConvert(Type objectType) => objectType == type... method WriteJson (line 91) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 103) | public override object ReadJson(JsonReader reader, Type objectType, ob... class ActivationIdConverter (line 115) | public class ActivationIdConverter : JsonConverter method CanConvert (line 118) | public override bool CanConvert(Type objectType) => objectType == type... method WriteJson (line 121) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 128) | public override object ReadJson(JsonReader reader, Type objectType, ob... class SiloAddressJsonConverter (line 142) | public class SiloAddressJsonConverter : JsonConverter method CanConvert (line 145) | public override bool CanConvert(Type objectType) method WriteJson (line 151) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 158) | public override object ReadJson(JsonReader reader, Type objectType, ob... class MembershipVersionJsonConverter (line 177) | public class MembershipVersionJsonConverter : JsonConverter method CanConvert (line 180) | public override bool CanConvert(Type objectType) => objectType == type... method WriteJson (line 183) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 190) | public override object ReadJson(JsonReader reader, Type objectType, ob... class UniqueKeyConverter (line 204) | public class UniqueKeyConverter : JsonConverter method CanConvert (line 207) | public override bool CanConvert(Type objectType) method WriteJson (line 213) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 223) | public override object ReadJson(JsonReader reader, Type objectType, ob... class IPEndPointConverter (line 235) | public class IPEndPointConverter : JsonConverter method CanConvert (line 238) | public override bool CanConvert(Type objectType) method WriteJson (line 244) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 256) | public override object ReadJson(JsonReader reader, Type objectType, ob... class GrainReferenceJsonConverter (line 269) | public class GrainReferenceJsonConverter : JsonConverter method GrainReferenceJsonConverter (line 278) | public GrainReferenceJsonConverter(GrainReferenceActivator referenceAc... method CanConvert (line 284) | public override bool CanConvert(Type objectType) method WriteJson (line 290) | public override void WriteJson(JsonWriter writer, object value, JsonSe... method ReadJson (line 307) | public override object ReadJson(JsonReader reader, Type objectType, ob... FILE: src/Orleans.Core/Serialization/OrleansJsonSerializerOptions.cs class OrleansJsonSerializerOptions (line 7) | public class OrleansJsonSerializerOptions method OrleansJsonSerializerOptions (line 11) | public OrleansJsonSerializerOptions() class ConfigureOrleansJsonSerializerOptions (line 17) | public class ConfigureOrleansJsonSerializerOptions : IPostConfigureOptio... method ConfigureOrleansJsonSerializerOptions (line 21) | public ConfigureOrleansJsonSerializerOptions(IServiceProvider serviceP... method PostConfigure (line 26) | public void PostConfigure(string name, OrleansJsonSerializerOptions op... FILE: src/Orleans.Core/Serialization/OrleansJsonSerializerSettings.cs class OrleansJsonSerializerSettings (line 9) | public static class OrleansJsonSerializerSettings method GetDefaultSerializerSettings (line 11) | internal static JsonSerializerSettings GetDefaultSerializerSettings() method GetDefaultSerializerSettings (line 35) | public static JsonSerializerSettings GetDefaultSerializerSettings(ISer... method Configure (line 42) | internal static void Configure(IServiceProvider services, JsonSerializ... method UpdateSerializerSettings (line 68) | public static JsonSerializerSettings UpdateSerializerSettings(JsonSeri... FILE: src/Orleans.Core/Statistics/EnvironmentStatisticsProvider.cs class EnvironmentStatisticsProvider (line 12) | internal sealed class EnvironmentStatisticsProvider : IEnvironmentStatis... method EnvironmentStatisticsProvider (line 30) | public EnvironmentStatisticsProvider() method GetEnvironmentStatistics (line 39) | public EnvironmentStatistics GetEnvironmentStatistics() method Dispose (line 65) | public void Dispose() => _eventCounterListener.Dispose(); class EventCounterListener (line 67) | private sealed class EventCounterListener : EventListener method OnEventSourceCreated (line 71) | protected override void OnEventSourceCreated(EventSource source) method OnEventWritten (line 80) | protected override void OnEventWritten(EventWrittenEventArgs eventData) class DualModeKalmanFilter (line 105) | private sealed class DualModeKalmanFilter type FilterRegime (line 115) | private enum FilterRegime method Filter (line 121) | public float Filter(float measurement) type KalmanFilter (line 150) | private struct KalmanFilter() method SetState (line 155) | public void SetState(float estimate, float errorCovariance) method Filter (line 161) | public float Filter(float measurement, float processNoiseCovariance) FILE: src/Orleans.Core/Statistics/GrainCountStatistics.cs class GrainCountStatistics (line 9) | internal class GrainCountStatistics method GetSimpleGrainStatistics (line 11) | public IEnumerable> GetSimpleGrainStatistics() FILE: src/Orleans.Core/Statistics/GrainMetricsListener.cs class GrainMetricsListener (line 9) | internal static class GrainMetricsListener method GrainMetricsListener (line 13) | static GrainMetricsListener() method Start (line 25) | internal static void Start() method OnMeasurementRecorded (line 33) | private static void OnMeasurementRecorded(Instrument instrument, int m... FILE: src/Orleans.Core/Statistics/OldEnvironmentStatistics.cs class OldEnvironmentStatistics (line 5) | [Obsolete("Used only until the interfaces that it implements are removed... FILE: src/Orleans.Core/Statistics/SiloRuntimeMetricsListener.cs class SiloRuntimeMetricsListener (line 11) | public static class SiloRuntimeMetricsListener method SiloRuntimeMetricsListener (line 29) | static SiloRuntimeMetricsListener() method Start (line 46) | internal static void Start() method OnMeasurementRecorded (line 51) | private static void OnMeasurementRecorded(Instrument instrument, int m... FILE: src/Orleans.Core/Statistics/SiloRuntimeStatistics.cs class SiloRuntimeStatistics (line 12) | [Serializable, GenerateSerializer, Immutable] method SiloRuntimeStatistics (line 84) | internal SiloRuntimeStatistics( method ToString (line 111) | public override string ToString() => @$"SiloRuntimeStatistics: Activat... class SimpleGrainStatistic (line 120) | [Serializable, GenerateSerializer, Immutable] method ToString (line 144) | public override string ToString() => $"SimpleGrainStatistic: GrainType... class DetailedGrainStatistic (line 147) | [Serializable, GenerateSerializer, Immutable] class DetailedGrainReport (line 169) | [Serializable, GenerateSerializer, Immutable] method ToString (line 203) | public override string ToString() => @$"{Environment.NewLine FILE: src/Orleans.Core/SystemTargetInterfaces/IDeploymentLoadPublisher.cs type IDeploymentLoadPublisher (line 6) | internal interface IDeploymentLoadPublisher : ISystemTarget method UpdateRuntimeStatistics (line 8) | [OneWay] FILE: src/Orleans.Core/SystemTargetInterfaces/IManagementGrain.cs type IManagementGrain (line 12) | public interface IManagementGrain : IGrainWithIntegerKey, IVersionManager method GetHosts (line 20) | Task> GetHosts(bool onlyActive = f... method GetDetailedHosts (line 28) | Task GetDetailedHosts(bool onlyActive = false); method ForceGarbageCollection (line 35) | Task ForceGarbageCollection(SiloAddress[] hostsIds); method ForceActivationCollection (line 41) | Task ForceActivationCollection(SiloAddress[] hostsIds, TimeSpan ageLim... method ForceActivationCollection (line 48) | Task ForceActivationCollection(TimeSpan ageLimit); method ForceRuntimeStatisticsCollection (line 53) | Task ForceRuntimeStatisticsCollection(SiloAddress[] siloAddresses); method GetRuntimeStatistics (line 60) | Task GetRuntimeStatistics(SiloAddress[] hosts... method GetSimpleGrainStatistics (line 67) | Task GetSimpleGrainStatistics(SiloAddress[] ho... method GetSimpleGrainStatistics (line 73) | Task GetSimpleGrainStatistics(); method GetDetailedGrainStatistics (line 81) | Task GetDetailedGrainStatistics(string[] typ... method GetGrainActivationCount (line 87) | Task GetGrainActivationCount(GrainReference grainReference); method GetTotalActivationCount (line 92) | Task GetTotalActivationCount(); method SendControlCommandToProvider (line 108) | public Task SendControlCommandToProvider(string providerN... method GetActivationAddress (line 119) | ValueTask GetActivationAddress(IAddressable reference); method GetActiveGrains (line 126) | ValueTask> GetActiveGrains(GrainType type); method GetGrainCallFrequencies (line 136) | Task> GetGrainCallFrequencies(SiloAddress[] h... method ResetGrainCallFrequencies (line 143) | ValueTask ResetGrainCallFrequencies(SiloAddress[] hostsIds = null); type GrainCallFrequency (line 149) | [GenerateSerializer] FILE: src/Orleans.Core/SystemTargetInterfaces/IMembershipService.cs type IMembershipService (line 7) | internal interface IMembershipService : ISystemTarget method MembershipChangeNotification (line 14) | Task MembershipChangeNotification(MembershipTableSnapshot snapshot); method Ping (line 20) | Task Ping(int pingNumber); method ProbeIndirectly (line 22) | Task ProbeIndirectly(SiloAddress target, TimeSp... type IndirectProbeResponse (line 28) | [Serializable, GenerateSerializer, Immutable] method ToString (line 56) | public override string ToString() => $"IndirectProbeResponse {{ Succee... FILE: src/Orleans.Core/SystemTargetInterfaces/IMembershipTable.cs type IMembershipTable (line 16) | public interface IMembershipTable method InitializeMembershipTable (line 22) | Task InitializeMembershipTable(bool tryInitTableVersion); method DeleteMembershipTableEntries (line 27) | Task DeleteMembershipTableEntries(string clusterId); method CleanupDefunctSiloEntries (line 32) | Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate); method ReadRow (line 42) | Task ReadRow(SiloAddress key); method ReadAll (line 51) | Task ReadAll(); method InsertRow (line 68) | Task InsertRow(MembershipEntry entry, TableVersion tableVersion); method UpdateRow (line 87) | Task UpdateRow(MembershipEntry entry, string etag, TableVersion ... method UpdateIAmAlive (line 101) | Task UpdateIAmAlive(MembershipEntry entry); type IMembershipTableSystemTarget (line 107) | public interface IMembershipTableSystemTarget : IMembershipTable, ISyste... class TableVersion (line 111) | [Serializable, GenerateSerializer, Immutable] method TableVersion (line 126) | public TableVersion(int version, string eTag) method Next (line 132) | public TableVersion Next() => new (Version + 1, VersionEtag); method ToString (line 134) | public override string ToString() => $"<{Version}, {VersionEtag}>"; method ToString (line 135) | string IFormattable.ToString(string format, IFormatProvider formatProv... method TryFormat (line 137) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method Equals (line 140) | public override bool Equals(object obj) => Equals(obj as TableVersion); method GetHashCode (line 141) | public override int GetHashCode() => HashCode.Combine(Version, Version... method Equals (line 142) | public bool Equals(TableVersion other) => other is not null && Version... class MembershipTableData (line 147) | [Serializable] method MembershipTableData (line 157) | public MembershipTableData(List> list, ... method MembershipTableData (line 171) | public MembershipTableData(Tuple tuple, Table... method MembershipTableData (line 177) | public MembershipTableData(TableVersion version) method TryGet (line 183) | public Tuple TryGet(SiloAddress silo) method ToString (line 192) | public override string ToString() method WithoutDuplicateDeads (line 210) | public MembershipTableData WithoutDuplicateDeads() method GetSiloStatuses (line 235) | internal Dictionary GetSiloStatuses(Func> GetFreshVotes(Dat... method ToString (line 428) | public override string ToString() => $"SiloAddress={SiloAddress} SiloN... method ToFullString (line 430) | public string ToFullString() FILE: src/Orleans.Core/SystemTargetInterfaces/ISiloControl.cs type ISiloControl (line 9) | internal interface ISiloControl : ISystemTarget, IVersionManager method Ping (line 11) | Task Ping(string message); method ForceGarbageCollection (line 13) | Task ForceGarbageCollection(); method ForceActivationCollection (line 14) | Task ForceActivationCollection(TimeSpan ageLimit); method ForceRuntimeStatisticsCollection (line 15) | Task ForceRuntimeStatisticsCollection(); method GetRuntimeStatistics (line 17) | Task GetRuntimeStatistics(); method GetGrainStatistics (line 18) | Task>> GetGrainStatistics(); method GetDetailedGrainStatistics (line 19) | Task> GetDetailedGrainStatistics(string[]... method GetSimpleGrainStatistics (line 20) | Task GetSimpleGrainStatistics(); method GetDetailedGrainReport (line 21) | Task GetDetailedGrainReport(GrainId grainId); method GetActivationCount (line 23) | Task GetActivationCount(); method MigrateRandomActivations (line 24) | Task MigrateRandomActivations(SiloAddress target, int count); method SendControlCommandToProvider (line 26) | Task SendControlCommandToProvider(string providerName, int ... method GetActiveGrains (line 27) | Task> GetActiveGrains(GrainType grainType); FILE: src/Orleans.Core/Threading/RecursiveInterlockedExchangeLock.cs class RecursiveInterlockedExchangeLock (line 10) | internal sealed class RecursiveInterlockedExchangeLock method RecursiveInterlockedExchangeLock (line 19) | public RecursiveInterlockedExchangeLock() method TryGet (line 26) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Get (line 36) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method TryRelease (line 47) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ToString (line 55) | public override string ToString() FILE: src/Orleans.Core/Timers/CoarseStopwatch.cs type CoarseStopwatch (line 8) | internal struct CoarseStopwatch method StartNew (line 16) | public static CoarseStopwatch StartNew() => new(GetTimestamp()); method StartNew (line 22) | public static CoarseStopwatch StartNew(long elapsedMs) => new(GetTimes... method FromTimestamp (line 28) | public static CoarseStopwatch FromTimestamp(long timestamp) => new(tim... method CoarseStopwatch (line 30) | private CoarseStopwatch(long timestamp) method GetTimestamp (line 88) | public static long GetTimestamp() => Environment.TickCount64; method FromTimestamp (line 96) | public static CoarseStopwatch FromTimestamp(long start, long end) => n... method GetRawTimestamp (line 106) | public readonly long GetRawTimestamp() => _value; method Start (line 111) | public void Start() method Restart (line 128) | public void Restart() => _value = GetTimestamp(); method Reset (line 133) | public void Reset() => _value = 0; method Stop (line 138) | public void Stop() method Equals (line 151) | public override readonly bool Equals(object obj) => obj is CoarseStopw... method Equals (line 152) | public readonly bool Equals(CoarseStopwatch other) => _value == other.... method GetHashCode (line 153) | public override readonly int GetHashCode() => HashCode.Combine(_value); FILE: src/Orleans.Core/Timers/NonCapturingTimer.cs class NonCapturingTimer (line 13) | internal static class NonCapturingTimer method Create (line 15) | public static Timer Create(TimerCallback callback, object state, TimeS... FILE: src/Orleans.Core/Timers/TimerManager.cs type ITimerManager (line 13) | public interface ITimerManager method Delay (line 21) | Task Delay(TimeSpan timeSpan, CancellationToken cancellationToke... class TimerManagerImpl (line 24) | internal class TimerManagerImpl : ITimerManager method Delay (line 26) | public Task Delay(TimeSpan timeSpan, CancellationToken cancellat... class TimerManager (line 29) | internal static class TimerManager method Delay (line 31) | public static Task Delay(TimeSpan timeSpan, CancellationToken ca... method DelayUntil (line 33) | public static Task DelayUntil(DateTime dueTime, CancellationToke... class DelayTimer (line 40) | private sealed class DelayTimer : ITimerCallback, ILinkedListElement this.completion.TrySetResult(true); method OnCanceled (line 59) | public void OnCanceled() => this.completion.TrySetResult(false); method TimerManager (line 102) | static TimerManager() method Register (line 111) | public static void Register(T timer) method CheckQueues (line 138) | private static void CheckQueues() method CheckQueueInLock (line 184) | private static void CheckQueueInLock(ThreadLocalQueue queue, DateTime ... method EnsureCurrentThreadHasQueue (line 208) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class ThreadLocalQueue (line 246) | private sealed class ThreadLocalQueue : ILinkedList class ExpiredTimers (line 263) | private sealed class ExpiredTimers : ILinkedList method FireTimers (line 269) | public void FireTimers() class TimerManager (line 69) | internal static class TimerManager where T : class, ITimerCallback, I... method Delay (line 31) | public static Task Delay(TimeSpan timeSpan, CancellationToken ca... method DelayUntil (line 33) | public static Task DelayUntil(DateTime dueTime, CancellationToke... class DelayTimer (line 40) | private sealed class DelayTimer : ITimerCallback, ILinkedListElement this.completion.TrySetResult(true); method OnCanceled (line 59) | public void OnCanceled() => this.completion.TrySetResult(false); method TimerManager (line 102) | static TimerManager() method Register (line 111) | public static void Register(T timer) method CheckQueues (line 138) | private static void CheckQueues() method CheckQueueInLock (line 184) | private static void CheckQueueInLock(ThreadLocalQueue queue, DateTime ... method EnsureCurrentThreadHasQueue (line 208) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class ThreadLocalQueue (line 246) | private sealed class ThreadLocalQueue : ILinkedList class ExpiredTimers (line 263) | private sealed class ExpiredTimers : ILinkedList method FireTimers (line 269) | public void FireTimers() type ITimerCallback (line 296) | internal interface ITimerCallback method OnTimeout (line 305) | void OnTimeout(); method OnCanceled (line 307) | void OnCanceled(); type ILinkedList (line 314) | internal interface ILinkedList where T : ILinkedListElement type ILinkedListElement (line 333) | internal interface ILinkedListElement where TSelf : ILinkedListEl... class LinkedList (line 342) | internal static class LinkedList method AddTail (line 349) | public static void AddTail(this TList list, TElement ... method Remove (line 369) | public static void Remove(this TList list, TElement p... FILE: src/Orleans.Core/Timers/ValueStopwatch.cs type ValueStopwatch (line 9) | internal struct ValueStopwatch method StartNew (line 18) | public static ValueStopwatch StartNew() => new(GetTimestamp()); method StartNew (line 27) | public static ValueStopwatch StartNew(TimeSpan elapsed) => new(GetTime... method ValueStopwatch (line 29) | private ValueStopwatch(long timestamp) method GetTimestamp (line 77) | public static long GetTimestamp() => Stopwatch.GetTimestamp(); method FromTimestamp (line 85) | public static ValueStopwatch FromTimestamp(long start, long end) => ne... method GetRawTimestamp (line 95) | public readonly long GetRawTimestamp() => this._value; method Start (line 100) | public void Start() method Restart (line 117) | public void Restart() => this._value = GetTimestamp(); method Reset (line 122) | public void Reset() => this._value = 0; method Stop (line 127) | public void Stop() FILE: src/Orleans.Core/Utils/AsyncEnumerable.cs class AsyncEnumerable (line 10) | internal static class AsyncEnumerable method AsyncEnumerable (line 27) | public AsyncEnumerable(T initialValue, Func updateValidato... method TryPublish (line 35) | public bool TryPublish(T value) => TryPublish(new Element(value)) == P... method Publish (line 37) | public void Publish(T value) method TryPublish (line 52) | public bool TryPublish(Func updateFunc, TState s... method Publish (line 54) | public void Publish(Func updateFunc, TState state) method TryPublish (line 69) | private PublishResult TryPublish(Element newItem) method TryPublishCore (line 91) | private PublishResult TryPublishCore(Func update... method Dispose (line 115) | public void Dispose() method ThrowInvalidUpdate (line 127) | [DoesNotReturn] method ThrowDisposed (line 130) | [DoesNotReturn] method GetAsyncEnumerator (line 133) | public IAsyncEnumerator GetAsyncEnumerator(CancellationToken cancel... type PublishResult (line 135) | private enum PublishResult class AsyncEnumerator (line 142) | private sealed class AsyncEnumerator : IAsyncEnumerator method AsyncEnumerator (line 147) | public AsyncEnumerator(Element initial, CancellationToken cancellati... method MoveNextAsync (line 164) | async ValueTask IAsyncEnumerator.MoveNextAsync() method DisposeAsync (line 175) | async ValueTask IAsyncDisposable.DisposeAsync() class Element (line 182) | private sealed class Element method Element (line 187) | public Element(T value) : this(value, new TaskCompletionSource next) method CreateInitial (line 197) | public static Element CreateInitial() => new( method CreateDisposed (line 201) | public static Element CreateDisposed() method NextAsync (line 224) | public Task NextAsync() => _next.Task; method SetNext (line 226) | public void SetNext(Element next) => _next.SetResult(next); method ThrowInvalidInstance (line 228) | private static void ThrowInvalidInstance() => throw new InvalidOpera... class AsyncEnumerable (line 16) | internal sealed class AsyncEnumerable : IAsyncEnumerable method AsyncEnumerable (line 27) | public AsyncEnumerable(T initialValue, Func updateValidato... method TryPublish (line 35) | public bool TryPublish(T value) => TryPublish(new Element(value)) == P... method Publish (line 37) | public void Publish(T value) method TryPublish (line 52) | public bool TryPublish(Func updateFunc, TState s... method Publish (line 54) | public void Publish(Func updateFunc, TState state) method TryPublish (line 69) | private PublishResult TryPublish(Element newItem) method TryPublishCore (line 91) | private PublishResult TryPublishCore(Func update... method Dispose (line 115) | public void Dispose() method ThrowInvalidUpdate (line 127) | [DoesNotReturn] method ThrowDisposed (line 130) | [DoesNotReturn] method GetAsyncEnumerator (line 133) | public IAsyncEnumerator GetAsyncEnumerator(CancellationToken cancel... type PublishResult (line 135) | private enum PublishResult class AsyncEnumerator (line 142) | private sealed class AsyncEnumerator : IAsyncEnumerator method AsyncEnumerator (line 147) | public AsyncEnumerator(Element initial, CancellationToken cancellati... method MoveNextAsync (line 164) | async ValueTask IAsyncEnumerator.MoveNextAsync() method DisposeAsync (line 175) | async ValueTask IAsyncDisposable.DisposeAsync() class Element (line 182) | private sealed class Element method Element (line 187) | public Element(T value) : this(value, new TaskCompletionSource next) method CreateInitial (line 197) | public static Element CreateInitial() => new( method CreateDisposed (line 201) | public static Element CreateDisposed() method NextAsync (line 224) | public Task NextAsync() => _next.Task; method SetNext (line 226) | public void SetNext(Element next) => _next.SetResult(next); method ThrowInvalidInstance (line 228) | private static void ThrowInvalidInstance() => throw new InvalidOpera... FILE: src/Orleans.Core/Utils/ExecutionContextSuppressor.cs type ExecutionContextSuppressor (line 11) | public ref struct ExecutionContextSuppressor method ExecutionContextSuppressor (line 18) | public ExecutionContextSuppressor() method Dispose (line 34) | public readonly void Dispose() FILE: src/Orleans.Core/Utils/NamedOptionExtension.cs class NamedOptionExtensions (line 10) | public static class NamedOptionExtensions method GetOptionsByName (line 19) | public static TOption GetOptionsByName(this IServiceProvider ... FILE: src/Orleans.Core/Utils/ObserverManager.cs class ObserverManager (line 18) | public class ObserverManager : ObserverManager notification, Func notification, Func? defunct) method GetEnumerator (line 292) | public IEnumerator GetEnumerator() => new ObserverEnumerato... method GetEnumerator (line 300) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); method CreateReadSnapshot (line 302) | private ReadSnapshot CreateReadSnapshot() method GetWritableObservers (line 309) | private Dictionary GetWritableObservers() class ObserverEntry (line 322) | private sealed class ObserverEntry type ReadSnapshot (line 335) | private readonly struct ReadSnapshot( method Dispose (line 341) | public void Dispose() class ObserverEnumerator (line 350) | private sealed class ObserverEnumerator(ReadSnapshot snapshot) : IEnum... method Dispose (line 356) | public void Dispose() method MoveNext (line 366) | public bool MoveNext() => _enumerator.MoveNext(); method Reset (line 367) | public void Reset() => _enumerator.Reset(); method LogDebugUpdatingEntry (line 370) | [LoggerMessage( method LogDebugAddingEntry (line 376) | [LoggerMessage( method LogDebugRemovedEntry (line 382) | [LoggerMessage( method LogDebugRemovingDefunctObservers (line 388) | [LoggerMessage( class ObserverManager (line 41) | public partial class ObserverManager : IEnumerable... method ObserverManager (line 27) | public ObserverManager(TimeSpan expiration, ILogger log) : base(expira... method ObserverManager (line 68) | public ObserverManager(TimeSpan expiration, ILogger log) method Clear (line 99) | public void Clear() method Subscribe (line 115) | public void Subscribe(TIdentity id, TObserver observer) method Unsubscribe (line 140) | public void Unsubscribe(TIdentity id) method Notify (line 160) | public async Task Notify(Func notification, Func notification, Func? defunct) method GetEnumerator (line 292) | public IEnumerator GetEnumerator() => new ObserverEnumerato... method GetEnumerator (line 300) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); method CreateReadSnapshot (line 302) | private ReadSnapshot CreateReadSnapshot() method GetWritableObservers (line 309) | private Dictionary GetWritableObservers() class ObserverEntry (line 322) | private sealed class ObserverEntry type ReadSnapshot (line 335) | private readonly struct ReadSnapshot( method Dispose (line 341) | public void Dispose() class ObserverEnumerator (line 350) | private sealed class ObserverEnumerator(ReadSnapshot snapshot) : IEnum... method Dispose (line 356) | public void Dispose() method MoveNext (line 366) | public bool MoveNext() => _enumerator.MoveNext(); method Reset (line 367) | public void Reset() => _enumerator.Reset(); method LogDebugUpdatingEntry (line 370) | [LoggerMessage( method LogDebugAddingEntry (line 376) | [LoggerMessage( method LogDebugRemovedEntry (line 382) | [LoggerMessage( method LogDebugRemovingDefunctObservers (line 388) | [LoggerMessage( FILE: src/Orleans.Core/Utils/RandomTimeSpan.cs class RandomTimeSpan (line 8) | internal static class RandomTimeSpan method Next (line 10) | public static TimeSpan Next(TimeSpan timeSpan) method Next (line 16) | public static TimeSpan Next(TimeSpan minValue, TimeSpan maxValue) FILE: src/Orleans.Core/Utils/ReferenceEqualsComparer.cs class ReferenceEqualsComparer (line 6) | internal class ReferenceEqualsComparer : IEqualityComparer method Equals (line 20) | public new bool Equals(object x, object y) => object.ReferenceEquals(x... method GetHashCode (line 22) | public int GetHashCode(object obj) => obj == null ? 0 : RuntimeHelpers... method Equals (line 39) | public bool Equals(T x, T y) => object.ReferenceEquals(x, y); method GetHashCode (line 41) | public int GetHashCode(T obj) => obj == null ? 0 : RuntimeHelpers.GetH... class ReferenceEqualsComparer (line 25) | internal class ReferenceEqualsComparer : IEqualityComparer where T... method Equals (line 20) | public new bool Equals(object x, object y) => object.ReferenceEquals(x... method GetHashCode (line 22) | public int GetHashCode(object obj) => obj == null ? 0 : RuntimeHelpers... method Equals (line 39) | public bool Equals(T x, T y) => object.ReferenceEquals(x, y); method GetHashCode (line 41) | public int GetHashCode(T obj) => obj == null ? 0 : RuntimeHelpers.GetH... FILE: src/Orleans.Core/Utils/SetExtensions.cs class SetExtensions (line 7) | internal static class SetExtensions method ToSet (line 14) | public static HashSet ToSet(this IEnumerable values) method ToStrings (line 29) | public static string ToStrings(this IEnumerable list, Func(this Dictionary diction... FILE: src/Orleans.Core/Utils/StandardExtensions.cs class StandardExtensions (line 9) | internal static class StandardExtensions method Max (line 11) | public static TimeSpan Max(TimeSpan first, TimeSpan second) => first >... method Min (line 13) | public static TimeSpan Min(TimeSpan first, TimeSpan second) => first <... FILE: src/Orleans.Core/Utils/TypeConverterExtensions.cs class TypeConverterExtensions (line 13) | internal static class TypeConverterExtensions method IsGenericType (line 21) | public static bool IsGenericType(IdSpan type) => type.AsSpan().IndexOf... method GetGenericTypeArity (line 26) | public static int GetGenericTypeArity(IdSpan type) method IsConstructed (line 56) | public static bool IsConstructed(IdSpan type) => type.AsSpan().IndexOf... method GetDeconstructed (line 61) | public static IdSpan GetDeconstructed(IdSpan type) method GetConstructed (line 71) | public static IdSpan GetConstructed(this TypeConverter formatter, IdSp... method GetConstructed (line 99) | public static GrainType GetConstructed(this GenericGrainType genericGr... method GetArguments (line 123) | public static Type[] GetArguments(this TypeConverter formatter, IdSpan... method ThrowGenericArityMismatch (line 154) | [DoesNotReturn] FILE: src/Orleans.DurableJobs/DurableJob.cs class DurableJob (line 10) | [GenerateSerializer] FILE: src/Orleans.DurableJobs/DurableJobRunResult.cs class DurableJobRunResult (line 9) | [GenerateSerializer] method DurableJobRunResult (line 24) | private DurableJobRunResult(DurableJobRunStatus status, TimeSpan? poll... method PollAfter (line 67) | public static DurableJobRunResult PollAfter(TimeSpan delay) method Failed (line 81) | public static DurableJobRunResult Failed(Exception exception) type DurableJobRunStatus (line 91) | public enum DurableJobRunStatus FILE: src/Orleans.DurableJobs/Hosting/DurableJobsExtensions.cs class DurableJobsExtensions (line 14) | public static class DurableJobsExtensions method AddDurableJobs (line 21) | public static ISiloBuilder AddDurableJobs(this ISiloBuilder builder) =... method AddDurableJobs (line 27) | public static void AddDurableJobs(this IServiceCollection services) method UseInMemoryDurableJobs (line 54) | public static ISiloBuilder UseInMemoryDurableJobs(this ISiloBuilder bu... method UseInMemoryDurableJobs (line 70) | internal static IServiceCollection UseInMemoryDurableJobs(this IServic... FILE: src/Orleans.DurableJobs/Hosting/DurableJobsOptions.cs class DurableJobsOptions (line 12) | public sealed class DurableJobsOptions method DefaultShouldRetry (line 91) | private static DateTimeOffset? DefaultShouldRetry(IJobRunContext jobCo... class DurableJobsOptionsValidator (line 103) | public sealed class DurableJobsOptionsValidator : IConfigurationValidator method DurableJobsOptionsValidator (line 108) | public DurableJobsOptionsValidator(ILogger HandleDurableJobAsync(IJobRunContext ... method StartJobAsync (line 52) | private Task StartJobAsync(IJobRunContext context... method GetJobStatus (line 66) | private Task GetJobStatus(IJobRunContext context,... method LogErrorExecutingDurableJob (line 91) | [LoggerMessage(Level = LogLevel.Error, Message = "Error executing dura... method LogGrainDoesNotImplementHandler (line 94) | [LoggerMessage(Level = LogLevel.Error, Message = "Grain {GrainId} does... FILE: src/Orleans.DurableJobs/ILocalDurableJobManager.cs type ILocalDurableJobManager (line 12) | public interface ILocalDurableJobManager method ScheduleJobAsync (line 20) | Task ScheduleJobAsync(ScheduleJobRequest request, Cancella... method TryCancelDurableJobAsync (line 28) | Task TryCancelDurableJobAsync(DurableJob job, CancellationToken ... FILE: src/Orleans.DurableJobs/InMemoryJobQueue.cs class InMemoryJobQueue (line 13) | internal sealed class InMemoryJobQueue : IAsyncEnumerable method Enqueue (line 37) | public void Enqueue(DurableJob job, int dequeueCount) method MarkAsComplete (line 56) | public void MarkAsComplete() method CancelJob (line 72) | public bool CancelJob(string jobId) method RetryJobLater (line 98) | public void RetryJobLater(IJobRunContext jobContext, DateTimeOffset ne... method GetAsyncEnumerator (line 132) | public async IAsyncEnumerator GetAsyncEnumerator(Cance... method GetJobBucket (line 193) | private JobBucket GetJobBucket(DateTimeOffset dueTime) class JobBucket (line 209) | internal sealed class JobBucket method JobBucket (line 219) | public JobBucket(DateTimeOffset dueTime) method AddJob (line 224) | public void AddJob(DurableJob job, int dequeueCount) method RemoveJob (line 229) | public bool RemoveJob(string jobId) FILE: src/Orleans.DurableJobs/InMemoryJobShard.cs class InMemoryJobShard (line 10) | [DebuggerDisplay("ShardId={Id}, StartTime={StartTime}, EndTime={EndTime}")] method InMemoryJobShard (line 13) | public InMemoryJobShard(string shardId, DateTimeOffset minDueTime, Dat... method PersistAddJobAsync (line 19) | protected override Task PersistAddJobAsync(string jobId, string jobNam... method PersistRemoveJobAsync (line 24) | protected override Task PersistRemoveJobAsync(string jobId, Cancellati... method PersistRetryJobAsync (line 29) | protected override Task PersistRetryJobAsync(string jobId, DateTimeOff... FILE: src/Orleans.DurableJobs/JobShard.cs type IJobShard (line 20) | public interface IJobShard : IAsyncDisposable method ConsumeDurableJobsAsync (line 54) | IAsyncEnumerable ConsumeDurableJobsAsync(); method GetJobCountAsync (line 60) | ValueTask GetJobCountAsync(); method MarkAsCompleteAsync (line 67) | Task MarkAsCompleteAsync(CancellationToken cancellationToken); method RemoveJobAsync (line 75) | Task RemoveJobAsync(string jobId, CancellationToken cancellation... method RetryJobLaterAsync (line 84) | Task RetryJobLaterAsync(IJobRunContext jobContext, DateTimeOffset newD... method TryScheduleJobAsync (line 93) | Task TryScheduleJobAsync(ScheduleJobRequest request, Canc... class JobShard (line 99) | public abstract class JobShard : IJobShard method JobShard (line 124) | protected JobShard(string id, DateTimeOffset startTime, DateTimeOffset... method GetJobCountAsync (line 133) | public ValueTask GetJobCountAsync() => ValueTask.FromResult(_jobQ... method ConsumeDurableJobsAsync (line 136) | public IAsyncEnumerable ConsumeDurableJobsAsync() method TryScheduleJobAsync (line 142) | public async Task TryScheduleJobAsync(ScheduleJobRequest ... method RemoveJobAsync (line 171) | public async Task RemoveJobAsync(string jobId, CancellationToken... method MarkAsCompleteAsync (line 178) | public Task MarkAsCompleteAsync(CancellationToken cancellationToken) method RetryJobLaterAsync (line 186) | public async Task RetryJobLaterAsync(IJobRunContext jobContext, DateTi... method EnqueueJob (line 197) | protected void EnqueueJob(DurableJob job, int dequeueCount) method PersistAddJobAsync (line 212) | protected abstract Task PersistAddJobAsync(string jobId, string jobNam... method PersistRemoveJobAsync (line 220) | protected abstract Task PersistRemoveJobAsync(string jobId, Cancellati... method PersistRetryJobAsync (line 229) | protected abstract Task PersistRetryJobAsync(string jobId, DateTimeOff... method DisposeAsync (line 232) | public virtual ValueTask DisposeAsync() FILE: src/Orleans.DurableJobs/JobShardManager.cs class JobShardManager (line 14) | public abstract class JobShardManager method JobShardManager (line 25) | protected JobShardManager(SiloAddress siloAddress) method AssignJobShardsAsync (line 36) | public abstract Task> AssignJobShardsAsync(DateTimeOff... method CreateShardAsync (line 46) | public abstract Task CreateShardAsync(DateTimeOffset minDue... method UnregisterShardAsync (line 54) | public abstract Task UnregisterShardAsync(IJobShard shard, Cancellatio... class InMemoryJobShardManager (line 57) | internal class InMemoryJobShardManager : JobShardManager method InMemoryJobShardManager (line 65) | public InMemoryJobShardManager(SiloAddress siloAddress) : this(siloAdd... method InMemoryJobShardManager (line 69) | public InMemoryJobShardManager(SiloAddress siloAddress, IClusterMember... method InMemoryJobShardManager (line 73) | public InMemoryJobShardManager(SiloAddress siloAddress, IClusterMember... method ClearAllShardsAsync (line 82) | internal static async Task ClearAllShardsAsync() method GetOwnershipInfoAsync (line 98) | internal static async Task<(string? Owner, int AdoptedCount)?> GetOwne... method AssignJobShardsAsync (line 115) | public override async Task> AssignJobShardsAsync(DateT... method CreateShardAsync (line 195) | public override async Task CreateShardAsync(DateTimeOffset ... method UnregisterShardAsync (line 217) | public override async Task UnregisterShardAsync(IJobShard shard, Cance... class ShardOwnership (line 246) | private sealed class ShardOwnership FILE: src/Orleans.DurableJobs/LocalDurableJobManager.Log.cs class LocalDurableJobManager (line 7) | internal partial class LocalDurableJobManager method LogSchedulingJob (line 9) | [LoggerMessage( method LogJobScheduled (line 15) | [LoggerMessage( method LogStarting (line 21) | [LoggerMessage( method LogStarted (line 27) | [LoggerMessage( method LogStopping (line 33) | [LoggerMessage( method LogStopped (line 39) | [LoggerMessage( method LogCancellingJob (line 45) | [LoggerMessage( method LogJobCancellationFailed (line 51) | [LoggerMessage( method LogJobCancelled (line 57) | [LoggerMessage( method LogErrorProcessingClusterMembership (line 63) | [LoggerMessage( method LogCheckingForUnassignedShards (line 69) | [LoggerMessage( method LogAssignedShards (line 75) | [LoggerMessage( method LogNoShardsToAssign (line 81) | [LoggerMessage( method LogStartingShard (line 87) | [LoggerMessage( method LogShardNotReadyYet (line 93) | [LoggerMessage( method LogCheckingPendingShards (line 99) | [LoggerMessage( method LogErrorInPeriodicCheck (line 105) | [LoggerMessage( method LogUnregisteredShard (line 111) | [LoggerMessage( method LogErrorUnregisteringShard (line 117) | [LoggerMessage( method LogErrorDisposingShard (line 123) | [LoggerMessage( method LogCreatingNewShard (line 129) | [LoggerMessage( FILE: src/Orleans.DurableJobs/LocalDurableJobManager.cs class LocalDurableJobManager (line 18) | internal partial class LocalDurableJobManager : SystemTarget, ILocalDura... method LocalDurableJobManager (line 38) | public LocalDurableJobManager( method ScheduleJobAsync (line 55) | public async Task ScheduleJobAsync(ScheduleJobRequest requ... method Participate (line 105) | public void Participate(ISiloLifecycle lifecycle) method Start (line 114) | private Task Start(CancellationToken ct) method Stop (line 141) | private async Task Stop(CancellationToken ct) method TryCancelDurableJobAsync (line 163) | public async Task TryCancelDurableJobAsync(DurableJob job, Cance... method ProcessMembershipUpdates (line 179) | private async Task ProcessMembershipUpdates() method PeriodicShardCheck (line 217) | private async Task PeriodicShardCheck() method TryActivateShard (line 282) | private void TryActivateShard(IJobShard shard) method RunShardWithCleanupAsync (line 304) | private async Task RunShardWithCleanupAsync(IJobShard shard) method ShouldStartShardNow (line 338) | private bool ShouldStartShardNow(IJobShard shard) method GetShardKey (line 344) | private DateTimeOffset GetShardKey(DateTimeOffset scheduledTime) FILE: src/Orleans.DurableJobs/ScheduleJobRequest.cs type ScheduleJobRequest (line 10) | public readonly struct ScheduleJobRequest FILE: src/Orleans.DurableJobs/ShardExecutor.Log.cs class ShardExecutor (line 7) | internal sealed partial class ShardExecutor method LogWaitingForShardStartTime (line 9) | [LoggerMessage( method LogBeginProcessingShard (line 15) | [LoggerMessage( method LogExecutingJob (line 21) | [LoggerMessage( method LogJobExecutedSuccessfully (line 27) | [LoggerMessage( method LogErrorExecutingJob (line 33) | [LoggerMessage( method LogRetryingJob (line 39) | [LoggerMessage( method LogPollingJob (line 45) | [LoggerMessage( method LogJobFailedWithResult (line 51) | [LoggerMessage( method LogJobFailedNoRetry (line 57) | [LoggerMessage( method LogCompletedProcessingShard (line 63) | [LoggerMessage( method LogShardCancelled (line 69) | [LoggerMessage( method LogOverloadDetected (line 75) | [LoggerMessage( method LogOverloadCleared (line 81) | [LoggerMessage( method LogSlowStartBegin (line 87) | [LoggerMessage( method LogSlowStartConcurrencyIncreased (line 93) | [LoggerMessage( method LogSlowStartComplete (line 99) | [LoggerMessage( method LogSlowStartError (line 105) | [LoggerMessage( FILE: src/Orleans.DurableJobs/ShardExecutor.cs class ShardExecutor (line 17) | internal sealed partial class ShardExecutor method ShardExecutor (line 34) | public ShardExecutor( method RunShardAsync (line 58) | public async Task RunShardAsync(IJobShard shard, CancellationToken can... method SlowStartRampUpAsync (line 115) | private async Task SlowStartRampUpAsync() method RunJobAsync (line 168) | private async Task RunJobAsync( FILE: src/Orleans.EventSourcing/Common/ConnectionIssues.cs class PrimaryOperationFailed (line 8) | [Serializable] method ComputeRetryDelay (line 19) | public override TimeSpan ComputeRetryDelay(TimeSpan? previous) FILE: src/Orleans.EventSourcing/Common/NotificationMessage.cs type INotificationMessage (line 11) | public interface INotificationMessage : ILogConsistencyProtocolMessage class VersionNotificationMessage (line 21) | [Serializable] class BatchedNotificationMessage (line 32) | [Serializable] FILE: src/Orleans.EventSourcing/Common/PrimaryBasedLogViewAdaptor.cs class PrimaryBasedLogViewAdaptor (line 28) | public abstract class PrimaryBasedLogViewAdaptor WriteAsync(); method MakeSubmissionEntry (line 66) | protected abstract TSubmissionEntry MakeSubmissionEntry(TLogEntry entry); method OnMessageReceived (line 76) | protected virtual Task OnMessageReceiv... method RetrieveLogSegment (line 82) | public virtual Task> RetrieveLogSegment(int f... method ClearPrimaryLogAsync (line 90) | protected virtual Task ClearPrimaryLogAsync(CancellationToken cancella... method ClearLogAsync (line 96) | public virtual Task ClearLogAsync(CancellationToken cancellationToken) method OnNotificationReceived (line 118) | protected virtual void OnNotificationReceived(INotificationMessage pay... method ProcessNotifications (line 148) | protected virtual void ProcessNotifications() method Merge (line 160) | protected virtual INotificationMessage Merge(INotificationMessage earl... method PrimaryBasedLogViewAdaptor (line 181) | protected PrimaryBasedLogViewAdaptor( method PreOnActivate (line 195) | public virtual Task PreOnActivate() method PostOnActivate (line 208) | public virtual Task PostOnActivate() method PostOnDeactivate (line 222) | public virtual async Task PostOnDeactivate() method CopyTentativeState (line 241) | protected TLogView CopyTentativeState() method GetCurrentBatchOfUpdates (line 248) | protected TSubmissionEntry[] GetCurrentBatchOfUpdates() method GetNumberPendingUpdates (line 253) | protected int GetNumberPendingUpdates() method IsMyClusterJoined (line 295) | protected bool IsMyClusterJoined() method EnsureClusterJoinedAsync (line 303) | protected async Task EnsureClusterJoinedAsync() method Submit (line 313) | public void Submit(TLogEntry logEntry) method SubmitRange (line 328) | public void SubmitRange(IEnumerable logEntries) method TryAppend (line 346) | public Task TryAppend(TLogEntry logEntry) method TryAppendRange (line 365) | public Task TryAppendRange(IEnumerable logEntries) method SubmitInternal (line 393) | private void SubmitInternal(DateTime time, TLogEntry logentry, int con... method OnProtocolMessageReceived (line 471) | public async Task OnProtocolMessageRec... method EnableStatsCollection (line 496) | public virtual void EnableStatsCollection() method DisableStatsCollection (line 523) | public void DisableStatsCollection() method GetStats (line 532) | public LogConsistencyStatistics GetStats() method CalculateTentativeState (line 537) | private void CalculateTentativeState() method ResetTentativeState (line 557) | internal void ResetTentativeState() method ProcessClearLogRequest (line 564) | private async Task ProcessClearLogRequest() method Work (line 612) | internal async Task Work() method UpdatePrimary (line 669) | internal async Task UpdatePrimary() method NotifyViewChanges (line 730) | private void NotifyViewChanges(ref int version, int numWritten = 0) method Synchronize (line 759) | public async Task Synchronize() method ConfirmSubmittedEntries (line 782) | public async Task ConfirmSubmittedEntries() method NotifyPromises (line 798) | protected void NotifyPromises(int count, bool success) method RemoveStaleConditionalUpdates (line 811) | protected void RemoveStaleConditionalUpdates() class SubmissionEntry (line 849) | public class SubmissionEntry FILE: src/Orleans.EventSourcing/Common/RecordedConnectionIssue.cs type RecordedConnectionIssue (line 10) | public struct RecordedConnectionIssue method Record (line 24) | public void Record(ConnectionIssue newIssue, IConnectionIssueListener ... method Resolve (line 57) | public void Resolve(IConnectionIssueListener listener, ILogConsistency... method DelayBeforeRetry (line 77) | public async readonly Task DelayBeforeRetry() method ToString (line 86) | public override readonly string ToString() FILE: src/Orleans.EventSourcing/Common/StringEncodedWriteVector.cs class StringEncodedWriteVector (line 3) | public static class StringEncodedWriteVector method GetBit (line 22) | public static bool GetBit(string writeVector, string Replica) method FlipBit (line 34) | public static bool FlipBit(ref string writeVector, string Replica) FILE: src/Orleans.EventSourcing/CustomStorage/CustomStorageLogConsistencyOptions.cs class CustomStorageLogConsistencyOptions (line 4) | public class CustomStorageLogConsistencyOptions FILE: src/Orleans.EventSourcing/CustomStorage/ICustomStorageInterface.cs type ICustomStorageInterface (line 11) | public interface ICustomStorageInterface method ReadStateFromStorage (line 18) | Task> ReadStateFromStorage(); method ApplyUpdatesToStorage (line 25) | Task ApplyUpdatesToStorage(IReadOnlyList updates, int ex... method ClearStoredState (line 31) | Task ClearStoredState() => throw new NotSupportedException(); FILE: src/Orleans.EventSourcing/CustomStorage/LogConsistencyProvider.cs class LogConsistencyProvider (line 17) | public class LogConsistencyProvider : ILogViewAdaptorFactory method LogConsistencyProvider (line 30) | public LogConsistencyProvider(CustomStorageLogConsistencyOptions options) method MakeLogViewAdaptor (line 36) | public ILogViewAdaptor MakeLogViewAdaptor : PrimaryBasedL... method CustomStorageAdaptor (line 25) | public CustomStorageAdaptor(ILogViewAdaptorHost h... method LastConfirmedView (line 45) | protected override TLogView LastConfirmedView() method GetConfirmedVersion (line 51) | protected override int GetConfirmedVersion() method ClearPrimaryLogAsync (line 57) | protected override Task ClearPrimaryLogAsync(CancellationToken cancell... method InitializeConfirmedView (line 65) | protected override void InitializeConfirmedView(TLogView initialstate) method MakeSubmissionEntry (line 81) | protected override SubmissionEntry MakeSubmissionEntry(TLog... class ReadRequest (line 87) | [Serializable] class ReadResponse (line 95) | [Serializable] method OnMessageReceived (line 107) | protected override Task OnMessageRecei... method ReadAsync (line 121) | protected override async Task ReadAsync() method WriteAsync (line 158) | protected override async Task WriteAsync() class UpdatePrimaryFailed (line 244) | [Serializable] method ToString (line 249) | public override string ToString() class ReadFromPrimaryFailed (line 259) | [Serializable] method ToString (line 264) | public override string ToString() class UpdateNotificationMessage (line 275) | [Serializable] method ToString (line 290) | public override string ToString() method OnNotificationReceived (line 299) | protected override void OnNotificationReceived(INotificationMessage pa... method ProcessNotifications (line 309) | protected override void ProcessNotifications() method enter_operation (line 347) | [Conditional("DEBUG")] method exit_operation (line 353) | [Conditional("DEBUG")] FILE: src/Orleans.EventSourcing/Hosting/CustomStorageSiloBuilderExtensions.cs class CustomStorageSiloBuilderExtensions (line 12) | public static class CustomStorageSiloBuilderExtensions method AddCustomStorageBasedLogConsistencyProviderAsDefault (line 17) | public static ISiloBuilder AddCustomStorageBasedLogConsistencyProvider... method AddCustomStorageBasedLogConsistencyProvider (line 25) | public static ISiloBuilder AddCustomStorageBasedLogConsistencyProvider... method AddCustomStorageBasedLogConsistencyProvider (line 30) | internal static void AddCustomStorageBasedLogConsistencyProvider(this ... FILE: src/Orleans.EventSourcing/Hosting/LogConsistencyProtocolSiloBuilderExtensions.cs class LogConsistencyProtocolSiloBuilderExtensions (line 10) | internal static class LogConsistencyProtocolSiloBuilderExtensions method AddLogConsistencyProtocolServicesFactory (line 12) | internal static IServiceCollection AddLogConsistencyProtocolServicesFa... FILE: src/Orleans.EventSourcing/Hosting/LogStorageSiloBuilderExtensions.cs class LogStorageSiloBuilderExtensions (line 11) | public static class LogStorageSiloBuilderExtensions method AddLogStorageBasedLogConsistencyProviderAsDefault (line 16) | public static ISiloBuilder AddLogStorageBasedLogConsistencyProviderAsD... method AddLogStorageBasedLogConsistencyProvider (line 24) | public static ISiloBuilder AddLogStorageBasedLogConsistencyProvider(th... method AddLogStorageBasedLogConsistencyProvider (line 29) | internal static IServiceCollection AddLogStorageBasedLogConsistencyPro... FILE: src/Orleans.EventSourcing/Hosting/StateStorageSiloBuilderExtensions.cs class StateStorageSiloBuilderExtensions (line 11) | public static class StateStorageSiloBuilderExtensions method AddStateStorageBasedLogConsistencyProviderAsDefault (line 16) | public static ISiloBuilder AddStateStorageBasedLogConsistencyProviderA... method AddStateStorageBasedLogConsistencyProvider (line 24) | public static ISiloBuilder AddStateStorageBasedLogConsistencyProvider(... method AddStateStorageBasedLogConsistencyProvider (line 29) | internal static IServiceCollection AddStateStorageBasedLogConsistencyP... FILE: src/Orleans.EventSourcing/JournaledGrain.cs class JournaledGrain (line 14) | public abstract class JournaledGrain : JournaledGrain(TEvent @event) method RaiseEvents (line 57) | protected virtual void RaiseEvents(IEnumerable events) method RaiseConditionalEvent (line 71) | protected virtual Task RaiseConditionalEvent(TEvent @event) method RaiseConditionalEvents (line 85) | protected virtual Task RaiseConditionalEvents(IEnumerabl... method OnTentativeStateChanged (line 114) | protected virtual void OnTentativeStateChanged() method OnStateChanged (line 131) | protected virtual void OnStateChanged() method ConfirmEvents (line 141) | protected Task ConfirmEvents() method RefreshNow (line 152) | protected Task RefreshNow() method OnActivateAsync (line 170) | public override Task OnActivateAsync(CancellationToken cancellationToken) method RetrieveConfirmedEvents (line 183) | protected Task> RetrieveConfirmedEvents(int ... method ClearLogAsync (line 197) | protected Task ClearLogAsync(CancellationToken cancellationToken = def... method OnConnectionIssue (line 209) | protected virtual void OnConnectionIssue(ConnectionIssue issue) method OnConnectionIssueResolved (line 218) | protected virtual void OnConnectionIssueResolved(ConnectionIssue issue) method EnableStatsCollection (line 223) | protected void EnableStatsCollection() method DisableStatsCollection (line 229) | protected void DisableStatsCollection() method GetStats (line 235) | protected LogConsistencyStatistics GetStats() method TransitionState (line 248) | protected virtual void TransitionState(TGrainState state, TEventBase @... method InstallAdaptor (line 264) | protected override void InstallAdaptor(ILogViewAdaptorFactory factory,... method UpdateView (line 286) | void ILogViewAdaptorHost.UpdateView(TGrainSta... method PreActivateProtocolParticipant (line 294) | async Task ILogConsistencyProtocolParticipant.PreActivateProtocolParti... method PostActivateProtocolParticipant (line 302) | async Task ILogConsistencyProtocolParticipant.PostActivateProtocolPart... method DeactivateProtocolParticipant (line 310) | Task ILogConsistencyProtocolParticipant.DeactivateProtocolParticipant() method OnViewChanged (line 318) | void ILogViewAdaptorHost.OnViewChanged(bool t... method OnConnectionIssue (line 329) | void IConnectionIssueListener.OnConnectionIssue(ConnectionIssue connec... method OnConnectionIssueResolved (line 337) | void IConnectionIssueListener.OnConnectionIssueResolved(ConnectionIssu... class JournaledGrain (line 29) | public abstract class JournaledGrain : method JournaledGrain (line 20) | protected JournaledGrain() { } method JournaledGrain (line 39) | protected JournaledGrain() { } method RaiseEvent (line 45) | protected virtual void RaiseEvent(TEvent @event) method RaiseEvents (line 57) | protected virtual void RaiseEvents(IEnumerable events) method RaiseConditionalEvent (line 71) | protected virtual Task RaiseConditionalEvent(TEvent @event) method RaiseConditionalEvents (line 85) | protected virtual Task RaiseConditionalEvents(IEnumerabl... method OnTentativeStateChanged (line 114) | protected virtual void OnTentativeStateChanged() method OnStateChanged (line 131) | protected virtual void OnStateChanged() method ConfirmEvents (line 141) | protected Task ConfirmEvents() method RefreshNow (line 152) | protected Task RefreshNow() method OnActivateAsync (line 170) | public override Task OnActivateAsync(CancellationToken cancellationToken) method RetrieveConfirmedEvents (line 183) | protected Task> RetrieveConfirmedEvents(int ... method ClearLogAsync (line 197) | protected Task ClearLogAsync(CancellationToken cancellationToken = def... method OnConnectionIssue (line 209) | protected virtual void OnConnectionIssue(ConnectionIssue issue) method OnConnectionIssueResolved (line 218) | protected virtual void OnConnectionIssueResolved(ConnectionIssue issue) method EnableStatsCollection (line 223) | protected void EnableStatsCollection() method DisableStatsCollection (line 229) | protected void DisableStatsCollection() method GetStats (line 235) | protected LogConsistencyStatistics GetStats() method TransitionState (line 248) | protected virtual void TransitionState(TGrainState state, TEventBase @... method InstallAdaptor (line 264) | protected override void InstallAdaptor(ILogViewAdaptorFactory factory,... method UpdateView (line 286) | void ILogViewAdaptorHost.UpdateView(TGrainSta... method PreActivateProtocolParticipant (line 294) | async Task ILogConsistencyProtocolParticipant.PreActivateProtocolParti... method PostActivateProtocolParticipant (line 302) | async Task ILogConsistencyProtocolParticipant.PostActivateProtocolPart... method DeactivateProtocolParticipant (line 310) | Task ILogConsistencyProtocolParticipant.DeactivateProtocolParticipant() method OnViewChanged (line 318) | void ILogViewAdaptorHost.OnViewChanged(bool t... method OnConnectionIssue (line 329) | void IConnectionIssueListener.OnConnectionIssue(ConnectionIssue connec... method OnConnectionIssueResolved (line 337) | void IConnectionIssueListener.OnConnectionIssueResolved(ConnectionIssu... FILE: src/Orleans.EventSourcing/LogConsistency/ConnectionIssues.cs class ConnectionIssue (line 11) | [Serializable] method ComputeRetryDelay (line 45) | public abstract TimeSpan ComputeRetryDelay(TimeSpan? previous); FILE: src/Orleans.EventSourcing/LogConsistency/IConnectionIssueListener.cs type IConnectionIssueListener (line 7) | public interface IConnectionIssueListener method OnConnectionIssue (line 13) | void OnConnectionIssue(ConnectionIssue connectionIssue); method OnConnectionIssueResolved (line 18) | void OnConnectionIssueResolved(ConnectionIssue connectionIssue); FILE: src/Orleans.EventSourcing/LogConsistency/ILogConsistencyDiagnostics.cs type ILogConsistencyDiagnostics (line 9) | public interface ILogConsistencyDiagnostics method EnableStatsCollection (line 12) | void EnableStatsCollection(); method DisableStatsCollection (line 15) | void DisableStatsCollection(); method GetStats (line 18) | LogConsistencyStatistics GetStats(); class LogConsistencyStatistics (line 25) | public class LogConsistencyStatistics FILE: src/Orleans.EventSourcing/LogConsistency/ILogConsistencyProtocolGateway.cs type ILogConsistencyProtocolGateway (line 11) | internal interface ILogConsistencyProtocolGateway : ISystemTarget method RelayMessage (line 13) | Task RelayMessage(GrainId id, ILogCons... FILE: src/Orleans.EventSourcing/LogConsistency/ILogConsistencyProtocolServices.cs type ILogConsistencyProtocolServices (line 12) | public interface ILogConsistencyProtocolServices method DeepCopy (line 22) | T DeepCopy(T value); method ProtocolError (line 33) | void ProtocolError(string msg, bool throwexception); method CaughtException (line 38) | void CaughtException(string where, Exception e); method CaughtUserCodeException (line 46) | void CaughtUserCodeException(string callback, string where, Exception e); method Log (line 49) | void Log(LogLevel level, string format, params object[] args); class ProtocolTransportException (line 57) | [Serializable] method ProtocolTransportException (line 61) | public ProtocolTransportException() method ProtocolTransportException (line 63) | public ProtocolTransportException(string msg) method ProtocolTransportException (line 66) | public ProtocolTransportException(string msg, Exception exc) method ProtocolTransportException (line 70) | [Obsolete] method ToString (line 75) | public override string ToString() FILE: src/Orleans.EventSourcing/LogConsistency/ILogViewAdaptor.cs type ILogViewAdaptor (line 16) | public interface ILogViewAdaptor : method PreOnActivate (line 23) | Task PreOnActivate(); method PostOnActivate (line 26) | Task PostOnActivate(); method PostOnDeactivate (line 29) | Task PostOnDeactivate(); type ILogViewRead (line 37) | public interface ILogViewRead method RetrieveLogSegment (line 66) | Task> RetrieveLogSegment(int fromVersion, int... type ILogViewUpdate (line 74) | public interface ILogViewUpdate method Submit (line 80) | void Submit(TLogEntry entry); method SubmitRange (line 86) | void SubmitRange(IEnumerable entries); method TryAppend (line 94) | Task TryAppend(TLogEntry entry); method TryAppendRange (line 102) | Task TryAppendRange(IEnumerable entries); method ConfirmSubmittedEntries (line 109) | Task ConfirmSubmittedEntries(); method Synchronize (line 116) | Task Synchronize(); method ClearLogAsync (line 124) | Task ClearLogAsync(CancellationToken cancellationToken) FILE: src/Orleans.EventSourcing/LogConsistency/ILogViewAdaptorFactory.cs type ILogViewAdaptorFactory (line 9) | public interface ILogViewAdaptorFactory method MakeLogViewAdaptor (line 24) | ILogViewAdaptor MakeLogViewAdaptor : IConnectionI... method UpdateView (line 15) | void UpdateView(TLogView view, TLogEntry entry); method OnViewChanged (line 23) | void OnViewChanged(bool tentative, bool confirmed); FILE: src/Orleans.EventSourcing/LogConsistency/IProtocolParticipant.cs type ILogConsistencyProtocolParticipant (line 8) | public interface ILogConsistencyProtocolParticipant : IGrain method PreActivateProtocolParticipant (line 14) | Task PreActivateProtocolParticipant(); method PostActivateProtocolParticipant (line 20) | Task PostActivateProtocolParticipant(); method DeactivateProtocolParticipant (line 26) | Task DeactivateProtocolParticipant(); type ILogConsistencyProtocolMessage (line 33) | public interface ILogConsistencyProtocolMessage FILE: src/Orleans.EventSourcing/LogConsistency/LogConsistentGrain.cs class LogConsistentGrain (line 19) | public abstract class LogConsistentGrain : Grain, ILifecycleParti... method InstallAdaptor (line 29) | protected abstract void InstallAdaptor(ILogViewAdaptorFactory factory,... method Participate (line 37) | public virtual void Participate(IGrainLifecycle lifecycle) method OnDeactivateState (line 47) | private async Task OnDeactivateState(CancellationToken ct) method OnSetupState (line 55) | private Task OnSetupState(CancellationToken ct) method PreActivate (line 67) | private async Task PreActivate(CancellationToken ct) method PostActivate (line 72) | private async Task PostActivate(CancellationToken ct) method InstallLogViewAdaptor (line 77) | private void InstallLogViewAdaptor( method SetupLogConsistencyProvider (line 91) | private ILogViewAdaptorFactory SetupLogConsistencyProvider(IGrainConte... FILE: src/Orleans.EventSourcing/LogConsistency/ProtocolServices.cs class ProtocolServices (line 13) | internal class ProtocolServices : ILogConsistencyProtocolServices method ProtocolServices (line 19) | public ProtocolServices( method DeepCopy (line 35) | public T DeepCopy(T value) => this.deepCopier.Copy(value); method ProtocolError (line 37) | public void ProtocolError(string msg, bool throwexception) method CaughtException (line 51) | public void CaughtException(string where, Exception e) method CaughtUserCodeException (line 61) | public void CaughtUserCodeException(string callback, string where, Exc... method Log (line 72) | public void Log(LogLevel level, string format, params object[] args) FILE: src/Orleans.EventSourcing/LogStorage/DefaultAdaptorFactory.cs class DefaultAdaptorFactory (line 5) | internal class DefaultAdaptorFactory : ILogViewAdaptorFactory method MakeLogViewAdaptor (line 15) | public ILogViewAdaptor MakeLogViewAdaptor(ILogViewAdaptorH... FILE: src/Orleans.EventSourcing/LogStorage/LogConsistencyProvider.cs class LogConsistencyProvider (line 14) | public class LogConsistencyProvider : ILogViewAdaptorFactory method MakeLogViewAdaptor (line 35) | public ILogViewAdaptor MakeLogViewAdaptor : PrimaryBasedLogView... method LogViewAdaptor (line 27) | public LogViewAdaptor(ILogViewAdaptorHost host, T... method LastConfirmedView (line 47) | protected override TLogView LastConfirmedView() method GetConfirmedVersion (line 53) | protected override int GetConfirmedVersion() method InitializeConfirmedView (line 59) | protected override void InitializeConfirmedView(TLogView initialstate) method ClearPrimaryLogAsync (line 66) | protected override Task ClearPrimaryLogAsync(CancellationToken cancell... method UpdateConfirmedView (line 73) | private void UpdateConfirmedView() method RetrieveLogSegment (line 91) | public override Task> RetrieveLogSegment(int ... method MakeSubmissionEntry (line 102) | protected override SubmissionEntry MakeSubmissionEntry(TLog... method ReadAsync (line 109) | protected override async Task ReadAsync() method WriteAsync (line 145) | protected override async Task WriteAsync() class UpdateLogStorageFailed (line 227) | [Serializable] method ToString (line 232) | public override string ToString() class ReadFromLogStorageFailed (line 242) | [Serializable] method ToString (line 247) | public override string ToString() class UpdateNotificationMessage (line 257) | [Serializable] method ToString (line 278) | public override string ToString() method Merge (line 285) | protected override INotificationMessage Merge(INotificationMessage ear... method OnNotificationReceived (line 311) | protected override void OnNotificationReceived(INotificationMessage pa... method ProcessNotifications (line 321) | protected override void ProcessNotifications() method enter_operation (line 360) | [Conditional("DEBUG")] method exit_operation (line 370) | [Conditional("DEBUG")] FILE: src/Orleans.EventSourcing/StateStorage/DefaultAdaptorFactory.cs class DefaultAdaptorFactory (line 5) | internal class DefaultAdaptorFactory : ILogViewAdaptorFactory method MakeLogViewAdaptor (line 15) | public ILogViewAdaptor MakeLogViewAdaptor(ILogViewAdaptorH... FILE: src/Orleans.EventSourcing/StateStorage/GrainStateWithMetaData.cs class GrainStateWithMetaDataAndETag (line 11) | [Serializable] method GrainStateWithMetaDataAndETag (line 35) | public GrainStateWithMetaDataAndETag(TView initialview) method GrainStateWithMetaDataAndETag (line 43) | public GrainStateWithMetaDataAndETag() method ToString (line 51) | public override string ToString() class GrainStateWithMetaData (line 62) | [Serializable] method GrainStateWithMetaData (line 93) | public GrainStateWithMetaData() method GrainStateWithMetaData (line 104) | public GrainStateWithMetaData(TView initialstate) method GetBit (line 117) | public bool GetBit(string Replica) method FlipBit (line 127) | public bool FlipBit(string Replica) FILE: src/Orleans.EventSourcing/StateStorage/LogConsistencyProvider.cs class LogConsistencyProvider (line 13) | public class LogConsistencyProvider : ILogViewAdaptorFactory method MakeLogViewAdaptor (line 25) | public ILogViewAdaptor MakeLogViewAdaptor : PrimaryBasedLogView... method LogViewAdaptor (line 27) | public LogViewAdaptor(ILogViewAdaptorHost host, T... method LastConfirmedView (line 41) | protected override TLogView LastConfirmedView() method GetConfirmedVersion (line 47) | protected override int GetConfirmedVersion() method InitializeConfirmedView (line 53) | protected override void InitializeConfirmedView(TLogView initialstate) method ClearPrimaryLogAsync (line 58) | protected override Task ClearPrimaryLogAsync(CancellationToken cancell... method MakeSubmissionEntry (line 67) | protected override SubmissionEntry MakeSubmissionEntry(TLog... method ReadAsync (line 73) | protected override async Task ReadAsync() method WriteAsync (line 111) | protected override async Task WriteAsync() class UpdateStateStorageFailed (line 197) | [Serializable] method ToString (line 202) | public override string ToString() class ReadFromStateStorageFailed (line 212) | [Serializable] method ToString (line 217) | public override string ToString() class UpdateNotificationMessage (line 227) | [Serializable] method ToString (line 248) | public override string ToString() method Merge (line 255) | protected override INotificationMessage Merge(INotificationMessage ear... method OnNotificationReceived (line 281) | protected override void OnNotificationReceived(INotificationMessage pa... method ProcessNotifications (line 291) | protected override void ProcessNotifications() method enter_operation (line 337) | [Conditional("DEBUG")] method exit_operation (line 347) | [Conditional("DEBUG")] FILE: src/Orleans.Hosting.Kubernetes/ConfigureKubernetesHostingOptions.cs class ConfigureKubernetesHostingOptions (line 15) | internal class ConfigureKubernetesHostingOptions : method ConfigureKubernetesHostingOptions (line 23) | public ConfigureKubernetesHostingOptions(IServiceProvider serviceProvi... method Configure (line 28) | public void Configure(KubernetesHostingOptions options) method Configure (line 35) | public void Configure(ClusterOptions options) method Configure (line 50) | public void Configure(SiloOptions options) method PostConfigure (line 59) | public void PostConfigure(string? name, EndpointOptions options) method ReadNamespaceFromServiceAccount (line 97) | private static string? ReadNamespaceFromServiceAccount() class IPAddressSelector (line 109) | private static class IPAddressSelector method PickIPAddress (line 119) | public static IPAddress? PickIPAddress(IReadOnlyList cand... FILE: src/Orleans.Hosting.Kubernetes/KubernetesClusterAgent.cs class KubernetesClusterAgent (line 20) | public sealed partial class KubernetesClusterAgent : ILifecycleParticipa... method KubernetesClusterAgent (line 62) | public KubernetesClusterAgent( method Participate (line 82) | public void Participate(ISiloLifecycle lifecycle) method OnStart (line 91) | private async Task OnStart(CancellationToken cancellation) method AddClusterOptionsToPodLabels (line 174) | private async Task AddClusterOptionsToPodLabels(CancellationToken canc... method OnStop (line 199) | public async Task OnStop(CancellationToken cancellationToken) method MonitorOrleansClustering (line 211) | private async Task MonitorOrleansClustering() method MonitorKubernetesPods (line 286) | private async Task MonitorKubernetesPods() method TryMatchSilo (line 356) | private bool TryMatchSilo(V1Pod pod, out ClusterMember server) method LogWarningUnknownPod (line 372) | [LoggerMessage( method LogWarningSiloWithoutPod (line 378) | [LoggerMessage( method LogErrorInsufficientPermissions (line 384) | [LoggerMessage( method LogErrorInitializing (line 390) | [LoggerMessage( method LogInformationDeletingDeadSiloPod (line 396) | [LoggerMessage( method LogErrorDeletingPod (line 402) | [LoggerMessage( method LogDebugErrorMonitoringCluster (line 408) | [LoggerMessage( method LogDebugUnexpectedEndOfStream (line 414) | [LoggerMessage( method LogErrorMonitoringPods (line 420) | [LoggerMessage( method LogInformationDeclaringServerDead (line 426) | [LoggerMessage( FILE: src/Orleans.Hosting.Kubernetes/KubernetesHostingExtensions.cs class KubernetesHostingExtensions (line 13) | public static class KubernetesHostingExtensions method UseKubernetesHosting (line 18) | public static ISiloBuilder UseKubernetesHosting(this ISiloBuilder silo... method UseKubernetesHosting (line 26) | public static ISiloBuilder UseKubernetesHosting(this ISiloBuilder silo... method UseKubernetesHosting (line 34) | public static IServiceCollection UseKubernetesHosting(this IServiceCol... method UseKubernetesHosting (line 39) | public static IServiceCollection UseKubernetesHosting(this IServiceCol... FILE: src/Orleans.Hosting.Kubernetes/KubernetesHostingOptions.cs class KubernetesHostingOptions (line 9) | public sealed class KubernetesHostingOptions method KubernetesHostingOptions (line 48) | public KubernetesHostingOptions() FILE: src/Orleans.Hosting.Kubernetes/KubernetesHostingOptionsValidator.cs class KubernetesHostingOptionsValidator (line 9) | internal class KubernetesHostingOptionsValidator : IValidateOptions : IDictionary where K : ... class DurableDictionary (line 17) | [DebuggerTypeProxy(typeof(IDurableDictionaryDebugView<,>))] method DurableDictionary (line 28) | protected DurableDictionary(IFieldCodec keyCodec, IFieldCodec va... method DurableDictionary (line 35) | public DurableDictionary([ServiceKey] string key, IStateMachineManager... method Reset (line 60) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) method Apply (line 66) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) method AppendEntries (line 123) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 128) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method Clear (line 147) | public void Clear() method Contains (line 161) | public bool Contains(K key) => _items.ContainsKey(key); method Remove (line 163) | public bool Remove(K key) method AppendRemove (line 174) | private void AppendRemove(K key) method GetEnumerator (line 188) | IEnumerator IEnumerable.GetEnumerator() => _items.GetEnumerator(); method AppendSet (line 190) | private void AppendSet(K key, V value) method OnSet (line 206) | protected virtual void OnSet(K key, V value) { } method ApplySet (line 208) | private void ApplySet(K key, V value) method ApplyRemove (line 214) | internal bool ApplyRemove(K key) => _items.Remove(key); method ApplyClear (line 215) | private void ApplyClear() => _items.Clear(); method GetStorage (line 217) | protected virtual IStateMachineLogWriter GetStorage() method DeepCopy (line 223) | public IDurableStateMachine DeepCopy() => throw new NotImplementedExce... method Add (line 224) | public void Add(K key, V value) method ContainsKey (line 231) | public bool ContainsKey(K key) => _items.ContainsKey(key); method TryGetValue (line 232) | public bool TryGetValue(K key, [MaybeNullWhen(false)] out V value) => ... method Add (line 233) | public void Add(KeyValuePair item) => Add(item.Key, item.Value); method Contains (line 234) | public bool Contains(KeyValuePair item) => _items.Contains(item); method CopyTo (line 235) | public void CopyTo(KeyValuePair[] array, int arrayIndex) => ((IC... method Remove (line 236) | public bool Remove(KeyValuePair item) method GetEnumerator (line 247) | public IEnumerator> GetEnumerator() => ((IEnumerabl... type CommandType (line 249) | private enum CommandType type DebugViewDictionaryItem (line 258) | [DebuggerDisplay("{Value}", Name = "[{Key}]")] method DebugViewDictionaryItem (line 261) | public DebugViewDictionaryItem(TKey key, TValue value) method DebugViewDictionaryItem (line 267) | public DebugViewDictionaryItem(KeyValuePair keyValue) class IDurableDictionaryDebugView (line 280) | internal sealed class IDurableDictionaryDebugView where TK... method IDurableDictionaryDebugView (line 284) | public IDurableDictionaryDebugView(IDurableDictionary di... FILE: src/Orleans.Journaling/DurableGrain.cs class DurableGrain (line 5) | public abstract class DurableGrain : Grain, IGrainBase method DurableGrain (line 7) | protected DurableGrain() method GetOrCreateStateMachine (line 18) | protected TStateMachine GetOrCreateStateMachine(string ... method GetOrCreateStateMachine (line 21) | protected TStateMachine GetOrCreateStateMachine... method WriteStateAsync (line 34) | protected ValueTask WriteStateAsync(CancellationToken cancellationToke... FILE: src/Orleans.Journaling/DurableList.cs type IDurableList (line 14) | public interface IDurableList : IList method AddRange (line 16) | void AddRange(IEnumerable collection); method AsReadOnly (line 17) | ReadOnlyCollection AsReadOnly(); class DurableList (line 20) | [DebuggerTypeProxy(typeof(IDurableCollectionDebugView<>))] method DurableList (line 30) | public DurableList([ServiceKey] string key, IStateMachineManager manag... method Reset (line 69) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) method Apply (line 75) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) method AppendEntries (line 137) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 142) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method Add (line 160) | public void Add(T item) method Clear (line 176) | public void Clear() method Contains (line 190) | public bool Contains(T item) => _items.Contains(item); method CopyTo (line 191) | public void CopyTo(T[] array, int arrayIndex) => _items.CopyTo(array, ... method GetEnumerator (line 192) | public IEnumerator GetEnumerator() => _items.GetEnumerator(); method IndexOf (line 193) | public int IndexOf(T item) => _items.IndexOf(item); method Insert (line 194) | public void Insert(int index, T item) method Remove (line 211) | public bool Remove(T item) method RemoveAt (line 223) | public void RemoveAt(int index) method GetEnumerator (line 239) | IEnumerator IEnumerable.GetEnumerator() => _items.GetEnumerator(); method ApplyAdd (line 241) | protected void ApplyAdd(T item) => _items.Add(item); method ApplySet (line 242) | protected void ApplySet(int index, T item) => _items[index] = item; method ApplyInsert (line 243) | protected void ApplyInsert(int index, T item) => _items.Insert(index, ... method ApplyRemoveAt (line 244) | protected void ApplyRemoveAt(int index) => _items.RemoveAt(index); method ApplyClear (line 245) | protected void ApplyClear() => _items.Clear(); method ThrowIndexOutOfRange (line 247) | [DoesNotReturn] method GetStorage (line 250) | private IStateMachineLogWriter GetStorage() method DeepCopy (line 256) | public IDurableStateMachine DeepCopy() => throw new NotImplementedExce... method AddRange (line 257) | public void AddRange(IEnumerable collection) method AsReadOnly (line 265) | public ReadOnlyCollection AsReadOnly() => _items.AsReadOnly(); type CommandType (line 267) | private enum CommandType class IDurableCollectionDebugView (line 278) | internal sealed class IDurableCollectionDebugView method IDurableCollectionDebugView (line 282) | public IDurableCollectionDebugView(ICollection collection) FILE: src/Orleans.Journaling/DurableNothing.cs type IDurableNothing (line 9) | public interface IDurableNothing class DurableNothing (line 16) | internal sealed class DurableNothing : IDurableNothing, IDurableStateMac... method DurableNothing (line 18) | public DurableNothing([ServiceKey] string key, IStateMachineManager ma... method Reset (line 24) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) { } method Apply (line 26) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) { } method AppendEntries (line 28) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 30) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method DeepCopy (line 32) | public IDurableStateMachine DeepCopy() => this; FILE: src/Orleans.Journaling/DurableQueue.cs type IDurableQueue (line 13) | public interface IDurableQueue : IEnumerable, IReadOnlyCollection method Clear (line 15) | void Clear(); method Contains (line 16) | bool Contains(T item); method CopyTo (line 17) | void CopyTo(T[] array, int arrayIndex); method Dequeue (line 18) | T Dequeue(); method Enqueue (line 19) | void Enqueue(T item); method Peek (line 20) | T Peek(); method TryDequeue (line 21) | bool TryDequeue([MaybeNullWhen(false)] out T item); method TryPeek (line 22) | bool TryPeek([MaybeNullWhen(false)] out T item); class DurableQueue (line 25) | [DebuggerTypeProxy(typeof(DurableQueueDebugView<>))] method DurableQueue (line 35) | public DurableQueue([ServiceKey] string key, IStateMachineManager mana... method Reset (line 45) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) method Apply (line 51) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) method AppendEntries (line 99) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 104) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method Clear (line 122) | public void Clear() method Peek (line 136) | public T Peek() => _items.Peek(); method TryPeek (line 137) | public bool TryPeek([MaybeNullWhen(false)] out T item) => _items.TryPe... method Contains (line 138) | public bool Contains(T item) => _items.Contains(item); method CopyTo (line 139) | public void CopyTo(T[] array, int arrayIndex) => _items.CopyTo(array, ... method GetEnumerator (line 140) | public IEnumerator GetEnumerator() => _items.GetEnumerator(); method Enqueue (line 141) | public void Enqueue(T item) method Dequeue (line 157) | public T Dequeue() method TryDequeue (line 172) | public bool TryDequeue([MaybeNullWhen(false)] out T item) method GetEnumerator (line 191) | IEnumerator IEnumerable.GetEnumerator() => _items.GetEnumerator(); method ApplyEnqueue (line 193) | protected void ApplyEnqueue(T item) => _items.Enqueue(item); method ApplyDequeue (line 194) | protected T ApplyDequeue() => _items.Dequeue(); method ApplyTryDequeue (line 195) | protected bool ApplyTryDequeue([MaybeNullWhen(false)] out T value) => ... method ApplyClear (line 196) | protected void ApplyClear() => _items.Clear(); method ThrowIndexOutOfRange (line 198) | [DoesNotReturn] method GetStorage (line 201) | private IStateMachineLogWriter GetStorage() method DeepCopy (line 207) | public IDurableStateMachine DeepCopy() => throw new NotImplementedExce... type CommandType (line 209) | private enum CommandType class DurableQueueDebugView (line 218) | internal sealed class DurableQueueDebugView method DurableQueueDebugView (line 222) | public DurableQueueDebugView(DurableQueue queue) FILE: src/Orleans.Journaling/DurableSet.cs type IDurableSet (line 13) | public interface IDurableSet : ISet, IReadOnlyCollection, IRead... method Contains (line 16) | new bool Contains(T item); method Add (line 17) | new bool Add(T item); method IsProperSubsetOf (line 18) | new bool IsProperSubsetOf(IEnumerable other); method IsProperSupersetOf (line 19) | new bool IsProperSupersetOf(IEnumerable other); method IsSubsetOf (line 20) | new bool IsSubsetOf(IEnumerable other); method IsSupersetOf (line 21) | new bool IsSupersetOf(IEnumerable other); method Overlaps (line 22) | new bool Overlaps(IEnumerable other); method SetEquals (line 23) | new bool SetEquals(IEnumerable other); class DurableSet (line 26) | [DebuggerTypeProxy(typeof(IDurableCollectionDebugView<>))] method DurableSet (line 36) | public DurableSet([ServiceKey] string key, IStateMachineManager manage... method Reset (line 47) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) method Apply (line 53) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) method AppendEntries (line 101) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 106) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method WriteSnapshotToBufferWriter (line 111) | private static void WriteSnapshotToBufferWriter(DurableSet self, IB... method Clear (line 126) | public void Clear() method Contains (line 140) | public bool Contains(T item) => _items.Contains(item); method CopyTo (line 141) | public void CopyTo(T[] array, int arrayIndex) => _items.CopyTo(array, ... method GetEnumerator (line 142) | public IEnumerator GetEnumerator() => _items.GetEnumerator(); method Add (line 143) | public bool Add(T item) method Remove (line 164) | public bool Remove(T item) method GetEnumerator (line 185) | IEnumerator IEnumerable.GetEnumerator() => _items.GetEnumerator(); method ApplyAdd (line 187) | protected bool ApplyAdd(T item) => _items.Add(item); method ApplyRemove (line 188) | protected bool ApplyRemove(T item) => _items.Remove(item); method ApplyClear (line 189) | protected void ApplyClear() => _items.Clear(); method ThrowIndexOutOfRange (line 191) | [DoesNotReturn] method GetStorage (line 194) | private IStateMachineLogWriter GetStorage() method DeepCopy (line 200) | public IDurableStateMachine DeepCopy() => throw new NotImplementedExce... method ExceptWith (line 201) | public void ExceptWith(IEnumerable other) method IsProperSubsetOf (line 209) | public bool IsProperSubsetOf(IEnumerable other) => _items.IsProperS... method IsProperSupersetOf (line 210) | public bool IsProperSupersetOf(IEnumerable other) => _items.IsPrope... method IsSubsetOf (line 211) | public bool IsSubsetOf(IEnumerable other) => _items.IsSubsetOf(other); method IsSupersetOf (line 212) | public bool IsSupersetOf(IEnumerable other) => _items.IsSupersetOf(... method Overlaps (line 213) | public bool Overlaps(IEnumerable other) => _items.Overlaps(other); method SetEquals (line 214) | public bool SetEquals(IEnumerable other) => _items.SetEquals(other); method Add (line 215) | void ICollection.Add(T item) => Add(item); method IntersectWith (line 217) | public void IntersectWith(IEnumerable other) method SymmetricExceptWith (line 227) | public void SymmetricExceptWith(IEnumerable other) method UnionWith (line 237) | public void UnionWith(IEnumerable other) type CommandType (line 245) | private enum CommandType FILE: src/Orleans.Journaling/DurableState.cs class DurableState (line 11) | [DebuggerDisplay("{Value}")] method DurableState (line 21) | public DurableState([ServiceKey] string key, IStateMachineManager mana... method OnWriteCompleted (line 40) | void IDurableStateMachine.OnWriteCompleted() method Reset (line 46) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) => _va... method Apply (line 48) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) method AppendEntries (line 85) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 87) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method DeepCopy (line 89) | public IDurableStateMachine DeepCopy() => throw new NotImplementedExce... method WriteState (line 91) | private void WriteState(StateMachineStorageWriter writer) method ClearStateAsync (line 105) | Task IStorage.ClearStateAsync() => ((IStorage)this).ClearStateAsync(Ca... method ClearStateAsync (line 106) | async Task IStorage.ClearStateAsync(CancellationToken cancellationToken) method WriteStateAsync (line 113) | Task IStorage.WriteStateAsync() => ((IStorage)this).WriteStateAsync(Ca... method WriteStateAsync (line 114) | async Task IStorage.WriteStateAsync(CancellationToken cancellationToke... method ReadStateAsync (line 115) | Task IStorage.ReadStateAsync() => ((IStorage)this).ReadStateAsync(Canc... method ReadStateAsync (line 116) | Task IStorage.ReadStateAsync(CancellationToken cancellationToken) => T... type CommandType (line 118) | private enum CommandType FILE: src/Orleans.Journaling/DurableTaskCompletionSource.cs type IDurableTaskCompletionSource (line 12) | public interface IDurableTaskCompletionSource method TrySetCanceled (line 17) | bool TrySetCanceled(); method TrySetException (line 18) | bool TrySetException(Exception exception); method TrySetResult (line 19) | bool TrySetResult(T value); class DurableTaskCompletionSource (line 22) | [DebuggerDisplay("Status = {Status}")] method DurableTaskCompletionSource (line 38) | public DurableTaskCompletionSource( method TrySetResult (line 56) | public bool TrySetResult(T value) method TrySetException (line 68) | public bool TrySetException(Exception exception) method TrySetCanceled (line 80) | public bool TrySetCanceled() method OnValuePersisted (line 102) | private void OnValuePersisted() method OnRecoveryCompleted (line 120) | void IDurableStateMachine.OnRecoveryCompleted() => OnValuePersisted(); method OnWriteCompleted (line 121) | void IDurableStateMachine.OnWriteCompleted() => OnValuePersisted(); method Reset (line 123) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) method Apply (line 134) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) method AppendEntries (line 172) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 180) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method WriteState (line 182) | private void WriteState(StateMachineStorageWriter writer) method DeepCopy (line 204) | public IDurableStateMachine DeepCopy() => throw new NotImplementedExce... type DurableTaskCompletionSourceStatus (line 207) | [GenerateSerializer] type DurableTaskCompletionSourceState (line 216) | [GenerateSerializer, Immutable] FILE: src/Orleans.Journaling/DurableValue.cs type IDurableValue (line 12) | public interface IDurableValue class DurableValue (line 17) | [DebuggerDisplay("{Value}")] method DurableValue (line 27) | public DurableValue([ServiceKey] string key, IStateMachineManager mana... method OnValuePersisted (line 47) | private void OnValuePersisted() => OnPersisted?.Invoke(); method OnModified (line 49) | public void OnModified() => _isDirty = true; method OnRecoveryCompleted (line 51) | void IDurableStateMachine.OnRecoveryCompleted() => OnValuePersisted(); method OnWriteCompleted (line 52) | void IDurableStateMachine.OnWriteCompleted() => OnValuePersisted(); method Reset (line 54) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) method Apply (line 60) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) method AppendEntries (line 90) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter logW... method AppendSnapshot (line 99) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter sna... method DeepCopy (line 101) | public IDurableStateMachine DeepCopy() => throw new NotImplementedExce... method WriteState (line 103) | private void WriteState(StateMachineStorageWriter writer) method ThrowIndexOutOfRange (line 116) | [DoesNotReturn] method GetStorage (line 119) | private IStateMachineLogWriter GetStorage() type CommandType (line 125) | private enum CommandType FILE: src/Orleans.Journaling/HostingExtensions.cs class HostingExtensions (line 7) | public static class HostingExtensions method AddStateMachineStorage (line 9) | public static ISiloBuilder AddStateMachineStorage(this ISiloBuilder bu... FILE: src/Orleans.Journaling/IDurableStateMachine.cs type IDurableStateMachine (line 8) | public interface IDurableStateMachine method Reset (line 17) | void Reset(IStateMachineLogWriter storage); method Apply (line 23) | void Apply(ReadOnlySequence entry); method OnRecoveryCompleted (line 33) | void OnRecoveryCompleted() { } method AppendEntries (line 39) | void AppendEntries(StateMachineStorageWriter writer); method AppendSnapshot (line 45) | void AppendSnapshot(StateMachineStorageWriter writer); method OnWriteCompleted (line 50) | void OnWriteCompleted() { } method DeepCopy (line 56) | IDurableStateMachine DeepCopy(); FILE: src/Orleans.Journaling/IStateMachineLogWriter.cs type IStateMachineLogWriter (line 8) | public interface IStateMachineLogWriter method AppendEntry (line 16) | void AppendEntry(Action> action, T... method AppendEntries (line 24) | void AppendEntries(Action a... FILE: src/Orleans.Journaling/IStateMachineManager.cs type IStateMachineManager (line 8) | public interface IStateMachineManager method InitializeAsync (line 15) | ValueTask InitializeAsync(CancellationToken cancellationToken); method RegisterStateMachine (line 22) | void RegisterStateMachine(string name, IDurableStateMachine stateMachi... method TryGetStateMachine (line 29) | bool TryGetStateMachine(string name, [NotNullWhen(true)] out IDurableS... method WriteStateAsync (line 36) | ValueTask WriteStateAsync(CancellationToken cancellationToken); method DeleteStateAsync (line 43) | ValueTask DeleteStateAsync(CancellationToken cancellationToken); FILE: src/Orleans.Journaling/IStateMachineStorage.cs type IStateMachineStorage (line 6) | public interface IStateMachineStorage method ReadAsync (line 13) | IAsyncEnumerable ReadAsync(CancellationToken cancellationTo... method ReplaceAsync (line 21) | ValueTask ReplaceAsync(LogExtentBuilder value, CancellationToken cance... method AppendAsync (line 29) | ValueTask AppendAsync(LogExtentBuilder value, CancellationToken cancel... method DeleteAsync (line 36) | ValueTask DeleteAsync(CancellationToken cancellationToken); FILE: src/Orleans.Journaling/IStateMachineStorageProvider.cs type IStateMachineStorageProvider (line 3) | public interface IStateMachineStorageProvider method Create (line 5) | IStateMachineStorage Create(IGrainContext grainContext); FILE: src/Orleans.Journaling/LogExtent.cs class LogExtent (line 11) | public sealed class LogExtent(ArcBuffer buffer) : IDisposable method LogExtent (line 15) | public LogExtent() : this(new()) method Dispose (line 23) | public void Dispose() => _buffer.Dispose(); type Entry (line 25) | public readonly record struct Entry(StateMachineId StreamId, ReadOnlyS... type EntryEnumerator (line 27) | internal struct EntryEnumerator : IEnumerable, IEnumerator this; method Create (line 42) | public static EntryEnumerator Create(LogExtent logSegment) => new(lo... method MoveNext (line 44) | public bool MoveNext() method ThrowEnumerationNotStartedOrEnded (line 85) | private readonly void ThrowEnumerationNotStartedOrEnded() method Reset (line 93) | public void Reset() => this = new(_logExtent); method Dispose (line 95) | public void Dispose() => _length = -1; method GetEnumerator (line 97) | readonly IEnumerator IEnumerable.GetEnumerator() => Ge... method GetEnumerator (line 98) | readonly IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); FILE: src/Orleans.Journaling/LogExtentBuilder.ReadOnlyStream.cs class LogExtentBuilder (line 6) | public sealed partial class LogExtentBuilder class ReadOnlyStream (line 8) | public sealed class ReadOnlyStream : Stream method ReadOnlyStream (line 14) | public ReadOnlyStream() { } method Read (line 22) | public override int Read(byte[] buffer, int offset, int count) => Re... method Read (line 24) | public override int Read(Span buffer) => throw new NotImplemen... method Seek (line 26) | public override long Seek(long offset, SeekOrigin origin) method SetPosition (line 46) | private void SetPosition(int value) method ReadAsync (line 52) | public override ValueTask ReadAsync(Memory buffer, Cancel... method ReadAsync (line 53) | public override Task ReadAsync(byte[] buffer, int offset, int c... method CopyTo (line 55) | public override void CopyTo(Stream destination, int bufferSize) method CopyToAsync (line 61) | public override Task CopyToAsync(Stream destination, int bufferSize,... method Flush (line 70) | public override void Flush() => throw GetReadOnlyException(); method WriteByte (line 71) | public override void WriteByte(byte value) => throw GetReadOnlyExcep... method SetLength (line 72) | public override void SetLength(long value) => throw GetReadOnlyExcep... method Write (line 73) | public override void Write(byte[] buffer, int offset, int count) => ... method Write (line 74) | public override void Write(ReadOnlySpan buffer) => throw GetRe... method WriteAsync (line 75) | public override ValueTask WriteAsync(ReadOnlyMemory buffer, Ca... method SetBuilder (line 77) | public void SetBuilder(LogExtentBuilder builder) method Reset (line 84) | public void Reset() method ComputeLength (line 91) | private int ComputeLength() method GetVarIntWidth (line 103) | private static int GetVarIntWidth(uint value) => 1 + (int)((uint)Bit... method GetReadOnlyException (line 105) | private static NotSupportedException GetReadOnlyException() => new("... FILE: src/Orleans.Journaling/LogExtentBuilder.cs class LogExtentBuilder (line 11) | public sealed partial class LogExtentBuilder(ArcBufferWriter buffer) : I... method LogExtentBuilder (line 17) | public LogExtentBuilder() : this(new()) method ToArray (line 23) | public byte[] ToArray() method CreateLogWriter (line 30) | public StateMachineStorageWriter CreateLogWriter(StateMachineId id) =>... method AppendEntry (line 34) | internal void AppendEntry(StateMachineId id, byte[] value) => AppendEn... method AppendEntry (line 35) | internal void AppendEntry(StateMachineId id, Span value) => Appe... method AppendEntry (line 36) | internal void AppendEntry(StateMachineId id, Memory value) => Ap... method AppendEntry (line 37) | internal void AppendEntry(StateMachineId id, ReadOnlyMemory valu... method AppendEntry (line 38) | internal void AppendEntry(StateMachineId id, ArraySegment value)... method AppendEntry (line 39) | internal void AppendEntry(StateMachineId id, ReadOnlySpan value) method AppendEntry (line 52) | internal void AppendEntry(StateMachineId id, ReadOnlySequence va... method AppendEntry (line 66) | internal void AppendEntry(StateMachineId id, Action Reset(); method Advance (line 88) | void IBufferWriter.Advance(int count) => _buffer.AdvanceWriter(c... method GetMemory (line 89) | Memory IBufferWriter.GetMemory(int sizeHint) => _buffer.Ge... method GetSpan (line 90) | Span IBufferWriter.GetSpan(int sizeHint) => _buffer.GetSpa... method CopyToAsync (line 92) | public async ValueTask CopyToAsync(Stream destination, int bufferSize,... method CopyTo (line 123) | public void CopyTo(Stream destination, int bufferSize) method GetLengthBytes (line 154) | private static ReadOnlyMemory GetLengthBytes(byte[] scratch, uin... FILE: src/Orleans.Journaling/StateMachineId.cs type StateMachineId (line 7) | public readonly record struct StateMachineId(ulong Value); FILE: src/Orleans.Journaling/StateMachineManager.cs class StateMachineManager (line 14) | internal sealed partial class StateMachineManager : IStateMachineManager... method StateMachineManager (line 42) | public StateMachineManager( method RegisterStateMachine (line 65) | public void RegisterStateMachine(string name, IDurableStateMachine sta... method InitializeAsync (line 107) | public async ValueTask InitializeAsync(CancellationToken cancellationT... method Start (line 126) | private Task Start() method WorkLoop (line 132) | private async Task WorkLoop() method RetireOrResurectStateMachines (line 308) | private void RetireOrResurectStateMachines() method AppendUpdatesOrSnapshotStateMachine (line 341) | private static void AppendUpdatesOrSnapshotStateMachine(LogExtentBuild... method DeleteStateAsync (line 354) | public async ValueTask DeleteStateAsync(CancellationToken cancellation... method RecoverAsync (line 368) | private async Task RecoverAsync(CancellationToken cancellationToken) method WriteStateAsync (line 410) | public async ValueTask WriteStateAsync(CancellationToken cancellationT... method OnSetStateMachineId (line 448) | private void OnSetStateMachineId(string name, ulong id) method TryGetStateMachine (line 475) | public bool TryGetStateMachine(string name, [NotNullWhen(true)] out ID... method Participate (line 477) | void ILifecycleParticipant.Participate(IGrainLifecycl... method OnStart (line 478) | Task ILifecycleObserver.OnStart(CancellationToken cancellationToken) =... method OnStop (line 479) | async Task ILifecycleObserver.OnStop(CancellationToken cancellationToken) method Dispose (line 489) | void IDisposable.Dispose() class StateMachineLogWriter (line 494) | private sealed class StateMachineLogWriter(StateMachineManager manager... method AppendEntry (line 499) | public void AppendEntry(Action> ... method AppendEntries (line 509) | public void AppendEntries(Action ((IDurableStateMachine)this).Res... method OnSet (line 554) | protected override void OnSet(string key, ulong value) => _manager.O... class StateMachinesRetirementTracker (line 561) | private sealed class StateMachinesRetirementTracker( method GetStorage (line 569) | protected override IStateMachineLogWriter GetStorage() => _logWriter; class RetiredStateMachineVessel (line 576) | [DebuggerDisplay(nameof(RetiredStateMachineVessel))] method AppendSnapshot (line 583) | void IDurableStateMachine.AppendSnapshot(StateMachineStorageWriter s... method Reset (line 591) | void IDurableStateMachine.Reset(IStateMachineLogWriter storage) => _... method Apply (line 592) | void IDurableStateMachine.Apply(ReadOnlySequence logEntry) => ... method AppendEntries (line 593) | void IDurableStateMachine.AppendEntries(StateMachineStorageWriter lo... method DeepCopy (line 594) | IDurableStateMachine IDurableStateMachine.DeepCopy() => throw new No... method LogErrorProcessingWorkItems (line 598) | [LoggerMessage( method LogRetiredStateMachineDetected (line 603) | [LoggerMessage( method LogRetiredStateMachineComebackDetected (line 608) | [LoggerMessage( method LogRemovingRetiredStateMachine (line 614) | [LoggerMessage( FILE: src/Orleans.Journaling/StateMachineManagerOptions.cs class StateMachineManagerOptions (line 6) | public sealed class StateMachineManagerOptions FILE: src/Orleans.Journaling/StateMachineStorageWriter.cs type StateMachineStorageWriter (line 5) | public readonly struct StateMachineStorageWriter method StateMachineStorageWriter (line 10) | internal StateMachineStorageWriter(StateMachineId id, LogExtentBuilder... method AppendEntry (line 16) | public void AppendEntry(byte[] value) => _segment.AppendEntry(_id, val... method AppendEntry (line 17) | public void AppendEntry(Span value) => _segment.AppendEntry(_id,... method AppendEntry (line 18) | public void AppendEntry(Memory value) => _segment.AppendEntry(_i... method AppendEntry (line 19) | public void AppendEntry(ReadOnlyMemory value) => _segment.Append... method AppendEntry (line 20) | public void AppendEntry(ArraySegment value) => _segment.AppendEn... method AppendEntry (line 21) | public void AppendEntry(ReadOnlySpan value) => _segment.AppendEn... method AppendEntry (line 22) | public void AppendEntry(ReadOnlySequence value) => _segment.Appe... method AppendEntry (line 23) | public void AppendEntry(Action> valueWriter,... FILE: src/Orleans.Journaling/VolatileStateMachineStorage.cs class VolatileStateMachineStorageProvider (line 7) | public sealed class VolatileStateMachineStorageProvider : IStateMachineS... method Create (line 10) | public IStateMachineStorage Create(IGrainContext grainContext) => _sto... class VolatileStateMachineStorage (line 16) | public sealed class VolatileStateMachineStorage : IStateMachineStorage method ReadAsync (line 23) | public async IAsyncEnumerable ReadAsync([EnumeratorCancella... method AppendAsync (line 36) | public ValueTask AppendAsync(LogExtentBuilder segment, CancellationTok... method ReplaceAsync (line 44) | public ValueTask ReplaceAsync(LogExtentBuilder snapshot, CancellationT... method DeleteAsync (line 52) | public ValueTask DeleteAsync(CancellationToken cancellationToken) FILE: src/Orleans.Persistence.Memory/Hosting/MemoryGrainStorageProviderBuilder.cs class MemoryGrainStorageProviderBuilder (line 16) | internal sealed class MemoryGrainStorageProviderBuilder : IProviderBuild... method Configure (line 18) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/Orleans.Persistence.Memory/Hosting/MemoryGrainStorageSiloBuilderExtensions.cs class MemoryGrainStorageSiloBuilderExtensions (line 16) | public static class MemoryGrainStorageSiloBuilderExtensions method AddMemoryGrainStorageAsDefault (line 24) | public static ISiloBuilder AddMemoryGrainStorageAsDefault(this ISiloBu... method AddMemoryGrainStorage (line 36) | public static ISiloBuilder AddMemoryGrainStorage(this ISiloBuilder bui... method AddMemoryGrainStorageAsDefault (line 47) | public static ISiloBuilder AddMemoryGrainStorageAsDefault(this ISiloBu... method AddMemoryGrainStorage (line 59) | public static ISiloBuilder AddMemoryGrainStorage(this ISiloBuilder bui... FILE: src/Orleans.Persistence.Memory/Options/MemoryGrainStorageOptions.cs class MemoryGrainStorageOptions (line 9) | public class MemoryGrainStorageOptions : IStorageProviderSerializerOptions class MemoryGrainStorageOptionsValidator (line 38) | public class MemoryGrainStorageOptionsValidator : IConfigurationValidator method MemoryGrainStorageOptionsValidator (line 48) | public MemoryGrainStorageOptionsValidator(MemoryGrainStorageOptions op... method ValidateConfiguration (line 55) | public void ValidateConfiguration() FILE: src/Orleans.Persistence.Memory/Storage/MemoryStorage.cs class MemoryGrainStorage (line 25) | [DebuggerDisplay("MemoryStore:{" + nameof(name) + "}")] method MemoryGrainStorage (line 44) | public MemoryGrainStorage( method ReadStateAsync (line 67) | public virtual async Task ReadStateAsync(string grainType, GrainId ... method WriteStateAsync (line 90) | public virtual async Task WriteStateAsync(string grainType, GrainId... method ClearStateAsync (line 112) | public virtual async Task ClearStateAsync(string grainType, GrainId... method MakeKey (line 130) | private static string MakeKey(string grainType, GrainId grainId) => $"... method GetStorageGrain (line 132) | private IMemoryStorageGrain GetStorageGrain(string id) method Dispose (line 139) | public void Dispose() { } method ConvertFromStorageFormat (line 145) | internal T? ConvertFromStorageFormat(ReadOnlyMemory data) method ConvertToStorageFormat (line 180) | internal ReadOnlyMemory ConvertToStorageFormat(T grainState) method CreateInstance (line 186) | private T CreateInstance() => _activatorProvider.GetActivator().... method LogDebugInit (line 188) | [LoggerMessage( method LogTraceRead (line 194) | [LoggerMessage( method LogTraceWrite (line 200) | [LoggerMessage( method LogTraceDelete (line 206) | [LoggerMessage( method LogError (line 212) | [LoggerMessage( class MemoryGrainStorageFactory (line 222) | public static class MemoryGrainStorageFactory method Create (line 230) | public static MemoryGrainStorage Create(IServiceProvider services, str... FILE: src/Orleans.Persistence.Memory/Storage/MemoryStorageEtagMismatchException.cs class MemoryStorageEtagMismatchException (line 7) | [Serializable] method MemoryStorageEtagMismatchException (line 24) | public MemoryStorageEtagMismatchException(string storedEtag, string re... method MemoryStorageEtagMismatchException (line 35) | [Obsolete] method GetObjectData (line 44) | [Obsolete] method AsInconsistentStateException (line 58) | public InconsistentStateException AsInconsistentStateException() FILE: src/Orleans.Persistence.Memory/Storage/MemoryStorageGrain.cs class MemoryStorageGrain (line 13) | [KeepAlive] method MemoryStorageGrain (line 19) | public MemoryStorageGrain(ILogger logger) method ReadStateAsync (line 24) | public Task> ReadStateAsync(string grainStoreKey) method WriteStateAsync (line 31) | public Task WriteStateAsync(string grainStoreKey, IGrainSta... method DeleteStateAsync (line 42) | public Task DeleteStateAsync(string grainStoreKey, string etag) method NewEtag (line 54) | private static string NewEtag() method GetETagFromStorage (line 59) | private string GetETagFromStorage(string grainStoreKey) method ValidateEtag (line 70) | private void ValidateEtag(string currentETag, string receivedEtag, str... method LogDebugReadState (line 90) | [LoggerMessage( method LogDebugWriteState (line 96) | [LoggerMessage( method LogDebugDoneWriteState (line 102) | [LoggerMessage( method LogDebugDeleteState (line 108) | [LoggerMessage( method LogWarningEtagMismatch (line 114) | [LoggerMessage( FILE: src/Orleans.Persistence.Memory/Storage/MemoryStorageWithLatency.cs class MemoryStorageWithLatencyOptions (line 15) | public class MemoryStorageWithLatencyOptions : MemoryGrainStorageOptions class MemoryGrainStorageWithLatency (line 45) | [DebuggerDisplay("MemoryStore:{Name},WithLatency:{latency}")] method MemoryGrainStorageWithLatency (line 51) | public MemoryGrainStorageWithLatency( method ReadStateAsync (line 71) | public Task ReadStateAsync(string grainType, GrainId grainId, IGrai... method WriteStateAsync (line 78) | public Task WriteStateAsync(string grainType, GrainId grainId, IGra... method ClearStateAsync (line 85) | public Task ClearStateAsync(string grainType, GrainId grainId, IGra... method MakeFixedLatencyCall (line 90) | private async Task MakeFixedLatencyCall(Func action) FILE: src/Orleans.Reminders/Constants/ReminderOptionsDefaults.cs class ReminderOptionsDefaults (line 5) | internal static class ReminderOptionsDefaults FILE: src/Orleans.Reminders/Constants/RemindersConstants.cs class RemindersConstants (line 3) | internal static class RemindersConstants FILE: src/Orleans.Reminders/ErrorCodes.cs type RSErrorCode (line 7) | public enum RSErrorCode FILE: src/Orleans.Reminders/GrainReminderExtensions.cs class GrainReminderExtensions (line 14) | public static class GrainReminderExtensions method RegisterOrUpdateReminder (line 28) | public static Task RegisterOrUpdateReminder(this Grain... method RegisterOrUpdateReminder (line 43) | public static Task RegisterOrUpdateReminder(this IGrai... method RegisterOrUpdateReminder (line 46) | private static Task RegisterOrUpdateReminder(bool remi... method UnregisterReminder (line 61) | public static Task UnregisterReminder(this Grain grain, IGrainReminder... method UnregisterReminder (line 69) | public static Task UnregisterReminder(this IGrainBase grain, IGrainRem... method UnregisterReminder (line 71) | private static Task UnregisterReminder(IGrainContext? grainContext, IG... method GetReminder (line 83) | public static Task GetReminder(this Grain grain, stri... method GetReminder (line 91) | public static Task GetReminder(this IGrainBase grain,... method GetReminder (line 93) | private static Task GetReminder(IGrainContext? grainC... method GetReminders (line 105) | public static Task> GetReminders(this Grain grain... method GetReminders (line 111) | public static Task> GetReminders(this IGrainBase ... method GetReminders (line 113) | private static Task> GetReminders(IGrainContext? ... method GetReminderRegistry (line 122) | private static IReminderRegistry GetReminderRegistry(IGrainContext gra... FILE: src/Orleans.Reminders/Hosting/MemoryReminderTableBuilder.cs class MemoryReminderTableBuilder (line 11) | internal sealed class MemoryReminderTableBuilder : IProviderBuilder ... method AddReminders (line 23) | public static void AddReminders(this IServiceCollection services) FILE: src/Orleans.Reminders/Hosting/SiloBuilderReminderMemoryExtensions.cs class SiloBuilderReminderMemoryExtensions (line 11) | public static class SiloBuilderReminderMemoryExtensions method UseInMemoryReminderService (line 21) | public static ISiloBuilder UseInMemoryReminderService(this ISiloBuilde... method UseInMemoryReminderService (line 38) | internal static IServiceCollection UseInMemoryReminderService(this ISe... FILE: src/Orleans.Reminders/Options/ReminderOptions.cs class ReminderOptions (line 12) | public sealed class ReminderOptions class ReminderOptionsValidator (line 38) | internal sealed partial class ReminderOptionsValidator : IConfigurationV... method ReminderOptionsValidator (line 52) | public ReminderOptionsValidator(ILogger logg... method ValidateConfiguration (line 59) | public void ValidateConfiguration() method LogWarnFastReminderInterval (line 72) | [LoggerMessage( FILE: src/Orleans.Reminders/ReminderService/GrainBasedReminderTable.cs class ReminderTableGrain (line 13) | [Reentrant] method ReminderTableGrain (line 20) | public ReminderTableGrain(ILogger logger) method OnActivateAsync (line 25) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 31) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method TestOnlyClearTable (line 37) | public Task TestOnlyClearTable() method ReadRows (line 44) | public Task ReadRows(GrainId grainId) method ReadRows (line 50) | public Task ReadRows(uint begin, uint end) method ReadRow (line 66) | public Task ReadRow(GrainId grainId, string reminderName) method UpsertRow (line 86) | public Task UpsertRow(ReminderEntry entry) method RemoveRow (line 99) | public Task RemoveRow(GrainId grainId, string reminderName, stri... method OnDehydrate (line 122) | void IGrainMigrationParticipant.OnDehydrate(IDehydrationContext dehydr... method OnRehydrate (line 127) | void IGrainMigrationParticipant.OnRehydrate(IRehydrationContext rehydr... method LogDebugActivated (line 135) | [LoggerMessage( method LogDebugDeactivated (line 141) | [LoggerMessage( method LogDebugTestOnlyClearTable (line 147) | [LoggerMessage( type TotalCountLogRecord (line 153) | private readonly struct TotalCountLogRecord(Dictionary reminderTable.Values.Sum(r => r... type RemindersLogRecord (line 158) | private readonly struct RemindersLogRecord(IEnumerable ... method ToString (line 160) | public override string ToString() => Utils.EnumerableToString(remind... method LogTraceSelectedReminders (line 163) | [LoggerMessage( method LogDebugReadReminders (line 169) | [LoggerMessage( method LogTraceReminderNotFound (line 175) | [LoggerMessage( method LogTraceReadRow (line 181) | [LoggerMessage( method LogTraceUpsertedEntry (line 187) | [LoggerMessage( method LogDebugRemoveRow (line 193) | [LoggerMessage( type NewValuesLogRecord (line 199) | private readonly struct NewValuesLogRecord(Dictionary Utils.EnumerableToString(remind... method LogWarningRemoveRow (line 204) | [LoggerMessage( FILE: src/Orleans.Reminders/ReminderService/InMemoryReminderTable.cs class InMemoryReminderTable (line 7) | internal sealed class InMemoryReminderTable : IReminderTable, ILifecycle... method InMemoryReminderTable (line 13) | public InMemoryReminderTable(IGrainFactory grainFactory) method Init (line 18) | public Task Init() => Task.CompletedTask; method ReadRow (line 20) | public Task ReadRow(GrainId grainId, string reminderName) method ReadRows (line 26) | public Task ReadRows(GrainId grainId) method ReadRows (line 32) | public Task ReadRows(uint begin, uint end) method RemoveRow (line 37) | public Task RemoveRow(GrainId grainId, string reminderName, stri... method TestOnlyClearTable (line 43) | public Task TestOnlyClearTable() method UpsertRow (line 49) | public Task UpsertRow(ReminderEntry entry) method ThrowIfNotAvailable (line 55) | private void ThrowIfNotAvailable() method Participate (line 60) | void ILifecycleParticipant.Participate(ISiloLifecycle ... FILE: src/Orleans.Reminders/ReminderService/LocalReminderService.cs class LocalReminderService (line 19) | internal sealed partial class LocalReminderService : GrainService, IRemi... method LocalReminderService (line 37) | public LocalReminderService( method Participate (line 62) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method Initialize (line 116) | private async Task Initialize(CancellationToken cancellationToken) method Stop (line 125) | public async override Task Stop() method RegisterOrUpdateReminder (line 149) | public async Task RegisterOrUpdateReminder(GrainId gra... method UnregisterReminder (line 181) | public async Task UnregisterReminder(IGrainReminder reminder) method GetReminder (line 218) | public async Task GetReminder(GrainId grainId, string ... method GetReminders (line 225) | public async Task> GetReminders(GrainId grainId) method ReadAndUpdateReminders (line 235) | private Task ReadAndUpdateReminders() method RemoveOutOfRangeReminders (line 254) | private void RemoveOutOfRangeReminders() method OnRangeChange (line 275) | public override Task OnRangeChange(IRingRange oldRange, IRingRange new... method RunAsync (line 284) | private async Task RunAsync() method StartInBackground (line 314) | protected override async Task StartInBackground() method DoInitialReadAndUpdateReminders (line 320) | private async Task DoInitialReadAndUpdateReminders() method ReadTableAndStartTimers (line 347) | private async Task ReadTableAndStartTimers(ISingleRange range, int ran... method StartAndAddTimer (line 453) | private void StartAndAddTimer(ReminderEntry entry) method TryStopPreviousTimer (line 474) | private bool TryStopPreviousTimer(GrainId grainId, string reminderName) method DoResponsibilitySanityCheck (line 486) | private Task DoResponsibilitySanityCheck(GrainId grainId, string debug... method PrintReminders (line 539) | private void PrintReminders(string msg = null) method GetGrain (line 547) | private IRemindable GetGrain(GrainId grainId) => (IRemindable)_referen... class LocalReminderData (line 549) | private sealed class LocalReminderData method LocalReminderData (line 560) | internal LocalReminderData(ReminderEntry entry, LocalReminderService... method StartTimer (line 586) | public void StartTimer() method StopReminder (line 599) | public void StopReminder() method RunAsync (line 604) | private async Task RunAsync() method CalculateDueTime (line 623) | private TimeSpan CalculateDueTime() method OnTimerTick (line 658) | public async Task OnTimerTick() method ToString (line 688) | public override string ToString() type ReminderIdentity (line 692) | private readonly struct ReminderIdentity : IEquatable method ReminderIdentity (line 697) | public ReminderIdentity(GrainId grainId, string reminderName) method Equals (line 709) | public readonly bool Equals(ReminderIdentity other) => GrainId.Equal... method Equals (line 711) | public override readonly bool Equals(object other) => other is Remin... method GetHashCode (line 713) | public override readonly int GetHashCode() => HashCode.Combine(Grain... method LogErrorActivatingReminderService (line 716) | [LoggerMessage( method LogErrorStoppingReminderService (line 722) | [LoggerMessage( method LogErrorStartingReminderService (line 728) | [LoggerMessage( method LogDebugRegisterOrUpdateReminder (line 734) | [LoggerMessage( method LogDebugRegisterReminder (line 741) | [LoggerMessage( method LogErrorRegisterReminder (line 747) | [LoggerMessage( method LogDebugUnregisterReminder (line 754) | [LoggerMessage( method LogStoppedReminder (line 761) | [LoggerMessage( method LogRemovedReminderFromTable (line 768) | [LoggerMessage( method LogErrorUnregisterReminder (line 775) | [LoggerMessage( method LogDebugGetReminder (line 782) | [LoggerMessage( method LogDebugGetReminders (line 789) | [LoggerMessage( method LogTraceRingRange (line 796) | [LoggerMessage( method LogTraceRemovingReminder (line 802) | [LoggerMessage( method LogInfoRemovedLocalReminders (line 808) | [LoggerMessage( method LogIgnoringRangeChange (line 814) | [LoggerMessage( method LogWarningReadingReminders (line 820) | [LoggerMessage( method LogWarningInitialLoadFailing (line 826) | [LoggerMessage( method LogErrorInitialLoadFailed (line 833) | [LoggerMessage( method LogDebugReadingRows (line 840) | [LoggerMessage( method LogDebugRangeChangedWhileFromTable (line 846) | [LoggerMessage( method LogDebugReadRemindersFromTable (line 852) | [LoggerMessage( method LogTraceInTableInLocalOldTicking (line 858) | [LoggerMessage( method LogTraceLocalReminderNeedsRestart (line 864) | [LoggerMessage( method LogTraceInTableInLocalOldNotTicking (line 870) | [LoggerMessage( method LogTraceInTableInLocalNewerTicking (line 876) | [LoggerMessage( method LogTraceInTableInLocalNewerNotTicking (line 882) | [LoggerMessage( method LogTraceInTableNotInLocal (line 888) | [LoggerMessage( method LogTraceNotInTableInLocalNewer (line 894) | [LoggerMessage( method LogTraceNotInTableInLocalOld (line 900) | [LoggerMessage( method LogDebugRemovedRemindersFromLocalTable (line 906) | [LoggerMessage( method LogErrorFailedToReadTableAndStartTimer (line 912) | [LoggerMessage( method LogDebugLocallyStoppingReminder (line 919) | [LoggerMessage( method LogDebugStartedReminder (line 926) | [LoggerMessage( method LogWarningNotResponsible (line 933) | [LoggerMessage( method LogWarningFiringReminder (line 940) | [LoggerMessage( method LogTraceTriggeringTick (line 946) | [LoggerMessage( method LogTraceTickTriggered (line 952) | [LoggerMessage( method LogErrorDeliveringReminderTick (line 958) | [LoggerMessage( FILE: src/Orleans.Reminders/ReminderService/ReminderRegistry.cs class ReminderRegistry (line 14) | internal sealed class ReminderRegistry : GrainServiceClient RegisterOrUpdateReminder(GrainId callingGr... method UnregisterReminder (line 51) | public Task UnregisterReminder(GrainId callingGrainId, IGrainReminder ... method GetReminder (line 57) | public Task GetReminder(GrainId callingGrainId, string... method GetReminders (line 66) | public Task> GetReminders(GrainId callingGrainId) method EnsureReminderServiceRegisteredAndInGrainContext (line 72) | private void EnsureReminderServiceRegisteredAndInGrainContext() method ValidateServiceProvider (line 78) | private void ValidateServiceProvider() method ThrowInvalidContext (line 94) | private static void ThrowInvalidContext() FILE: src/Orleans.Reminders/SystemTargetInterfaces/IReminderService.cs type IReminderService (line 12) | public interface IReminderService : IGrainService method Start (line 18) | Task Start(); method Stop (line 24) | Task Stop(); method RegisterOrUpdateReminder (line 34) | Task RegisterOrUpdateReminder(GrainId grainId, string ... method UnregisterReminder (line 41) | Task UnregisterReminder(IGrainReminder reminder); method GetReminder (line 49) | Task GetReminder(GrainId grainId, string reminderName); method GetReminders (line 56) | Task> GetReminders(GrainId grainId); FILE: src/Orleans.Reminders/SystemTargetInterfaces/IReminderTable.cs type IReminderTable (line 15) | public interface IReminderTable method StartAsync (line 21) | Task StartAsync(CancellationToken cancellationToken = default) method Init (line 30) | [Obsolete("Implement and use StartAsync instead")] method ReadRows (line 38) | Task ReadRows(GrainId grainId); method ReadRows (line 47) | Task ReadRows(uint begin, uint end); method ReadRow (line 55) | Task ReadRow(GrainId grainId, string reminderName); method UpsertRow (line 62) | Task UpsertRow(ReminderEntry entry); method RemoveRow (line 71) | Task RemoveRow(GrainId grainId, string reminderName, string eTag); method TestOnlyClearTable (line 77) | Task TestOnlyClearTable(); method StopAsync (line 84) | Task StopAsync(CancellationToken cancellationToken = default) => Task.... type IReminderTableGrain (line 90) | internal interface IReminderTableGrain : IGrainWithIntegerKey method ReadRows (line 92) | Task ReadRows(GrainId grainId); method ReadRows (line 94) | Task ReadRows(uint begin, uint end); method ReadRow (line 96) | Task ReadRow(GrainId grainId, string reminderName); method UpsertRow (line 98) | Task UpsertRow(ReminderEntry entry); method RemoveRow (line 100) | Task RemoveRow(GrainId grainId, string reminderName, string eTag); method TestOnlyClearTable (line 102) | Task TestOnlyClearTable(); class ReminderTableData (line 108) | [Serializable] method ReminderTableData (line 116) | public ReminderTableData(IEnumerable list) method ReminderTableData (line 125) | public ReminderTableData(ReminderEntry entry) method ReminderTableData (line 133) | public ReminderTableData() method ToString (line 149) | public override string ToString() => $"[{Reminders.Count} reminders: {... class ReminderEntry (line 155) | [Serializable] method ToString (line 193) | public override string ToString() => $" new ReminderData(GrainId... class ReminderData (line 202) | [Serializable, GenerateSerializer, Immutable] method ReminderData (line 212) | internal ReminderData(GrainId grainId, string reminderName, string eTag) method ToString (line 219) | public override string ToString() => $" $"<{FirstTickTime}, {Period}, {Cu... class ReminderException (line 84) | [Serializable, GenerateSerializer] method ReminderException (line 91) | public ReminderException(string message) : base(message) { } method ReminderException (line 98) | [Obsolete] FILE: src/Orleans.Reminders/Timers/IReminderRegistry.cs type IReminderRegistry (line 12) | public interface IReminderRegistry : IGrainServiceClient method RegisterOrUpdateReminder (line 22) | Task RegisterOrUpdateReminder(GrainId callingGrainId, ... method UnregisterReminder (line 30) | Task UnregisterReminder(GrainId callingGrainId, IGrainReminder reminder); method GetReminder (line 38) | Task GetReminder(GrainId callingGrainId, string remind... method GetReminders (line 45) | Task> GetReminders(GrainId callingGrainId); FILE: src/Orleans.Runtime/Activation/ActivationDataActivatorProvider.cs class ActivationDataActivatorProvider (line 17) | internal partial class ActivationDataActivatorProvider : IGrainContextAc... method ActivationDataActivatorProvider (line 30) | public ActivationDataActivatorProvider( method TryGet (line 54) | public bool TryGet(GrainType grainType, [NotNullWhen(true)] out IGrain... class ActivationDataActivator (line 90) | private partial class ActivationDataActivator : IGrainContextActivator method ActivationDataActivator (line 102) | public ActivationDataActivator( method CreateContext (line 126) | public IGrainContext CreateContext(GrainAddress activationAddress) method LogErrorFailedToDisposeGrain (line 144) | [LoggerMessage( class StatelessWorkerActivator (line 152) | internal class StatelessWorkerActivator : IGrainContextActivator method StatelessWorkerActivator (line 157) | public StatelessWorkerActivator(GrainTypeSharedContext sharedContext, ... method CreateContext (line 163) | public IGrainContext CreateContext(GrainAddress address) => new Statel... FILE: src/Orleans.Runtime/Activation/ConfigureDefaultGrainActivator.cs class ConfigureDefaultGrainActivator (line 6) | internal class ConfigureDefaultGrainActivator : IConfigureGrainTypeCompo... method ConfigureDefaultGrainActivator (line 11) | public ConfigureDefaultGrainActivator(GrainClassMap grainClassMap, ISe... method Configure (line 17) | public void Configure(GrainType grainType, GrainProperties properties,... FILE: src/Orleans.Runtime/Activation/DefaultGrainActivator.cs class DefaultGrainActivator (line 10) | public class DefaultGrainActivator : IGrainActivator method DefaultGrainActivator (line 21) | public DefaultGrainActivator(IServiceProvider serviceProvider, Type gr... method CreateInstance (line 29) | public object CreateInstance(IGrainContext context) method DisposeInstance (line 45) | public async ValueTask DisposeInstance(IGrainContext context, object i... FILE: src/Orleans.Runtime/Activation/GrainContextAccessor.cs class GrainContextAccessor (line 3) | internal class GrainContextAccessor : IGrainContextAccessor method GrainContextAccessor (line 7) | public GrainContextAccessor(HostedClient hostedClient) FILE: src/Orleans.Runtime/Activation/IGrainActivator.cs type IGrainActivator (line 8) | public interface IGrainActivator method CreateInstance (line 15) | object CreateInstance(IGrainContext context); method DisposeInstance (line 23) | ValueTask DisposeInstance(IGrainContext context, object instance); FILE: src/Orleans.Runtime/Activation/IGrainContextActivator.cs class GrainContextActivator (line 25) | public sealed class GrainContextActivator method GrainContextActivator (line 44) | public GrainContextActivator( method CreateInstance (line 59) | public IGrainContext CreateInstance(GrainAddress address) method CreateActivator (line 76) | private (IGrainContextActivator, IConfigureGrainContext[]) CreateActiv... type IGrainContextActivatorProvider (line 118) | public interface IGrainContextActivatorProvider method TryGet (line 126) | bool TryGet(GrainType grainType, [NotNullWhen(true)] out IGrainContext... type IGrainContextActivator (line 132) | public interface IGrainContextActivator method CreateContext (line 139) | public IGrainContext CreateContext(GrainAddress address); type IConfigureGrainContextProvider (line 145) | public interface IConfigureGrainContextProvider method TryGetConfigurator (line 154) | bool TryGetConfigurator(GrainType grainType, GrainProperties propertie... type IConfigureGrainContext (line 160) | public interface IConfigureGrainContext method Configure (line 166) | void Configure(IGrainContext context); class GrainTypeSharedContextResolver (line 172) | public class GrainTypeSharedContextResolver method GrainTypeSharedContextResolver (line 186) | public GrainTypeSharedContextResolver( method GetComponents (line 202) | public GrainTypeSharedContext GetComponents(GrainType grainType) => _c... method Create (line 204) | private GrainTypeSharedContext Create(GrainType grainType) type IConfigureGrainTypeComponents (line 220) | public interface IConfigureGrainTypeComponents method Configure (line 228) | void Configure(GrainType grainType, GrainProperties properties, GrainT... class ReentrantSharedComponentsConfigurator (line 231) | internal class ReentrantSharedComponentsConfigurator : IConfigureGrainTy... method Configure (line 233) | public void Configure(GrainType grainType, GrainProperties properties,... class MayInterleaveConfiguratorProvider (line 249) | internal class MayInterleaveConfiguratorProvider : IConfigureGrainContex... method MayInterleaveConfiguratorProvider (line 253) | public MayInterleaveConfiguratorProvider(GrainClassMap grainClassMap) method TryGetConfigurator (line 258) | public bool TryGetConfigurator(GrainType grainType, GrainProperties pr... method GetMayInterleavePredicate (line 276) | private static IMayInterleavePredicate GetMayInterleavePredicate(Type ... type IMayInterleavePredicate (line 314) | internal interface IMayInterleavePredicate method Invoke (line 316) | bool Invoke(object instance, IInvokable bodyObject); class ReentrantPredicate (line 319) | internal class ReentrantPredicate : IMayInterleavePredicate method ReentrantPredicate (line 321) | private ReentrantPredicate() method Invoke (line 327) | public bool Invoke(object _, IInvokable bodyObject) => true; class MayInterleaveStaticPredicate (line 330) | internal class MayInterleaveStaticPredicate : IMayInterleavePredicate method MayInterleaveStaticPredicate (line 334) | public MayInterleaveStaticPredicate(Func mayInterlea... method Invoke (line 339) | public bool Invoke(object _, IInvokable bodyObject) => _mayInterleaveP... class MayInterleaveInstancedPredicate (line 342) | internal class MayInterleaveInstancedPredicate : IMayInterleavePredic... method MayInterleaveInstancedPredicate (line 346) | public MayInterleaveInstancedPredicate(MethodInfo mayInterleavePredica... method Invoke (line 351) | public bool Invoke(object instance, IInvokable bodyObject) => _mayInte... class MayInterleaveConfigurator (line 354) | internal class MayInterleaveConfigurator : IConfigureGrainContext method MayInterleaveConfigurator (line 358) | public MayInterleaveConfigurator(IMayInterleavePredicate mayInterleave... method Configure (line 363) | public void Configure(IGrainContext context) class GrainCanInterleave (line 376) | internal class GrainCanInterleave method MayInterleave (line 379) | public bool MayInterleave(object instance, Message message) FILE: src/Orleans.Runtime/Cancellation/CancellationSourcesExtension.cs class CancellationSourcesExtension (line 15) | internal partial class CancellationSourcesExtension : ICancellationSourc... method CancellationSourcesExtension (line 29) | public CancellationSourcesExtension(ILoggerFactory loggerFactory, IGra... method CancelRemoteToken (line 38) | public Task CancelRemoteToken(Guid tokenId) method RegisterCancellationTokens (line 59) | internal static void RegisterCancellationTokens( method RecordCancellationToken (line 79) | private GrainCancellationToken RecordCancellationToken(Guid tokenId, b... method ExpireTokens (line 96) | private void ExpireTokens() method Dispose (line 109) | public void Dispose() class Entry (line 114) | private class Entry method Entry (line 118) | public Entry(GrainCancellationToken token) method Touch (line 124) | public void Touch() => _createdTime = Stopwatch.GetTimestamp(); method IsExpired (line 128) | public bool IsExpired(TimeSpan expiry, long nowTimestamp) method LogCancellationFailed (line 136) | [LoggerMessage( FILE: src/Orleans.Runtime/Cancellation/GrainCallCancellationManager.cs type IGrainCallCancellationManagerSystemTarget (line 20) | internal interface IGrainCallCancellationManagerSystemTarget : ISystemTa... method CancelCallsAsync (line 25) | ValueTask CancelCallsAsync([Immutable] List c... method SignalCancellation (line 112) | public void SignalCancellation(SiloAddress? targetSilo, GrainId target... method ProcessMembershipUpdates (line 124) | private async Task ProcessMembershipUpdates() method PumpCancellationQueue (line 167) | private async Task PumpCancellationQueue(SiloAddress targetSilo, Chann... method GetOrCreateWorker (line 222) | private (ChannelWriter Writer, Cancellat... method RemoveWorker (line 250) | private void RemoveWorker(SiloAddress targetSilo) method StartAsync (line 259) | private Task StartAsync(CancellationToken cancellationToken) => Task.C... method StopAsync (line 260) | private async Task StopAsync(CancellationToken cancellationToken) method Participate (line 293) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method LogDebugMonitoringClusterMembershipUpdates (line 303) | [LoggerMessage( method LogDebugStartingCancellationWorker (line 309) | [LoggerMessage( method LogDebugCancelledRequests (line 315) | [LoggerMessage( method LogErrorCancellingRequests (line 321) | [LoggerMessage( method LogDebugExitingCancellationWorker (line 327) | [LoggerMessage( method LogDebugTargetSiloNoLongerActive (line 333) | [LoggerMessage( method LogWarningErrorSignalingShutdown (line 339) | [LoggerMessage( method LogDebugNoLongerMonitoringClusterMembershipUpdates (line 345) | [LoggerMessage( method LogErrorProcessingClusterMembershipUpdates (line 351) | [LoggerMessage( FILE: src/Orleans.Runtime/Catalog/ActivationCollector.cs class ActivationCollector (line 19) | internal partial class ActivationCollector : IActivationWorkingSetObserv... method ActivationCollector (line 46) | public ActivationCollector( method GetNumRecentlyUsed (line 67) | public int GetNumRecentlyUsed(TimeSpan recencyPeriod) method CollectActivations (line 92) | public Task CollectActivations(TimeSpan ageLimit, CancellationToken ca... method ScheduleCollection (line 103) | public void ScheduleCollection(ICollectibleGrainContext item, TimeSpan... method TryCancelCollection (line 128) | public bool TryCancelCollection(ICollectibleGrainContext item) method TryRescheduleCollection (line 152) | public bool TryRescheduleCollection(ICollectibleGrainContext item) method TryRescheduleCollection_Impl (line 165) | private bool TryRescheduleCollection_Impl(ICollectibleGrainContext ite... method DequeueQuantum (line 189) | private bool DequeueQuantum(out List items, ... method ToString (line 216) | public override string ToString() method ScanStale (line 228) | public List ScanStale() method ScanAll (line 275) | public List ScanAll(TimeSpan ageLimit) method IsMemoryOverloaded (line 324) | internal bool IsMemoryOverloaded(out int surplusActivationCount) method DeactivateInDueTimeOrder (line 356) | internal async Task DeactivateInDueTimeOrder(int count, CancellationTo... method GetDeactivationReason (line 404) | private static DeactivationReason GetDeactivationReason() method ThrowIfTicketIsInvalid (line 411) | private void ThrowIfTicketIsInvalid(DateTime ticket) method IsExpired (line 420) | private bool IsExpired(DateTime ticket) method MakeTicketFromDateTime (line 425) | public DateTime MakeTicketFromDateTime(DateTime timestamp) method MakeTicketFromTimeSpan (line 444) | private DateTime MakeTicketFromTimeSpan(TimeSpan timeout, DateTime now) method Add (line 454) | private void Add(ICollectibleGrainContext item, DateTime ticket) method OnAdded (line 462) | void IActivationWorkingSetObserver.OnAdded(IActivationWorkingSetMember... method OnActive (line 478) | void IActivationWorkingSetObserver.OnActive(IActivationWorkingSetMembe... method OnEvicted (line 484) | void IActivationWorkingSetObserver.OnEvicted(IActivationWorkingSetMemb... method OnDeactivating (line 492) | void IActivationWorkingSetObserver.OnDeactivating(IActivationWorkingSe... method OnDeactivated (line 500) | void IActivationWorkingSetObserver.OnDeactivated(IActivationWorkingSet... method Start (line 506) | private Task Start(CancellationToken cancellationToken) method Stop (line 519) | private async Task Stop(CancellationToken cancellationToken) method Participate (line 536) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method RunActivationCollectionLoop (line 545) | private async Task RunActivationCollectionLoop() method RunMemoryBasedDeactivationLoop (line 566) | private async Task RunMemoryBasedDeactivationLoop() method CollectActivationsImpl (line 623) | private async Task CollectActivationsImpl(bool scanStale, TimeSpan age... method DeactivateActivationsFromCollector (line 645) | private async Task DeactivateActivationsFromCollector(List CancelAll() method LogCurrentHighMemoryPressureStats (line 726) | [LoggerMessage( method LogErrorWhileCollectingActivations (line 732) | [LoggerMessage( method LogBeforeCollection (line 738) | [LoggerMessage( method LogCollectActivations (line 745) | [LoggerMessage( type ActivationsLogValue (line 750) | private struct ActivationsLogValue(List list) method ToString (line 752) | public override string ToString() => list.ToStrings(d => d.GrainId.T... method LogAfterCollection (line 755) | [LoggerMessage( method LogDeactivateActivationsFromCollector (line 762) | [LoggerMessage( FILE: src/Orleans.Runtime/Catalog/ActivationData.cs class ActivationData (line 28) | [DebuggerDisplay("GrainId = {GrainId}, State = {State}, Waiting = {Waiti... class ActivityErrorEvents (line 72) | private static class ActivityErrorEvents method ActivationData (line 85) | public ActivationData( method SetActivationActivity (line 103) | internal void SetActivationActivity(Activity activity) method GetActivationActivityContext (line 112) | internal ActivityContext? GetActivationActivityContext() method Start (line 117) | public void Start(IGrainActivator grainActivator) method GetTarget (line 293) | public object? GetTarget() => GrainInstance; method GetComponent (line 295) | object? ITargetHolder.GetComponent(Type componentType) method GetComponent (line 313) | public TComponent? GetComponent() where TComponent : class... method GetComponent (line 315) | public object? GetComponent(Type componentType) method SetComponent (line 347) | public void SetComponent(TComponent? instance) where TComp... method SetComponent (line 349) | public void SetComponent(Type componentType, object? instance) method SetGrainInstance (line 373) | internal void SetGrainInstance(object grainInstance) method SetState (line 401) | public void SetState(ActivationState state) method CheckOverloaded (line 411) | public LimitExceededException? CheckOverloaded() method GetRequestCount (line 442) | internal int GetRequestCount() method DequeueAllWaitingRequests (line 450) | internal List DequeueAllWaitingRequests() method GetIdleness (line 474) | public TimeSpan GetIdleness() => _idleDuration.Elapsed; method IsStale (line 479) | public bool IsStale() => GetIdleness() >= _shared.CollectionAgeLimit; method DelayDeactivation (line 481) | public void DelayDeactivation(TimeSpan timespan) method ResetKeepAliveRequest (line 499) | public void ResetKeepAliveRequest() => KeepAliveUntil = DateTime.MinVa... method ScheduleOperation (line 501) | private void ScheduleOperation(object operation) method CancelPendingOperations (line 512) | private void CancelPendingOperations() method Migrate (line 560) | public void Migrate(Dictionary? requestContext, Cancel... method Deactivate (line 581) | public void Deactivate(DeactivationReason reason, ActivityContext? act... method Deactivate (line 647) | public void Deactivate(DeactivationReason reason, CancellationToken ca... method DeactivateStuckActivation (line 649) | private void DeactivateStuckActivation() method OnTimerCreated (line 666) | void IGrainTimerRegistry.OnTimerCreated(IGrainTimer timer) method OnTimerDisposed (line 675) | void IGrainTimerRegistry.OnTimerDisposed(IGrainTimer timer) method DisposeTimers (line 688) | private void DisposeTimers() method AnalyzeWorkload (line 709) | public void AnalyzeWorkload(DateTime now, IMessageCenter messageCenter... method ToString (line 813) | public override string ToString() => $"[Activation: {Address.SiloAddre... method ToDetailedString (line 815) | internal string ToDetailedString(bool includeExtraDetails = false) method GetActivationInfoString (line 824) | private string GetActivationInfoString() method Dispose (line 835) | public void Dispose() => DisposeAsync().AsTask().Wait(); method DisposeAsync (line 837) | public async ValueTask DisposeAsync() method DisposeAsync (line 877) | private static async ValueTask DisposeAsync(object obj) method Equals (line 896) | bool IEquatable.Equals(IGrainContext? other) => Referen... method GetOrSetExtension (line 898) | public (TExtension, TExtensionInterface) GetOrSetExtension() method IsCandidateForRemoval (line 942) | bool IActivationWorkingSetMember.IsCandidateForRemoval(bool wouldRemove) method RunMessageLoop (line 955) | private async Task RunMessageLoop() method RehydrateInternal (line 1254) | private void RehydrateInternal(IRehydrationContext context) method OnDehydrate (line 1321) | private void OnDehydrate(IDehydrationContext context) method InvokeIncomingRequest (line 1393) | private void InvokeIncomingRequest(Message message) method OnCompletedRequest (line 1437) | private void OnCompletedRequest(Message message) method ReceiveMessage (line 1468) | public void ReceiveMessage(object message) => ReceiveMessage((Message)... method ReceiveMessage (line 1469) | public void ReceiveMessage(Message message) method ReceiveResponse (line 1491) | private void ReceiveResponse(Message message) method ReceiveRequest (line 1509) | private void ReceiveRequest(Message message) method RejectAllQueuedMessages (line 1530) | private void RejectAllQueuedMessages() method RerouteAllQueuedMessages (line 1549) | private void RerouteAllQueuedMessages() method Rehydrate (line 1586) | public void Rehydrate(IRehydrationContext context) method Activate (line 1591) | public void Activate(Dictionary? requestContext, Cance... method ActivateAsync (line 1599) | private async Task ActivateAsync(Dictionary? requestCo... method SetActivityError (line 1842) | private void SetActivityError(Activity? erroredActivity, string? error... method SetActivityError (line 1850) | private void SetActivityError(Activity? erroredActivity, Exception exc... method FinishDeactivating (line 1867) | private async Task FinishDeactivating(Command.Deactivate deactivateCom... method GetDeactivationCompletionSource (line 2044) | private TaskCompletionSource GetDeactivationCompletionSource() method DeactivateOnIdle (line 2053) | ValueTask IGrainManagementExtension.DeactivateOnIdle() method MigrateOnIdle (line 2059) | async ValueTask IGrainManagementExtension.MigrateOnIdle() method PlaceMigratingGrainAsync (line 2074) | private async ValueTask PlaceMigratingGrainAsync(Diction... method UnregisterMessageTarget (line 2104) | private void UnregisterMessageTarget() method OnEnterReentrantSection (line 2109) | void ICallChainReentrantGrainContext.OnEnterReentrantSection(Guid reen... method OnExitReentrantSection (line 2121) | void ICallChainReentrantGrainContext.OnExitReentrantSection(Guid reent... method IsReentrantSection (line 2132) | private bool IsReentrantSection(Guid reentrancyId) method CancelRequestAsync (line 2148) | ValueTask IGrainCallCancellationExtension.CancelRequestAsync(GrainId s... method CancelRequestAsyncCore (line 2151) | private ValueTask CancelRequestAsyncCore(GrainId senderGrainId, Correl... method LogErrorCancellationCallbackFailed (line 2235) | [LoggerMessage( class ActivationDataExtra (line 2246) | private class ActivationDataExtra : Dictionary method GetDeactivationInfoOrDefault (line 2279) | private DeactivationInfo? GetDeactivationInfoOrDefault() => GetValue... method EnsureDeactivationInfo (line 2280) | private DeactivationInfo EnsureDeactivationInfo() method SetFlag (line 2291) | private void SetFlag(int flag, bool value) method GetFlag (line 2303) | private bool GetFlag(int flag) => (_flags & flag) != 0; method GetValueOrDefault (line 2304) | private T? GetValueOrDefault(object key) method SetOrRemoveValue (line 2310) | private void SetOrRemoveValue(object key, object? value) class DeactivationInfo (line 2322) | private sealed class DeactivationInfo class Command (line 2330) | private abstract class Command(CancellationTokenSource cts) : IDisposable method Cancel (line 2336) | public virtual void Cancel() method Dispose (line 2345) | public virtual void Dispose() class Deactivate (line 2363) | public sealed class Deactivate(CancellationTokenSource cts, Activati... class Activate (line 2369) | public sealed class Activate(Dictionary? requestCont... class Rehydrate (line 2374) | public sealed class Rehydrate(IRehydrationContext context) : Command... method Dispose (line 2378) | public override void Dispose() class Delay (line 2385) | public sealed class Delay(TimeSpan duration) : Command(new()) class ReentrantRequestTracker (line 2391) | internal class ReentrantRequestTracker : Dictionary method EnterReentrantSection (line 2393) | public void EnterReentrantSection(Guid reentrancyId) method LeaveReentrantSection (line 2400) | public void LeaveReentrantSection(Guid reentrancyId) method IsReentrantSectionActive (line 2415) | public bool IsReentrantSectionActive(Guid reentrancyId) class DehydrationContextHolder (line 2422) | private class DehydrationContextHolder(SerializerSessionPool sessionPo... method LogRejectActivationTooManyRequests (line 2434) | [LoggerMessage( method LogWarnActivationTooManyRequests (line 2441) | [LoggerMessage( method LogErrorCancellingOperation (line 2448) | [LoggerMessage( method LogDebugMigrating (line 2454) | [LoggerMessage( method LogErrorSelectingMigrationDestination (line 2460) | [LoggerMessage( method LogDebugPlacementStrategyFailedToSelectDestination (line 2466) | [LoggerMessage( method LogDebugPlacementStrategySelectedCurrentSilo (line 2472) | [LoggerMessage( method LogErrorInvokingMayInterleavePredicate (line 2478) | [LoggerMessage( method LogErrorInProcessOperationsAsync (line 2484) | [LoggerMessage( method LogRehydratingGrain (line 2490) | [LoggerMessage( method LogIgnoringRehydrateAttempt (line 2496) | [LoggerMessage( method LogPreviousActivationAddress (line 2502) | [LoggerMessage( method LogRehydratedGrain (line 2508) | [LoggerMessage( method LogErrorRehydratingActivation (line 2514) | [LoggerMessage( method LogDehydratingActivation (line 2520) | [LoggerMessage( method LogDehydratedActivation (line 2526) | [LoggerMessage( method LogErrorDehydratingActivation (line 2532) | [LoggerMessage( method LogRejectAllQueuedMessages (line 2538) | [LoggerMessage( method LogRegisteringGrain (line 2545) | [LoggerMessage( method LogAttemptToRegisterWithPreviousActivation (line 2550) | [LoggerMessage( method LogWarningDispatcher_ExtendedMessageProcessing (line 2558) | [LoggerMessage( type ActivationDataLogValue (line 2569) | private readonly struct ActivationDataLogValue(ActivationData activati... method ToString (line 2571) | public override string ToString() => activation.ToDetailedString(inc... method LogFailedToRegisterGrain (line 2574) | [LoggerMessage( method LogIgnoringActivateAttempt (line 2581) | [LoggerMessage( method LogActivatingGrain (line 2586) | [LoggerMessage( method LogErrorStartingLifecycle (line 2592) | [LoggerMessage( method LogErrorInGrainMethod (line 2597) | [LoggerMessage( method LogFinishedActivatingGrain (line 2602) | [LoggerMessage( method LogErrorActivatingGrain (line 2608) | [LoggerMessage( method LogActivationDisposedObjectAccessed (line 2614) | [LoggerMessage( method LogActivationCancelled (line 2620) | [LoggerMessage( method LogCompletingDeactivation (line 2626) | [LoggerMessage( method LogBeforeOnDeactivateAsync (line 2631) | [LoggerMessage( method LogAfterOnDeactivateAsync (line 2637) | [LoggerMessage( method LogFailedToUnregisterActivation (line 2643) | [LoggerMessage( method LogErrorDeactivating (line 2648) | [LoggerMessage( method LogExceptionDisposing (line 2654) | [LoggerMessage( method LogFailedToMigrateActivation (line 2659) | [LoggerMessage( type FullAddressLogRecord (line 2664) | private readonly struct FullAddressLogRecord(GrainAddress address) method ToString (line 2666) | public override string ToString() => address.ToFullString(); method LogDuplicateActivation (line 2669) | [LoggerMessage( method LogReroutingMessages (line 2681) | [LoggerMessage( method LogReroutingMessagesNoForwarding (line 2687) | [LoggerMessage( method LogActivationFailed (line 2693) | [LoggerMessage( FILE: src/Orleans.Runtime/Catalog/ActivationDirectory.cs class ActivationDirectory (line 11) | internal sealed class ActivationDirectory : IEnumerable> GetEnumerator... method GetEnumerator (line 51) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); method DisposeAsync (line 53) | async ValueTask IAsyncDisposable.DisposeAsync() method Dispose (line 78) | void IDisposable.Dispose() FILE: src/Orleans.Runtime/Catalog/ActivationMigrationManager.cs type IActivationMigrationManagerSystemTarget (line 22) | internal interface IActivationMigrationManagerSystemTarget : ISystemTarget method AcceptMigratingGrains (line 27) | ValueTask AcceptMigratingGrains([Immutable] List GetOrCreateWorker(SiloAddress... method RemoveWorker (line 293) | private void RemoveWorker(SiloAddress targetSilo) method StartAsync (line 309) | private Task StartAsync(CancellationToken cancellationToken) => Task.C... method StopAsync (line 310) | private async Task StopAsync(CancellationToken cancellationToken) method Participate (line 331) | void ILifecycleParticipant.Participate(ISiloLifecycle ... class MigrationWorkItem (line 340) | private class MigrationWorkItem : IValueTaskSource method Initialize (line 345) | public void Initialize(GrainMigrationPackage package) => _migrationP... method Reset (line 346) | public void Reset() => _core.Reset(); method SetCompleted (line 350) | public void SetCompleted() => _core.SetResult(0); method SetException (line 351) | public void SetException(Exception exception) => _core.SetException(... method AsValueTask (line 352) | public ValueTask AsValueTask() => new (this, _core.Version); method GetResult (line 354) | public void GetResult(short token) method GetStatus (line 366) | public ValueTaskSourceStatus GetStatus(short token) => _core.GetStat... method OnCompleted (line 367) | public void OnCompleted(Action continuation, object? state,... class ObjectPoolPolicy (line 369) | public sealed class ObjectPoolPolicy : IPooledObjectPolicy new(); method Return (line 372) | public bool Return(MigrationWorkItem obj) type SiloAddressLogValue (line 381) | private readonly struct SiloAddressLogValue method SiloAddressLogValue (line 384) | public SiloAddressLogValue(SiloAddress silo) => _silo = silo; method ToString (line 385) | public override string ToString() => _silo.ToStringWithHashCode(); method LogDebugMonitoringUpdates (line 389) | [LoggerMessage( method LogErrorProcessingMembershipUpdates (line 394) | [LoggerMessage( method LogDebugNoLongerMonitoring (line 400) | [LoggerMessage( method LogDebugStartingWorker (line 405) | [LoggerMessage( method LogDebugMigratedActivations (line 410) | [LoggerMessage( method LogErrorMigratingActivations (line 415) | [LoggerMessage( method LogDebugExitingWorker (line 420) | [LoggerMessage( method LogDebugTargetSilo (line 425) | [LoggerMessage( method LogWarningSignalShutdownError (line 431) | [LoggerMessage( FILE: src/Orleans.Runtime/Catalog/ActivationState.cs type ActivationState (line 3) | internal enum ActivationState FILE: src/Orleans.Runtime/Catalog/ActivationWorkingSet.cs class ActivationWorkingSet (line 17) | internal sealed partial class ActivationWorkingSet : IActivationWorkingS... class MemberState (line 19) | private class MemberState method ActivationWorkingSet (line 32) | public ActivationWorkingSet( method OnActivated (line 45) | public void OnActivated(IActivationWorkingSetMember member) method OnActive (line 62) | public void OnActive(IActivationWorkingSetMember member) method OnEvicted (line 79) | public void OnEvicted(IActivationWorkingSetMember member) method OnDeactivating (line 91) | public void OnDeactivating(IActivationWorkingSetMember member) method OnDeactivated (line 100) | public void OnDeactivated(IActivationWorkingSetMember member) method MonitorWorkingSet (line 109) | private async Task MonitorWorkingSet() method VisitMember (line 127) | private void VisitMember(IActivationWorkingSetMember member, MemberSta... method Participate (line 155) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method LogExceptionVisitingWorkingSetMember (line 176) | [LoggerMessage( type IActivationWorkingSet (line 186) | public interface IActivationWorkingSet method OnActivated (line 196) | void OnActivated(IActivationWorkingSetMember member); method OnActive (line 201) | void OnActive(IActivationWorkingSetMember member); method OnDeactivating (line 207) | void OnDeactivating(IActivationWorkingSetMember member); method OnDeactivated (line 212) | void OnDeactivated(IActivationWorkingSetMember member); type IActivationWorkingSetMember (line 218) | public interface IActivationWorkingSetMember method IsCandidateForRemoval (line 227) | bool IsCandidateForRemoval(bool wouldRemove); type IActivationWorkingSetObserver (line 233) | public interface IActivationWorkingSetObserver method OnAdded (line 238) | void OnAdded(IActivationWorkingSetMember member) { } method OnActive (line 243) | void OnActive(IActivationWorkingSetMember member) { } method OnIdle (line 248) | void OnIdle(IActivationWorkingSetMember member) { } method OnEvicted (line 253) | void OnEvicted(IActivationWorkingSetMember member) { } method OnDeactivating (line 258) | void OnDeactivating(IActivationWorkingSetMember member) { } method OnDeactivated (line 263) | void OnDeactivated(IActivationWorkingSetMember member) { } FILE: src/Orleans.Runtime/Catalog/Catalog.cs class Catalog (line 11) | internal sealed partial class Catalog : SystemTarget, ICatalog, ILifecyc... method Catalog (line 31) | public Catalog( method GetStripedLock (line 81) | private Lock GetStripedLock(in GrainId grainId) method GetStripedLock (line 83) | private object GetStripedLock(in GrainId grainId) method UnregisterMessageTarget (line 95) | public void UnregisterMessageTarget(IGrainContext activation) method UnregisterGrainForTesting (line 111) | internal int UnregisterGrainForTesting(GrainId grain) method GetOrCreateActivation (line 132) | public IGrainContext GetOrCreateActivation( method UnregisterNonExistentActivation (line 242) | private async Task UnregisterNonExistentActivation(GrainAddress address) method TryGetGrainContext (line 258) | private bool TryGetGrainContext(GrainId grainId, out IGrainContext data) method DeactivateActivations (line 269) | internal async Task DeactivateActivations(DeactivationReason reason, L... method DeactivateAllActivations (line 291) | public async Task DeactivateAllActivations(CancellationToken cancellat... method DeleteActivations (line 314) | public async Task DeleteActivations(List addresses, Deac... method OnSiloStatusChange (line 331) | internal void OnSiloStatusChange(ILocalGrainDirectory directory, SiloA... method Participate (line 398) | void ILifecycleParticipant.Participate(ISiloLifecycle ... type SiloAddressLogValue (line 404) | private readonly struct SiloAddressLogValue(SiloAddress silo) method ToString (line 406) | public override string ToString() => silo.ToStringWithHashCode(); method LogErrorCatalogSiloStatusChangeNotification (line 409) | [LoggerMessage( method LogInfoCatalogSiloStatusChangeNotification (line 416) | [LoggerMessage( method LogTraceUnregisteredActivation (line 423) | [LoggerMessage( method LogDebugDeactivateActivations (line 428) | [LoggerMessage( method LogDebugDeactivateAllActivations (line 433) | [LoggerMessage( method LogDebugUnableToCreateActivationWhenNotActive (line 440) | [LoggerMessage( method LogDebugUnableToCreateActivation (line 445) | [LoggerMessage( method LogFailedToUnregisterNonExistingActivation (line 452) | [LoggerMessage( FILE: src/Orleans.Runtime/Catalog/GrainLifecycle.cs class GrainLifecycle (line 9) | internal class GrainLifecycle(ILogger logger) : LifecycleSubject(logger)... method GetMigrationParticipants (line 14) | public IEnumerable GetMigrationParticipant... method AddMigrationParticipant (line 16) | public void AddMigrationParticipant(IGrainMigrationParticipant partici... method RemoveMigrationParticipant (line 25) | public void RemoveMigrationParticipant(IGrainMigrationParticipant part... method GetStageName (line 34) | protected override string GetStageName(int stage) FILE: src/Orleans.Runtime/Catalog/GrainTypeSharedContext.cs class GrainTypeSharedContext (line 22) | public sealed class GrainTypeSharedContext method GrainTypeSharedContext (line 28) | public GrainTypeSharedContext( method GetCollectionAgeLimit (line 76) | private static TimeSpan GetCollectionAgeLimit(GrainType grainType, Typ... method GetComponent (line 104) | public TComponent? GetComponent() method GetComponent (line 126) | public object? GetComponent(Type componentType) method SetComponent (line 147) | public void SetComponent(TComponent? instance) method OnCreateActivation (line 232) | public void OnCreateActivation(IGrainContext grainContext) method OnDestroyActivation (line 241) | public void OnDestroyActivation(IGrainContext grainContext) type IActivationLifecycleObserver (line 247) | internal interface IActivationLifecycleObserver method OnCreateActivation (line 249) | void OnCreateActivation(IGrainContext grainContext); method OnDestroyActivation (line 250) | void OnDestroyActivation(IGrainContext grainContext); FILE: src/Orleans.Runtime/Catalog/IActivationCollector.cs type IActivationCollector (line 3) | internal interface IActivationCollector method ScheduleCollection (line 10) | void ScheduleCollection(ActivationData item); method TryRescheduleCollection (line 17) | bool TryRescheduleCollection(ActivationData item); FILE: src/Orleans.Runtime/Catalog/ICatalog.cs type ICatalog (line 9) | internal interface ICatalog : ISystemTarget method DeleteActivations (line 18) | Task DeleteActivations(List activationAddresses, Deactiv... FILE: src/Orleans.Runtime/Catalog/IncomingRequestMonitor.cs class IncomingRequestMonitor (line 16) | internal sealed class IncomingRequestMonitor : ILifecycleParticipant OnIdle(me... method Participate (line 69) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method Run (line 89) | private async Task Run() FILE: src/Orleans.Runtime/Catalog/LocalActivationStatusChecker.cs class LocalActivationStatusChecker (line 5) | internal sealed class LocalActivationStatusChecker(ActivationDirectory a... method IsLocallyActivated (line 7) | public bool IsLocallyActivated(GrainId grainId) => activationDirectory... FILE: src/Orleans.Runtime/Catalog/StatelessWorkerGrainContext.cs class StatelessWorkerGrainContext (line 14) | internal partial class StatelessWorkerGrainContext : IGrainContext, IAsy... method StatelessWorkerGrainContext (line 44) | public StatelessWorkerGrainContext( method Activate (line 99) | public void Activate(Dictionary? requestContext, Cance... method ReceiveMessage (line 101) | public void ReceiveMessage(object message) => EnqueueWorkItem(WorkItem... method Deactivate (line 103) | public void Deactivate(DeactivationReason deactivationReason, Cancella... method DisposeAsync (line 106) | public async ValueTask DisposeAsync() method EnqueueWorkItem (line 113) | private void EnqueueWorkItem(WorkItemType type, object state) method Equals (line 119) | public bool Equals([AllowNull] IGrainContext other) => other is not nu... method GetComponent (line 121) | public object? GetComponent(Type componentType) method SetComponent (line 127) | public void SetComponent(TComponent? instance) where TComp... method GetTarget (line 137) | public object? GetTarget() => throw new NotImplementedException(); method RunMessageLoop (line 139) | private async Task RunMessageLoop() method CollectIdleWorkers (line 214) | private void CollectIdleWorkers() method ReceiveMessageInternal (line 253) | private void ReceiveMessageInternal(object message) method CreateWorker (line 315) | private ActivationData CreateWorker(object? message) method DeactivateInternal (line 333) | private void DeactivateInternal(DeactivationReason reason, Cancellatio... method DeactivatedTaskInternal (line 341) | private async Task DeactivatedTaskInternal(TaskCompletionSource comple... method DisposeAsyncInternal (line 360) | private async Task DisposeAsyncInternal(TaskCompletionSource completion) method OnCreateActivation (line 396) | public void OnCreateActivation(IGrainContext grainContext) method OnDestroyActivation (line 400) | public void OnDestroyActivation(IGrainContext grainContext) => method Rehydrate (line 403) | public void Rehydrate(IRehydrationContext context) => method Migrate (line 407) | public void Migrate(Dictionary? requestContext, Cancel... type WorkItemType (line 412) | private enum WorkItemType type ActivateWorkItemState (line 422) | private record ActivateWorkItemState(Dictionary? Reque... type DeactivateWorkItemState (line 423) | private record DeactivateWorkItemState(DeactivationReason Deactivation... type DeactivatedTaskWorkItemState (line 424) | private record DeactivatedTaskWorkItemState(TaskCompletionSource Compl... type DisposeAsyncWorkItemState (line 425) | private record DisposeAsyncWorkItemState(TaskCompletionSource Completi... method LogErrorInMessageLoop (line 427) | [LoggerMessage( FILE: src/Orleans.Runtime/Catalog/StreamResourceTestControl.cs class StreamResourceTestControl (line 3) | internal static class StreamResourceTestControl FILE: src/Orleans.Runtime/Catalog/SystemTargetShared.cs class SystemTargetShared (line 12) | internal sealed class SystemTargetShared( method CreateWorkItemGroup (line 32) | public WorkItemGroup CreateWorkItemGroup(SystemTarget systemTarget) FILE: src/Orleans.Runtime/Configuration/Options/ActivationCountBasedPlacementOptions.cs class ActivationCountBasedPlacementOptions (line 9) | public class ActivationCountBasedPlacementOptions class ActivationCountBasedPlacementOptionsValidator (line 26) | internal class ActivationCountBasedPlacementOptionsValidator : IConfigur... method ActivationCountBasedPlacementOptionsValidator (line 30) | public ActivationCountBasedPlacementOptionsValidator(IOptions logger, IServicePr... method Participate (line 15) | public void Participate(ISiloLifecycle lifecycle) method OnStart (line 20) | public Task OnStart(CancellationToken token) FILE: src/Orleans.Runtime/Configuration/Options/ResourceOptimizedPlacementOptions.cs class ResourceOptimizedPlacementOptions (line 10) | public sealed class ResourceOptimizedPlacementOptions class ResourceOptimizedPlacementOptionsValidator (line 103) | internal sealed class ResourceOptimizedPlacementOptionsValidator method ValidateConfiguration (line 108) | public void ValidateConfiguration() FILE: src/Orleans.Runtime/Configuration/Options/SchedulingOptions.cs class SchedulingOptions (line 8) | public class SchedulingOptions FILE: src/Orleans.Runtime/Configuration/Options/SiloMessagingOptions.cs class SiloMessagingOptions (line 10) | public class SiloMessagingOptions : MessagingOptions FILE: src/Orleans.Runtime/Configuration/Options/SiloMessagingOptionsValidator.cs class SiloMessagingOptionsValidator (line 5) | internal class SiloMessagingOptionsValidator : IValidateOptions... method ConfigureSiloInboundConnection (line 27) | public void ConfigureSiloInboundConnection(Action ... method ConfigureGatewayInboundConnection (line 33) | public void ConfigureGatewayInboundConnection(Action siloAddress.ToStringWithHashCod... type ConsistentHashCodeLogRecord (line 306) | private readonly struct ConsistentHashCodeLogRecord(SiloAddress siloAd... method ToString (line 308) | public override string ToString() => siloAddress?.GetConsistentHashC... method LogDebugAddedServer (line 311) | [LoggerMessage( method LogDebugFailedServerWasMyPredecessor (line 317) | [LoggerMessage( method LogDebugRemovedServer (line 323) | [LoggerMessage( method LogDebugNotifyLocalRangeSubscribers (line 329) | [LoggerMessage( method LogWarningErrorNotifyingListener (line 335) | [LoggerMessage( method LogTraceCalculatedRingPartitionOwner (line 342) | [LoggerMessage( FILE: src/Orleans.Runtime/ConsistentRing/IConsistentRingProvider.cs type IConsistentRingProvider (line 5) | internal interface IConsistentRingProvider method GetMyRange (line 11) | IRingRange GetMyRange(); method SubscribeToRangeChangeEvents (line 20) | bool SubscribeToRangeChangeEvents(IRingRangeListener observer); method UnSubscribeFromRangeChangeEvents (line 27) | bool UnSubscribeFromRangeChangeEvents(IRingRangeListener observer); method GetPrimaryTargetSilo (line 34) | SiloAddress GetPrimaryTargetSilo(uint key); type IRingRangeListener (line 38) | internal interface IRingRangeListener method RangeChangeNotification (line 40) | void RangeChangeNotification(IRingRange old, IRingRange now, bool incr... FILE: src/Orleans.Runtime/ConsistentRing/SimpleConsistentRingProvider.cs class SimpleConsistentRingProvider (line 8) | internal class SimpleConsistentRingProvider method SimpleConsistentRingProvider (line 19) | public SimpleConsistentRingProvider(ILocalSiloDetails localSiloDetails... method FindSuccessor (line 51) | private SiloAddress FindSuccessor(ClusterMembershipSnapshot snapshot) class VersionedSuccessor (line 104) | private sealed class VersionedSuccessor method VersionedSuccessor (line 106) | public VersionedSuccessor(MembershipVersion membershipVersion, SiloA... method Deconstruct (line 112) | public void Deconstruct(out MembershipVersion version, out SiloAddre... FILE: src/Orleans.Runtime/ConsistentRing/VirtualBucketsRingProvider.cs class VirtualBucketsRingProvider (line 15) | internal sealed partial class VirtualBucketsRingProvider : method VirtualBucketsRingProvider (line 29) | internal VirtualBucketsRingProvider(SiloAddress siloAddress, ILoggerFa... method Stop (line 58) | private void Stop() method GetMyRange (line 63) | public IRingRange GetMyRange() method GetRingSize (line 68) | private int GetRingSize() method SubscribeToRangeChangeEvents (line 76) | public bool SubscribeToRangeChangeEvents(IRingRangeListener observer) method UnSubscribeFromRangeChangeEvents (line 91) | public bool UnSubscribeFromRangeChangeEvents(IRingRangeListener observer) method NotifyLocalRangeSubscribers (line 99) | private void NotifyLocalRangeSubscribers(IRingRange old, IRingRange no... method AddServer (line 122) | private void AddServer(SiloAddress silo) method RemoveServer (line 145) | private void RemoveServer(SiloAddress silo) method UpdateRange (line 172) | private IRingRange UpdateRange() method CalculateRange (line 185) | private static IRingRange CalculateRange((uint Hash, SiloAddress SiloA... method ToString (line 203) | public override string ToString() method GetRanges (line 211) | internal List<(SiloAddress Key, IRingRangeInternal Value)> GetRanges() method SiloStatusChangeNotification (line 230) | public void SiloStatusChangeNotification(SiloAddress updatedSilo, Silo... method GetPrimaryTargetSilo (line 253) | public SiloAddress GetPrimaryTargetSilo(uint key) method CalculateTargetSilo (line 266) | private SiloAddress CalculateTargetSilo(uint hash, bool excludeThisSil... method Dispose (line 314) | public void Dispose() type SiloAddressLogValue (line 319) | private readonly struct SiloAddressLogValue method SiloAddressLogValue (line 323) | public SiloAddressLogValue(SiloAddress siloAddress) method ToString (line 328) | public override string ToString() => _siloAddress.ToStringWithHashCo... method LogDebugStarting (line 331) | [LoggerMessage( method LogTraceNotifyLocalRangeSubscribers (line 337) | [LoggerMessage( method LogWarningErrorNotifyingListener (line 344) | [LoggerMessage( method LogTraceAddedServer (line 351) | [LoggerMessage( method LogTraceRemovedServer (line 358) | [LoggerMessage( method LogTraceCalculatedRingPartitionOwner (line 365) | [LoggerMessage( FILE: src/Orleans.Runtime/Core/FatalErrorHandler.cs class FatalErrorHandler (line 10) | internal partial class FatalErrorHandler : IFatalErrorHandler method FatalErrorHandler (line 15) | public FatalErrorHandler( method IsUnexpected (line 23) | public bool IsUnexpected(Exception exception) method OnFatalException (line 28) | public void OnFatalException(object sender, string context, Exception ... method LogFatalError (line 44) | [LoggerMessage( FILE: src/Orleans.Runtime/Core/GrainRuntime.cs class GrainRuntime (line 9) | internal class GrainRuntime : IGrainRuntime method GrainRuntime (line 16) | public GrainRuntime( method DeactivateOnIdle (line 64) | public void DeactivateOnIdle(IGrainContext grainContext) method DelayDeactivation (line 70) | public void DelayDeactivation(IGrainContext grainContext, TimeSpan tim... method GetStorage (line 81) | public IStorage GetStorage(IGrainContext gra... method CheckRuntimeContext (line 89) | public static void CheckRuntimeContext(IGrainContext? context) FILE: src/Orleans.Runtime/Core/HostedClient.cs class HostedClient (line 22) | internal sealed partial class HostedClient : IGrainContext, IGrainExtens... method HostedClient (line 43) | public HostedClient( method CreateHostedClientGrainId (line 83) | public static ClientGrainId CreateHostedClientGrainId(SiloAddress silo... method ToString (line 107) | public override string ToString() => $"{nameof(HostedClient)}_{this.Ad... method CreateObjectReference (line 110) | public IAddressable CreateObjectReference(IAddressable obj) method DeleteObjectReference (line 127) | public void DeleteObjectReference(IAddressable obj) method GetComponent (line 145) | public object? GetComponent(Type componentType) method SetComponent (line 168) | public void SetComponent(TComponent? instance) where TComp... method TryDispatchToClient (line 188) | public bool TryDispatchToClient(Message message) method ReceiveMessage (line 205) | public void ReceiveMessage(object message) method Dispose (line 222) | void IDisposable.Dispose() method Start (line 232) | private void Start() method RunClientMessagePump (line 237) | private async Task RunClientMessagePump() method Participate (line 273) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method Equals (line 300) | public bool Equals(IGrainContext? other) => ReferenceEquals(this, other); method GetOrSetExtension (line 302) | public (TExtension, TExtensionInterface) GetOrSetExtension(out (TEx... method TryGetExtension (line 346) | private bool TryGetExtension([NotNullWhen(true)] ... method GetExtension (line 359) | public TExtensionInterface GetExtension() method GetTarget (line 387) | public object? GetTarget() => throw new NotImplementedException(); method Activate (line 388) | public void Activate(Dictionary? requestContext, Cance... method Deactivate (line 389) | public void Deactivate(DeactivationReason deactivationReason, Cancella... method Rehydrate (line 392) | public void Rehydrate(IRehydrationContext context) method Migrate (line 398) | public void Migrate(Dictionary? requestContext, Cancel... method LogDebugShuttingDown (line 403) | [LoggerMessage( method LogErrorUnsupportedMessage (line 408) | [LoggerMessage( method LogErrorMessagePumpException (line 414) | [LoggerMessage( FILE: src/Orleans.Runtime/Core/IFatalErrorHandler.cs type IFatalErrorHandler (line 8) | public interface IFatalErrorHandler method IsUnexpected (line 15) | bool IsUnexpected(Exception exception); method OnFatalException (line 23) | void OnFatalException(object sender = null, string context = null, Exc... FILE: src/Orleans.Runtime/Core/IHealthCheckParticipant.cs type IHealthCheckParticipant (line 6) | public interface IHealthCheckParticipant : IHealthCheckable FILE: src/Orleans.Runtime/Core/InsideRuntimeClient.cs class InsideRuntimeClient (line 28) | internal sealed partial class InsideRuntimeClient : IRuntimeClient, ILif... method InsideRuntimeClient (line 55) | public InsideRuntimeClient( method SendRequest (line 124) | public void SendRequest( method SendResponse (line 192) | public void SendResponse(Message request, Response response) method UnregisterCallback (line 209) | private void UnregisterCallback(GrainId grainId, CorrelationId correla... method SniffIncomingMessage (line 214) | public void SniffIncomingMessage(Message message) method Invoke (line 258) | public async Task Invoke(IGrainContext target, Message message) method SafeSendResponse (line 350) | private void SafeSendResponse(Message message, Response response) method SafeSendExceptionResponse (line 363) | private void SafeSendExceptionResponse(Message message, Exception ex) method ReceiveResponse (line 383) | public void ReceiveResponse(Message message) method GetResponseTimeout (line 476) | public TimeSpan GetResponseTimeout() => this.sharedCallbackData.Respon... method SetResponseTimeout (line 479) | public void SetResponseTimeout(TimeSpan timeout) => this.sharedCallbac... method CreateObjectReference (line 481) | public IAddressable CreateObjectReference(IAddressable obj) method DeleteObjectReference (line 487) | public void DeleteObjectReference(IAddressable obj) method OnRuntimeInitializeStop (line 499) | private async Task OnRuntimeInitializeStop(CancellationToken tc) method OnRuntimeInitializeStart (line 508) | private Task OnRuntimeInitializeStart(CancellationToken tc) type ValueStopwatchLogValue (line 518) | private readonly struct ValueStopwatchLogValue(ValueStopwatch stopWatch) method ToString (line 520) | override public string ToString() method BreakOutstandingMessagesToSilo (line 527) | public void BreakOutstandingMessagesToSilo(SiloAddress deadSilo) method Participate (line 538) | public void Participate(ISiloLifecycle lifecycle) method GetRunningRequestsCount (line 546) | public int GetRunningRequestsCount(GrainInterfaceType grainInterfaceType) method MonitorCallbackExpiry (line 549) | private async Task MonitorCallbackExpiry() method LogWarningSniffIncomingMessage (line 576) | [LoggerMessage( method LogGrainInvokeException (line 582) | [LoggerMessage( method LogWarningInvokeException (line 587) | [LoggerMessage( method LogWarningResponseFailed (line 593) | [LoggerMessage( method LogWarningSendExceptionResponseFailed (line 599) | [LoggerMessage( method LogWarningUnhandledExceptionInInvoke (line 605) | [LoggerMessage( method LogTraceNoCallbackForRejection (line 611) | [LoggerMessage( method LogHandleMessage (line 617) | [LoggerMessage( method LogDeactivatingInconsistentState (line 623) | [LoggerMessage( method LogErrorUnsupportedRejectionType (line 628) | [LoggerMessage( method LogInformationReceivedStatusUpdate (line 634) | [LoggerMessage( method LogInformationReceivedStatusUpdateUnknownRequest (line 639) | [LoggerMessage( method LogDebugNoCallbackForResponse (line 644) | [LoggerMessage( method LogDebugSiloStartPerfMeasure (line 650) | [LoggerMessage( method LogWarningWhileProcessingCallbackExpiry (line 657) | [LoggerMessage( FILE: src/Orleans.Runtime/Core/InternalClusterClient.cs class InternalClusterClient (line 8) | internal class InternalClusterClient : IInternalClusterClient method InternalClusterClient (line 16) | public InternalClusterClient(IRuntimeClient runtimeClient, IInternalGr... method GetGrain (line 29) | public TGrainInterface GetGrain(Guid primaryKey, stri... method GetGrain (line 36) | public TGrainInterface GetGrain(long primaryKey, stri... method GetGrain (line 43) | public TGrainInterface GetGrain(string primaryKey, st... method GetGrain (line 50) | public TGrainInterface GetGrain(Guid primaryKey, stri... method GetGrain (line 57) | public TGrainInterface GetGrain(long primaryKey, stri... method CreateObjectReference (line 64) | public TGrainObserverInterface CreateObjectReference(IGrainObser... method CreateObjectReference (line 77) | public TGrainObserverInterface CreateObjectReference... method GetSystemTarget (line 90) | TGrainInterface IInternalGrainFactory.GetSystemTarget... method Cast (line 96) | TGrainInterface IInternalGrainFactory.Cast(IAddressab... method Cast (line 102) | object IInternalGrainFactory.Cast(IAddressable grain, Type interfaceType) method GetGrain (line 108) | TGrainInterface IGrainFactory.GetGrain(GrainId grainId) method GetGrain (line 114) | IAddressable IGrainFactory.GetGrain(GrainId grainId) method GetGrain (line 120) | public IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey) method GetGrain (line 126) | public IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey) method GetGrain (line 132) | public IGrain GetGrain(Type grainInterfaceType, string grainPrimaryKey) method GetGrain (line 138) | public IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey, ... method GetGrain (line 144) | public IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey, ... method GetGrain (line 150) | public IAddressable GetGrain(GrainId grainId, GrainInterfaceType inter... method GetGrain (line 156) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey, stri... method GetGrain (line 162) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey) FILE: src/Orleans.Runtime/Core/InternalGrainRuntime.cs class InternalGrainRuntime (line 13) | internal class InternalGrainRuntime( FILE: src/Orleans.Runtime/Core/ManagementGrain.cs class ManagementGrain (line 21) | [StatelessWorker, Reentrant] method ManagementGrain (line 34) | public ManagementGrain( method GetHosts (line 55) | public async Task> GetHosts(bool o... method GetDetailedHosts (line 61) | public async Task GetDetailedHosts(bool onlyActive ... method ForceGarbageCollection (line 85) | public Task ForceGarbageCollection(SiloAddress[] siloAddresses) method ForceActivationCollection (line 94) | public Task ForceActivationCollection(SiloAddress[] siloAddresses, Tim... method ForceActivationCollection (line 101) | public async Task ForceActivationCollection(TimeSpan ageLimit) method ForceRuntimeStatisticsCollection (line 108) | public Task ForceRuntimeStatisticsCollection(SiloAddress[] siloAddresses) method GetRuntimeStatistics (line 118) | public Task GetRuntimeStatistics(SiloAddress[... method GetSimpleGrainStatistics (line 129) | public async Task GetSimpleGrainStatistics(Sil... method GetSimpleGrainStatistics (line 138) | public async Task GetSimpleGrainStatistics() method GetDetailedGrainStatistics (line 145) | public async Task GetDetailedGrainStatistics... method GetGrainActivationCount (line 159) | public async Task GetGrainActivationCount(GrainReference grainRef... method SetCompatibilityStrategy (line 172) | public async Task SetCompatibilityStrategy(CompatibilityStrategy strat... method SetSelectorStrategy (line 179) | public async Task SetSelectorStrategy(VersionSelectorStrategy strategy) method SetCompatibilityStrategy (line 186) | public async Task SetCompatibilityStrategy(GrainInterfaceType interfac... method SetSelectorStrategy (line 194) | public async Task SetSelectorStrategy(GrainInterfaceType interfaceType... method GetTotalActivationCount (line 202) | public async Task GetTotalActivationCount() method SendControlCommandToProvider (line 218) | public Task SendControlCommandToProvider(string providerN... method GetActivationAddress (line 224) | public ValueTask GetActivationAddress(IAddressable refere... method CheckIfIsExistingInterface (line 270) | private void CheckIfIsExistingInterface(GrainInterfaceType interfaceType) method SetStrategy (line 288) | private async Task SetStrategy(Func storeFunc, Fu... method ExecutePerSiloCall (line 306) | private async Task ExecutePerSiloCall(Func PerformPerSiloAction(SiloAddress[] siloAddre... method GetSiloControlReference (line 347) | private ISiloControl GetSiloControlReference(SiloAddress silo) method GetActiveGrains (line 352) | public async ValueTask> GetActiveGrains(GrainType grainT... method GetGrainCallFrequencies (line 371) | public async Task> GetGrainCallFrequencies(Si... method ResetGrainCallFrequencies (line 400) | public async ValueTask ResetGrainCallFrequencies(SiloAddress[] hostsId... type SiloAddressesLogValue (line 415) | private readonly struct SiloAddressesLogValue(SiloAddress[] siloAddres... method ToString (line 417) | public override string ToString() => Utils.EnumerableToString(siloAd... method LogInformationForceGarbageCollection (line 420) | [LoggerMessage( method LogInformationForceRuntimeStatisticsCollection (line 426) | [LoggerMessage( method LogDebugGetRuntimeStatistics (line 432) | [LoggerMessage( type SiloAddressesKeysLogValue (line 438) | private readonly struct SiloAddressesKeysLogValue(Dictionary Utils.EnumerableToString(silos.... method LogDebugExecutingAction (line 443) | [LoggerMessage( FILE: src/Orleans.Runtime/Core/SystemStatus.cs class SystemStatus (line 9) | internal sealed class SystemStatus : IEquatable type InternalSystemStatus (line 11) | private enum InternalSystemStatus method SystemStatus (line 56) | private SystemStatus(InternalSystemStatus name) { this.value = name; } method ToString (line 59) | public override string ToString() { return this.value.ToString(); } method GetHashCode (line 61) | public override int GetHashCode() { return this.value.GetHashCode(); } method Equals (line 63) | public override bool Equals(object obj) { var ss = obj as SystemStatus... method Equals (line 65) | public bool Equals(SystemStatus other) { return (other != null) && thi... FILE: src/Orleans.Runtime/Core/SystemTarget.cs class SystemTarget (line 15) | public abstract partial class SystemTarget : ISystemTarget, ISystemTarge... method SystemTarget (line 62) | [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBro... method SystemTarget (line 66) | internal SystemTarget(GrainType grainType, SystemTargetShared shared) method SystemTarget (line 71) | internal SystemTarget(SystemTargetGrainId grainId, SystemTargetShared ... method GetComponent (line 102) | public TComponent? GetComponent() method SetComponent (line 126) | public void SetComponent(TComponent? instance) where TComp... method HandleNewRequest (line 142) | internal async Task HandleNewRequest(Message request) method HandleResponse (line 161) | internal void HandleResponse(Message response) method RegisterTimer (line 183) | public IGrainTimer RegisterTimer(Func callback, object?... method RegisterGrainTimer (line 207) | public IGrainTimer RegisterGrainTimer(Func ca... method RegisterGrainTimer (line 234) | public IGrainTimer RegisterGrainTimer(Func $"{this}"; method ToString (line 246) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 248) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method ToDetailedString (line 252) | internal string ToDetailedString() method Equals (line 261) | bool IEquatable.Equals(IGrainContext? other) => Referen... method GetOrSetExtension (line 264) | public (TExtension, TExtensionInterface) GetOrSetExtension() method ReceiveMessage (line 345) | public void ReceiveMessage(object message) method GetTarget (line 372) | public object? GetTarget() => this; method Activate (line 375) | public void Activate(Dictionary? requestContext, Cance... method Deactivate (line 378) | public void Deactivate(DeactivationReason deactivationReason, Cancella... method Dispose (line 383) | public void Dispose() method Rehydrate (line 393) | public void Rehydrate(IRehydrationContext context) method Migrate (line 399) | public void Migrate(Dictionary? requestContext, Cancel... method OnTimerCreated (line 404) | void IGrainTimerRegistry.OnTimerCreated(IGrainTimer timer) { lock (_ti... method OnTimerDisposed (line 405) | void IGrainTimerRegistry.OnTimerDisposed(IGrainTimer timer) { lock (_t... method StopAllTimers (line 406) | private void StopAllTimers() method CheckRuntimeContext (line 421) | internal void CheckRuntimeContext() method LogInvalidMessage (line 437) | [LoggerMessage( method CancelRequestAsync (line 444) | ValueTask IGrainCallCancellationExtension.CancelRequestAsync(GrainId s... method CancelRequestAsyncCore (line 447) | private ValueTask CancelRequestAsyncCore(GrainId senderGrainId, Correl... method LogErrorCancellationCallbackFailed (line 519) | [LoggerMessage( FILE: src/Orleans.Runtime/Development/DevelopmentSiloBuilderExtensions.cs class DevelopmentSiloBuilderExtensions (line 10) | public static class DevelopmentSiloBuilderExtensions method UseInMemoryLeaseProvider (line 20) | public static ISiloBuilder UseInMemoryLeaseProvider(this ISiloBuilder ... method UseInMemoryLeaseProvider (line 25) | private static void UseInMemoryLeaseProvider(IServiceCollection services) FILE: src/Orleans.Runtime/Development/InMemoryLeaseProvider.cs class InMemoryLeaseProvider (line 15) | public class InMemoryLeaseProvider : ILeaseProvider method InMemoryLeaseProvider (line 23) | public InMemoryLeaseProvider(IGrainFactory grainFactory) method Acquire (line 29) | public async Task Acquire(string category, Lease... method Release (line 41) | public Task Release(string category, AcquiredLease[] acquiredLeases) method Renew (line 47) | public async Task Renew(string category, Acquire... method GetLeaseProviderGrain (line 59) | private static IDevelopmentLeaseProviderGrain GetLeaseProviderGrain(IG... type IDevelopmentLeaseProviderGrain (line 65) | internal interface IDevelopmentLeaseProviderGrain : ILeaseProvider, IGra... method Reset (line 71) | Task Reset(); class DevelopmentLeaseProviderGrain (line 79) | internal class DevelopmentLeaseProviderGrain : Grain, IDevelopmentLeaseP... method Acquire (line 83) | public Task Acquire(string category, LeaseReques... method Release (line 88) | public Task Release(string category, AcquiredLease[] acquiredLeases) method Renew (line 97) | public Task Renew(string category, AcquiredLease... method Reset (line 102) | public Task Reset() method Acquire (line 108) | private AcquireLeaseResult Acquire(string category, LeaseRequest lease... method Release (line 120) | private void Release(string category, AcquiredLease acquiredLease) method Renew (line 129) | private AcquireLeaseResult Renew(string category, AcquiredLease acquir... class Lease (line 142) | private class Lease FILE: src/Orleans.Runtime/Facet/GrainConstructorArgumentFactory.cs class GrainConstructorArgumentFactory (line 12) | public class GrainConstructorArgumentFactory method GrainConstructorArgumentFactory (line 23) | public GrainConstructorArgumentFactory(IServiceProvider serviceProvide... method CreateArguments (line 62) | public object[] CreateArguments(IGrainContext grainContext) method GetArgumentFactory (line 74) | private static Factory GetArgumentFactory method GetFactory (line 17) | Factory GetFactory(ParameterInfo parameter, TMe... FILE: src/Orleans.Runtime/Facet/IFacetMetadata.cs type IFacetMetadata (line 7) | public interface IFacetMetadata FILE: src/Orleans.Runtime/Facet/Persistent/IPersistentState.cs type IPersistentState (line 10) | public interface IPersistentState : IStorage FILE: src/Orleans.Runtime/Facet/Persistent/IPersistentStateConfiguration.cs type IPersistentStateConfiguration (line 8) | public interface IPersistentStateConfiguration FILE: src/Orleans.Runtime/Facet/Persistent/IPersistentStateFactory.cs type IPersistentStateFactory (line 7) | public interface IPersistentStateFactory method Create (line 16) | IPersistentState Create(IGrainContext context, IPersis... FILE: src/Orleans.Runtime/Facet/Persistent/PersistentStateAttribute.cs class PersistentStateAttribute (line 11) | [AttributeUsage(AttributeTargets.Parameter)] method PersistentStateAttribute (line 19) | public PersistentStateAttribute(string stateName, string storageName =... FILE: src/Orleans.Runtime/Facet/Persistent/PersistentStateAttributeMapper.cs class PersistentStateAttributeMapper (line 11) | public class PersistentStateAttributeMapper : IAttributeToFactoryMapper<... method GetFactory (line 16) | public Factory GetFactory(ParameterInfo paramet... method Create (line 38) | private static object Create(IGrainContext context, MethodInfo generic... class PersistentStateConfiguration (line 45) | private class PersistentStateConfiguration : IPersistentStateConfigura... FILE: src/Orleans.Runtime/Facet/Persistent/PersistentStateStorageFactory.cs class PersistentStateFactory (line 18) | public class PersistentStateFactory : IPersistentStateFactory method Create (line 21) | public IPersistentState Create(IGrainContext context, ... method GetFullStateName (line 35) | protected virtual string GetFullStateName(IGrainContext context, IPers... method ThrowMissingProviderException (line 40) | [DoesNotReturn] class PersistentState (line 57) | internal sealed class PersistentState : StateStorageBridge T... FILE: src/Orleans.Runtime/GrainDirectory/CachedGrainLocator.cs class CachedGrainLocator (line 16) | internal class CachedGrainLocator : IGrainLocator, ILifecycleParticipant... type ITestAccessor (line 26) | internal interface ITestAccessor method CachedGrainLocator (line 33) | public CachedGrainLocator( method Lookup (line 44) | public async ValueTask Lookup(GrainId grainId) method Register (line 82) | public async Task Register(GrainAddress address, GrainAd... method Unregister (line 121) | public async Task Unregister(GrainAddress address, UnregistrationCause... method Participate (line 136) | public void Participate(ISiloLifecycle lifecycle) method GetGrainDirectory (line 154) | private IGrainDirectory GetGrainDirectory(GrainType grainType) => this... method ListenToClusterChange (line 156) | private async Task ListenToClusterChange() method IsKnownDeadSilo (line 186) | private bool IsKnownDeadSilo(GrainAddress grainAddress) method IsKnownDeadSilo (line 189) | private bool IsKnownDeadSilo(SiloAddress siloAddress, MembershipVersio... method ThrowUnsupportedGrainType (line 205) | private static void ThrowUnsupportedGrainType(GrainId grainId) => thro... method UpdateCache (line 207) | public void UpdateCache(GrainId grainId, SiloAddress siloAddress) => c... method InvalidateCache (line 208) | public void InvalidateCache(GrainId grainId) => cache.Remove(grainId); method InvalidateCache (line 209) | public void InvalidateCache(GrainAddress address) => cache.Remove(addr... method TryLookupInCache (line 210) | public bool TryLookupInCache(GrainId grainId, out GrainAddress address) FILE: src/Orleans.Runtime/GrainDirectory/ClientDirectory.cs class ClientDirectory (line 32) | internal sealed partial class ClientDirectory : SystemTarget, ILocalClie... method ClientDirectory (line 64) | public ClientDirectory( method Lookup (line 88) | public ValueTask> Lookup(GrainId grainId) method TryLocalLookup (line 147) | public bool TryLocalLookup(GrainId grainId, [NotNullWhen(true)] out Li... method EnsureRefreshed (line 160) | private void EnsureRefreshed() method OnUpdateClientRoutes (line 180) | public Task OnUpdateClientRoutes(ImmutableDictionary Clients, long Version) GetConnected... method Run (line 349) | private async Task Run() method ShouldPublish (line 403) | private bool ShouldPublish() method SchedulePublishUpdates (line 430) | private void SchedulePublishUpdates() method PublishUpdates (line 443) | private async Task PublishUpdates() method Participate (line 522) | void ILifecycleParticipant.Participate(ISiloLifecycle ... class TestAccessor (line 549) | internal class TestAccessor(ClientDirectory instance) method PublishUpdates (line 553) | public Task PublishUpdates() => instance.PublishUpdates(); method LogErrorCallingRemoteClientDirectory (line 556) | [LoggerMessage( method LogErrorPublishingClientRoutingTable (line 562) | [LoggerMessage( method LogDebugSkippingPublishingRoutes (line 568) | [LoggerMessage( method LogDebugPublishingRoutes (line 574) | [LoggerMessage( method LogDebugSuccessfullyPublishedRoutes (line 580) | [LoggerMessage( method LogErrorPublishingClientRoutingTableToSilo (line 586) | [LoggerMessage( method LogDebugClientTableUpdated (line 592) | [LoggerMessage( method LogDebugClientTableNotUpdated (line 599) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/ClientGrainLocator.cs class ClientGrainLocator (line 11) | internal class ClientGrainLocator : IGrainLocator method ClientGrainLocator (line 16) | public ClientGrainLocator(ILocalSiloDetails localSiloDetails, ILocalCl... method Lookup (line 22) | public async ValueTask Lookup(GrainId grainId) method SelectAddress (line 33) | private GrainAddress SelectAddress(List results, GrainId... method Register (line 61) | public Task Register(GrainAddress address, GrainAddress ... method Unregister (line 63) | public Task Unregister(GrainAddress address, UnregistrationCause cause... method ThrowNotClientGrainId (line 65) | private static void ThrowNotClientGrainId(GrainId grainId) => throw ne... method UpdateCache (line 67) | public void UpdateCache(GrainId grainId, SiloAddress siloAddress) { } method InvalidateCache (line 69) | public void InvalidateCache(GrainId grainId) { } method InvalidateCache (line 71) | public void InvalidateCache(GrainAddress address) { } method TryLookupInCache (line 73) | public bool TryLookupInCache(GrainId grainId, out GrainAddress address) FILE: src/Orleans.Runtime/GrainDirectory/DhtGrainLocator.cs class DhtGrainLocator (line 14) | internal class DhtGrainLocator : IGrainLocator method DhtGrainLocator (line 26) | public DhtGrainLocator( method Lookup (line 34) | public async ValueTask Lookup(GrainId grainId) => (await... method Register (line 36) | public async Task Register(GrainAddress address, GrainAd... method Unregister (line 38) | public Task Unregister(GrainAddress address, UnregistrationCause cause) method FromLocalGrainDirectory (line 75) | public static DhtGrainLocator FromLocalGrainDirectory(LocalGrainDirect... method UpdateCache (line 78) | public void UpdateCache(GrainId grainId, SiloAddress siloAddress) => _... method InvalidateCache (line 79) | public void InvalidateCache(GrainId grainId) => _localGrainDirectory.I... method InvalidateCache (line 80) | public void InvalidateCache(GrainAddress address) => _localGrainDirect... method TryLookupInCache (line 81) | public bool TryLookupInCache(GrainId grainId, out GrainAddress address... class BatchedDeregistrationWorker (line 83) | private class BatchedDeregistrationWorker method BatchedDeregistrationWorker (line 94) | public BatchedDeregistrationWorker( method Unregister (line 111) | public Task Unregister(GrainAddress address) method ProcessDeregistrationQueue (line 118) | private async Task ProcessDeregistrationQueue() FILE: src/Orleans.Runtime/GrainDirectory/DirectoryMembershipService.cs class DirectoryMembershipService (line 14) | internal sealed partial class DirectoryMembershipService : IAsyncDisposable method RefreshViewAsync (line 28) | public async ValueTask RefreshViewAsync(M... method DirectoryMembershipService (line 45) | public DirectoryMembershipService(ClusterMembershipService clusterMemb... method ProcessMembershipUpdates (line 58) | private async Task ProcessMembershipUpdates() method DisposeAsync (line 87) | public async ValueTask DisposeAsync() method LogErrorProcessingMembershipUpdates (line 93) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/DirectoryMembershipSnapshot.cs class DirectoryMembershipSnapshot (line 17) | internal sealed class DirectoryMembershipSnapshot method DirectoryMembershipSnapshot (line 25) | public DirectoryMembershipSnapshot(ClusterMembershipSnapshot snapshot,... method DirectoryMembershipSnapshot (line 29) | internal DirectoryMembershipSnapshot(ClusterMembershipSnapshot snapsho... method GetRange (line 136) | public RingRange GetRange(SiloAddress address, int partitionIndex) method GetMemberRanges (line 156) | public RingRangeCollection GetMemberRanges(SiloAddress address) method GetMemberRangesByPartition (line 174) | public ImmutableArray GetMemberRangesByPartition(SiloAddres... method GetMemberRangesByPartition (line 186) | private ImmutableArray GetMemberRangesByPartition(int membe... method GetRangeInfo (line 197) | private (RingRange Range, int MemberIndex, int PartitionIndex) GetRang... method GetRangeCore (line 207) | private RingRange GetRangeCore(int index) method TryGetMemberIndex (line 231) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method TryGetOwner (line 250) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method TryGetOwner (line 253) | [MethodImpl(MethodImplOptions.AggressiveInlining)] type RangeCollection (line 275) | public readonly struct RangeCollection(DirectoryMembershipSnapshot sna... method GetEnumerator (line 281) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); method GetEnumerator (line 282) | IEnumerator<(RingRange Range, int MemberIndex, int PartitionIndex)> ... method GetEnumerator (line 283) | public RangeCollectionEnumerator GetEnumerator() => new(snapshot); type RangeCollectionEnumerator (line 285) | public struct RangeCollectionEnumerator(DirectoryMembershipSnapshot ... method Dispose (line 292) | public void Dispose() => _index = int.MaxValue; method MoveNext (line 293) | public bool MoveNext() method Reset (line 303) | public void Reset() => _index = 0; FILE: src/Orleans.Runtime/GrainDirectory/DirectoryResult.cs class DirectoryResult (line 6) | internal static class DirectoryResult method FromResult (line 8) | public static DirectoryResult FromResult(T result, MembershipVer... method RefreshRequired (line 9) | public static DirectoryResult RefreshRequired(MembershipVersion ... method TryGetResult (line 21) | public bool TryGetResult(MembershipVersion version, [NotNullWhen(true)... type DirectoryResult (line 12) | [GenerateSerializer, Alias("DirectoryResult`1"), Immutable] method FromResult (line 8) | public static DirectoryResult FromResult(T result, MembershipVer... method RefreshRequired (line 9) | public static DirectoryResult RefreshRequired(MembershipVersion ... method TryGetResult (line 21) | public bool TryGetResult(MembershipVersion version, [NotNullWhen(true)... FILE: src/Orleans.Runtime/GrainDirectory/DistributedGrainDirectory.cs class DistributedGrainDirectory (line 60) | internal sealed partial class DistributedGrainDirectory : SystemTarget, ... method DistributedGrainDirectory (line 83) | public DistributedGrainDirectory( method Lookup (line 104) | public async Task Lookup(GrainId grainId) => await Invo... method Register (line 110) | public async Task Register(GrainAddress address) => awa... method Unregister (line 116) | public async Task Unregister(GrainAddress address) => await InvokeAsync( method Register (line 122) | public async Task Register(GrainAddress address, GrainA... method UnregisterSilos (line 128) | public Task UnregisterSilos(List siloAddresses) => Task.C... method InvokeAsync (line 130) | private async Task InvokeAsync( method RecoverRegisteredActivations (line 201) | public async ValueTask>> RecoverRegistere... method GetRegisteredActivations (line 211) | public async ValueTask>> GetRegisteredAct... method RefreshViewAsync (line 302) | internal ValueTask RefreshViewAsync(Membe... method Participate (line 304) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method ProcessMembershipUpdates (line 343) | private async Task ProcessMembershipUpdates() method GetPrimaryForGrain (line 400) | SiloAddress? ITestHooks.GetPrimaryForGrain(GrainId grainId) method GetLocalRecord (line 406) | async Task ITestHooks.GetLocalRecord(GrainId grainId) type ITestHooks (line 421) | internal interface ITestHooks method GetPrimaryForGrain (line 423) | SiloAddress? GetPrimaryForGrain(GrainId grainId); method GetLocalRecord (line 424) | Task GetLocalRecord(GrainId grainId); method LogDebugUpdatedView (line 427) | [LoggerMessage( method LogErrorProcessingMembershipUpdates (line 433) | [LoggerMessage( method LogTraceInvokedOperation (line 439) | [LoggerMessage( method LogDebugCollectingRegisteredActivations (line 445) | [LoggerMessage( method LogWarningFailedToDeactivateActivation (line 451) | [LoggerMessage( method LogTraceSendingActivationForRecovery (line 457) | [LoggerMessage( method LogDebugSubmittingRegisteredActivations (line 463) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/GenericGrainDirectoryResolver.cs class GenericGrainDirectoryResolver (line 8) | internal class GenericGrainDirectoryResolver : IGrainDirectoryResolver method GenericGrainDirectoryResolver (line 13) | public GenericGrainDirectoryResolver(IServiceProvider services) method TryResolveGrainDirectory (line 18) | public bool TryResolveGrainDirectory(GrainType grainType, GrainPropert... method GetResolver (line 34) | private GrainDirectoryResolver GetResolver() => _resolver ??= _service... FILE: src/Orleans.Runtime/GrainDirectory/GrainDirectoryCacheFactory.cs class GrainDirectoryCacheFactory (line 12) | public static class GrainDirectoryCacheFactory method CreateGrainDirectoryCache (line 20) | public static IGrainDirectoryCache CreateGrainDirectoryCache(IServiceP... method CreateCustomGrainDirectoryCache (line 40) | internal static IGrainDirectoryCache CreateCustomGrainDirectoryCache(I... class NullGrainDirectoryCache (line 54) | internal sealed class NullGrainDirectoryCache : IGrainDirectoryCache method AddOrUpdate (line 56) | public void AddOrUpdate(GrainAddress value, int version) method Remove (line 60) | public bool Remove(GrainId key) => false; method Remove (line 62) | public bool Remove(GrainAddress key) => false; method Clear (line 64) | public void Clear() method LookUp (line 68) | public bool LookUp(GrainId key, out GrainAddress result, out int version) FILE: src/Orleans.Runtime/GrainDirectory/GrainDirectoryHandoffManager.cs class GrainDirectoryHandoffManager (line 16) | internal sealed partial class GrainDirectoryHandoffManager method GrainDirectoryHandoffManager (line 28) | internal GrainDirectoryHandoffManager( method ProcessSiloAddEvent (line 42) | internal void ProcessSiloAddEvent(SiloAddress addedSilo) method ProcessAddedSiloAsync (line 72) | private async Task ProcessAddedSiloAsync(SiloAddress addedSilo, List singleAct... method AcceptExistingRegistrationsAsync (line 109) | private async Task AcceptExistingRegistrationsAsync(List... method DestroyDuplicateActivations (line 150) | private void DestroyDuplicateActivations(Dictionary grai... method ToString (line 285) | public override string ToString() => string.Join("\n * ", grainAddre... method LogDebugDestroyingDuplicates (line 288) | [LoggerMessage( method LogWarningOperationFailedRetry (line 294) | [LoggerMessage( method LogWarningOperationFailedNoRetry (line 300) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/GrainDirectoryPartition.Interface.cs class GrainDirectoryPartition (line 11) | internal sealed partial class GrainDirectoryPartition method RegisterAsync (line 13) | async ValueTask> IGrainDirectoryPartitio... method LookupAsync (line 29) | async ValueTask> IGrainDirectoryPartiti... method DeregisterAsync (line 43) | async ValueTask> IGrainDirectoryPartition.Deregi... method DeregisterCore (line 58) | private bool DeregisterCore(GrainAddress address) method LookupCore (line 68) | internal GrainAddress? LookupCore(GrainId grainId) method RegisterCore (line 78) | private GrainAddress RegisterCore(GrainAddress newAddress, GrainAddres... method IsSiloDead (line 102) | private bool IsSiloDead(GrainAddress existing) => _owner.ClusterMember... method LogRegisterAsync (line 104) | [LoggerMessage( method LogLookupAsync (line 110) | [LoggerMessage( method LogDeregisterAsync (line 116) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/GrainDirectoryPartition.cs class GrainDirectoryPartition (line 22) | internal sealed partial class GrainDirectoryPartition : SystemTarget, IG... method CreateGrainId (line 24) | internal static SystemTargetGrainId CreateGrainId(SiloAddress siloAddr... method GrainDirectoryPartition (line 52) | public GrainDirectoryPartition( method RefreshViewAsync (line 69) | public async ValueTask RefreshViewAsync(M... method GetSnapshotAsync (line 86) | async ValueTask IGrainDirectoryParti... method AcknowledgeSnapshotTransferAsync (line 121) | ValueTask IGrainDirectoryPartition.AcknowledgeSnapshotTransferAs... method RemoveSnapshotTransferPartner (line 130) | private void RemoveSnapshotTransferPartner(TState state, Func<... method DebugAssertOwnership (line 158) | [Conditional("DEBUG")] method DebugAssertOwnership (line 161) | [Conditional("DEBUG")] method IsOwner (line 180) | private bool IsOwner(DirectoryMembershipSnapshot view, GrainId grainId... method WaitForRange (line 182) | private ValueTask WaitForRange(GrainId grainId, MembershipVersion vers... method WaitForRange (line 184) | private ValueTask WaitForRange(RingRange range, MembershipVersion vers... method GetPartitionReference (line 229) | public IGrainDirectoryPartition GetPartitionReference(SiloAddress addr... method OnShuttingDown (line 231) | internal async Task OnShuttingDown(CancellationToken token) method OnSiloRemovedFromClusterAsync (line 242) | internal Task OnSiloRemovedFromClusterAsync(ClusterMember change) => method OnSiloRemovedFromCluster (line 248) | private void OnSiloRemovedFromCluster(ClusterMember change) method OnRecoveringPartition (line 276) | internal Task OnRecoveringPartition(MembershipVersion version, RingRan... method ProcessMembershipUpdateAsync (line 296) | internal Task ProcessMembershipUpdateAsync(DirectoryMembershipSnapshot... method ProcessMembershipUpdate (line 302) | private void ProcessMembershipUpdate(DirectoryMembershipSnapshot current) method ReleaseRangeAsync (line 346) | private async Task ReleaseRangeAsync(DirectoryMembershipSnapshot previ... method AcquireRangeAsync (line 415) | private async Task AcquireRangeAsync(DirectoryMembershipSnapshot previ... method LockRange (line 483) | private (TaskCompletionSource Lock, ValueStopwatch Stopwatch) LockRang... method UnlockRange (line 490) | private void UnlockRange(RingRange range, MembershipVersion version, T... method TransferSnapshotAsync (line 505) | private async Task TransferSnapshotAsync(DirectoryMembershipSnap... method RecoverPartitionRange (line 564) | private async Task RecoverPartitionRange(DirectoryMembershipSnapshot c... method GetRegisteredActivations (line 586) | private async IAsyncEnumerable> GetRegisteredActiva... method InvokeOnClusterMember (line 644) | private async Task InvokeOnClusterMember(SiloAddress siloAddress... method CheckIntegrityAsync (line 680) | async ValueTask IGrainDirectoryTestHooks.CheckIntegrityAsync() type PartitionSnapshotState (line 754) | private sealed record class PartitionSnapshotState( method LogTraceGetSnapshotAsync (line 759) | [LoggerMessage( method LogDebugTransferringEntries (line 765) | [LoggerMessage( method LogWarningRequestForSnapshot (line 771) | [LoggerMessage( method LogDebugRemovingSnapshot (line 777) | [LoggerMessage( method LogDebugDeletingEntries (line 783) | [LoggerMessage( method LogWarningErrorWaitingForRangeToUnlock (line 789) | [LoggerMessage( method LogTraceObservedMembershipVersion (line 795) | [LoggerMessage( method LogDebugRelinquishingOwnership (line 801) | [LoggerMessage( method LogTraceEvictingEntry (line 807) | [LoggerMessage( method LogDebugEncounteredNonContiguousUpdate (line 813) | [LoggerMessage( method LogDebugNoTransferPartners (line 819) | [LoggerMessage( method LogDebugAcquiringRange (line 825) | [LoggerMessage( method LogDebugNonContiguousViewChange (line 831) | [LoggerMessage( method LogDebugCompletedTransferringEntries (line 837) | [LoggerMessage( method LogTraceRequestingEntries (line 843) | [LoggerMessage( method LogWarningExpectedValidSnapshot (line 849) | [LoggerMessage( method LogTraceReceivedEntry (line 855) | [LoggerMessage( method LogDebugTransferredEntries (line 861) | [LoggerMessage( method LogWarningRemoteHostUnavailable (line 867) | [LoggerMessage( method LogWarningErrorTransferringOwnership (line 873) | [LoggerMessage( method LogDebugRecoveringActivations (line 879) | [LoggerMessage( method LogTraceRecoveredEntry (line 885) | [LoggerMessage( method LogDebugCompletedRecoveringActivations (line 891) | [LoggerMessage( method LogDebugRecoveredEntries (line 897) | [LoggerMessage( method LogErrorErrorInvokingOperation (line 903) | [LoggerMessage( method LogErrorIntegrityViolation (line 909) | [LoggerMessage( method LogErrorIntegrityViolation (line 915) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/GrainDirectoryPartitionSnapshot.cs class GrainDirectoryPartitionSnapshot (line 6) | [GenerateSerializer, Alias(nameof(GrainDirectoryPartitionSnapshot)), Imm... FILE: src/Orleans.Runtime/GrainDirectory/GrainDirectoryResolver.cs class GrainDirectoryResolver (line 12) | internal class GrainDirectoryResolver method GrainDirectoryResolver (line 20) | public GrainDirectoryResolver( method Resolve (line 44) | public IGrainDirectory Resolve(GrainType grainType) => this.directoryP... method IsUsingDefaultDirectory (line 46) | public bool IsUsingDefaultDirectory(GrainType grainType) => Resolve(gr... method GetGrainDirectoryPerType (line 48) | private IGrainDirectory GetGrainDirectoryPerType(GrainType grainType) method TryGetNonDefaultGrainDirectory (line 58) | internal bool TryGetNonDefaultGrainDirectory(GrainType grainType, out ... FILE: src/Orleans.Runtime/GrainDirectory/GrainLocator.cs class GrainLocator (line 12) | internal class GrainLocator method GrainLocator (line 16) | public GrainLocator(GrainLocatorResolver grainLocatorResolver) method Lookup (line 21) | public ValueTask Lookup(GrainId grainId) => GetGrainLoc... method Register (line 23) | public Task Register(GrainAddress address, GrainAddress... method Unregister (line 25) | public Task Unregister(GrainAddress address, UnregistrationCause cause... method TryLookupInCache (line 27) | public bool TryLookupInCache(GrainId grainId, [NotNullWhen(true)] out ... method InvalidateCache (line 29) | public void InvalidateCache(GrainId grainId) => GetGrainLocator(grainI... method InvalidateCache (line 31) | public void InvalidateCache(GrainAddress address) => GetGrainLocator(a... method GetGrainLocator (line 33) | private IGrainLocator GetGrainLocator(GrainType grainType) => _grainLo... method UpdateCache (line 35) | public void UpdateCache(GrainId grainId, SiloAddress siloAddress) => G... method UpdateCache (line 37) | public void UpdateCache(GrainAddressCacheUpdate update) FILE: src/Orleans.Runtime/GrainDirectory/GrainLocatorResolver.cs class GrainLocatorResolver (line 8) | internal class GrainLocatorResolver method GrainLocatorResolver (line 18) | public GrainLocatorResolver( method GetGrainLocator (line 31) | public IGrainLocator GetGrainLocator(GrainType grainType) => resolvedL... method GetGrainLocatorInternal (line 33) | public IGrainLocator GetGrainLocatorInternal(GrainType grainType) FILE: src/Orleans.Runtime/GrainDirectory/IGrainDirectoryCache.cs type IGrainDirectoryCache (line 8) | public interface IGrainDirectoryCache method AddOrUpdate (line 17) | void AddOrUpdate(GrainAddress value, int version); method Remove (line 24) | bool Remove(GrainId key); method Remove (line 31) | bool Remove(GrainAddress key); method Clear (line 36) | void Clear(); method LookUp (line 45) | bool LookUp(GrainId key, out GrainAddress result, out int version); class GrainDirectoryCacheExtensions (line 53) | internal static class GrainDirectoryCacheExtensions method LookUp (line 62) | public static bool LookUp(this IGrainDirectoryCache cache, GrainId key... FILE: src/Orleans.Runtime/GrainDirectory/IGrainDirectoryPartition.cs type IGrainDirectoryPartition (line 8) | [Alias("IGrainDirectoryPartition")] method RegisterAsync (line 11) | [Alias("RegisterAsync")] method LookupAsync (line 14) | [Alias("LookupAsync")] method DeregisterAsync (line 17) | [Alias("DeregisterAsync")] method GetSnapshotAsync (line 20) | [Alias("GetSnapshotAsync")] method AcknowledgeSnapshotTransferAsync (line 23) | [Alias("AcknowledgeSnapshotTransferAsync")] type IGrainDirectoryClient (line 27) | [Alias("IGrainDirectoryClient")] method GetRegisteredActivations (line 30) | [Alias("GetRegisteredActivations")] method RecoverRegisteredActivations (line 33) | [Alias("RecoverRegisteredActivations")] type IGrainDirectoryTestHooks (line 37) | [Alias("IGrainDirectoryTestHooks")] method CheckIntegrityAsync (line 40) | [Alias("CheckIntegrityAsync")] FILE: src/Orleans.Runtime/GrainDirectory/IGrainDirectoryResolver.cs type IGrainDirectoryResolver (line 10) | public interface IGrainDirectoryResolver method TryResolveGrainDirectory (line 19) | bool TryResolveGrainDirectory(GrainType grainType, GrainProperties pro... FILE: src/Orleans.Runtime/GrainDirectory/ILocalClientDirectory.cs type ILocalClientDirectory (line 6) | internal interface ILocalClientDirectory method TryLocalLookup (line 8) | bool TryLocalLookup(GrainId grainId, out List addresses); method Lookup (line 9) | ValueTask> Lookup(GrainId grainId); FILE: src/Orleans.Runtime/GrainDirectory/ILocalGrainDirectory.cs type ILocalGrainDirectory (line 9) | internal interface ILocalGrainDirectory : IDhtGrainDirectory method Start (line 14) | void Start(); method StopAsync (line 19) | Task StopAsync(); method UnregisterAfterNonexistingActivation (line 37) | Task UnregisterAfterNonexistingActivation(GrainAddress address, SiloAd... method LocalLookup (line 47) | bool LocalLookup(GrainId grain, out AddressAndTag addresses); method InvalidateCacheEntry (line 56) | void InvalidateCacheEntry(GrainAddress activation); method InvalidateCacheEntry (line 61) | void InvalidateCacheEntry(GrainId grainId); method AddOrUpdateCacheEntry (line 67) | void AddOrUpdateCacheEntry(GrainId grainId, SiloAddress siloAddress); method GetPrimaryForGrain (line 76) | SiloAddress? GetPrimaryForGrain(GrainId grain); method GetLocalDirectoryData (line 84) | AddressAndTag GetLocalDirectoryData(GrainId grain); method GetLocalCacheData (line 93) | GrainAddress? GetLocalCacheData(GrainId grain); method TryCachedLookup (line 98) | bool TryCachedLookup(GrainId grainId, [NotNullWhen(true)] out GrainAdd... method IsSiloInCluster (line 105) | bool IsSiloInCluster(SiloAddress silo); FILE: src/Orleans.Runtime/GrainDirectory/IRemoteClientDirectory.cs type IRemoteClientDirectory (line 6) | internal interface IRemoteClientDirectory : ISystemTarget method OnUpdateClientRoutes (line 8) | Task OnUpdateClientRoutes(ImmutableDictionary Conne... FILE: src/Orleans.Runtime/GrainDirectory/IRemoteGrainDirectory.cs type IRemoteGrainDirectory (line 11) | internal interface IRemoteGrainDirectory : ISystemTarget, IDhtGrainDirec... method RegisterMany (line 19) | Task RegisterMany(List addresses); method LookUpMany (line 30) | Task> LookUpMany(List<(GrainId GrainId, int Versio... method AcceptSplitPartition (line 37) | Task AcceptSplitPartition(List singleActivations); FILE: src/Orleans.Runtime/GrainDirectory/LocalGrainDirectory.cs class LocalGrainDirectory (line 18) | internal sealed partial class LocalGrainDirectory : ILocalGrainDirectory... method LocalGrainDirectory (line 48) | public LocalGrainDirectory( method Start (line 95) | public void Start() method StopAsync (line 110) | public Task StopAsync() method AddServer (line 125) | private void AddServer(SiloAddress silo) method RemoveServer (line 157) | private void RemoveServer(SiloAddress silo, SiloStatus status) method AdjustLocalDirectory (line 193) | private void AdjustLocalDirectory(SiloAddress silo, bool dead) method AdjustLocalCache (line 224) | private void AdjustLocalCache(SiloAddress silo, bool dead) method FindPredecessor (line 248) | internal SiloAddress? FindPredecessor(SiloAddress silo) method FindSuccessor (line 261) | internal SiloAddress? FindSuccessor(SiloAddress silo) method SiloStatusChangeNotification (line 274) | public void SiloStatusChangeNotification(SiloAddress updatedSilo, Silo... method IsValidSilo (line 292) | private bool IsValidSilo(SiloAddress? silo) => siloStatusOracle.IsFunc... method CalculateGrainDirectoryPartition (line 300) | public SiloAddress? CalculateGrainDirectoryPartition(GrainId grainId) method CheckIfShouldForward (line 372) | public SiloAddress? CheckIfShouldForward(GrainId grainId, int hopCount... method RegisterAsync (line 394) | public Task RegisterAsync(GrainAddress address, int hop... method RegisterAsync (line 396) | public async Task RegisterAsync(GrainAddress address, G... method UnregisterAfterNonexistingActivation (line 457) | public Task UnregisterAfterNonexistingActivation(GrainAddress addr, Si... method UnregisterAsync (line 474) | public async Task UnregisterAsync(GrainAddress address, Unregistration... method UnregisterOrPutInForwardList (line 517) | private void UnregisterOrPutInForwardList(List addresses... method UnregisterManyAsync (line 543) | public async Task UnregisterManyAsync(List addresses, Un... method LocalLookup (line 589) | public bool LocalLookup(GrainId grain, out AddressAndTag result) method GetLocalDirectoryData (line 646) | public AddressAndTag GetLocalDirectoryData(GrainId grain) => Directory... method GetLocalCacheData (line 648) | public GrainAddress? GetLocalCacheData(GrainId grain) => DirectoryCach... method LookupAsync (line 650) | public async Task LookupAsync(GrainId grainId, int hopC... method DeleteGrainAsync (line 720) | public async Task DeleteGrainAsync(GrainId grainId, int hopCount) method InvalidateCacheEntry (line 749) | public void InvalidateCacheEntry(GrainId grainId) method InvalidateCacheEntry (line 754) | public void InvalidateCacheEntry(GrainAddress activationAddress) method GetPrimaryForGrain (line 766) | public SiloAddress? GetPrimaryForGrain(GrainId grain) => CalculateGrai... method RingDistanceToSuccessor (line 768) | private long RingDistanceToSuccessor() => FindSuccessor(MyAddress) is ... method CalcRingDistance (line 770) | private static long CalcRingDistance(SiloAddress silo1, SiloAddress si... method GetDirectoryReference (line 782) | internal IRemoteGrainDirectory GetDirectoryReference(SiloAddress silo) method IsSiloNextInTheRing (line 787) | private bool IsSiloNextInTheRing(SiloAddress siloAddr, int hash, bool ... method IsSiloInCluster (line 792) | public bool IsSiloInCluster(SiloAddress silo) method AddOrUpdateCacheEntry (line 797) | public void AddOrUpdateCacheEntry(GrainId grainId, SiloAddress siloAdd... method TryCachedLookup (line 798) | public bool TryCachedLookup(GrainId grainId, [NotNullWhen(true)] out G... method Participate (line 799) | void ILifecycleParticipant.Participate(ISiloLifecycle ... type SiloAddressLogValue (line 804) | private readonly struct SiloAddressLogValue(SiloAddress silo) method ToString (line 806) | public override string ToString() => silo.ToStringWithHashCode(); type GrainHashLogValue (line 809) | private readonly struct GrainHashLogValue(GrainId grain) method ToString (line 811) | public override string ToString() => grain.GetUniformHashCode().ToSt... type SiloHashLogValue (line 814) | private readonly struct SiloHashLogValue(SiloAddress? silo) method ToString (line 816) | public override string ToString() => silo?.GetConsistentHashCode().T... method LogDebugStart (line 819) | [LoggerMessage( method LogDebugSiloAddedSilo (line 825) | [LoggerMessage( method LogErrorCatalogSiloStatusChangeNotificationException (line 831) | [LoggerMessage( method LogDebugSiloRemovedSilo (line 838) | [LoggerMessage( method LogWarningFindPredecessorSiloNotInList (line 844) | [LoggerMessage( method LogWarningFindSuccessorSiloNotInList (line 851) | [LoggerMessage( method LogTraceSystemTargetLookup (line 858) | [LoggerMessage( method LogTraceCalculatedDirectoryPartitionOwner (line 864) | [LoggerMessage( method LogWarningRegisterAsyncNotOwner (line 870) | [LoggerMessage( method LogTraceUnregisterAfterNonexistingActivation (line 876) | [LoggerMessage( method LogWarningUnregisterAsyncNotOwner (line 882) | [LoggerMessage( method LogWarningUnregisterManyAsyncNotOwner (line 888) | [LoggerMessage( method LogDebugLocalLookupAttempt (line 894) | [LoggerMessage( method LogTraceLocalLookupMineNull (line 900) | [LoggerMessage( method LogTraceLocalLookupCache (line 906) | [LoggerMessage( method LogTraceLocalLookupMine (line 912) | [LoggerMessage( method LogTraceTryFullLookupElse (line 918) | [LoggerMessage( method LogWarningLookupAsyncNotOwner (line 924) | [LoggerMessage( method LogTraceFullLookupMineNone (line 930) | [LoggerMessage( method LogTraceFullLookupMine (line 936) | [LoggerMessage( method LogTraceFullLookupRemote (line 942) | [LoggerMessage( method LogWarningDeleteGrainAsyncNotOwner (line 948) | [LoggerMessage( class DirectoryMembership (line 954) | private class DirectoryMembership method DirectoryMembership (line 956) | public DirectoryMembership(ImmutableList membershipRing... FILE: src/Orleans.Runtime/GrainDirectory/LocalGrainDirectoryPartition.cs class GrainInfo (line 14) | [Serializable] method OkToRemove (line 25) | public bool OkToRemove(UnregistrationCause cause, TimeSpan lazyDeregis... method TryAddSingleActivation (line 46) | public GrainAddress TryAddSingleActivation(GrainAddress address, Grain... method RemoveActivation (line 62) | public bool RemoveActivation(ActivationId act, UnregistrationCause cau... method Merge (line 75) | public GrainAddress? Merge(GrainInfo other) class LocalGrainDirectoryPartition (line 105) | internal sealed partial class LocalGrainDirectoryPartition method LocalGrainDirectoryPartition (line 121) | public LocalGrainDirectoryPartition(ISiloStatusOracle siloStatusOracle... method IsValidSilo (line 130) | private bool IsValidSilo(SiloAddress? silo) => silo is not null && sil... method Clear (line 132) | internal void Clear() method GetItems (line 144) | public List> GetItems() method AddSingleActivation (line 156) | internal AddressAndTag AddSingleActivation(GrainAddress address, Grain... method RemoveActivation (line 193) | internal void RemoveActivation(GrainId grain, ActivationId activation,... method RemoveGrain (line 212) | internal void RemoveGrain(GrainId grain) method LookUpActivation (line 221) | internal AddressAndTag LookUpActivation(GrainId grain) method GetGrainETag (line 248) | internal int GetGrainETag(GrainId grain) method Merge (line 262) | internal Dictionary>? Merge(LocalGrain... method Split (line 295) | internal List Split(Predicate predicate) method Set (line 326) | internal void Set(Dictionary newPartitionData) method Update (line 339) | internal void Update(Dictionary newPartitionDelta) method ToString (line 357) | public override string ToString() method LogTraceAddingSingleActivation (line 377) | [LoggerMessage( method LogTraceRemovingActivation (line 383) | [LoggerMessage( method LogTraceRemovingGrain (line 389) | [LoggerMessage( method LogDebugMergingDisjointPartitions (line 395) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/LruGrainDirectoryCache.cs class LruGrainDirectoryCache (line 7) | internal sealed class LruGrainDirectoryCache(int maxCacheSize) : Concurr... method AddOrUpdate (line 11) | public void AddOrUpdate(GrainAddress activationAddress, int version) =... method Remove (line 13) | public bool Remove(GrainId key) => TryRemove(key); method Remove (line 15) | public bool Remove(GrainAddress grainAddress) => TryRemove(grainAddres... method LookUp (line 17) | public bool LookUp(GrainId key, out GrainAddress result, out int version) FILE: src/Orleans.Runtime/GrainDirectory/RemoteGrainDirectory.cs class RemoteGrainDirectory (line 11) | internal sealed partial class RemoteGrainDirectory : SystemTarget, IRemo... method RemoteGrainDirectory (line 17) | internal RemoteGrainDirectory(LocalGrainDirectory localGrainDirectory,... method RegisterAsync (line 26) | public Task RegisterAsync(GrainAddress address, GrainAd... method RegisterMany (line 33) | public Task RegisterMany(List addresses) method UnregisterAsync (line 48) | public Task UnregisterAsync(GrainAddress address, UnregistrationCause ... method UnregisterManyAsync (line 53) | public Task UnregisterManyAsync(List addresses, Unregist... method DeleteGrainAsync (line 58) | public Task DeleteGrainAsync(GrainId grainId, int hopCount) method LookupAsync (line 63) | public Task LookupAsync(GrainId grainId, int hopCount) method LookUpMany (line 68) | public Task> LookUpMany(List<(GrainId GrainId, int... method AcceptSplitPartition (line 103) | public Task AcceptSplitPartition(List singleActivations) method RegisterAsync (line 109) | public Task RegisterAsync(GrainAddress address, int hop... method LogRegisterMany (line 111) | [LoggerMessage( method LogLookUpMany (line 117) | [LoggerMessage( FILE: src/Orleans.Runtime/GrainDirectory/RingRange.cs type RingRange (line 11) | [GenerateSerializer, Immutable, Alias(nameof(RingRange))] method RingRange (line 39) | private RingRange(uint start, uint end) method Create (line 46) | internal static RingRange Create(uint start, uint end) => new (start, ... method FromPoint (line 53) | public static RingRange FromPoint(uint point) => new (unchecked(point ... method CompareTo (line 79) | public int CompareTo(uint point) method Contains (line 116) | internal bool Contains(GrainId grainId) => Contains(grainId.GetUniform... method Contains (line 123) | public bool Contains(uint point) method Equals (line 142) | public bool Equals(RingRange other) => _start == other._start && _end ... method Equals (line 144) | public override bool Equals(object? obj) => obj is RingRange other && ... method GetHashCode (line 146) | public override int GetHashCode() => HashCode.Combine(_start, _end); method ToString (line 148) | public override string ToString() => $"{this}"; method ToString (line 150) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 152) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method Intersects (line 161) | public bool Intersects(RingRange other) => !IsEmpty && !other.IsEmpty ... method Complement (line 163) | internal RingRange Complement() method Intersections (line 178) | internal IEnumerable Intersections(RingRange other) method Difference (line 227) | internal IEnumerable Difference(RingRange other) FILE: src/Orleans.Runtime/GrainDirectory/RingRangeCollection.cs type RingRangeCollection (line 13) | [GenerateSerializer, Immutable, Alias(nameof(RingRangeCollection))] method RingRangeCollection (line 16) | public RingRangeCollection(ImmutableArray ranges) method Create (line 39) | public static RingRangeCollection Create(TCollection rang... method Contains (line 72) | public bool Contains(GrainId grainId) => Contains(grainId.GetUniformHa... method Contains (line 74) | public bool Contains(uint value) method Intersects (line 83) | public bool Intersects(RingRange other) method Intersects (line 106) | public bool Intersects(RingRangeCollection other) method Difference (line 132) | public RingRangeCollection Difference(RingRangeCollection previous) method Equals (line 179) | public bool Equals(RingRangeCollection other) method Equals (line 198) | public override bool Equals(object? obj) => obj is RingRangeCollection... method GetHashCode (line 200) | public override int GetHashCode() method GetEnumerator (line 215) | public ImmutableArray.Enumerator GetEnumerator() => Ranges.... method ToString (line 217) | public override string ToString() => $"{this}"; method ToString (line 218) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 220) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method GetEnumerator (line 222) | IEnumerator IEnumerable.GetEnumerator() => ((IEn... method GetEnumerator (line 223) | IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)Ranges).GetEn... FILE: src/Orleans.Runtime/GrainTypeManager/ClusterManifestSystemTarget.cs class ClusterManifestSystemTarget (line 6) | internal sealed class ClusterManifestSystemTarget : SystemTarget, IClust... method ClusterManifestSystemTarget (line 15) | public ClusterManifestSystemTarget( method GetClusterManifest (line 27) | public ValueTask GetClusterManifest() => new(_cluster... method GetClusterManifestUpdate (line 28) | public ValueTask GetClusterManifestUpdate(Major... method GetSiloManifest (line 64) | public ValueTask GetSiloManifest() => new(_siloManifest); method Participate (line 65) | void ILifecycleParticipant.Participate(ISiloLifecycle ... FILE: src/Orleans.Runtime/GrainTypeManager/ISiloManifestSystemTarget.cs type ISiloManifestSystemTarget (line 6) | internal interface ISiloManifestSystemTarget : ISystemTarget method GetSiloManifest (line 8) | ValueTask GetSiloManifest(); FILE: src/Orleans.Runtime/Hosting/ActivationRebalancerExtensions.cs class ActivationRebalancerExtensions (line 16) | public static class ActivationRebalancerExtensions method AddActivationRebalancer (line 26) | [Experimental("ORLEANSEXP002")] method AddActivationRebalancer (line 32) | [Experimental("ORLEANSEXP002")] method AddActivationRebalancer (line 37) | private static IServiceCollection AddActivationRebalancer(t... FILE: src/Orleans.Runtime/Hosting/ActivationRepartitioningExtensions.cs class ActivationRepartitioningExtensions (line 12) | public static class ActivationRepartitioningExtensions method AddActivationRepartitioner (line 21) | [Experimental("ORLEANSEXP001")] method AddActivationRepartitioner (line 33) | [Experimental("ORLEANSEXP001")] method AddActivationRepartitioner (line 38) | private static IServiceCollection AddActivationRepartitioner(th... FILE: src/Orleans.Runtime/Hosting/CoreHostingExtensions.cs class CoreHostingExtensions (line 22) | public static class CoreHostingExtensions method AddActivityPropagation (line 32) | public static ISiloBuilder AddActivityPropagation(this ISiloBuilder bu... method UseLocalhostClustering (line 53) | public static ISiloBuilder UseLocalhostClustering( method UseDevelopmentClustering (line 101) | public static ISiloBuilder UseDevelopmentClustering(this ISiloBuilder ... method UseDevelopmentClustering (line 109) | public static ISiloBuilder UseDevelopmentClustering( method UseDevelopmentClustering (line 119) | public static ISiloBuilder UseDevelopmentClustering( method ConfigurePrimarySiloEndpoint (line 137) | private static void ConfigurePrimarySiloEndpoint(OptionsBuilder(this ISiloBuilder buil... method AddGrainDirectory (line 37) | public static IServiceCollection AddGrainDirectory(this IServiceCol... method GetGrainDirectories (line 51) | internal static IEnumerable> GetGrainDir... class NoOpLifecycleParticipant (line 56) | private sealed class NoOpLifecycleParticipant : ILifecycleParticipant<... method Participate (line 60) | public void Participate(ISiloLifecycle observer) { } FILE: src/Orleans.Runtime/Hosting/EndpointOptions.cs class EndpointOptions (line 10) | public class EndpointOptions method GetPublicSiloEndpoint (line 89) | internal IPEndPoint GetPublicSiloEndpoint() => new(AdvertisedIPAddress... method GetPublicProxyEndpoint (line 91) | internal IPEndPoint GetPublicProxyEndpoint() method GetListeningSiloEndpoint (line 97) | internal IPEndPoint GetListeningSiloEndpoint() => SiloListeningEndpoin... method GetListeningProxyEndpoint (line 99) | internal IPEndPoint GetListeningProxyEndpoint() => GatewayListeningEnd... method Bind (line 101) | internal void Bind(IConfiguration cfg) FILE: src/Orleans.Runtime/Hosting/EndpointOptionsExtensions.cs class EndpointOptionsExtensions (line 12) | public static class EndpointOptionsExtensions method ConfigureEndpoints (line 23) | public static ISiloBuilder ConfigureEndpoints( method ConfigureEndpoints (line 55) | public static ISiloBuilder ConfigureEndpoints( method ConfigureEndpoints (line 82) | public static ISiloBuilder ConfigureEndpoints( FILE: src/Orleans.Runtime/Hosting/EndpointOptionsProvider.cs class EndpointOptionsProvider (line 10) | internal partial class EndpointOptionsProvider : IPostConfigureOptions logger) method PostConfigure (line 19) | public void PostConfigure(string name, EndpointOptions options) method LogWarningUnableToFindSuitableCandidate (line 48) | [LoggerMessage( method LogErrorUnableToFindSuitableCandidate (line 54) | [LoggerMessage( FILE: src/Orleans.Runtime/Hosting/GrainCallFilterExtensions.cs class GrainCallFilterSiloBuilderExtensions (line 6) | public static class GrainCallFilterSiloBuilderExtensions method AddIncomingGrainCallFilter (line 14) | public static ISiloBuilder AddIncomingGrainCallFilter(this ISiloBuilde... method AddIncomingGrainCallFilter (line 25) | public static ISiloBuilder AddIncomingGrainCallFilter... method AddIncomingGrainCallFilter (line 37) | public static ISiloBuilder AddIncomingGrainCallFilter(this ISiloBuilde... method AddOutgoingGrainCallFilter (line 48) | public static ISiloBuilder AddOutgoingGrainCallFilter(this ISiloBuilde... method AddOutgoingGrainCallFilter (line 59) | public static ISiloBuilder AddOutgoingGrainCallFilter... method AddOutgoingGrainCallFilter (line 71) | public static ISiloBuilder AddOutgoingGrainCallFilter(this ISiloBuilde... FILE: src/Orleans.Runtime/Hosting/HostingGrainExtensions.cs class HostingGrainExtensions (line 10) | public static class HostingGrainExtensions method AddGrainExtension (line 17) | public static ISiloBuilder AddGrainExtension(string name) FILE: src/Orleans.Runtime/Hosting/OrleansSiloGenericHostExtensions.cs class OrleansSiloGenericHostExtensions (line 13) | public static class OrleansSiloGenericHostExtensions method UseOrleans (line 25) | public static IHostApplicationBuilder UseOrleans( method UseOrleans (line 37) | public static HostApplicationBuilder UseOrleans( method UseOrleans (line 51) | public static IHostApplicationBuilder UseOrleans( method UseOrleans (line 73) | public static HostApplicationBuilder UseOrleans( method UseOrleans (line 95) | public static IHostBuilder UseOrleans( method UseOrleans (line 109) | public static IHostBuilder UseOrleans( method AddOrleans (line 136) | public static IServiceCollection AddOrleans( method AddOrleansCore (line 149) | private static ISiloBuilder AddOrleansCore(IServiceCollection services... method GetOrleansClientAddedException (line 172) | private static OrleansConfigurationException GetOrleansClientAddedExce... FILE: src/Orleans.Runtime/Hosting/PlacementStrategyExtensions.cs class PlacementStrategyExtensions (line 11) | public static class PlacementStrategyExtensions method AddPlacementDirector (line 20) | public static ISiloBuilder AddPlacementDirector(... method AddPlacementDirector (line 34) | public static ISiloBuilder AddPlacementDirector(this ISiloB... method AddPlacementDirector (line 47) | public static void AddPlacementDirector(this ISe... method AddPlacementDirector (line 59) | public static void AddPlacementDirector(this ISe... method AddPlacementDirector (line 74) | public static void AddPlacementDirector(this IServiceCollec... method AddPlacementDirector (line 85) | public static void AddPlacementDirector(this IServiceCollec... FILE: src/Orleans.Runtime/Hosting/ProviderConfiguration/DevelopmentClusteringProvider.cs class DevelopmentClusteringProvider (line 12) | internal sealed class DevelopmentClusteringProvider : IProviderBuilder(this ISiloBuilder build... method Configure (line 45) | public static ISiloBuilder Configure(this ISiloBuilder build... method ConfigureLogging (line 56) | public static ISiloBuilder ConfigureLogging(this ISiloBuilder builder,... FILE: src/Orleans.Runtime/Hosting/SiloBuilderStartupExtensions.cs class SiloBuilderStartupExtensions (line 14) | public static class SiloBuilderStartupExtensions method AddStartupTask (line 31) | public static ISiloBuilder AddStartupTask( method AddStartupTask (line 54) | public static ISiloBuilder AddStartupTask( method AddStartupTask (line 77) | public static ISiloBuilder AddStartupTask( class StartupTask (line 92) | private class StartupTask : ILifecycleParticipant method StartupTask (line 99) | public StartupTask( method Participate (line 110) | public void Participate(ISiloLifecycle lifecycle) FILE: src/Orleans.Runtime/Hosting/SiloHostedService.cs class SiloHostedService (line 10) | internal partial class SiloHostedService : IHostedService method SiloHostedService (line 15) | public SiloHostedService( method StartAsync (line 25) | public async Task StartAsync(CancellationToken cancellationToken) method StopAsync (line 32) | public async Task StopAsync(CancellationToken cancellationToken) method ValidateSystemConfiguration (line 39) | private static void ValidateSystemConfiguration(IEnumerable(this IServiceColle... FILE: src/Orleans.Runtime/Lifecycle/ISiloLifecycle.cs type ISiloLifecycle (line 12) | public interface ISiloLifecycle : ILifecycleObservable FILE: src/Orleans.Runtime/Lifecycle/ISiloLifecycleSubject.cs type ISiloLifecycleSubject (line 7) | public interface ISiloLifecycleSubject : ISiloLifecycle, ILifecycleObserver FILE: src/Orleans.Runtime/Lifecycle/IStartupTask.cs type IStartupTask (line 9) | public interface IStartupTask method Execute (line 16) | Task Execute(CancellationToken cancellationToken); FILE: src/Orleans.Runtime/Lifecycle/SiloLifecycleSubject.cs class SiloLifecycleSubject (line 14) | public partial class SiloLifecycleSubject : LifecycleSubject, ISiloLifec... method SiloLifecycleSubject (line 31) | public SiloLifecycleSubject(ILogger logger) : ba... method OnStart (line 39) | public override Task OnStart(CancellationToken cancellationToken = def... method OnStartStageCompleted (line 50) | protected override void OnStartStageCompleted(int stage) method OnStopStageCompleted (line 57) | protected override void OnStopStageCompleted(int stage) method GetStageName (line 64) | protected override string GetStageName(int stage) method PerfMeasureOnStop (line 71) | protected override void PerfMeasureOnStop(int stage, TimeSpan elapsed) method PerfMeasureOnStart (line 77) | protected override void PerfMeasureOnStart(int stage, TimeSpan elapsed) method Subscribe (line 83) | public override IDisposable Subscribe(string observerName, int stage, ... class MonitoredObserver (line 90) | private partial class MonitoredObserver : ILifecycleObserver method MonitoredObserver (line 95) | public MonitoredObserver(string name, int stage, string stageName, I... method OnStart (line 108) | public async Task OnStart(CancellationToken ct) method OnStop (line 124) | public async Task OnStop(CancellationToken cancellationToken = default) method LogDebugObserverStarted (line 149) | [LoggerMessage( method LogErrorObserverStartFailure (line 156) | [LoggerMessage( method LogDebugObserverStopping (line 163) | [LoggerMessage( method LogObserverStopped (line 170) | [LoggerMessage( method LogErrorObserverStopFailure (line 176) | [LoggerMessage( method LogDebugLifecycleStagesReport (line 184) | [LoggerMessage( method LogDebugStoppingLifecycleStage (line 191) | [LoggerMessage( method LogDebugStartingLifecycleStage (line 198) | [LoggerMessage( FILE: src/Orleans.Runtime/Manifest/ClusterManifestProvider.cs class ClusterManifestProvider (line 17) | internal partial class ClusterManifestProvider : IClusterManifestProvide... method ClusterManifestProvider (line 30) | public ClusterManifestProvider( method ProcessMembershipUpdates (line 59) | private async Task ProcessMembershipUpdates() method UpdateManifest (line 97) | private async Task UpdateManifest(ClusterMembershipSnapshot clus... method StartAsync (line 197) | [MemberNotNull(nameof(_runTask))] method Initialize (line 205) | [MemberNotNull(nameof(_grainFactory))] method StopAsync (line 212) | private async Task StopAsync(CancellationToken cancellationToken) method Participate (line 221) | public void Participate(ISiloLifecycle lifecycle) method DisposeAsync (line 236) | public async ValueTask DisposeAsync() method Dispose (line 246) | public void Dispose() method LogWarningErrorRetrievingSiloManifest (line 251) | [LoggerMessage( method LogDebugStartingToProcessMembershipUpdates (line 257) | [LoggerMessage( method LogDebugStoppedProcessingMembershipUpdates (line 263) | [LoggerMessage( FILE: src/Orleans.Runtime/Manifest/GrainClassMap.cs class GrainClassMap (line 12) | public class GrainClassMap method GrainClassMap (line 22) | public GrainClassMap(TypeConverter typeConverter, ImmutableDictionary<... method TryGetGrainClass (line 34) | public bool TryGetGrainClass(GrainType grainType, [NotNullWhen(true)] ... FILE: src/Orleans.Runtime/Manifest/SiloManifestProvider.cs class SiloManifestProvider (line 14) | internal class SiloManifestProvider method SiloManifestProvider (line 16) | public SiloManifestProvider( method CreateInterfaceManifest (line 34) | private static ImmutableDictionary, Immut... FILE: src/Orleans.Runtime/MembershipService/ClusterHealthMonitor.cs class ClusterHealthMonitor (line 21) | internal partial class ClusterHealthMonitor : IHealthCheckParticipant, I... type ITestAccessor (line 38) | internal interface ITestAccessor method ClusterHealthMonitor (line 46) | public ClusterHealthMonitor( method ProcessMembershipUpdates (line 75) | private async Task ProcessMembershipUpdates() method EvictStaleStateSilos (line 118) | private async Task EvictStaleStateSilos( method UpdateMonitoredSilos (line 153) | [Pure] method Participate (line 274) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method OnProbeResultInternal (line 306) | private async Task OnProbeResultInternal(SiloHealthMonitor monitor, Pr... method CheckHealth (line 327) | bool IHealthCheckable.CheckHealth(DateTime lastCheckTime, out string r... method Dispose (line 351) | public void Dispose() method DisposeAsync (line 375) | public async ValueTask DisposeAsync() method LogDebugStartingToProcessMembershipUpdates (line 404) | [LoggerMessage( method LogDebugStoppedProcessingMembershipUpdates (line 410) | [LoggerMessage( method LogDebugStaleSiloFound (line 416) | [LoggerMessage( method LogErrorTryToSuspectOrKillFailed (line 422) | [LoggerMessage( method LogErrorSiloNotInLocalList (line 428) | [LoggerMessage( type ProbedSilosLogRecord (line 435) | private readonly struct ProbedSilosLogRecord(IEnumerable ... method ToString (line 437) | public override string ToString() => Utils.EnumerableToString(probed... method LogInformationWillWatchActivelyPing (line 440) | [LoggerMessage( method LogErrorCancellingShutdownToken (line 447) | [LoggerMessage( method LogErrorDisposingMonitorForSilo (line 453) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/ClusterMember.cs class ClusterMember (line 8) | [Serializable, GenerateSerializer, Immutable] method ClusterMember (line 23) | public ClusterMember(SiloAddress siloAddress, SiloStatus status, strin... method Equals (line 52) | public override bool Equals(object obj) => this.Equals(obj as ClusterM... method Equals (line 55) | public bool Equals(ClusterMember other) => other != null method GetHashCode (line 61) | public override int GetHashCode() => this.SiloAddress.GetConsistentHas... method ToString (line 64) | public override string ToString() => $"{this.SiloAddress}/{this.Name}/... FILE: src/Orleans.Runtime/MembershipService/ClusterMembershipService.cs class ClusterMembershipService (line 13) | internal partial class ClusterMembershipService : IClusterMembershipServ... method ClusterMembershipService (line 21) | public ClusterMembershipService( method Refresh (line 53) | public ValueTask Refresh(MembershipVersion targetVersion) => Refresh(t... method Refresh (line 54) | public ValueTask Refresh(MembershipVersion targetVersion, Cancellation... method TryKill (line 78) | public async Task TryKill(SiloAddress siloAddress) => await this... method ProcessMembershipUpdates (line 80) | private async Task ProcessMembershipUpdates(CancellationToken ct) method Participate (line 105) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method Dispose (line 129) | void IDisposable.Dispose() method LogDebugStartingToProcessMembershipUpdates (line 134) | [LoggerMessage( method LogErrorProcessingMembershipUpdates (line 140) | [LoggerMessage( method LogDebugStoppingMembershipUpdateProcessor (line 146) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/ClusterMembershipSnapshot.cs class ClusterMembershipSnapshot (line 10) | [Serializable, GenerateSerializer, Immutable] method ClusterMembershipSnapshot (line 18) | public ClusterMembershipSnapshot(ImmutableDictionary new ClusterMembershipUpda... method CreateUpdate (line 73) | public ClusterMembershipUpdate CreateUpdate(ClusterMembershipSnapshot ... method ToString (line 109) | public override string ToString() FILE: src/Orleans.Runtime/MembershipService/ClusterMembershipUpdate.cs class ClusterMembershipUpdate (line 9) | [Serializable, GenerateSerializer, Immutable] method ClusterMembershipUpdate (line 17) | public ClusterMembershipUpdate(ClusterMembershipSnapshot snapshot, Imm... FILE: src/Orleans.Runtime/MembershipService/DevelopmentClusterMembershipOptions.cs class DevelopmentClusterMembershipOptions (line 6) | public class DevelopmentClusterMembershipOptions FILE: src/Orleans.Runtime/MembershipService/DevelopmentClusterMembershipOptionsValidator.cs class DevelopmentClusterMembershipOptionsValidator (line 9) | internal class DevelopmentClusterMembershipOptionsValidator : IConfigura... method DevelopmentClusterMembershipOptionsValidator (line 14) | public DevelopmentClusterMembershipOptionsValidator(IOptions TryKill(SiloAddress siloAddress); FILE: src/Orleans.Runtime/MembershipService/IMembershipGossiper.cs type IMembershipGossiper (line 6) | internal interface IMembershipGossiper method GossipToRemoteSilos (line 8) | Task GossipToRemoteSilos( FILE: src/Orleans.Runtime/MembershipService/IRemoteSiloProber.cs type IRemoteSiloProber (line 10) | internal interface IRemoteSiloProber method Probe (line 21) | Task Probe(SiloAddress silo, int probeNumber, CancellationToken cancel... method ProbeIndirectly (line 31) | Task ProbeIndirectly(SiloAddress intermediary, ... FILE: src/Orleans.Runtime/MembershipService/ISiloStatusListener.cs type ISiloStatusListener (line 9) | public interface ISiloStatusListener method SiloStatusChangeNotification (line 16) | void SiloStatusChangeNotification(SiloAddress updatedSilo, SiloStatus ... FILE: src/Orleans.Runtime/MembershipService/ISiloStatusOracle.cs type ISiloStatusOracle (line 9) | public interface ISiloStatusOracle method GetActiveSilos (line 29) | ImmutableArray GetActiveSilos(); method GetApproximateSiloStatus (line 39) | SiloStatus GetApproximateSiloStatus(SiloAddress siloAddress); method GetApproximateSiloStatuses (line 47) | Dictionary GetApproximateSiloStatuses(bool on... method TryGetSiloName (line 56) | bool TryGetSiloName(SiloAddress siloAddress, out string siloName); method IsFunctionalDirectory (line 62) | bool IsFunctionalDirectory(SiloAddress siloAddress); method IsDeadSilo (line 68) | bool IsDeadSilo(SiloAddress silo); method SubscribeToSiloStatusEvents (line 75) | bool SubscribeToSiloStatusEvents(ISiloStatusListener observer); method UnSubscribeFromSiloStatusEvents (line 81) | bool UnSubscribeFromSiloStatusEvents(ISiloStatusListener observer); FILE: src/Orleans.Runtime/MembershipService/InMemoryMembershipTable.cs class InMemoryMembershipTable (line 9) | internal class InMemoryMembershipTable method InMemoryMembershipTable (line 18) | public InMemoryMembershipTable(DeepCopier deepCopier) method Read (line 26) | public MembershipTableData Read(SiloAddress key) method ReadAll (line 33) | public MembershipTableData ReadAll() method ReadTableVersion (line 39) | public TableVersion ReadTableVersion() method Insert (line 44) | public bool Insert(MembershipEntry entry, TableVersion version) method Update (line 57) | public bool Update(MembershipEntry entry, string etag, TableVersion ve... method UpdateIAmAlive (line 70) | public void UpdateIAmAlive(MembershipEntry entry) method ToString (line 80) | public override string ToString() => $"Table = {ReadAll()}, ETagCounte... method NewETag (line 82) | private string NewETag() method CleanupDefunctSiloEntries (line 87) | public void CleanupDefunctSiloEntries(DateTimeOffset beforeDate) FILE: src/Orleans.Runtime/MembershipService/LocalSiloHealthMonitor.cs type ILocalSiloHealthMonitor (line 17) | internal interface ILocalSiloHealthMonitor method GetLocalHealthDegradationScore (line 24) | int GetLocalHealthDegradationScore(DateTime checkTime); class LocalSiloHealthMonitor (line 52) | internal partial class LocalSiloHealthMonitor : ILifecycleParticipant GetLo... method GetLocalHealthDegradationScore (line 106) | public int GetLocalHealthDegradationScore(DateTime checkTime, List... method CheckSuspectingNodes (line 157) | private int CheckSuspectingNodes(DateTime now, List? complaints) method CheckReceivedProbeRequests (line 196) | private int CheckReceivedProbeRequests(DateTime now, List? com... method CheckReceivedProbeResponses (line 227) | private int CheckReceivedProbeResponses(DateTime now, List? co... method CheckLocalHealthCheckParticipants (line 265) | private int CheckLocalHealthCheckParticipants(DateTime now, List log) method MeasureQueueDelay (line 362) | public TimeSpan MeasureQueueDelay() method Execute (line 391) | private void Execute() method LogThreadPoolDelay (line 409) | [LoggerMessage( method LogSiloNotActive (line 414) | [LoggerMessage( method LogSiloSuspected (line 420) | [LoggerMessage( method LogMembershipEntryNotFound (line 426) | [LoggerMessage( method LogNoProbeRequests (line 432) | [LoggerMessage( method LogNoRecentProbeRequest (line 438) | [LoggerMessage( method LogNoProbeResponses (line 444) | [LoggerMessage( method LogNoRecentProbeResponse (line 450) | [LoggerMessage( method LogHealthCheckParticipantUnhealthy (line 456) | [LoggerMessage( method LogHealthCheckParticipantError (line 462) | [LoggerMessage( method LogSelfMonitoringDegraded (line 468) | [LoggerMessage( method LogErrorMonitoringLocalSiloHealth (line 474) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/MembershipAgent.cs class MembershipAgent (line 16) | internal partial class MembershipAgent : IHealthCheckParticipant, ILifec... method MembershipAgent (line 31) | public MembershipAgent( type ITestAccessor (line 51) | internal interface ITestAccessor method UpdateIAmAlive (line 60) | private async Task UpdateIAmAlive() method BecomeActive (line 100) | private async Task BecomeActive() method ValidateInitialConnectivity (line 117) | private async Task ValidateInitialConnectivity() method BecomeJoining (line 225) | private async Task BecomeJoining() method BecomeShuttingDown (line 239) | private async Task BecomeShuttingDown() method BecomeStopping (line 254) | private async Task BecomeStopping() method BecomeDead (line 269) | private async Task BecomeDead() method UpdateStatus (line 284) | private async Task UpdateStatus(SiloStatus status) method Participate (line 289) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method Dispose (line 369) | public void Dispose() method CheckHealth (line 374) | bool IHealthCheckable.CheckHealth(DateTime lastCheckTime, out string r... type EnumerableToStringLogValue (line 376) | private readonly struct EnumerableToStringLogValue(IEnumerable e... method ToString (line 378) | public override string ToString() => Utils.EnumerableToString(enumer... method LogDebugStartingPeriodicMembershipLivenessTimestampUpdates (line 381) | [LoggerMessage( method LogTraceUpdatingIAmAliveTook (line 387) | [LoggerMessage( method LogWarningFailedToUpdateTableEntryForThisSilo (line 393) | [LoggerMessage( method LogDebugStoppingPeriodicMembershipLivenessTimestampUpdates (line 400) | [LoggerMessage( method LogErrorErrorUpdatingLivenessTimestamp (line 406) | [LoggerMessage( method LogInformationBecomeActive (line 412) | [LoggerMessage( method LogInformationFinishedBecomeActive (line 419) | [LoggerMessage( method LogInformationBecomeActiveFailed (line 426) | [LoggerMessage( method LogErrorFailedToGetPingResponses (line 433) | [LoggerMessage( method LogErrorFailedToValidateInitialClusterConnectivity (line 443) | [LoggerMessage( method LogInformationAboutToSendPings (line 449) | [LoggerMessage( method LogWarningDidNotReceiveProbeResponse (line 456) | [LoggerMessage( method LogInformationJoining (line 462) | [LoggerMessage( method LogErrorErrorUpdatingStatusToJoining (line 469) | [LoggerMessage( method LogDebugShutdown (line 476) | [LoggerMessage( method LogErrorErrorUpdatingStatusToShuttingDown (line 483) | [LoggerMessage( method LogDebugStop (line 490) | [LoggerMessage( method LogErrorErrorUpdatingStatusToStopping (line 497) | [LoggerMessage( method LogDebugUpdatingStatusToDead (line 504) | [LoggerMessage( method LogErrorFailureUpdatingStatusToDead (line 511) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/MembershipGossiper.cs class MembershipGossiper (line 10) | internal partial class MembershipGossiper(IServiceProvider serviceProvid... method GossipToRemoteSilos (line 14) | public Task GossipToRemoteSilos( method LogDebugGossipingStatusToPartners (line 28) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/MembershipSystemTarget.cs class MembershipSystemTarget (line 10) | internal sealed partial class MembershipSystemTarget : SystemTarget, IMe... method MembershipSystemTarget (line 16) | public MembershipSystemTarget( method Ping (line 29) | public Task Ping(int pingNumber) => Task.CompletedTask; method MembershipChangeNotification (line 31) | public async Task MembershipChangeNotification(MembershipTableSnapshot... method ProbeRemoteSilo (line 51) | public Task ProbeRemoteSilo(SiloAddress remoteSilo, int probeNumber) =... method ProbeRemoteSiloIndirectly (line 62) | public Task ProbeRemoteSiloIndirectly(SiloAddre... method ProbeIndirectly (line 75) | public async Task ProbeIndirectly(SiloAddress t... method GossipToRemoteSilos (line 114) | public Task GossipToRemoteSilos( method GossipToRemoteSilo (line 134) | private async Task GossipToRemoteSilo( method ReadTable (line 153) | private async Task ReadTable() method ProbeInternal (line 165) | private Task ProbeInternal(SiloAddress remoteSilo, int probeNumber) method Participate (line 185) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method LogTraceReceivedGossipMembershipChangeNotificationWithMinValue (line 190) | [LoggerMessage( method LogWarningRequestedProbeTimeoutExceeded (line 196) | [LoggerMessage( method LogTraceSendingStatusUpdateGossipNotification (line 202) | [LoggerMessage( method LogWarningErrorSendingGossipNotificationToRemoteSilo (line 208) | [LoggerMessage( method LogErrorErrorRefreshingMembershipTable (line 215) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/MembershipTableCleanupAgent.cs class MembershipTableCleanupAgent (line 17) | internal partial class MembershipTableCleanupAgent : IHealthCheckPartici... method MembershipTableCleanupAgent (line 24) | public MembershipTableCleanupAgent( method Dispose (line 41) | public void Dispose() method CleanupDefunctSilos (line 46) | private async Task CleanupDefunctSilos() method Participate (line 90) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method CheckHealth (line 111) | bool IHealthCheckable.CheckHealth(DateTime lastCheckTime, [NotNullWhen... method LogDebugMembershipTableCleanupDisabled (line 122) | [LoggerMessage( method LogDebugStartingMembershipTableCleanupAgent (line 128) | [LoggerMessage( method LogWarningCleanupDefunctSiloEntriesNotSupported (line 134) | [LoggerMessage( method LogErrorFailedToCleanUpDefunctMembershipTableEntries (line 140) | [LoggerMessage( method LogDebugStoppedMembershipTableCleanupAgent (line 146) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/MembershipTableEntryExtensions.cs class MembershipTableEntryExtensions (line 6) | internal static class MembershipTableEntryExtensions method HasMissedIAmAlives (line 8) | public static bool HasMissedIAmAlives(this MembershipEntry entry, Clus... FILE: src/Orleans.Runtime/MembershipService/MembershipTableManager.cs class MembershipTableManager (line 18) | internal partial class MembershipTableManager : IHealthCheckParticipant,... method MembershipTableManager (line 51) | public MembershipTableManager( method Refresh (line 97) | public async Task Refresh() method RefreshFromSnapshot (line 108) | public async Task RefreshFromSnapshot(MembershipTableSnapshot snapshot) method RefreshInternal (line 134) | private async Task RefreshInternal(bool requireCleanup) method Start (line 154) | private async Task Start() method UpdateIAmAlive (line 189) | public async Task UpdateIAmAlive() method DetectNodeMigration (line 200) | private void DetectNodeMigration(MembershipTableSnapshot snapshot, str... method PeriodicallyRefreshMembershipTable (line 227) | private async Task PeriodicallyRefreshMembershipTable() method MembershipExecuteWithRetries (line 269) | private static Task MembershipExecuteWithRetries( method MembershipExecuteWithRetries (line 276) | private static Task MembershipExecuteWithRetries( method UpdateStatus (line 293) | public async Task UpdateStatus(SiloStatus status) method TryUpdateMyStatusGlobalOnce (line 370) | private async Task TryUpdateMyStatusGlobalOnce(SiloStatus newSta... method GetOrCreateLocalSiloEntry (line 415) | private (MembershipEntry Entry, string ETag) GetOrCreateLocalSiloEntry... method CreateLocalSiloEntry (line 426) | private MembershipEntry CreateLocalSiloEntry(SiloStatus currentStatus) method ProcessTableUpdate (line 446) | private void ProcessTableUpdate(MembershipTableData table, string caller) method LogMissedIAmAlives (line 459) | private void LogMissedIAmAlives(MembershipTableData table) method CleanupMyTableEntries (line 476) | private async Task CleanupMyTableEntries(MembershipTableData table) method KillMyselfLocally (line 535) | private void KillMyselfLocally(string reason) method GossipToOthers (line 542) | private async Task GossipToOthers(SiloAddress updatedSilo, SiloStatus ... class SuspectOrKillRequest (line 573) | private class SuspectOrKillRequest type RequestType (line 579) | public enum RequestType method CreateKillRequest (line 586) | public static SuspectOrKillRequest CreateKillRequest(SiloAddress silo) method CreateSuspectOrKillRequest (line 596) | public static SuspectOrKillRequest CreateSuspectOrKillRequest(SiloAd... method TryKill (line 607) | public async Task TryKill(SiloAddress silo) method ProcessSuspectOrKillLists (line 613) | public async Task ProcessSuspectOrKillLists() method InnerTryKill (line 653) | private async Task InnerTryKill(SiloAddress silo, CancellationTo... method TryToSuspectOrKill (line 695) | public async Task TryToSuspectOrKill(SiloAddress silo, SiloAddre... method InnerTryToSuspectOrKill (line 701) | private async Task InnerTryToSuspectOrKill(SiloAddress silo, Sil... method DeclareDead (line 796) | private async Task DeclareDead(MembershipEntry entry, string eta... method CheckHealth (line 826) | bool IHealthCheckable.CheckHealth(DateTime lastCheckTime, out string r... method Participate (line 828) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method Dispose (line 856) | public void Dispose() type WithoutDuplicateDeadsLogValue (line 863) | private readonly struct WithoutDuplicateDeadsLogValue(MembershipTableD... method ToString (line 865) | public override string ToString() => table.WithoutDuplicateDeads().T... method LogInformationReceivedClusterMembershipSnapshot (line 868) | [LoggerMessage( method LogInformationMembershipStarting (line 874) | [LoggerMessage( method LogWarningFoundMyselfDeadInRefreshFromSnapshot (line 881) | [LoggerMessage( method LogWarningExceptionWhileCleaningUpTableEntries (line 888) | [LoggerMessage( method LogTraceRefreshingMembershipTableTook (line 894) | [LoggerMessage( method LogWarningFailedToRefreshMembershipTable (line 900) | [LoggerMessage( method LogWarningErrorRefreshingMembershipTable (line 907) | [LoggerMessage( method LogDebugStoppingPeriodicMembershipTableRefreshes (line 913) | [LoggerMessage( method LogDebugStartingPeriodicMembershipTableRefreshes (line 919) | [LoggerMessage( method LogDebugProcessTableUpdate (line 925) | [LoggerMessage( method LogDebugProcessTableUpdateWithTable (line 931) | [LoggerMessage( method LogWarningMissedIAmAliveTableUpdate (line 938) | [LoggerMessage( method LogWarningFoundMyselfDead2 (line 946) | [LoggerMessage( method LogTraceSkippingOldDeadEntry (line 953) | [LoggerMessage( method LogDebugTemporalAnomalyDetected (line 959) | [LoggerMessage( method LogWarningDetectedOlder (line 965) | [LoggerMessage( method LogWarningDetectedNewer (line 972) | [LoggerMessage( method LogDebugCleanupTableEntriesAboutToDeclareDead (line 979) | [LoggerMessage( method LogErrorKillMyselfLocally (line 985) | [LoggerMessage( method LogWarningErrorWhileGossipingStatus (line 992) | [LoggerMessage( method LogDebugGoingToTryToUpdateMyStatusGlobalOnce (line 998) | [LoggerMessage( method LogDebugSuccessfullyUpdatedMyStatus (line 1004) | [LoggerMessage( method LogWarningTimedOutWhileGossipingStatus (line 1010) | [LoggerMessage( method LogDebugTimedOutWhileGossipingStatus (line 1016) | [LoggerMessage( method LogInformationFailedToUpdateMyStatusDueToWriteContention (line 1022) | [LoggerMessage( method LogWarningFailedToUpdateMyStatusDueToFailures (line 1029) | [LoggerMessage( method LogDebugTryUpdateMyStatusGlobalOnce (line 1036) | [LoggerMessage( method LogWarningFoundMyselfDead1 (line 1042) | [LoggerMessage( method LogDebugTryKillReadMembershipTable (line 1049) | [LoggerMessage( method LogInformationIgnoringCallToTryKill (line 1055) | [LoggerMessage( method LogWarningFoundMyselfDead3 (line 1062) | [LoggerMessage( method LogErrorCouldNotFindSiloEntry (line 1069) | [LoggerMessage( method LogInformationMarkingSiloAsDead (line 1076) | [LoggerMessage( method LogDebugTryToSuspectOrKillReadMembershipTable (line 1083) | [LoggerMessage( method LogInformationIgnoringCallToTrySuspectOrKill (line 1089) | [LoggerMessage( method LogDebugTryToSuspectOrKillCurrentStatus (line 1096) | [LoggerMessage( method LogTraceCurrentNumberOfFreshVoters (line 1102) | [LoggerMessage( method LogErrorSiloIsSuspectedButNotMarkedAsDead (line 1108) | [LoggerMessage( method LogInformationEvictingSilo (line 1115) | [LoggerMessage( method LogInformationVotingToEvictSilo (line 1122) | [LoggerMessage( method LogDebugGoingToDeclareDead (line 1129) | [LoggerMessage( method LogDebugSuccessfullyUpdatedStatusToDead (line 1135) | [LoggerMessage( method LogInformationFailedToUpdateStatusToDead (line 1141) | [LoggerMessage( method LogInformationLivenessDisabled (line 1148) | [LoggerMessage( method LogErrorProcessingSuspectOrKillLists (line 1155) | [LoggerMessage( method LogWarningNodeMigrated (line 1161) | [LoggerMessage( method LogWarningNodeRestarted (line 1168) | [LoggerMessage( method LogErrorMembershipFailedToStart (line 1175) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/MembershipTableSnapshotExtensions.cs class MembershipTableSnapshotExtensions (line 5) | internal static class MembershipTableSnapshotExtensions method CreateClusterMembershipSnapshot (line 7) | internal static ClusterMembershipSnapshot CreateClusterMembershipSnaps... FILE: src/Orleans.Runtime/MembershipService/OrleansClusterConnectivityCheckFailedException.cs class OrleansClusterConnectivityCheckFailedException (line 10) | [Serializable] method OrleansClusterConnectivityCheckFailedException (line 17) | public OrleansClusterConnectivityCheckFailedException() : base("Failed... method OrleansClusterConnectivityCheckFailedException (line 23) | public OrleansClusterConnectivityCheckFailedException(string message) ... method OrleansClusterConnectivityCheckFailedException (line 30) | public OrleansClusterConnectivityCheckFailedException(string message, ... method OrleansClusterConnectivityCheckFailedException (line 37) | [Obsolete] FILE: src/Orleans.Runtime/MembershipService/OrleansMissingMembershipEntryException.cs class OrleansMissingMembershipEntryException (line 10) | [Serializable] method OrleansMissingMembershipEntryException (line 18) | public OrleansMissingMembershipEntryException() : base("Membership tab... method OrleansMissingMembershipEntryException (line 24) | public OrleansMissingMembershipEntryException(string message) : base(m... method OrleansMissingMembershipEntryException (line 31) | public OrleansMissingMembershipEntryException(string message, Exceptio... method OrleansMissingMembershipEntryException (line 38) | [Obsolete] FILE: src/Orleans.Runtime/MembershipService/RemoteSiloProber.cs class RemoteSiloProber (line 10) | internal class RemoteSiloProber(IServiceProvider serviceProvider) : IRem... method Probe (line 13) | public async Task Probe(SiloAddress remoteSilo, int probeNumber, Cance... method ProbeIndirectly (line 20) | public async Task ProbeIndirectly(SiloAddress i... FILE: src/Orleans.Runtime/MembershipService/SiloHealthMonitor.cs class SiloHealthMonitor (line 20) | internal partial class SiloHealthMonitor : ITestAccessor, IHealthCheckab... method SiloHealthMonitor (line 59) | public SiloHealthMonitor( type ITestAccessor (line 84) | internal interface ITestAccessor method Start (line 104) | public void Start() method StopAsync (line 126) | public async Task StopAsync(CancellationToken cancellationToken) method Dispose (line 136) | public void Dispose() method DisposeAsync (line 150) | public async ValueTask DisposeAsync() method Run (line 159) | private async Task Run() method ProbeDirectly (line 260) | private async Task ProbeDirectly(CancellationToken cancel... method ProbeIndirectly (line 317) | private async Task ProbeIndirectly(SiloAddress intermedia... method CheckHealth (line 373) | public bool CheckHealth(DateTime lastCheckTime, out string reason) => ... type ProbeResult (line 378) | [StructLayout(LayoutKind.Auto)] method ProbeResult (line 381) | private ProbeResult(int failedProbeCount, ProbeResultStatus status, ... method CreateDirect (line 390) | public static ProbeResult CreateDirect(int failedProbeCount, ProbeRe... method CreateIndirect (line 393) | public static ProbeResult CreateIndirect(int failedProbeCount, Probe... type ProbeResultStatus (line 407) | public enum ProbeResultStatus method LogTraceGoingToSendPing (line 414) | [LoggerMessage( method LogTraceGotSuccessfulPingResponse (line 420) | [LoggerMessage( method LogWarningDidNotGetResponseForProbe (line 426) | [LoggerMessage( method LogTraceGoingToSendIndirectPing (line 433) | [LoggerMessage( method LogInformationIndirectProbeSucceeded (line 439) | [LoggerMessage( method LogInformationIgnoringFailureResultForPing (line 445) | [LoggerMessage( method LogWarningIndirectProbeFailed (line 451) | [LoggerMessage( method LogWarningIndirectProbeRequestFailed (line 457) | [LoggerMessage( method LogInformationRecusingUnhealthyIntermediary (line 463) | [LoggerMessage( method LogErrorExceptionMonitoringSilo (line 469) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/ISiloMetadataCache.cs type ISiloMetadataCache (line 5) | public interface ISiloMetadataCache method GetSiloMetadata (line 7) | SiloMetadata GetSiloMetadata(SiloAddress siloAddress); FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/ISiloMetadataClient.cs type ISiloMetadataClient (line 6) | internal interface ISiloMetadataClient method GetSiloMetadata (line 8) | Task GetSiloMetadata(SiloAddress siloAddress); FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/ISiloMetadataSystemTarget.cs type ISiloMetadataSystemTarget (line 6) | [Alias("Orleans.Runtime.MembershipService.SiloMetadata.ISiloMetadataSyst... method GetSiloMetadata (line 9) | [Alias("GetSiloMetadata")] FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/SiloMetadaCache.cs class SiloMetadataCache (line 14) | internal partial class SiloMetadataCache( method Participate (line 26) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method ProcessMembershipUpdates (line 54) | private async Task ProcessMembershipUpdates(CancellationToken ct) method GetSiloMetadata (line 122) | public SiloMetadata GetSiloMetadata(SiloAddress siloAddress) => _metad... method SetMetadata (line 124) | public void SetMetadata(SiloAddress siloAddress, SiloMetadata metadata... method Dispose (line 126) | public void Dispose() => _cts.Cancel(); method LogDebugStartProcessingMembershipUpdates (line 128) | [LoggerMessage( method LogErrorFetchingSiloMetadata (line 133) | [LoggerMessage( method LogErrorProcessingMembershipUpdates (line 138) | [LoggerMessage( method LogDebugStoppingMembershipProcessor (line 143) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/SiloMetadata.cs type SiloMetadata (line 7) | [GenerateSerializer] FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/SiloMetadataClient.cs class SiloMetadataClient (line 6) | internal sealed class SiloMetadataClient(IInternalGrainFactory grainFact... method GetSiloMetadata (line 8) | public async Task GetSiloMetadata(SiloAddress siloAddress) FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/SiloMetadataHostingExtensions.cs class SiloMetadataHostingExtensions (line 12) | public static class SiloMetadataHostingExtensions method UseSiloMetadata (line 24) | public static ISiloBuilder UseSiloMetadata(this ISiloBuilder builder) ... method UseSiloMetadata (line 37) | public static ISiloBuilder UseSiloMetadata(this ISiloBuilder builder, ... method UseSiloMetadata (line 56) | public static ISiloBuilder UseSiloMetadata(this ISiloBuilder builder, ... method UseSiloMetadata (line 69) | public static ISiloBuilder UseSiloMetadata(this ISiloBuilder builder, ... FILE: src/Orleans.Runtime/MembershipService/SiloMetadata/SiloMetadataSystemTarget.cs class SiloMetadataSystemTarget (line 11) | internal sealed class SiloMetadataSystemTarget : SystemTarget, ISiloMeta... method SiloMetadataSystemTarget (line 15) | public SiloMetadataSystemTarget( method GetSiloMetadata (line 23) | public Task GetSiloMetadata() => Task.FromResult(_siloMe... method Participate (line 24) | void ILifecycleParticipant.Participate(ISiloLifecycle ... FILE: src/Orleans.Runtime/MembershipService/SiloStatusListenerManager.cs class SiloStatusListenerManager (line 15) | internal partial class SiloStatusListenerManager : ILifecycleParticipant... method SiloStatusListenerManager (line 28) | public SiloStatusListenerManager( method Subscribe (line 38) | public bool Subscribe(ISiloStatusListener listener) method Unsubscribe (line 57) | public bool Unsubscribe(ISiloStatusListener listener) method ProcessMembershipUpdates (line 79) | private async Task ProcessMembershipUpdates() method NotifyObservers (line 109) | private void NotifyObservers(ClusterMembershipUpdate update) method Participate (line 148) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method LogDebugStartingToProcessMembershipUpdates (line 171) | [LoggerMessage( method LogErrorProcessingMembershipUpdates (line 177) | [LoggerMessage( method LogDebugStoppingMembershipUpdateProcessor (line 183) | [LoggerMessage( method LogErrorCallingSiloStatusChangeNotification (line 189) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/SiloStatusOracle.cs class SiloStatusOracle (line 8) | internal partial class SiloStatusOracle : ISiloStatusOracle method SiloStatusOracle (line 24) | public SiloStatusOracle( method GetApproximateSiloStatus (line 40) | public SiloStatus GetApproximateSiloStatus(SiloAddress silo) method GetActiveSilos (line 55) | public ImmutableArray GetActiveSilos() method GetApproximateSiloStatuses (line 61) | public Dictionary GetApproximateSiloStatuses(... method EnsureFreshCache (line 67) | private void EnsureFreshCache() method IsDeadSilo (line 105) | public bool IsDeadSilo(SiloAddress silo) method IsFunctionalDirectory (line 114) | public bool IsFunctionalDirectory(SiloAddress silo) method TryGetSiloName (line 122) | public bool TryGetSiloName(SiloAddress siloAddress, out string siloName) method SubscribeToSiloStatusEvents (line 135) | public bool SubscribeToSiloStatusEvents(ISiloStatusListener listener) ... method UnSubscribeFromSiloStatusEvents (line 137) | public bool UnSubscribeFromSiloStatusEvents(ISiloStatusListener listen... method LogSiloAddressNotRegistered (line 139) | [LoggerMessage( FILE: src/Orleans.Runtime/MembershipService/SystemTargetBasedMembershipTable.cs class SystemTargetBasedMembershipTable (line 13) | internal partial class SystemTargetBasedMembershipTable : IMembershipTable method SystemTargetBasedMembershipTable (line 19) | public SystemTargetBasedMembershipTable(IServiceProvider serviceProvid... method InitializeMembershipTable (line 24) | public async Task InitializeMembershipTable(bool tryInitTableVersion) method GetMembershipTable (line 29) | private async Task GetMembershipTable() method WaitForTableGrainToInit (line 51) | private async Task WaitForTableGrainToInit(IMembershipTableSystemTarge... method DeleteMembershipTableEntries (line 82) | public Task DeleteMembershipTableEntries(string clusterId) => this.gra... method ReadRow (line 84) | public Task ReadRow(SiloAddress key) => this.grai... method ReadAll (line 86) | public Task ReadAll() => this.grain.ReadAll(); method InsertRow (line 88) | public Task InsertRow(MembershipEntry entry, TableVersion tableV... method UpdateRow (line 90) | public Task UpdateRow(MembershipEntry entry, string etag, TableV... method UpdateIAmAlive (line 92) | public Task UpdateIAmAlive(MembershipEntry entry) => this.grain.Update... method CleanupDefunctSiloEntries (line 94) | public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) => th... method LogInformationCreatingInMemoryMembershipTable (line 96) | [LoggerMessage( method LogInformationConnectedToMembershipTableProvider (line 103) | [LoggerMessage( method LogInformationWaitingForMembershipTableProvider (line 110) | [LoggerMessage( method LogInformationMembershipTableProviderFailedToInitialize (line 117) | [LoggerMessage( class MembershipTableSystemTarget (line 125) | [Reentrant] method MembershipTableSystemTarget (line 131) | public MembershipTableSystemTarget( method CreateId (line 143) | private static SystemTargetGrainId CreateId(SiloAddress siloAddress) method InitializeMembershipTable (line 148) | public Task InitializeMembershipTable(bool tryInitTableVersion) method DeleteMembershipTableEntries (line 154) | public Task DeleteMembershipTableEntries(string clusterId) method ReadRow (line 161) | public Task ReadRow(SiloAddress key) method ReadAll (line 166) | public Task ReadAll() method InsertRow (line 172) | public Task InsertRow(MembershipEntry entry, TableVersion tableV... method UpdateRow (line 182) | public Task UpdateRow(MembershipEntry entry, string etag, TableV... method UpdateIAmAlive (line 192) | public Task UpdateIAmAlive(MembershipEntry entry) method CleanupDefunctSiloEntries (line 199) | public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method Participate (line 205) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method LogInformationGrainBasedMembershipTableActivated (line 210) | [LoggerMessage( method LogInformationInitializeMembershipTable (line 217) | [LoggerMessage( method LogInformationDeleteMembershipTableEntries (line 223) | [LoggerMessage( method LogDebugInsertRow (line 229) | [LoggerMessage( method LogInformationInsertRowFailed (line 235) | [LoggerMessage( method LogDebugUpdateRow (line 242) | [LoggerMessage( method LogInformationUpdateRowFailed (line 248) | [LoggerMessage( method LogDebugUpdateIAmAlive (line 255) | [LoggerMessage( FILE: src/Orleans.Runtime/Messaging/Gateway.cs class Gateway (line 17) | internal sealed partial class Gateway : IConnectedClientCollection method Gateway (line 38) | public Gateway( method GetClientActivationAddress (line 56) | public static GrainAddress GetClientActivationAddress(GrainId clientId... method PerformGatewayMaintenance (line 71) | private async Task PerformGatewayMaintenance() method SendStopSendMessages (line 87) | internal async Task SendStopSendMessages(IInternalGrainFactory grainFa... method StopAsync (line 104) | internal async Task StopAsync() method GetConnectedClientIds (line 112) | List IConnectedClientCollection.GetConnectedClientIds() method RecordOpenedConnection (line 123) | internal void RecordOpenedConnection(GatewayInboundConnection connecti... method RecordClosedConnection (line 149) | internal void RecordClosedConnection(GatewayInboundConnection connection) method TryToReroute (line 165) | internal SiloAddress TryToReroute(Message msg) method DropExpiredRoutingCachedEntries (line 201) | internal void DropExpiredRoutingCachedEntries() method IsTargetingLocalGateway (line 209) | private bool IsTargetingLocalGateway(SiloAddress siloAddress) method DropDisconnectedClients (line 219) | internal void DropDisconnectedClients() method TryDeliverToProxy (line 250) | internal bool TryDeliverToProxy(Message msg) class ClientState (line 279) | private class ClientState method ClientState (line 293) | internal ClientState(Gateway gateway, ClientGrainId id) method RecordDisconnection (line 314) | public void RecordDisconnection() method RecordConnection (line 326) | public void RecordConnection(GatewayInboundConnection connection) method ReadyToDrop (line 338) | public bool ReadyToDrop() method Drop (line 349) | public void Drop() method Send (line 356) | public void Send(Message msg) method RunMessageLoop (line 363) | private async Task RunMessageLoop() method RejectDroppedClientMessages (line 405) | private void RejectDroppedClientMessages() method TrySend (line 415) | private bool TrySend(GatewayInboundConnection connection, Message me... class ClientsReplyRoutingCache (line 441) | private class ClientsReplyRoutingCache method ClientsReplyRoutingCache (line 447) | internal ClientsReplyRoutingCache(TimeSpan responseTimeout) method RecordClientRoute (line 452) | internal void RecordClientRoute(GrainId client, SiloAddress gateway) method TryFindClientRoute (line 457) | internal bool TryFindClientRoute(GrainId client, out SiloAddress gat... method DropExpiredEntries (line 469) | internal void DropExpiredEntries() method LogErrorGatewayMaintenanceError (line 481) | [LoggerMessage( method LogInformationGatewayClientOpenedSocket (line 487) | [LoggerMessage( method LogInformationGatewayClientClosedSocket (line 494) | [LoggerMessage( method LogInformationGatewayDroppingClient (line 501) | [LoggerMessage( method LogWarningGatewayClientReceivedNewConnectionBeforePreviousConnectionRemoved (line 508) | [LoggerMessage( method LogTraceQueuedMessage (line 514) | [LoggerMessage( method LogTraceSentQueuedMessage (line 520) | [LoggerMessage( method LogWarningGatewayClientMessageLoopException (line 526) | [LoggerMessage( FILE: src/Orleans.Runtime/Messaging/IConnectedClientCollection.cs type IConnectedClientCollection (line 8) | internal interface IConnectedClientCollection method GetConnectedClientIds (line 18) | List GetConnectedClientIds(); class EmptyConnectedClientCollection (line 21) | internal sealed class EmptyConnectedClientCollection : IConnectedClientC... method GetConnectedClientIds (line 25) | public List GetConnectedClientIds() => new List(0); FILE: src/Orleans.Runtime/Messaging/MessageCenter.cs class MessageCenter (line 16) | internal partial class MessageCenter : IMessageCenter, IAsyncDisposable method MessageCenter (line 33) | public MessageCenter( method SetHostedClient (line 69) | public void SetHostedClient(HostedClient? client) => this.hostedClient... method TryDeliverToProxy (line 71) | public bool TryDeliverToProxy(Message msg) method StopAsync (line 84) | public async Task StopAsync() method BlockApplicationMessages (line 99) | public void BlockApplicationMessages() method StopAcceptingClientMessages (line 105) | public async Task StopAcceptingClientMessages() method SendMessage (line 137) | public void SendMessage(Message msg) method DispatchLocalMessage (line 237) | public void DispatchLocalMessage(Message message) => ReceiveMessage(me... method RejectMessage (line 239) | public void RejectMessage( method ProcessRequestsToInvalidActivation (line 260) | internal void ProcessRequestsToInvalidActivation( method ProcessRequestToInvalidActivation (line 312) | private void ProcessRequestToInvalidActivation( method TryForwardRequest (line 348) | private void TryForwardRequest(Message message, GrainAddress? oldAddre... method RerouteMessage (line 402) | internal void RerouteMessage(Message message) method TryForwardMessage (line 407) | private bool TryForwardMessage(Message message, SiloAddress? forwardin... method ResendMessageImpl (line 418) | private void ResendMessageImpl(Message message, SiloAddress? forwardin... method MayForward (line 441) | private static bool MayForward(Message message, SiloMessagingOptions m... method AddressAndSendMessage (line 453) | internal Task AddressAndSendMessage(Message message) method SendResponse (line 494) | internal void SendResponse(Message request, Response response) method ReceiveMessage (line 508) | public void ReceiveMessage(Message msg) method ProcessMessageToNonExistentActivation (line 553) | private void ProcessMessageToNonExistentActivation(Message msg) method SendRejection (line 582) | internal void SendRejection(Message msg, Message.RejectionTypes reject... method DisposeAsync (line 601) | public async ValueTask DisposeAsync() type StackTraceLogValue (line 606) | private readonly struct StackTraceLogValue() method ToString (line 608) | public override string ToString() => Utils.GetStackTrace(1); method LogDebugBlockApplicationMessages (line 611) | [LoggerMessage( method LogDebugStopClientMessages (line 617) | [LoggerMessage( method LogErrorStopFailed (line 623) | [LoggerMessage( method LogInformationMessageQueuedAfterStop (line 630) | [LoggerMessage( method LogErrorMessageNoTargetSilo (line 637) | [LoggerMessage( method LogTraceMessageLoopedBack (line 644) | [LoggerMessage( method LogDebugForwarding (line 650) | [LoggerMessage( method LogDebugResend (line 656) | [LoggerMessage( method LogErrorCreatingActivation (line 662) | [LoggerMessage( method LogWarningUnknownSystemTarget (line 669) | [LoggerMessage( method LogDebugUnableToCreateActivation (line 676) | [LoggerMessage( method LogDebugDroppingRejection (line 683) | [LoggerMessage( FILE: src/Orleans.Runtime/Messaging/OverloadDetector.cs type IOverloadDetector (line 11) | public interface IOverloadDetector class OverloadDetector (line 22) | internal class OverloadDetector : IOverloadDetector method OverloadDetector (line 30) | public OverloadDetector(IEnvironmentStatisticsProvider environmentStat... method ForceRefresh (line 69) | internal void ForceRefresh() FILE: src/Orleans.Runtime/Messaging/RuntimeMessagingTrace.cs class RuntimeMessagingTrace (line 7) | internal sealed class RuntimeMessagingTrace : MessagingTrace method RuntimeMessagingTrace (line 66) | public RuntimeMessagingTrace(ILoggerFactory loggerFactory) : base(logg... method OnDispatcherReceiveInvalidActivation (line 70) | internal void OnDispatcherReceiveInvalidActivation(Message message, Ac... method OnDispatcherDiscardedRejection (line 81) | internal void OnDispatcherDiscardedRejection(Message message, Message.... method OnDispatcherRejectMessage (line 91) | internal void OnDispatcherRejectMessage(Message message, Message.Rejec... method OnDispatcherForwarding (line 106) | internal void OnDispatcherForwarding(Message message, GrainAddress old... method OnDispatcherForwardingFailed (line 121) | internal void OnDispatcherForwardingFailed(Message message, GrainAddre... method OnDispatcherForwardingMultiple (line 131) | internal void OnDispatcherForwardingMultiple(int messageCount, GrainAd... method OnDispatcherSelectTargetFailed (line 144) | internal void OnDispatcherSelectTargetFailed(Message message, Exceptio... FILE: src/Orleans.Runtime/Networking/ConnectionListener.cs class ConnectionListener (line 15) | internal abstract partial class ConnectionListener method ConnectionListener (line 25) | protected ConnectionListener( method CreateConnection (line 45) | protected abstract Connection CreateConnection(ConnectionContext conte... method ConfigureConnectionBuilder (line 74) | protected virtual void ConfigureConnectionBuilder(IConnectionBuilder c... method BindAsync (line 76) | protected async Task BindAsync() method Start (line 81) | protected void Start() method RunAcceptLoop (line 87) | private async Task RunAcceptLoop() method StopAsync (line 107) | protected async Task StopAsync(CancellationToken cancellationToken) method StartConnection (line 138) | private void StartConnection(Connection connection) method RunConnectionAsync (line 149) | private async Task RunConnectionAsync(Connection connection) method BeginConnectionScope (line 169) | private IDisposable BeginConnectionScope(Connection connection) method LogCriticalExceptionInAcceptAsync (line 179) | [LoggerMessage( method LogWarningExceptionDuringShutdown (line 185) | [LoggerMessage( method LogInformationConnectionTerminated (line 191) | [LoggerMessage( method LogInformationConnectionTerminatedWithException (line 197) | [LoggerMessage( FILE: src/Orleans.Runtime/Networking/GatewayConnectionListener.cs class GatewayConnectionListener (line 13) | internal sealed class GatewayConnectionListener : ConnectionListener, IL... method GatewayConnectionListener (line 26) | public GatewayConnectionListener( method CreateConnection (line 53) | protected override Connection CreateConnection(ConnectionContext context) method ConfigureConnectionBuilder (line 67) | protected override void ConfigureConnectionBuilder(IConnectionBuilder ... method Participate (line 74) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method OnStart (line 82) | Task ILifecycleObserver.OnStart(CancellationToken ct) => Task.Run(Bind... method OnStop (line 83) | Task ILifecycleObserver.OnStop(CancellationToken ct) => Task.Run(() =>... FILE: src/Orleans.Runtime/Networking/GatewayInboundConnection.cs method GatewayInboundConnection (line 21) | public GatewayInboundConnection( method RecordMessageReceive (line 46) | protected override void RecordMessageReceive(Message msg, int numTotalBy... method RecordMessageSend (line 52) | protected override void RecordMessageSend(Message msg, int numTotalBytes... method OnReceivedMessage (line 58) | protected override void OnReceivedMessage(Message msg) FILE: src/Orleans.Runtime/Networking/ProbeRequestMonitor.cs class ProbeRequestMonitor (line 9) | internal sealed class ProbeRequestMonitor method OnReceivedProbeRequest (line 21) | public void OnReceivedProbeRequest() FILE: src/Orleans.Runtime/Networking/SiloConnection.cs method SiloConnection (line 26) | public SiloConnection( method RecordMessageReceive (line 59) | protected override void RecordMessageReceive(Message msg, int numTotalBy... method RecordMessageSend (line 64) | protected override void RecordMessageSend(Message msg, int numTotalBytes... method OnReceivedMessage (line 69) | protected override void OnReceivedMessage(Message msg) method HandlePingMessage (line 143) | private void HandlePingMessage(Message msg) method OnSendMessageFailure (line 167) | protected override void OnSendMessageFailure(Message message, string error) FILE: src/Orleans.Runtime/Networking/SiloConnectionFactory.cs class SiloConnectionFactory (line 11) | internal sealed class SiloConnectionFactory : ConnectionFactory method SiloConnectionFactory (line 30) | public SiloConnectionFactory( method ConnectAsync (line 48) | public override ValueTask ConnectAsync(SiloAddress address... method CreateConnection (line 60) | protected override Connection CreateConnection(SiloAddress address, Co... method ConfigureConnectionBuilder (line 77) | protected override void ConfigureConnectionBuilder(IConnectionBuilder ... method EnsureInitialized (line 84) | private void EnsureInitialized() FILE: src/Orleans.Runtime/Networking/SiloConnectionListener.cs class SiloConnectionListener (line 12) | internal sealed class SiloConnectionListener : ConnectionListener, ILife... method SiloConnectionListener (line 24) | public SiloConnectionListener( method CreateConnection (line 49) | protected override Connection CreateConnection(ConnectionContext context) method ConfigureConnectionBuilder (line 64) | protected override void ConfigureConnectionBuilder(IConnectionBuilder ... method Participate (line 71) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method OnStart (line 78) | Task ILifecycleObserver.OnStart(CancellationToken ct) => Task.Run(asyn... method OnStop (line 85) | Task ILifecycleObserver.OnStop(CancellationToken ct) => Task.Run(() =>... FILE: src/Orleans.Runtime/Networking/SiloConnectionMaintainer.cs class SiloConnectionMaintainer (line 8) | internal partial class SiloConnectionMaintainer : ILifecycleParticipant<... method SiloConnectionMaintainer (line 14) | public SiloConnectionMaintainer( method OnStart (line 24) | public Task OnStart(CancellationToken ct) method OnStop (line 30) | public Task OnStop(CancellationToken ct) method Participate (line 36) | public void Participate(ISiloLifecycle lifecycle) method SiloStatusChangeNotification (line 41) | public void SiloStatusChangeNotification(SiloAddress updatedSilo, Silo... method CloseConnectionAsync (line 49) | private async Task CloseConnectionAsync(SiloAddress silo) method LogExceptionWhileClosingConnections (line 64) | [LoggerMessage( FILE: src/Orleans.Runtime/Placement/ActivationCountPlacementDirector.cs class ActivationCountPlacementDirector (line 13) | internal class ActivationCountPlacementDirector : RandomPlacementDirecto... class CachedLocalStat (line 15) | private class CachedLocalStat method CachedLocalStat (line 19) | internal CachedLocalStat(SiloRuntimeStatistics siloStats) => SiloSta... method IncrementActivationCount (line 23) | public void IncrementActivationCount(int delta) => Interlocked.Add(r... method ActivationCountPlacementDirector (line 31) | public ActivationCountPlacementDirector( method SelectSiloPowerOfK (line 42) | private SiloAddress SelectSiloPowerOfK(SiloAddress[] silos) method OnAddActivation (line 116) | public override Task OnAddActivation(PlacementStrategy st... method OnAddActivationInternal (line 118) | private SiloAddress OnAddActivationInternal(PlacementTarget target, IP... method SiloStatisticsChangeNotification (line 142) | public void SiloStatisticsChangeNotification(SiloAddress updatedSilo, ... method RemoveSilo (line 148) | public void RemoveSilo(SiloAddress removedSilo) FILE: src/Orleans.Runtime/Placement/ClientObserverPlacementStrategyResolver.cs class ClientObserverPlacementStrategyResolver (line 5) | internal class ClientObserverPlacementStrategyResolver : IPlacementStrat... method TryResolvePlacementStrategy (line 9) | public bool TryResolvePlacementStrategy(GrainType grainType, GrainProp... FILE: src/Orleans.Runtime/Placement/ClientObserversPlacementDirector.cs class ClientObserversPlacementDirector (line 8) | internal class ClientObserversPlacementDirector : IPlacementDirector method OnAddActivation (line 10) | public Task OnAddActivation(PlacementStrategy strategy, P... FILE: src/Orleans.Runtime/Placement/DeploymentLoadPublisher.cs class DeploymentLoadPublisher (line 18) | internal sealed partial class DeploymentLoadPublisher : SystemTarget, ID... method DeploymentLoadPublisher (line 39) | public DeploymentLoadPublisher( method StartAsync (line 67) | private async Task StartAsync(CancellationToken cancellationToken) method PublishStatistics (line 88) | private async Task PublishStatistics() method UpdateRuntimeStatistics (line 138) | public Task UpdateRuntimeStatistics(SiloAddress siloAddress, SiloRunti... method UpdateRuntimeStatisticsInternal (line 144) | private void UpdateRuntimeStatisticsInternal(SiloAddress siloAddress, ... method RefreshClusterStatistics (line 162) | internal async Task RefreshClusterStatistics() method RefreshSiloStatistics (line 178) | private async Task RefreshSiloStatistics(SiloAddress silo) method SubscribeToStatisticsChangeEvents (line 191) | public bool SubscribeToStatisticsChangeEvents(ISiloStatisticsChangeLis... method UnsubscribeStatisticsChangeEvents (line 202) | public bool UnsubscribeStatisticsChangeEvents(ISiloStatisticsChangeLis... method NotifyAllStatisticsChangeEventsSubscribers (line 210) | private void NotifyAllStatisticsChangeEventsSubscribers(SiloAddress si... method SiloStatusChangeNotification (line 228) | public void SiloStatusChangeNotification(SiloAddress updatedSilo, Silo... method OnSiloStatusChange (line 236) | private void OnSiloStatusChange(SiloAddress updatedSilo, SiloStatus st... method Participate (line 244) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method LogDebugStartingDeploymentLoadPublisher (line 257) | [LoggerMessage( method LogDebugStartedDeploymentLoadPublisher (line 263) | [LoggerMessage( method LogTracePublishStatistics (line 269) | [LoggerMessage( method LogWarningRuntimeStatisticsUpdateFailure1 (line 275) | [LoggerMessage( method LogWarningRuntimeStatisticsUpdateFailure2 (line 282) | [LoggerMessage( method LogTraceUpdateRuntimeStatistics (line 289) | [LoggerMessage( method LogTraceRefreshStatistics (line 295) | [LoggerMessage( method LogWarningRuntimeStatisticsUpdateFailure3 (line 301) | [LoggerMessage( FILE: src/Orleans.Runtime/Placement/Filtering/PlacementFilterDirectorResolver.cs class PlacementFilterDirectorResolver (line 11) | public sealed class PlacementFilterDirectorResolver(IServiceProvider ser... method GetFilterDirector (line 13) | public IPlacementFilterDirector GetFilterDirector(PlacementFilterStrat... FILE: src/Orleans.Runtime/Placement/Filtering/PlacementFilterStrategyResolver.cs class PlacementFilterStrategyResolver (line 15) | public sealed class PlacementFilterStrategyResolver method PlacementFilterStrategyResolver (line 25) | public PlacementFilterStrategyResolver( method GetPlacementFilterStrategies (line 37) | public PlacementFilterStrategy[] GetPlacementFilterStrategies(GrainTyp... method GetPlacementFilterStrategyInternal (line 39) | private PlacementFilterStrategy[] GetPlacementFilterStrategyInternal(G... FILE: src/Orleans.Runtime/Placement/Filtering/PreferredMatchSiloMetadataPlacementFilterDirector.cs class PreferredMatchSiloMetadataPlacementFilterDirector (line 10) | internal class PreferredMatchSiloMetadataPlacementFilterDirector( method Filter (line 15) | public IEnumerable Filter(PlacementFilterStrategy filterS... FILE: src/Orleans.Runtime/Placement/Filtering/PreferredMatchSiloMetadataPlacementFilterStrategy.cs class PreferredMatchSiloMetadataPlacementFilterStrategy (line 10) | public class PreferredMatchSiloMetadataPlacementFilterStrategy(string[] ... method PreferredMatchSiloMetadataPlacementFilterStrategy (line 16) | public PreferredMatchSiloMetadataPlacementFilterStrategy() : this([], ... method AdditionalInitialize (line 20) | public override void AdditionalInitialize(GrainProperties properties) method GetAdditionalGrainProperties (line 38) | protected override IEnumerable> GetAdditi... FILE: src/Orleans.Runtime/Placement/Filtering/RequiredMatchSiloMetadataPlacementFilterDirector.cs class RequiredMatchSiloMetadataPlacementFilterDirector (line 9) | internal class RequiredMatchSiloMetadataPlacementFilterDirector(ILocalSi... method Filter (line 12) | public IEnumerable Filter(PlacementFilterStrategy filterS... method DoesMetadataMatch (line 32) | private static bool DoesMetadataMatch(string?[] localMetadata, SiloMet... method GetMetadata (line 44) | private static string?[] GetMetadata(SiloMetadata siloMetadata, string... FILE: src/Orleans.Runtime/Placement/Filtering/RequiredMatchSiloMetadataPlacementFilterStrategy.cs class RequiredMatchSiloMetadataPlacementFilterStrategy (line 9) | public class RequiredMatchSiloMetadataPlacementFilterStrategy(string[] m... method RequiredMatchSiloMetadataPlacementFilterStrategy (line 14) | public RequiredMatchSiloMetadataPlacementFilterStrategy() : this([], 0) method AdditionalInitialize (line 18) | public override void AdditionalInitialize(GrainProperties properties) method GetAdditionalGrainProperties (line 28) | protected override IEnumerable> GetAdditi... FILE: src/Orleans.Runtime/Placement/GrainMigratabilityChecker.cs class GrainMigratabilityChecker (line 12) | internal sealed class GrainMigratabilityChecker( type StatusKey (line 19) | private readonly record struct StatusKey(GrainType Type, ImmovableKind... method IsMigratable (line 32) | public bool IsMigratable(GrainType grainType, ImmovableKind expectedKind) FILE: src/Orleans.Runtime/Placement/HashBasedPlacementDirector.cs class HashBasedPlacementDirector (line 6) | internal class HashBasedPlacementDirector : IPlacementDirector method OnAddActivation (line 8) | public virtual Task OnAddActivation( FILE: src/Orleans.Runtime/Placement/IPlacementStrategyResolver.cs type IPlacementStrategyResolver (line 8) | public interface IPlacementStrategyResolver method TryResolvePlacementStrategy (line 13) | bool TryResolvePlacementStrategy(GrainType grainType, GrainProperties ... FILE: src/Orleans.Runtime/Placement/ISiloStatisticsChangeListener.cs type ISiloStatisticsChangeListener (line 3) | internal interface ISiloStatisticsChangeListener method SiloStatisticsChangeNotification (line 10) | void SiloStatisticsChangeNotification(SiloAddress updatedSilo, SiloRun... method RemoveSilo (line 12) | void RemoveSilo(SiloAddress removedSilo); FILE: src/Orleans.Runtime/Placement/PlacementDirectorResolver.cs class PlacementDirectorResolver (line 9) | public sealed class PlacementDirectorResolver method PlacementDirectorResolver (line 13) | public PlacementDirectorResolver(IServiceProvider services) method GetPlacementDirector (line 18) | public IPlacementDirector GetPlacementDirector(PlacementStrategy place... FILE: src/Orleans.Runtime/Placement/PlacementService.cs class PlacementService (line 21) | internal partial class PlacementService : IPlacementContext method PlacementService (line 39) | public PlacementService( method AddressMessage (line 77) | public Task AddressMessage(Message message) method SetMessageTargetPlacement (line 97) | private void SetMessageTargetPlacement(Message message, SiloAddress ta... method GetCompatibleSilos (line 103) | public SiloAddress[] GetCompatibleSilos(PlacementTarget target) method GetCompatibleSilosWithVersions (line 168) | public IReadOnlyDictionary GetCompatibleSilosWi... method CachedAddressIsValid (line 183) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method PlaceGrainAsync (line 231) | public async Task PlaceGrainAsync(GrainId grainId, Dictio... class PlacementWorker (line 239) | private class PlacementWorker method PlacementWorker (line 255) | public PlacementWorker(PlacementService placementService) method AddressMessage (line 264) | public Task AddressMessage(Message message) method GetMessages (line 278) | private List<(Message Message, TaskCompletionSource Completion)> Get... method ProcessLoop (line 292) | private async Task ProcessLoop() method AddressWaitingMessages (line 349) | private void AddressWaitingMessages(GrainPlacementWorkItem completed... method GetOrPlaceActivationAsync (line 380) | private async Task GetOrPlaceActivationAsync(Message fi... class GrainPlacementWorkItem (line 427) | private class GrainPlacementWorkItem method InstrumentFilteredSilos (line 440) | private static IEnumerable InstrumentFilteredSilos( method TryRestoreActivityContext (line 461) | private static Activity TryRestoreActivityContext(Dictionary ... method TryGetNonDefaultPlacementStrategy (line 46) | private bool TryGetNonDefaultPlacementStrategy(GrainType grainType, ou... method GetPlacementStrategyInternal (line 78) | private PlacementStrategy GetPlacementStrategyInternal(GrainType grain... FILE: src/Orleans.Runtime/Placement/PreferLocalPlacementDirector.cs class PreferLocalPlacementDirector (line 14) | internal class PreferLocalPlacementDirector : RandomPlacementDirector, I... method OnAddActivation (line 18) | public override Task FILE: src/Orleans.Runtime/Placement/RandomPlacementDirector.cs class RandomPlacementDirector (line 6) | internal class RandomPlacementDirector : IPlacementDirector method OnAddActivation (line 8) | public virtual Task OnAddActivation( FILE: src/Orleans.Runtime/Placement/Rebalancing/ActivationRebalancerMonitor.cs class ActivationRebalancerMonitor (line 15) | internal sealed partial class ActivationRebalancerMonitor : SystemTarget... method ActivationRebalancerMonitor (line 30) | public ActivationRebalancerMonitor( method Participate (line 55) | public void Participate(ISiloLifecycle observer) method OnStart (line 70) | private async Task OnStart(CancellationToken cancellationToken) method OnStop (line 91) | private async Task OnStop(CancellationToken cancellationToken) method ResumeRebalancing (line 109) | public Task ResumeRebalancing() => _rebalancerGrain.ResumeRebalancing(); method SuspendRebalancing (line 110) | public Task SuspendRebalancing(TimeSpan? duration) => _rebalancerGrain... method GetRebalancingReport (line 112) | public async ValueTask GetRebalancingReport(bool fo... method Report (line 122) | public Task Report(RebalancingReport report) method SubscribeToReports (line 142) | public void SubscribeToReports(IActivationRebalancerReportListener lis... method UnsubscribeFromReports (line 150) | public void UnsubscribeFromReports(IActivationRebalancerReportListener... method LogStartingRebalancer (line 153) | [LoggerMessage( method LogMigratingRebalancer (line 160) | [LoggerMessage( method LogErrorWhileNotifyingListener (line 167) | [LoggerMessage( FILE: src/Orleans.Runtime/Placement/Rebalancing/ActivationRebalancerWorker.Log.cs class ActivationRebalancerWorker (line 7) | internal partial class ActivationRebalancerWorker method LogScheduledToStart (line 9) | [LoggerMessage(Level = LogLevel.Trace, Message = "Activation rebalance... method LogSessionStarted (line 12) | [LoggerMessage(Level = LogLevel.Trace, Message = "I have started a new... method LogSessionStopped (line 15) | [LoggerMessage(Level = LogLevel.Trace, Message = "I have stopped my cu... method LogSuspended (line 18) | [LoggerMessage(Level = LogLevel.Trace, Message = "I have been told to ... method LogSuspendedFor (line 21) | [LoggerMessage(Level = LogLevel.Trace, Message = "I have been told to ... method LogNotEnoughSilos (line 24) | [LoggerMessage(Level = LogLevel.Trace, Message = "Can not continue wit... method LogNotEnoughStatistics (line 27) | [LoggerMessage(Level = LogLevel.Trace, Message = "Can not continue wit... method LogInvalidSiloMemory (line 30) | [LoggerMessage(Level = LogLevel.Warning, Message = method LogMaxStagnantCyclesReached (line 35) | [LoggerMessage(Level = LogLevel.Trace, Message = "The current rebalanc... method LogMaxEntropyDeviationReached (line 38) | [LoggerMessage(Level = LogLevel.Trace, Message = method LogInsufficientEntropyQuantum (line 44) | [LoggerMessage(Level = LogLevel.Trace, Message = method LogStagnantCyclesReset (line 49) | [LoggerMessage(Level = LogLevel.Trace, Message = "Stagnant cycle count... method LogFailedSessionsReset (line 52) | [LoggerMessage(Level = LogLevel.Trace, Message = "Failed session count... method LogSiloMigrations (line 55) | [LoggerMessage(Level = LogLevel.Trace, Message = method LogCycleOutcome (line 63) | [LoggerMessage(Level = LogLevel.Trace, Message = FILE: src/Orleans.Runtime/Placement/Rebalancing/ActivationRebalancerWorker.cs class ActivationRebalancerWorker (line 21) | [KeepAlive, Immovable] type ResourceStatistics (line 32) | private readonly record struct ResourceStatistics(long MemoryUsage, in... type RebalancerState (line 34) | [GenerateSerializer, Immutable, Alias("RebalancerState")] type StopReason (line 40) | private enum StopReason method OnActivateAsync (line 83) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 105) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method OnDehydrate (line 111) | public void OnDehydrate(IDehydrationContext context) method OnRehydrate (line 118) | public void OnRehydrate(IRehydrationContext context) method RemoveSilo (line 146) | void ISiloStatisticsChangeListener.RemoveSilo(SiloAddress silo) method SiloStatisticsChangeNotification (line 155) | void ISiloStatisticsChangeListener.SiloStatisticsChangeNotification(Si... method GetReport (line 161) | public ValueTask GetReport() => new(BuildReport()); method ResumeRebalancing (line 163) | public async Task ResumeRebalancing() method SuspendRebalancing (line 169) | public async Task SuspendRebalancing(TimeSpan? duration) method ReportAllMonitors (line 185) | private async Task ReportAllMonitors(CancellationToken cancellationToken) method BuildReport (line 199) | private RebalancingReport BuildReport() method TriggerRebalancing (line 213) | private Task TriggerRebalancing() method RunRebalancingCycle (line 229) | private async Task RunRebalancingCycle(CancellationToken cancellationT... method UpdateStatistics (line 368) | private void UpdateStatistics(SiloAddress lowSilo, SiloAddress highSil... method ComputeEntropy (line 392) | private static double ComputeEntropy( method ComputeHarmonicMean (line 419) | private static double ComputeHarmonicMean(Dictionary FormSiloPairs( method StartSession (line 478) | private void StartSession() method StopSession (line 491) | private void StopSession(StopReason reason, TimeSpan? duration = null) method SuspendFor (line 537) | private void SuspendFor(TimeSpan duration) FILE: src/Orleans.Runtime/Placement/Repartitioning/ActivationRepartitioner.Log.cs class ActivationRepartitioner (line 6) | internal partial class ActivationRepartitioner method LogPeriodicallyInvokeProtocol (line 8) | [LoggerMessage(Level = LogLevel.Debug, Message = "I will periodically ... method LogSingleSiloCluster (line 11) | [LoggerMessage(Level = LogLevel.Debug, Message = "Activation repartiti... method LogExchangeSetIsEmpty (line 14) | [LoggerMessage(Level = LogLevel.Debug, Message = "Exchange set for can... method LogBeginningProtocol (line 17) | [LoggerMessage(Level = LogLevel.Debug, Message = "Beginning exchange p... method LogExchangedRecently (line 20) | [LoggerMessage(Level = LogLevel.Debug, Message = "I got an exchange re... method LogExchangedRecentlyResponse (line 23) | [LoggerMessage(Level = LogLevel.Debug, Message = "Exchange request fro... method LogMutualExchangeAttempt (line 26) | [LoggerMessage(Level = LogLevel.Debug, Message = "Rejecting exchange r... method LogMutualExchangeAttemptResponse (line 29) | [LoggerMessage(Level = LogLevel.Debug, Message = "Exchange request fro... method LogProtocolFinalized (line 32) | [LoggerMessage(Level = LogLevel.Debug, Message = "Finalized exchange p... method LogProtocolFinalizedTrace (line 35) | [LoggerMessage(Level = LogLevel.Trace, Message = "Finalized exchange p... method LogErrorOnProtocolExecution (line 38) | [LoggerMessage(Level = LogLevel.Warning, Message = "Error performing e... method LogErrorOnMigratingActivations (line 41) | [LoggerMessage(Level = LogLevel.Warning, Message = "Error migrating ex... method LogReceivedExchangeRequest (line 44) | [LoggerMessage(Level = LogLevel.Debug, Message = "Received AcceptExcha... method LogImbalance (line 47) | [LoggerMessage(Level = LogLevel.Debug, Message = "Imbalance is {Imbala... method LogTransferSetComputed (line 50) | [LoggerMessage(Level = LogLevel.Debug, Message = "Computing transfer s... method LogErrorAcceptingExchangeRequest (line 53) | [LoggerMessage(Level = LogLevel.Warning, Message = "Error accepting ex... method LogCoolingDown (line 56) | [LoggerMessage(Level = LogLevel.Debug, Message = "Waiting an additiona... method LogAddingAnchoredGrains (line 59) | [LoggerMessage(Level = LogLevel.Debug, Message = "Adding {NewlyAnchore... method LogComputedCandidateSets (line 62) | [LoggerMessage(Level = LogLevel.Trace, Message = "Candidate sets compu... method LogComputedCandidateHeaps (line 65) | [LoggerMessage(Level = LogLevel.Trace, Message = "Candidate heaps crea... FILE: src/Orleans.Runtime/Placement/Repartitioning/ActivationRepartitioner.MessageSink.cs class ActivationRepartitioner (line 9) | internal sealed partial class ActivationRepartitioner : IMessageStatisti... method StartProcessingEdges (line 18) | public void StartProcessingEdges() method StopProcessingEdgesAsync (line 26) | public async Task StopProcessingEdgesAsync(CancellationToken cancellat... method ProcessPendingEdges (line 40) | private async Task ProcessPendingEdges(CancellationToken cancellationT... method GetMessageObserver (line 104) | public Action? GetMessageObserver() => RecordMessage; method RecordMessage (line 106) | private void RecordMessage(Message message) method IsFullyAddressed (line 131) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method FlushBuffers (line 135) | async ValueTask IActivationRepartitionerSystemTarget.FlushBuffers() method LogTraceServiceStarted (line 143) | [LoggerMessage( method LogTraceServiceStopped (line 149) | [LoggerMessage( FILE: src/Orleans.Runtime/Placement/Repartitioning/ActivationRepartitioner.cs class ActivationRepartitioner (line 19) | internal sealed partial class ActivationRepartitioner : SystemTarget, IA... method ActivationRepartitioner (line 39) | public ActivationRepartitioner( method OnActiveStart (line 74) | private Task OnActiveStart(CancellationToken cancellationToken) method ResetCounters (line 86) | public ValueTask ResetCounters() method GetActivationCount (line 94) | ValueTask IActivationRepartitionerSystemTarget.GetActivationCount... method SetActivationCountOffset (line 95) | ValueTask IActivationRepartitionerSystemTarget.SetActivationCountOffse... method UpdateTimer (line 101) | private void UpdateTimer() => UpdateTimer(RandomTimeSpan.Next(_options... method UpdateTimer (line 102) | private void UpdateTimer(TimeSpan dueTime) method TriggerExchangeRequest (line 108) | public async ValueTask TriggerExchangeRequest() method GetLocalActivationCount (line 194) | private int GetLocalActivationCount() => _activationDirectory.Count + ... method AcceptExchangeRequest (line 196) | public async ValueTask AcceptExchangeRequest(A... method CalculateImbalance (line 386) | private static int CalculateImbalance(int left, int right) => Math.Abs... method CreateCandidateHeaps (line 387) | private static (MaxHeap Local, MaxHeap giving, Im... method CreateCandidateSets (line 548) | private List<(SiloAddress Silo, List Candidates, long... method GetCandidatesForSilo (line 572) | private List GetCandidatesForSilo(List ComputeAnchoredGrains(List> GetMigrationCandidates() ... method CreateLocalVertexEdges (line 667) | private IEnumerable CreateLocalVertexEdges() method Participate (line 732) | public void Participate(ISiloLifecycle observer) method Dispose (line 749) | void IDisposable.Dispose() method SiloStatusChangeNotification (line 757) | void ISiloStatusListener.SiloStatusChangeNotification(SiloAddress upda... method GetGrainCallFrequencies (line 762) | public ValueTask> GetGrainCallFrequencies() type Direction (line 773) | private enum Direction : byte type VertexEdge (line 790) | private readonly record struct VertexEdge(GrainId SourceId, GrainId Ta... FILE: src/Orleans.Runtime/Placement/Repartitioning/BlockedBloomFilter.cs class BlockedBloomFilter (line 19) | internal sealed class BlockedBloomFilter method BlockedBloomFilter (line 51) | public BlockedBloomFilter(int capacity, double fpRate) method RegressFpRate (line 66) | private static double RegressFpRate(double fpRate) method Add (line 80) | public void Add(GrainId id) method Contains (line 96) | public bool Contains(GrainId id) method Reset (line 112) | public void Reset() => Array.Clear(_filter); method GetBlockIndex (line 114) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ComputeMask1 (line 121) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ComputeMask2 (line 128) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class AnchoredGrainsFilter (line 136) | internal sealed class AnchoredGrainsFilter method AnchoredGrainsFilter (line 142) | public AnchoredGrainsFilter(int capacity, double fpRate, int generations) method Add (line 157) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Contains (line 160) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Rotate (line 174) | public void Rotate() method Reset (line 198) | public void Reset() FILE: src/Orleans.Runtime/Placement/Repartitioning/FrequentItemCollection.cs class FrequentEdgeCounter (line 10) | internal sealed class FrequentEdgeCounter(int capacity) : FrequentItemCo... method GetKey (line 12) | protected override ulong GetKey(in Edge element) => ((ulong)element.So... method Clear (line 13) | public void Clear() => ClearCore(); method Remove (line 14) | public void Remove(in Edge element) => RemoveCore(GetKey(element)); class FrequentItemCollection (line 23) | internal abstract class FrequentItemCollection(int capac... method FrequentItemCollection (line 68) | static FrequentItemCollection() method GetKey (line 79) | protected abstract TKey GetKey(in TElement element); method Add (line 81) | public void Add(in TElement element) method RemoveCore (line 134) | protected bool RemoveCore(TKey key) method ClearCore (line 164) | protected void ClearCore() method GetSketchSize (line 172) | private static int GetSketchSize(int capacity) method InsertHeap (line 185) | private void InsertHeap(Counter element, TKey key) method GrowHeap (line 206) | private void GrowHeap(int minCapacity) method GetParentIndex (line 232) | private static int GetParentIndex(int index) => index - 1 >> Log2Arity; method GetFirstChildIndex (line 237) | private static int GetFirstChildIndex(int index) => (index << Log2Arit... method MoveUpHeap (line 242) | private void MoveUpHeap(Counter node, int nodeIndex, TKey nodeKey) method MoveDownHeap (line 276) | private void MoveDownHeap(Counter node, int nodeIndex, TKey nodeKey) type Counter (line 322) | private struct Counter(TElement element, uint count, uint error) : ICo... method CompareTo (line 328) | public readonly int CompareTo(Counter other) => ((ulong)Count << 32 ... method ToString (line 330) | public override readonly string ToString() => $"{Element}: Count: {C... type ElementEnumerator (line 337) | public struct ElementEnumerator : IEnumerator<(TElement Element, uint ... method ElementEnumerator (line 343) | internal ElementEnumerator(FrequentItemCollection heap) method Dispose (line 353) | public readonly void Dispose() { } method MoveNext (line 359) | public bool MoveNext() method MoveNextRare (line 373) | private bool MoveNextRare() method Reset (line 387) | void IEnumerator.Reset() method GetEnumerator (line 393) | public readonly ElementEnumerator GetEnumerator() => this; method GetEnumerator (line 394) | readonly IEnumerator<(TElement Element, uint Count, uint Error)> IEn... method GetEnumerator (line 395) | readonly IEnumerator IEnumerable.GetEnumerator() => this; FILE: src/Orleans.Runtime/Placement/Repartitioning/MaxHeap.cs type VertexLocation (line 12) | internal enum VertexLocation class CandidateVertexHeapElement (line 19) | [DebuggerDisplay("{Vertex} @ {Location}")] method CompareTo (line 28) | int IHeapElement.CompareTo(CandidateVertex... type IHeapElement (line 31) | internal interface IHeapElement where TElement : notnull method CompareTo (line 34) | int CompareTo(TElement other); class MaxHeap (line 46) | [DebuggerDisplay("Count = {Count}")] method MaxHeap (line 71) | static MaxHeap() method MaxHeap (line 89) | public MaxHeap(List items) method FirstOrDefault (line 121) | public TElement? FirstOrDefault() => _size > 0 ? _nodes[0] : default; method TryPeek (line 123) | public bool TryPeek([NotNullWhen(true)] out TElement value) method Peek (line 140) | public TElement Peek() method TryPop (line 150) | public bool TryPop([NotNullWhen(true)] out TElement value) method Pop (line 167) | public TElement Pop() method GetParentIndex (line 199) | private static int GetParentIndex(int index) => (index - 1) >> Log2Arity; method GetFirstChildIndex (line 204) | private static int GetFirstChildIndex(int index) => (index << Log2Arit... method OnDecreaseElementPriority (line 206) | public void OnDecreaseElementPriority(TElement element) method OnIncreaseElementPriority (line 218) | public void OnIncreaseElementPriority(TElement element) method Heapify (line 233) | public void Heapify() method MoveUp (line 256) | private void MoveUp(TElement node, int nodeIndex) method MoveDown (line 285) | private void MoveDown(TElement node, int nodeIndex) type UnorderedElementEnumerable (line 335) | public struct UnorderedElementEnumerable : IEnumerator, IEnu... method UnorderedElementEnumerable (line 341) | internal UnorderedElementEnumerable(MaxHeap heap) method Dispose (line 351) | public readonly void Dispose() { } method MoveNext (line 357) | public bool MoveNext() method MoveNextRare (line 371) | private bool MoveNextRare() method GetEnumerator (line 385) | public readonly UnorderedElementEnumerable GetEnumerator() => this; method GetEnumerator (line 386) | readonly IEnumerator IEnumerable.GetEnumerator()... method Reset (line 387) | void IEnumerator.Reset() method GetEnumerator (line 393) | readonly IEnumerator IEnumerable.GetEnumerator() => this; FILE: src/Orleans.Runtime/Placement/Repartitioning/RebalancerCompatibleRule.cs class RebalancerCompatibleRule (line 19) | internal class RebalancerCompatibleRule(IServiceProvider provider) : method IsSatisfiedBy (line 36) | public bool IsSatisfiedBy(uint imbalance) => imbalance <= Volatile.Rea... method SiloStatusChangeNotification (line 38) | public void SiloStatusChangeNotification(SiloAddress silo, SiloStatus ... method Participate (line 48) | public void Participate(ISiloLifecycle lifecycle) method OnReport (line 52) | public void OnReport(RebalancingReport report) method UpdatePairwiseImbalance (line 61) | private void UpdatePairwiseImbalance() method OnStart (line 74) | public Task OnStart(CancellationToken cancellationToken) method OnStop (line 82) | public Task OnStop(CancellationToken cancellationToken) FILE: src/Orleans.Runtime/Placement/Repartitioning/RepartitionerMessageFilter.cs type IRepartitionerMessageFilter (line 7) | internal interface IRepartitionerMessageFilter method IsAcceptable (line 9) | bool IsAcceptable(Message message, out bool isSenderMigratable, out bo... class RepartitionerMessageFilter (line 12) | internal sealed class RepartitionerMessageFilter(GrainMigratabilityCheck... method IsAcceptable (line 14) | public bool IsAcceptable(Message message, out bool isSenderMigratable,... FILE: src/Orleans.Runtime/Placement/ResourceOptimizedPlacementDirector.cs class ResourceOptimizedPlacementDirector (line 14) | internal sealed class ResourceOptimizedPlacementDirector : IPlacementDir... method ResourceOptimizedPlacementDirector (line 23) | public ResourceOptimizedPlacementDirector( method NormalizeWeights (line 35) | private static NormalizedWeights NormalizeWeights(ResourceOptimizedPla... method OnAddActivation (line 48) | public Task OnAddActivation(PlacementStrategy strategy, P... method CalculateScore (line 186) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method RemoveSilo (line 216) | public void RemoveSilo(SiloAddress address) method SiloStatisticsChangeNotification (line 219) | public void SiloStatisticsChangeNotification(SiloAddress address, Silo... type NormalizedWeights (line 226) | private record NormalizedWeights(float CpuUsageWeight, float MemoryUsa... type ResourceStatistics (line 227) | private readonly record struct ResourceStatistics(bool IsOverloaded, f... FILE: src/Orleans.Runtime/Placement/SiloRoleBasedPlacementDirector.cs class SiloRoleBasedPlacementDirector (line 8) | internal class SiloRoleBasedPlacementDirector : IPlacementDirector method SiloRoleBasedPlacementDirector (line 12) | public SiloRoleBasedPlacementDirector(MembershipTableManager membershi... method OnAddActivation (line 17) | public virtual Task OnAddActivation( FILE: src/Orleans.Runtime/Placement/StatelessWorkerDirector.cs class StatelessWorkerDirector (line 6) | internal class StatelessWorkerDirector : IPlacementDirector method OnAddActivation (line 8) | public Task OnAddActivation(PlacementStrategy strategy, P... FILE: src/Orleans.Runtime/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: src/Orleans.Runtime/Scheduler/ActivationTaskScheduler.cs class ActivationTaskScheduler (line 15) | [DebuggerDisplay("ActivationTaskScheduler RunQueue={workerGroup.External... method ActivationTaskScheduler (line 27) | internal ActivationTaskScheduler(WorkItemGroup workGroup, ILogger GetScheduledTasks() => this.worke... method RunTaskFromWorkItemGroup (line 42) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method QueueTask (line 56) | protected override void QueueTask(Task task) method TryExecuteTaskInline (line 72) | protected override bool TryExecuteTaskInline(Task task, bool taskWasPr... method ToString (line 112) | public override string ToString() => $"{GetType().Name}-{myId}:Queued=... method LogCreatedTaskScheduler (line 114) | [LoggerMessage( method LogWarnTryExecuteTaskNotDone (line 120) | [LoggerMessage( method LogTraceQueueTask (line 127) | [LoggerMessage( method LogTraceTryExecuteTaskInline (line 133) | [LoggerMessage( method LogTraceTryExecuteTaskInlineNotDone (line 139) | [LoggerMessage( method LogTraceTryExecuteTaskInlineYes (line 145) | [LoggerMessage( method LogTraceTryExecuteTaskInlineCompleted (line 151) | [LoggerMessage( FILE: src/Orleans.Runtime/Scheduler/ClosureWorkItem.cs class AsyncClosureWorkItem (line 7) | internal sealed class AsyncClosureWorkItem : WorkItemBase method AsyncClosureWorkItem (line 16) | public AsyncClosureWorkItem(Func closure, string name, IGrainCon... method AsyncClosureWorkItem (line 23) | public AsyncClosureWorkItem(Func closure, IGrainContext grainCon... method Execute (line 29) | public override async void Execute() method GetMethodName (line 45) | internal static string GetMethodName(Delegate action) => $"{action.Tar... method AsyncClosureWorkItem (line 57) | public AsyncClosureWorkItem(Func> closure, string name, IGrain... method AsyncClosureWorkItem (line 64) | public AsyncClosureWorkItem(Func> closure, IGrainContext grain... method Execute (line 70) | public override async void Execute() class AsyncClosureWorkItem (line 48) | internal sealed class AsyncClosureWorkItem : WorkItemBase method AsyncClosureWorkItem (line 16) | public AsyncClosureWorkItem(Func closure, string name, IGrainCon... method AsyncClosureWorkItem (line 23) | public AsyncClosureWorkItem(Func closure, IGrainContext grainCon... method Execute (line 29) | public override async void Execute() method GetMethodName (line 45) | internal static string GetMethodName(Delegate action) => $"{action.Tar... method AsyncClosureWorkItem (line 57) | public AsyncClosureWorkItem(Func> closure, string name, IGrain... method AsyncClosureWorkItem (line 64) | public AsyncClosureWorkItem(Func> closure, IGrainContext grain... method Execute (line 70) | public override async void Execute() class ClosureWorkItem (line 87) | internal sealed class ClosureWorkItem(Action closure, TS... method Execute (line 94) | public override void Execute() class StatefulAsyncClosureWorkItem (line 111) | internal sealed class StatefulAsyncClosureWorkItem : WorkItemBase method StatefulAsyncClosureWorkItem (line 121) | public StatefulAsyncClosureWorkItem(Func closure, T... method StatefulAsyncClosureWorkItem (line 128) | public StatefulAsyncClosureWorkItem(Func closure, T... method Execute (line 136) | public override async void Execute() FILE: src/Orleans.Runtime/Scheduler/IWorkItem.cs type IWorkItem (line 5) | internal interface IWorkItem method Execute (line 9) | void Execute(); FILE: src/Orleans.Runtime/Scheduler/SchedulerExtensions.cs class SchedulerExtensions (line 7) | internal static class SchedulerExtensions method QueueTask (line 9) | internal static Task QueueTask(this IGrainContext targetContext, Func<... method QueueTask (line 16) | internal static Task QueueTask(this WorkItemGroup scheduler, Func(this IGrainContext targetCont... method RunOrQueueTask (line 30) | internal static Task RunOrQueueTask(this IGrainContext targetContext, ... method RunOrQueueTask (line 50) | internal static ValueTask RunOrQueueTask(this IGrainContext ta... FILE: src/Orleans.Runtime/Scheduler/TaskSchedulerUtils.cs class TaskSchedulerUtils (line 8) | internal static class TaskSchedulerUtils method QueueAction (line 10) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method QueueAction (line 19) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method QueueWorkItem (line 28) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method QueueWorkItem (line 34) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Runtime/Scheduler/WorkItemBase.cs class WorkItemBase (line 5) | internal abstract class WorkItemBase : IWorkItem, ISpanFormattable method Execute (line 11) | public abstract void Execute(); method ToString (line 13) | public sealed override string ToString() => $"{this}"; method ToString (line 15) | string IFormattable.ToString(string format, IFormatProvider formatProv... method TryFormat (line 17) | public virtual bool TryFormat(Span destination, out int charsWri... FILE: src/Orleans.Runtime/Scheduler/WorkItemGroup.cs class WorkItemGroup (line 16) | [DebuggerDisplay("WorkItemGroup Context={GrainContext} State={_state}")] type WorkGroupStatus (line 19) | private enum WorkGroupStatus : byte method WorkItemGroup (line 52) | public WorkItemGroup( method EnqueueTask (line 71) | public void EnqueueTask(Task task) method LogTooManyTasksInQueue (line 122) | [MethodImpl(MethodImplOptions.NoInlining)] method GetScheduledTasks (line 136) | internal IEnumerable GetScheduledTasks() method Execute (line 147) | public void Execute() method LogTaskStart (line 229) | [MethodImpl(MethodImplOptions.NoInlining)] method LogTaskLoopError (line 242) | [MethodImpl(MethodImplOptions.NoInlining)] method LogLongRunningTurn (line 252) | [MethodImpl(MethodImplOptions.NoInlining)] method ToString (line 271) | public override string ToString() => $"{(GrainContext is SystemTarget ... method DumpStatus (line 273) | public string DumpStatus() method ScheduleExecution (line 303) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method QueueAction (line 306) | public void QueueAction(Action action) => TaskScheduler.QueueAction(ac... method QueueAction (line 307) | public void QueueAction(Action action, object state) => TaskSc... method QueueTask (line 308) | public void QueueTask(Task task) => task.Start(TaskScheduler); FILE: src/Orleans.Runtime/Services/GrainService.cs class GrainService (line 13) | public abstract partial class GrainService : SystemTarget, IRingRangeLis... method GrainService (line 42) | [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBro... method GrainService (line 50) | internal GrainService(GrainId grainId, IConsistentRingProvider ringPro... method GrainService (line 61) | protected GrainService(GrainId grainId, Silo silo, ILoggerFactory logg... method Init (line 71) | public virtual Task Init(IServiceProvider serviceProvider) method OnStatusChange (line 76) | private void OnStatusChange(GrainServiceStatus oldStatus, GrainService... method Start (line 90) | public virtual Task Start() method StartInBackground (line 104) | protected virtual Task StartInBackground() method Stop (line 112) | public virtual Task Stop() method RangeChangeNotification (line 123) | void IRingRangeListener.RangeChangeNotification(IRingRange oldRange, I... method OnRangeChange (line 135) | public virtual Task OnRangeChange(IRingRange oldRange, IRingRange newR... type SiloAddressHashCodeLogValue (line 144) | private readonly struct SiloAddressHashCodeLogValue(SiloAddress silo) method ToString (line 146) | public override string ToString() => silo.GetConsistentHashCode().To... method LogInformationServiceStarting (line 149) | [LoggerMessage( method LogInformationServiceStopping (line 156) | [LoggerMessage( method LogInformationRangeChanged (line 163) | [LoggerMessage( type GrainServiceStatus (line 171) | protected enum GrainServiceStatus FILE: src/Orleans.Runtime/Services/GrainServiceClient.cs class GrainServiceClient (line 13) | public abstract class GrainServiceClient : IGrainServiceC... method GrainServiceClient (line 23) | protected GrainServiceClient(IServiceProvider serviceProvider) method GetGrainService (line 42) | protected TGrainService GetGrainService(GrainId callingGrainId) method GetGrainService (line 50) | protected TGrainService GetGrainService(uint key) method GetGrainService (line 58) | protected TGrainService GetGrainService(SiloAddress destination) FILE: src/Orleans.Runtime/Services/GrainServiceFactory.cs type IGrainServiceFactory (line 8) | public interface IGrainServiceFactory method CastToGrainServiceReference (line 17) | T CastToGrainServiceReference(GrainReference grainReference) where ... class GrainServiceFactory (line 20) | internal class GrainServiceFactory : IGrainServiceFactory method GrainServiceFactory (line 24) | public GrainServiceFactory(IRuntimeClient runtimeClient) method CastToGrainServiceReference (line 29) | public T CastToGrainServiceReference(GrainReference grainReference)... FILE: src/Orleans.Runtime/Services/GrainServicesSiloBuilderExtensions.cs class GrainServicesSiloBuilderExtensions (line 13) | public static class GrainServicesSiloBuilderExtensions method AddGrainService (line 21) | public static ISiloBuilder AddGrainService(this ISiloBuilder builder) method GrainServiceFactory (line 27) | private static IGrainService GrainServiceFactory(Type serviceType, ISe... method AddGrainService (line 47) | public static IServiceCollection AddGrainService(this IServiceColle... method AddGrainService (line 58) | public static IServiceCollection AddGrainService(this IServiceCollecti... FILE: src/Orleans.Runtime/Silo/LocalSiloDetails.cs class LocalSiloDetails (line 8) | internal class LocalSiloDetails : ILocalSiloDetails method LocalSiloDetails (line 13) | public LocalSiloDetails( FILE: src/Orleans.Runtime/Silo/Silo.cs class Silo (line 24) | public sealed partial class Silo : IAsyncDisposable, IDisposable method Silo (line 65) | [Obsolete("This constructor is obsolete and may be removed in a future... method StartAsync (line 145) | public async Task StartAsync(CancellationToken cancellationToken) method OnRuntimeInitializeStart (line 158) | private Task OnRuntimeInitializeStart(CancellationToken ct) method StartTaskWithPerfAnalysis (line 172) | private void StartTaskWithPerfAnalysis(string taskName, Action task, S... method StartAsyncTaskWithPerfAnalysis (line 181) | private async Task StartAsyncTaskWithPerfAnalysis(string taskName, Fun... method OnRuntimeServicesStart (line 190) | private Task OnRuntimeServicesStart(CancellationToken ct) method OnRuntimeGrainServicesStart (line 195) | private async Task OnRuntimeGrainServicesStart(CancellationToken ct) method OnBecomeActiveStart (line 217) | private Task OnBecomeActiveStart(CancellationToken ct) method OnActiveStart (line 223) | private async Task OnActiveStart(CancellationToken ct) method CreateGrainServices (line 231) | private async Task CreateGrainServices() method RegisterGrainService (line 240) | private async Task RegisterGrainService(IGrainService service) method StartGrainService (line 260) | private async Task StartGrainService(IGrainService service) method Stop (line 282) | public void Stop() method StopAsync (line 294) | public async Task StopAsync(CancellationToken cancellationToken) method OnRuntimeServicesStop (line 365) | private Task OnRuntimeServicesStop(CancellationToken ct) method OnRuntimeInitializeStop (line 373) | private async Task OnRuntimeInitializeStop(CancellationToken ct) method OnBecomeActiveStop (line 387) | private async Task OnBecomeActiveStop(CancellationToken ct) method OnActiveStop (line 420) | private async Task OnActiveStop(CancellationToken ct) method ToString (line 463) | public override string ToString() => $"Silo: {SiloAddress}"; method Participate (line 465) | private void Participate(ISiloLifecycle lifecycle) method DisposeAsync (line 474) | public async ValueTask DisposeAsync() method Dispose (line 481) | public void Dispose() method LogSiloStartingWithGC (line 494) | [LoggerMessage( method LogWarningSiloGcNotRunningWithServerGC (line 500) | [LoggerMessage( method LogWarningSiloGcMultiCoreSystem (line 507) | [LoggerMessage( method LogWarningSiloGcVerboseLOggingConfigured (line 514) | [LoggerMessage( method LogInfoSiloInitializing (line 521) | [LoggerMessage( method LogInfoSiloInitConfig (line 528) | [LoggerMessage( method LogErrorSiloStartGrainFactoryNotRegistered (line 535) | [LoggerMessage( type SiloAddressConsistentHashCodeLogValue (line 542) | private readonly struct SiloAddressConsistentHashCodeLogValue(SiloAddr... method ToString (line 544) | public override string ToString() => siloAddress.GetConsistentHashCo... method LogInfoSiloInitializingFinished (line 547) | [LoggerMessage( method LogErrorSiloStart (line 554) | [LoggerMessage( method LogInfoSiloStarting (line 561) | [LoggerMessage( method LogInfoSiloStartPerfMeasure (line 568) | [LoggerMessage( method LogErrorStartingSiloGoingToFastKill (line 575) | [LoggerMessage( method LogDebugSiloStartComplete (line 582) | [LoggerMessage( method LogErrorGrainInitializationTimeout (line 588) | [LoggerMessage( method LogInfoGrainServiceRegistered (line 594) | [LoggerMessage( method LogErrorGrainStartupTimeout (line 600) | [LoggerMessage( method LogInfoGrainServiceStarted (line 606) | [LoggerMessage( method LogDebugSiloStopInProgress (line 612) | [LoggerMessage( method LogDebugSiloStopStillInProgress (line 619) | [LoggerMessage( method LogSiloShuttingDown (line 626) | [LoggerMessage( method LogSiloShutDown (line 632) | [LoggerMessage( method LogErrorStoppingMessageCenter (line 638) | [LoggerMessage( method LogErrorDeactivatingActivations (line 644) | [LoggerMessage( method LogWarningSomeGrainsFailedToDeactivate (line 650) | [LoggerMessage( method LogErrorSiloFailedToStopMembership (line 656) | [LoggerMessage( method LogErrorSendingDisconnectRequests (line 662) | [LoggerMessage( method LogErrorStoppingGrainService (line 668) | [LoggerMessage( method LogDebugGrainServiceStopped (line 674) | [LoggerMessage( FILE: src/Orleans.Runtime/Silo/SiloControl.cs class SiloControl (line 27) | internal sealed partial class SiloControl : SystemTarget, ISiloControl, ... method SiloControl (line 49) | public SiloControl( method Ping (line 88) | public Task Ping(string message) method ForceGarbageCollection (line 94) | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Reliabilit... method ForceActivationCollection (line 102) | public Task ForceActivationCollection(TimeSpan ageLimit) method ForceRuntimeStatisticsCollection (line 108) | public Task ForceRuntimeStatisticsCollection() method GetRuntimeStatistics (line 114) | public Task GetRuntimeStatistics() method GetGrainStatistics (line 127) | public Task>> GetGrainStatistics() method GetDetailedGrainStatistics (line 159) | public Task> GetDetailedGrainStatistics(s... method GetSimpleGrainStatistics (line 165) | public Task GetSimpleGrainStatistics() method GetDetailedGrainReport (line 171) | public async Task GetDetailedGrainReport(GrainId ... method GetActivationCount (line 225) | public Task GetActivationCount() method SendControlCommandToProvider (line 230) | public Task SendControlCommandToProvider(string providerNam... method SetCompatibilityStrategy (line 247) | public Task SetCompatibilityStrategy(CompatibilityStrategy strategy) method SetSelectorStrategy (line 254) | public Task SetSelectorStrategy(VersionSelectorStrategy strategy) method SetCompatibilityStrategy (line 261) | public Task SetCompatibilityStrategy(GrainInterfaceType interfaceId, C... method SetSelectorStrategy (line 268) | public Task SetSelectorStrategy(GrainInterfaceType interfaceType, Vers... method GetActiveGrains (line 275) | public Task> GetActiveGrains(GrainType grainType) method MigrateRandomActivations (line 288) | public Task MigrateRandomActivations(SiloAddress target, int count) method GetDetailedGrainStatisticsCore (line 319) | private List GetDetailedGrainStatisticsCore(st... method Participate (line 344) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method LogInformationPing (line 349) | [LoggerMessage( method LogInformationForceGarbageCollection (line 355) | [LoggerMessage( method LogInformationForceActivationCollection (line 361) | [LoggerMessage( method LogDebugForceRuntimeStatisticsCollection (line 367) | [LoggerMessage( method LogDebugGetRuntimeStatistics (line 373) | [LoggerMessage( method LogInformationGetGrainStatistics (line 379) | [LoggerMessage( method LogErrorProviderNotFound (line 385) | [LoggerMessage( FILE: src/Orleans.Runtime/Silo/SiloOptions.cs class SiloOptions (line 6) | public class SiloOptions FILE: src/Orleans.Runtime/Silo/SiloProviderRuntime.cs class SiloProviderRuntime (line 6) | internal class SiloProviderRuntime : IProviderRuntime method SiloProviderRuntime (line 10) | public SiloProviderRuntime( method BindExtension (line 24) | public (TExtension, TExtensionInterface) BindExtension GetConsistentRingPrimaryTargetSilo(uint key); method GetConsistentRingProviderDiagnosticInfo (line 10) | Task GetConsistentRingProviderDiagnosticInfo(); method GetServiceId (line 11) | Task GetServiceId(); method HasStorageProvider (line 12) | Task HasStorageProvider(string providerName); method HasStreamProvider (line 13) | Task HasStreamProvider(string providerName); method UnregisterGrainForTesting (line 14) | Task UnregisterGrainForTesting(GrainId grain); method GetApproximateSiloStatuses (line 15) | Task> GetApproximateSiloStatuses(); type ITestHooksSystemTarget (line 18) | internal interface ITestHooksSystemTarget : ITestHooks, ISystemTarget FILE: src/Orleans.Runtime/Silo/TestHooks/TestHooksSystemTarget.cs class TestHooksEnvironmentStatisticsProvider (line 18) | internal class TestHooksEnvironmentStatisticsProvider : IEnvironmentStat... method GetEnvironmentStatistics (line 24) | public EnvironmentStatistics GetEnvironmentStatistics() method LatchHardwareStatistics (line 35) | public void LatchHardwareStatistics(EnvironmentStatistics stats) => _c... method UnlatchHardwareStatistics (line 36) | public void UnlatchHardwareStatistics() => _currentStats = null; class TestHooksSystemTarget (line 42) | internal sealed class TestHooksSystemTarget : SystemTarget, ITestHooksSy... method TestHooksSystemTarget (line 49) | public TestHooksSystemTarget( method Initialize (line 61) | public void Initialize() method GetConsistentRingPrimaryTargetSilo (line 66) | public Task GetConsistentRingPrimaryTargetSilo(uint key) method GetConsistentRingProviderDiagnosticInfo (line 71) | public Task GetConsistentRingProviderDiagnosticInfo() method GetServiceId (line 76) | public Task GetServiceId() => Task.FromResult(this.serviceProv... method HasStorageProvider (line 78) | public Task HasStorageProvider(string providerName) method HasStreamProvider (line 83) | public Task HasStreamProvider(string providerName) method UnregisterGrainForTesting (line 88) | public Task UnregisterGrainForTesting(GrainId grain) => Task.From... method GetApproximateSiloStatuses (line 90) | public Task> GetApproximateSiloSta... FILE: src/Orleans.Runtime/Silo/Watchdog.cs class Watchdog (line 17) | internal partial class Watchdog(IOptions clust... method Start (line 34) | public void Start() method Stop (line 68) | public void Stop() method RunPlatformWatchdog (line 73) | protected void RunPlatformWatchdog() method CheckRuntimeHealth (line 92) | private void CheckRuntimeHealth() method RunComponentWatchdog (line 114) | protected void RunComponentWatchdog() method CheckComponentHealth (line 132) | private void CheckComponentHealth() method Dispose (line 172) | public void Dispose() type ParticipantTypeLogValue (line 202) | private readonly struct ParticipantTypeLogValue(Type participantType) method ToString (line 204) | public override string ToString() => participantType.ToString(); method LogDebugStartingSiloWatchdog (line 207) | [LoggerMessage( method LogDebugSiloWatchdogStartedSuccessfully (line 213) | [LoggerMessage( method LogErrorPlatformWatchdogInternalError (line 219) | [LoggerMessage( method LogWarningSiloHeartbeatTimerStalled (line 226) | [LoggerMessage( method LogWarningParticipantCheckThreadStalled (line 233) | [LoggerMessage( method LogErrorComponentHealthCheckInternalError (line 240) | [LoggerMessage( method LogWarningHealthCheckParticipantException (line 247) | [LoggerMessage( method LogWarningHealthCheckFailure (line 254) | [LoggerMessage( FILE: src/Orleans.Runtime/Storage/StateStorageBridge.cs class StateStorageBridge (line 21) | public partial class StateStorageBridge : IStorage, IGra... method StateStorageBridge (line 63) | [Obsolete("Use StateStorageBridge(string, IGrainContext, IGrainStorage... method StateStorageBridge (line 67) | public StateStorageBridge(string name, IGrainContext grainContext, IGr... method ReadStateAsync (line 79) | public async Task ReadStateAsync() method WriteStateAsync (line 114) | public async Task WriteStateAsync() method ClearStateAsync (line 147) | public async Task ClearStateAsync() method OnDehydrate (line 185) | public void OnDehydrate(IDehydrationContext dehydrationContext) method OnRehydrate (line 199) | public void OnRehydrate(IRehydrationContext rehydrationContext) method OnError (line 215) | [DoesNotReturn] method LogErrorOnDehydrate (line 236) | [LoggerMessage( method LogErrorOnRehydrate (line 242) | [LoggerMessage( class StateStorageBridgeSharedMap (line 249) | internal sealed class StateStorageBridgeSharedMap(ILoggerFactory loggerF... method Get (line 255) | public StateStorageBridgeShared Get(string name, IGrai... class StateStorageBridgeShared (line 266) | internal sealed class StateStorageBridgeShared(string name, IGra... FILE: src/Orleans.Runtime/Timers/AsyncTimer.cs class AsyncTimer (line 9) | internal partial class AsyncTimer : IAsyncTimer method AsyncTimer (line 23) | public AsyncTimer(TimeSpan period, string name, ILogger log) method NextTick (line 35) | public async Task NextTick(TimeSpan? overrideDelay = default) method GetOvershootDelay (line 90) | private static TimeSpan GetOvershootDelay(DateTime now, DateTime dueTime) method CheckHealth (line 101) | public bool CheckHealth(DateTime lastCheckTime, out string reason) method Dispose (line 116) | public void Dispose() method LogTimerOvershoot (line 122) | [LoggerMessage( FILE: src/Orleans.Runtime/Timers/AsyncTimerFactory.cs class AsyncTimerFactory (line 6) | internal class AsyncTimerFactory : IAsyncTimerFactory method AsyncTimerFactory (line 9) | public AsyncTimerFactory(ILoggerFactory loggerFactory) method Create (line 14) | public IAsyncTimer Create(TimeSpan period, string name) FILE: src/Orleans.Runtime/Timers/GrainTimer.cs class GrainTimer (line 15) | internal abstract partial class GrainTimer : IGrainTimer method GrainTimer (line 32) | public GrainTimer(TimerRegistry shared, IGrainContext grainContext, bo... method ThrowIncorrectGrainContext (line 56) | [DoesNotReturn] method ThrowInvalidSchedulingContext (line 59) | [DoesNotReturn] method ScheduleTickOnActivation (line 68) | protected void ScheduleTickOnActivation() method InvokeCallbackAsync (line 105) | protected abstract Task InvokeCallbackAsync(CancellationToken cancella... method InvokeGrainTimerCallbackAsync (line 107) | private ValueTask InvokeGrainTimerCallbackAsync() method OnTickCompleted (line 138) | private void OnTickCompleted() method OnCallbackException (line 169) | private Response OnCallbackException(Exception exc) method AwaitCallbackTask (line 175) | private async ValueTask AwaitCallbackTask(Task task) method Change (line 195) | public void Change(TimeSpan dueTime, TimeSpan period) method ValidateArguments (line 219) | private static void ValidateArguments(TimeSpan dueTime, TimeSpan period) method Dispose (line 234) | public void Dispose() method ToString (line 250) | public override string ToString() => $"[{GetType()}] Grain: '{_grainCo... class TimerTickInvoker (line 252) | private sealed class TimerTickInvoker(GrainTimer timer) : IInvokable, ... method GetTarget (line 254) | public object? GetTarget() => this; method SetTarget (line 256) | public void SetTarget(ITargetHolder holder) method Invoke (line 264) | public ValueTask Invoke() => timer.InvokeGrainTimerCallbac... method InvokeCallbackAsync (line 268) | Task IGrainTimerInvoker.InvokeCallbackAsync() => throw new InvalidOp... method GetArgumentCount (line 270) | public int GetArgumentCount() => 0; method GetArgument (line 272) | public object? GetArgument(int index) => throw new InvalidOperationE... method SetArgument (line 274) | public void SetArgument(int index, object? value) => throw new Inval... method GetMethodName (line 276) | public string GetMethodName() => nameof(IGrainTimerInvoker.InvokeCal... method GetInterfaceName (line 278) | public string GetInterfaceName() => nameof(IGrainTimerInvoker); method GetActivityName (line 280) | public string GetActivityName() => $"{nameof(IGrainTimerInvoker)}/{n... method GetMethod (line 282) | public MethodInfo GetMethod() => InvokableMethodInfo; method GetInterfaceType (line 284) | public Type GetInterfaceType() => typeof(IGrainTimerInvoker); method GetDefaultResponseTimeout (line 286) | public TimeSpan? GetDefaultResponseTimeout() => null; method Dispose (line 288) | public void Dispose() method ToString (line 293) | public override string ToString() => timer.ToString(); method LogErrorScheduleTickOnActivation (line 296) | [LoggerMessage( method LogTraceBeforeCallback (line 302) | [LoggerMessage( method LogTraceAfterCallback (line 309) | [LoggerMessage( method LogWarningCallbackException (line 316) | [LoggerMessage( method LogErrorCancellingCallback (line 323) | [LoggerMessage( method GrainTimer (line 335) | public GrainTimer( method InvokeCallbackAsync (line 353) | protected override Task InvokeCallbackAsync(CancellationToken cancella... method ToString (line 355) | public override string ToString() => $"{base.ToString()} Callback: '{_... class GrainTimer (line 330) | internal sealed class GrainTimer : GrainTimer method GrainTimer (line 32) | public GrainTimer(TimerRegistry shared, IGrainContext grainContext, bo... method ThrowIncorrectGrainContext (line 56) | [DoesNotReturn] method ThrowInvalidSchedulingContext (line 59) | [DoesNotReturn] method ScheduleTickOnActivation (line 68) | protected void ScheduleTickOnActivation() method InvokeCallbackAsync (line 105) | protected abstract Task InvokeCallbackAsync(CancellationToken cancella... method InvokeGrainTimerCallbackAsync (line 107) | private ValueTask InvokeGrainTimerCallbackAsync() method OnTickCompleted (line 138) | private void OnTickCompleted() method OnCallbackException (line 169) | private Response OnCallbackException(Exception exc) method AwaitCallbackTask (line 175) | private async ValueTask AwaitCallbackTask(Task task) method Change (line 195) | public void Change(TimeSpan dueTime, TimeSpan period) method ValidateArguments (line 219) | private static void ValidateArguments(TimeSpan dueTime, TimeSpan period) method Dispose (line 234) | public void Dispose() method ToString (line 250) | public override string ToString() => $"[{GetType()}] Grain: '{_grainCo... class TimerTickInvoker (line 252) | private sealed class TimerTickInvoker(GrainTimer timer) : IInvokable, ... method GetTarget (line 254) | public object? GetTarget() => this; method SetTarget (line 256) | public void SetTarget(ITargetHolder holder) method Invoke (line 264) | public ValueTask Invoke() => timer.InvokeGrainTimerCallbac... method InvokeCallbackAsync (line 268) | Task IGrainTimerInvoker.InvokeCallbackAsync() => throw new InvalidOp... method GetArgumentCount (line 270) | public int GetArgumentCount() => 0; method GetArgument (line 272) | public object? GetArgument(int index) => throw new InvalidOperationE... method SetArgument (line 274) | public void SetArgument(int index, object? value) => throw new Inval... method GetMethodName (line 276) | public string GetMethodName() => nameof(IGrainTimerInvoker.InvokeCal... method GetInterfaceName (line 278) | public string GetInterfaceName() => nameof(IGrainTimerInvoker); method GetActivityName (line 280) | public string GetActivityName() => $"{nameof(IGrainTimerInvoker)}/{n... method GetMethod (line 282) | public MethodInfo GetMethod() => InvokableMethodInfo; method GetInterfaceType (line 284) | public Type GetInterfaceType() => typeof(IGrainTimerInvoker); method GetDefaultResponseTimeout (line 286) | public TimeSpan? GetDefaultResponseTimeout() => null; method Dispose (line 288) | public void Dispose() method ToString (line 293) | public override string ToString() => timer.ToString(); method LogErrorScheduleTickOnActivation (line 296) | [LoggerMessage( method LogTraceBeforeCallback (line 302) | [LoggerMessage( method LogTraceAfterCallback (line 309) | [LoggerMessage( method LogWarningCallbackException (line 316) | [LoggerMessage( method LogErrorCancellingCallback (line 323) | [LoggerMessage( method GrainTimer (line 335) | public GrainTimer( method InvokeCallbackAsync (line 353) | protected override Task InvokeCallbackAsync(CancellationToken cancella... method ToString (line 355) | public override string ToString() => $"{base.ToString()} Callback: '{_... class InterleavingGrainTimer (line 358) | internal sealed class InterleavingGrainTimer : GrainTimer method InterleavingGrainTimer (line 363) | public InterleavingGrainTimer( method InvokeCallbackAsync (line 379) | protected override Task InvokeCallbackAsync(CancellationToken cancella... method ToString (line 381) | public override string ToString() => $"{base.ToString()} Callback: '{_... type IGrainTimerInvoker (line 385) | internal interface IGrainTimerInvoker : IAddressable method InvokeCallbackAsync (line 390) | Task InvokeCallbackAsync(); FILE: src/Orleans.Runtime/Timers/IAsyncTimer.cs type IAsyncTimer (line 6) | internal interface IAsyncTimer : IDisposable, IHealthCheckable method NextTick (line 8) | Task NextTick(TimeSpan? overrideDelay = default); FILE: src/Orleans.Runtime/Timers/IAsyncTimerFactory.cs type IAsyncTimerFactory (line 5) | internal interface IAsyncTimerFactory method Create (line 7) | IAsyncTimer Create(TimeSpan period, string name); FILE: src/Orleans.Runtime/Timers/IGrainTimerRegistry.cs type IGrainTimerRegistry (line 7) | internal interface IGrainTimerRegistry method OnTimerCreated (line 15) | void OnTimerCreated(IGrainTimer timer); method OnTimerDisposed (line 23) | void OnTimerDisposed(IGrainTimer timer); FILE: src/Orleans.Runtime/Timers/TimerRegistry.cs class TimerRegistry (line 10) | internal class TimerRegistry(ILoggerFactory loggerFactory, TimeProvider ... method RegisterTimer (line 17) | public IDisposable RegisterTimer(IGrainContext grainContext, Func(IGrainContext grainContext, F... FILE: src/Orleans.Runtime/Utilities/FactoryUtility.cs class FactoryUtility (line 9) | internal static class FactoryUtility method Create (line 19) | public static Factory Create(IServiceProvider se... method Create (line 32) | public static Factory Create(I... method Create (line 46) | public static Factory Create Create DrainTo(outputBuffer.AsSpan()); method DrainTo (line 70) | public int DrainTo(Span outputBuffer) method TryAdd (line 97) | public BufferStatus TryAdd(T item) method Clear (line 128) | public void Clear() class MpscBoundedBuffer (line 142) | [DebuggerDisplay("Count = {Count}/{Capacity}")] method MpscBoundedBuffer (line 154) | public MpscBoundedBuffer(int boundedLength) method GetCount (line 194) | private int GetCount(int head, int tail) method TryAdd (line 214) | public BufferStatus TryAdd(T item) method TryTake (line 245) | public BufferStatus TryTake(out T item) method DrainTo (line 280) | public int DrainTo(ArraySegment output) => DrainTo(output.AsSpan()); method DrainTo (line 290) | public int DrainTo(Span output) => DrainToImpl(output); method DrainToImpl (line 293) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Write (line 332) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Length (line 335) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Clear (line 344) | public void Clear() type BufferStatus (line 354) | internal enum BufferStatus class BitOps (line 380) | internal static class BitOps method CeilingPowerOfTwo (line 387) | public static int CeilingPowerOfTwo(int x) => (int)CeilingPowerOfTwo((... method CeilingPowerOfTwo (line 394) | public static uint CeilingPowerOfTwo(uint x) => 1u << -BitOperations.L... method Mix64 (line 404) | public static ulong Mix64(ulong z) type PaddedHeadAndTail (line 412) | [DebuggerDisplay("Head = {Head}, Tail = {Tail}")] class Padding (line 420) | internal static class Padding FILE: src/Orleans.Runtime/Versions/CachedVersionSelectorManager.cs class CachedVersionSelectorManager (line 11) | internal class CachedVersionSelectorManager method CachedVersionSelectorManager (line 16) | public CachedVersionSelectorManager(GrainVersionManifest grainInterfac... method GetSuitableSilos (line 28) | public CachedEntry GetSuitableSilos(GrainType grainType, GrainInterfac... method ResetCache (line 39) | public void ResetCache() method GetSuitableSilosImpl (line 44) | private CachedEntry GetSuitableSilosImpl((GrainType Type, GrainInterfa... type CachedEntry (line 68) | internal struct CachedEntry FILE: src/Orleans.Runtime/Versions/Compatibility/AllVersionsCompatibilityDirector.cs class AllVersionsCompatibilityDirector (line 5) | internal class AllVersionsCompatibilityDirector : ICompatibilityDirector method IsCompatible (line 7) | public bool IsCompatible(ushort requestedVersion, ushort currentVersion) FILE: src/Orleans.Runtime/Versions/Compatibility/BackwardCompatilityDirector.cs class BackwardCompatilityDirector (line 5) | internal class BackwardCompatilityDirector : ICompatibilityDirector method IsCompatible (line 7) | public bool IsCompatible(ushort requestedVersion, ushort currentVersion) FILE: src/Orleans.Runtime/Versions/Compatibility/CompatibilityDirectorManager.cs class CompatibilityDirectorManager (line 10) | internal class CompatibilityDirectorManager method CompatibilityDirectorManager (line 19) | public CompatibilityDirectorManager(IServiceProvider serviceProvider, ... method GetDirector (line 27) | public ICompatibilityDirector GetDirector(GrainInterfaceType interface... method SetStrategy (line 34) | public void SetStrategy(CompatibilityStrategy strategy) method SetStrategy (line 40) | public void SetStrategy(GrainInterfaceType interfaceType, Compatibilit... method ResolveVersionDirector (line 53) | private static ICompatibilityDirector ResolveVersionDirector(IServiceP... FILE: src/Orleans.Runtime/Versions/Compatibility/StrictVersionCompatibilityDirector.cs class StrictVersionCompatibilityDirector (line 5) | internal class StrictVersionCompatibilityDirector : ICompatibilityDirector method IsCompatible (line 7) | public bool IsCompatible(ushort requestedVersion, ushort currentVersion) FILE: src/Orleans.Runtime/Versions/GrainVersionStore.cs class GrainVersionStore (line 13) | internal class GrainVersionStore : IVersionStore, ILifecycleParticipant<... method GrainVersionStore (line 22) | public GrainVersionStore(IInternalGrainFactory grainFactory, ILocalSil... method SetCompatibilityStrategy (line 30) | public async Task SetCompatibilityStrategy(CompatibilityStrategy strat... method SetSelectorStrategy (line 36) | public async Task SetSelectorStrategy(VersionSelectorStrategy strategy) method SetCompatibilityStrategy (line 42) | public async Task SetCompatibilityStrategy(GrainInterfaceType interfac... method SetSelectorStrategy (line 48) | public async Task SetSelectorStrategy(GrainInterfaceType interfaceType... method GetCompatibilityStrategies (line 54) | public async Task GetCompatibilityStrategy() method GetSelectorStrategy (line 72) | public async Task GetSelectorStrategy() method ThrowIfNotEnabled (line 78) | private void ThrowIfNotEnabled() method Participate (line 85) | public void Participate(ISiloLifecycle lifecycle) method OnStart (line 90) | private Task OnStart(CancellationToken token) FILE: src/Orleans.Runtime/Versions/Selector/AllCompatibleVersionsSelector.cs class AllCompatibleVersionsSelector (line 7) | internal class AllCompatibleVersionsSelector : IVersionSelector method GetSuitableVersion (line 9) | public ushort[] GetSuitableVersion(ushort requestedVersion, ushort[] a... FILE: src/Orleans.Runtime/Versions/Selector/LatestVersionDirector.cs class LatestVersionSelector (line 7) | internal sealed class LatestVersionSelector : IVersionSelector method GetSuitableVersion (line 9) | public ushort[] GetSuitableVersion(ushort requestedVersion, ushort[] a... FILE: src/Orleans.Runtime/Versions/Selector/MinimumVersionSelector.cs class MinimumVersionSelector (line 7) | internal sealed class MinimumVersionSelector : IVersionSelector method GetSuitableVersion (line 9) | public ushort[] GetSuitableVersion(ushort requestedVersion, ushort[] a... FILE: src/Orleans.Runtime/Versions/Selector/VersionDirectorManager.cs class VersionSelectorManager (line 10) | internal class VersionSelectorManager method VersionSelectorManager (line 18) | public VersionSelectorManager(IServiceProvider serviceProvider, IOptio... method GetSelector (line 26) | public IVersionSelector GetSelector(GrainInterfaceType interfaceType) method SetSelector (line 34) | public void SetSelector(VersionSelectorStrategy strategy) method SetSelector (line 40) | public void SetSelector(GrainInterfaceType interfaceType, VersionSelec... method ResolveVersionSelector (line 53) | private static IVersionSelector ResolveVersionSelector(IServiceProvide... FILE: src/Orleans.Runtime/Versions/SingleWaiterAutoResetEvent.cs class SingleWaiterAutoResetEvent (line 14) | internal sealed class SingleWaiterAutoResetEvent : IValueTaskSource method GetStatus (line 34) | ValueTaskSourceStatus IValueTaskSource.GetStatus(short token) => _wait... method OnCompleted (line 36) | void IValueTaskSource.OnCompleted(Action continuation, object ... method GetResult (line 38) | void IValueTaskSource.GetResult(short token) method Signal (line 51) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WaitAsync (line 77) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ResetStatus (line 105) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ThrowConcurrentWaitersNotSupported (line 116) | private static void ThrowConcurrentWaitersNotSupported() => throw new ... FILE: src/Orleans.Runtime/Versions/VersionStoreGrain.cs type IVersionStoreGrain (line 9) | internal interface IVersionStoreGrain : IGrainWithStringKey method GetCompatibilityStrategies (line 11) | Task> GetCompati... method GetSelectorStrategies (line 12) | Task> GetSelec... method GetCompatibilityStrategy (line 13) | Task GetCompatibilityStrategy(); method GetSelectorStrategy (line 14) | Task GetSelectorStrategy(); method SetCompatibilityStrategy (line 15) | Task SetCompatibilityStrategy(CompatibilityStrategy strategy); method SetSelectorStrategy (line 16) | Task SetSelectorStrategy(VersionSelectorStrategy strategy); method SetCompatibilityStrategy (line 17) | Task SetCompatibilityStrategy(GrainInterfaceType interfaceType, Compat... method SetSelectorStrategy (line 18) | Task SetSelectorStrategy(GrainInterfaceType interfaceType, VersionSele... class VersionStoreGrainState (line 21) | [GenerateSerializer] class VersionStoreGrain (line 34) | [StorageProvider(ProviderName = ProviderConstants.DEFAULT_STORAGE_PROVID... method SetCompatibilityStrategy (line 37) | public async Task SetCompatibilityStrategy(CompatibilityStrategy strat... method SetSelectorStrategy (line 43) | public async Task SetSelectorStrategy(VersionSelectorStrategy strategy) method SetCompatibilityStrategy (line 49) | public async Task SetCompatibilityStrategy(GrainInterfaceType ifaceId,... method SetSelectorStrategy (line 55) | public async Task SetSelectorStrategy(GrainInterfaceType ifaceId, Vers... method GetCompatibilityStrategies (line 63) | public Task> Get... method GetSelectorStrategies (line 68) | public Task> G... method GetCompatibilityStrategy (line 73) | public Task GetCompatibilityStrategy() method GetSelectorStrategy (line 78) | public Task GetSelectorStrategy() FILE: src/Orleans.Serialization.Abstractions/Annotations.cs class GenerateSerializerAttribute (line 11) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | Attri... class GenerateMethodSerializersAttribute (line 30) | [AttributeUsage(AttributeTargets.Interface, AllowMultiple = true)] method GenerateMethodSerializersAttribute (line 38) | public GenerateMethodSerializersAttribute(Type proxyBase, bool isExten... class InvokeMethodNameAttribute (line 60) | [AttributeUsage(AttributeTargets.Class)] method InvokeMethodNameAttribute (line 67) | public InvokeMethodNameAttribute(string invokeMethodName) class DefaultInvokeMethodNameAttribute (line 82) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] method DefaultInvokeMethodNameAttribute (line 90) | public DefaultInvokeMethodNameAttribute(Type returnType, string method... class InvokableCustomInitializerAttribute (line 110) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] method InvokableCustomInitializerAttribute (line 118) | public InvokableCustomInitializerAttribute(string methodName, object m... method InvokableCustomInitializerAttribute (line 129) | public InvokableCustomInitializerAttribute(string methodName) class DefaultInvokableBaseTypeAttribute (line 160) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] method DefaultInvokableBaseTypeAttribute (line 168) | public DefaultInvokableBaseTypeAttribute(Type returnType, Type invokab... class InvokableBaseTypeAttribute (line 193) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, All... method InvokableBaseTypeAttribute (line 202) | public InvokableBaseTypeAttribute(Type proxyBaseClass, Type returnType... class GetCompletionSourceMethodNameAttribute (line 233) | [AttributeUsage(AttributeTargets.Class)] method GetCompletionSourceMethodNameAttribute (line 240) | public GetCompletionSourceMethodNameAttribute(string methodName) class IdAttribute (line 258) | [AttributeUsage( method IdAttribute (line 271) | public IdAttribute(uint id) class OrleansConstructorAttribute (line 290) | [AttributeUsage(AttributeTargets.Constructor)] method OrleansConstructorAttribute (line 297) | public OrleansConstructorAttribute() class AliasAttribute (line 309) | [AttributeUsage( method AliasAttribute (line 325) | public AliasAttribute(string alias) class CompoundTypeAliasAttribute (line 343) | [AttributeUsage( method CompoundTypeAliasAttribute (line 355) | public CompoundTypeAliasAttribute(params object[] components) class RegisterProviderAttribute (line 373) | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] class RegisterSerializerAttribute (line 408) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class RegisterActivatorAttribute (line 416) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class RegisterCopierAttribute (line 424) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class RegisterConverterAttribute (line 432) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class UseActivatorAttribute (line 440) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class SuppressReferenceTrackingAttribute (line 451) | [AttributeUsage(AttributeTargets.Class)] class OmitDefaultMemberValuesAttribute (line 460) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class ImmutableAttribute (line 470) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | Attri... class SerializerTransparentAttribute (line 480) | [AttributeUsage(AttributeTargets.Class, Inherited = false)] class ApplicationPartAttribute (line 486) | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] method ApplicationPartAttribute (line 493) | public ApplicationPartAttribute(string assemblyName) class SerializationCallbacksAttribute (line 507) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] method SerializationCallbacksAttribute (line 514) | public SerializationCallbacksAttribute(Type hookType) class GeneratedActivatorConstructorAttribute (line 534) | [AttributeUsage(AttributeTargets.Constructor)] method GeneratedActivatorConstructorAttribute (line 540) | public GeneratedActivatorConstructorAttribute() class GenerateCodeForDeclaringAssemblyAttribute (line 549) | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] method GenerateCodeForDeclaringAssemblyAttribute (line 556) | public GenerateCodeForDeclaringAssemblyAttribute(Type type) class ResponseTimeoutAttribute (line 571) | [AttributeUsage(AttributeTargets.Method)] method ResponseTimeoutAttribute (line 578) | public ResponseTimeoutAttribute(string timeout) => Timeout = TimeSpan.... type IConverter (line 589) | public interface IConverter where TSurrogate : struct method ConvertFromSurrogate (line 596) | TValue ConvertFromSurrogate(in TSurrogate surrogate); method ConvertToSurrogate (line 603) | TSurrogate ConvertToSurrogate(in TValue value); type IPopulator (line 609) | public interface IPopulator where TSurrogate : struc... method Populate (line 616) | void Populate(in TSurrogate surrogate, TValue value); class ReturnValueProxyAttribute (line 626) | [AttributeUsage(AttributeTargets.Class)] method ReturnValueProxyAttribute (line 629) | public ReturnValueProxyAttribute(string initializerMethodName) FILE: src/Orleans.Serialization.Abstractions/FrameworkPartAttribute.cs class FrameworkPartAttribute (line 9) | [AttributeUsage(AttributeTargets.Assembly)] FILE: src/Orleans.Serialization.Abstractions/GenerateFieldIds.cs type GenerateFieldIds (line 6) | public enum GenerateFieldIds FILE: src/Orleans.Serialization.Abstractions/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: src/Orleans.Serialization.FSharp/FSharpCodecs.cs class FSharpUnitCodec (line 19) | [RegisterSerializer] method WriteField (line 22) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public Unit ReadValue(ref Reader reader, Field field) class FSharpOptionCodec (line 38) | [RegisterCopier] method FSharpOptionCodec (line 55) | public FSharpOptionCodec(IFieldCodec fieldCodec) method WriteField (line 61) | public void WriteField(ref Writer writer... method ReadValue (line 75) | public FSharpOption ReadValue(ref Reader reader, Fi... class FSharpOptionCopier (line 114) | [RegisterCopier] method FSharpOptionCopier (line 123) | public FSharpOptionCopier(IDeepCopier valueCopier) method DeepCopy (line 129) | public FSharpOption DeepCopy(FSharpOption input, CopyContext con... class FSharpValueOptionCodec (line 151) | [RegisterSerializer] method FSharpValueOptionCodec (line 160) | public FSharpValueOptionCodec(IFieldCodec item1Codec) method WriteField (line 166) | void IFieldCodec>.WriteField(ref W... method ReadValue (line 180) | FSharpValueOption IFieldCodec>.ReadValue valueCopier) method DeepCopy (line 229) | public FSharpValueOption DeepCopy(FSharpValueOption input, CopyC... class FSharpChoiceCodec (line 245) | [RegisterSerializer] method FSharpChoiceCodec (line 259) | public FSharpChoiceCodec(IFieldCodec item1Codec, IFieldCodec i... method WriteField (line 266) | void IFieldCodec>.WriteField(ref W... method ReadValue (line 284) | FSharpChoice IFieldCodec>.ReadValue>.WriteField(r... method ReadValue (line 390) | FSharpChoice IFieldCodec>.ReadVal... method FSharpChoiceCodec (line 476) | public FSharpChoiceCodec( method WriteField (line 488) | void IFieldCodec>.WriteField IFieldCodec>... method FSharpChoiceCodec (line 601) | public FSharpChoiceCodec( method WriteField (line 615) | void IFieldCodec>.WriteField IFieldCodec>.WriteField IFieldCodec copier1, IDeepCopier cop... method DeepCopy (line 332) | public FSharpChoice DeepCopy(FSharpChoice input, CopyC... method FSharpChoiceCopier (line 434) | public FSharpChoiceCopier( method DeepCopy (line 444) | public FSharpChoice DeepCopy(FSharpChoice inpu... method FSharpChoiceCopier (line 554) | public FSharpChoiceCopier( method DeepCopy (line 566) | public FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice item1Codec, IFieldCodec i... method WriteField (line 266) | void IFieldCodec>.WriteField(ref W... method ReadValue (line 284) | FSharpChoice IFieldCodec>.ReadValue>.WriteField(r... method ReadValue (line 390) | FSharpChoice IFieldCodec>.ReadVal... method FSharpChoiceCodec (line 476) | public FSharpChoiceCodec( method WriteField (line 488) | void IFieldCodec>.WriteField IFieldCodec>... method FSharpChoiceCodec (line 601) | public FSharpChoiceCodec( method WriteField (line 615) | void IFieldCodec>.WriteField IFieldCodec>.WriteField IFieldCodec copier1, IDeepCopier cop... method DeepCopy (line 332) | public FSharpChoice DeepCopy(FSharpChoice input, CopyC... method FSharpChoiceCopier (line 434) | public FSharpChoiceCopier( method DeepCopy (line 444) | public FSharpChoice DeepCopy(FSharpChoice inpu... method FSharpChoiceCopier (line 554) | public FSharpChoiceCopier( method DeepCopy (line 566) | public FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice item1Codec, IFieldCodec i... method WriteField (line 266) | void IFieldCodec>.WriteField(ref W... method ReadValue (line 284) | FSharpChoice IFieldCodec>.ReadValue>.WriteField(r... method ReadValue (line 390) | FSharpChoice IFieldCodec>.ReadVal... method FSharpChoiceCodec (line 476) | public FSharpChoiceCodec( method WriteField (line 488) | void IFieldCodec>.WriteField IFieldCodec>... method FSharpChoiceCodec (line 601) | public FSharpChoiceCodec( method WriteField (line 615) | void IFieldCodec>.WriteField IFieldCodec>.WriteField IFieldCodec copier1, IDeepCopier cop... method DeepCopy (line 332) | public FSharpChoice DeepCopy(FSharpChoice input, CopyC... method FSharpChoiceCopier (line 434) | public FSharpChoiceCopier( method DeepCopy (line 444) | public FSharpChoice DeepCopy(FSharpChoice inpu... method FSharpChoiceCopier (line 554) | public FSharpChoiceCopier( method DeepCopy (line 566) | public FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice item1Codec, IFieldCodec i... method WriteField (line 266) | void IFieldCodec>.WriteField(ref W... method ReadValue (line 284) | FSharpChoice IFieldCodec>.ReadValue>.WriteField(r... method ReadValue (line 390) | FSharpChoice IFieldCodec>.ReadVal... method FSharpChoiceCodec (line 476) | public FSharpChoiceCodec( method WriteField (line 488) | void IFieldCodec>.WriteField IFieldCodec>... method FSharpChoiceCodec (line 601) | public FSharpChoiceCodec( method WriteField (line 615) | void IFieldCodec>.WriteField IFieldCodec>.WriteField IFieldCodec copier1, IDeepCopier cop... method DeepCopy (line 332) | public FSharpChoice DeepCopy(FSharpChoice input, CopyC... method FSharpChoiceCopier (line 434) | public FSharpChoiceCopier( method DeepCopy (line 444) | public FSharpChoice DeepCopy(FSharpChoice inpu... method FSharpChoiceCopier (line 554) | public FSharpChoiceCopier( method DeepCopy (line 566) | public FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice item1Codec, IFieldCodec i... method WriteField (line 266) | void IFieldCodec>.WriteField(ref W... method ReadValue (line 284) | FSharpChoice IFieldCodec>.ReadValue>.WriteField(r... method ReadValue (line 390) | FSharpChoice IFieldCodec>.ReadVal... method FSharpChoiceCodec (line 476) | public FSharpChoiceCodec( method WriteField (line 488) | void IFieldCodec>.WriteField IFieldCodec>... method FSharpChoiceCodec (line 601) | public FSharpChoiceCodec( method WriteField (line 615) | void IFieldCodec>.WriteField IFieldCodec>.WriteField IFieldCodec copier1, IDeepCopier cop... method DeepCopy (line 332) | public FSharpChoice DeepCopy(FSharpChoice input, CopyC... method FSharpChoiceCopier (line 434) | public FSharpChoiceCopier( method DeepCopy (line 444) | public FSharpChoice DeepCopy(FSharpChoice inpu... method FSharpChoiceCopier (line 554) | public FSharpChoiceCopier( method DeepCopy (line 566) | public FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice DeepCopy(FSharpChoice> surrogat... method ConvertFromSurrogate (line 869) | public override FSharpRef ConvertFromSurrogate(ref FSharpRefSurroga... method ConvertToSurrogate (line 874) | public override void ConvertToSurrogate(FSharpRef value, ref FSharp... type FSharpRefSurrogate (line 880) | [GenerateSerializer] class FSharpRefCopier (line 887) | [RegisterCopier] method FSharpRefCopier (line 891) | public FSharpRefCopier(IDeepCopier copier) => _copier = copier; method DeepCopy (line 892) | public FSharpRef DeepCopy(FSharpRef input, CopyContext context) class FSharpListCodec (line 910) | [RegisterSerializer] method FSharpListCodec (line 913) | public FSharpListCodec(IValueSerializer> surrog... method ConvertFromSurrogate (line 917) | public override FSharpList ConvertFromSurrogate(ref FSharpListSurro... method ConvertToSurrogate (line 924) | public override void ConvertToSurrogate(FSharpList value, ref FShar... type FSharpListSurrogate (line 932) | [GenerateSerializer] class FSharpListCopier (line 939) | [RegisterCopier] method FSharpListCopier (line 943) | public FSharpListCopier(IDeepCopier copier) => _copier = copier; method DeepCopy (line 945) | public FSharpList DeepCopy(FSharpList input, CopyContext context) class FSharpSetCodec (line 966) | [RegisterSerializer] method FSharpSetCodec (line 969) | public FSharpSetCodec(IValueSerializer> surrogat... method ConvertFromSurrogate (line 973) | public override FSharpSet ConvertFromSurrogate(ref FSharpSetSurroga... method ConvertToSurrogate (line 979) | public override void ConvertToSurrogate(FSharpSet value, ref FSharp... type FSharpSetSurrogate (line 986) | [GenerateSerializer] class FSharpSetCopier (line 993) | [RegisterCopier] method FSharpSetCopier (line 997) | public FSharpSetCopier(IDeepCopier copier) => _copier = copier; method DeepCopy (line 999) | public FSharpSet DeepCopy(FSharpSet input, CopyContext context) class FSharpMapCodec (line 1020) | [RegisterSerializer] method FSharpMapCodec (line 1023) | public FSharpMapCodec(IValueSerializer ConvertFromSurrogate(ref FShar... method ConvertToSurrogate (line 1034) | public override void ConvertToSurrogate(FSharpMap value,... type FSharpMapSurrogate (line 1043) | [GenerateSerializer] class FSharpMapCopier (line 1050) | [RegisterCopier] method FSharpMapCopier (line 1056) | public FSharpMapCopier(IDeepCopier keyCopier, IDeepCopier DeepCopy(FSharpMap input,... class FSharpResultCodec (line 1083) | [RegisterSerializer] method FSharpResultCodec (line 1092) | public FSharpResultCodec(IFieldCodec item1Codec, IFieldCodec>.WriteField(re... method ReadValue (line 1115) | FSharpResult IFieldCodec>.ReadValue... class FSharpResultCopier (line 1144) | [RegisterCopier] method FSharpResultCopier (line 1150) | public FSharpResultCopier(IDeepCopier copier1, IDeepCopier ... method DeepCopy (line 1156) | public FSharpResult DeepCopy(FSharpResult input,... FILE: src/Orleans.Serialization.MemoryPack/MemoryPackCodec.cs class MemoryPackCodec (line 21) | [Alias(WellKnownAlias)] method MemoryPackCodec (line 42) | public MemoryPackCodec( method WriteField (line 53) | void IFieldCodec.WriteField(ref Writer w... method ReadValue (line 87) | object IFieldCodec.ReadValue(ref Reader reader, Field ... method IsSupportedType (line 147) | bool IGeneralizedCodec.IsSupportedType(Type type) method DeepCopy (line 176) | object IDeepCopier.DeepCopy(object input, CopyContext context) method IsSupportedType (line 201) | bool IGeneralizedCopier.IsSupportedType(Type type) method IsTypeAllowed (line 225) | bool? ITypeFilter.IsTypeAllowed(Type type) => (((IGeneralizedCopier)th... method IsMemoryPackContract (line 227) | private static bool IsMemoryPackContract(Type type) method ThrowTypeFieldMissing (line 240) | private static void ThrowTypeFieldMissing() => throw new RequiredField... FILE: src/Orleans.Serialization.MemoryPack/MemoryPackCodecOptions.cs class MemoryPackCodecOptions (line 9) | public class MemoryPackCodecOptions FILE: src/Orleans.Serialization.MemoryPack/SerializationHostingExtensions.cs class SerializationHostingExtensions (line 14) | public static class SerializationHostingExtensions method AddMemoryPackSerializer (line 25) | public static ISerializerBuilder AddMemoryPackSerializer( method AddMemoryPackSerializer (line 51) | public static ISerializerBuilder AddMemoryPackSerializer( FILE: src/Orleans.Serialization.MessagePack/MessagePackCodec.cs class MessagePackCodec (line 25) | [Alias(WellKnownAlias)] method MessagePackCodec (line 47) | public MessagePackCodec( method WriteField (line 58) | void IFieldCodec.WriteField(ref Writer w... method ReadValue (line 95) | object IFieldCodec.ReadValue(ref Reader reader, Field ... method IsSupportedType (line 155) | bool IGeneralizedCodec.IsSupportedType(Type type) method DeepCopy (line 184) | object IDeepCopier.DeepCopy(object input, CopyContext context) method IsSupportedType (line 211) | bool IGeneralizedCopier.IsSupportedType(Type type) method IsTypeAllowed (line 235) | bool? ITypeFilter.IsTypeAllowed(Type type) => (((IGeneralizedCopier)th... method IsMessagePackContract (line 237) | private static bool IsMessagePackContract(Type type, bool allowDataCon... method ThrowTypeFieldMissing (line 255) | private static void ThrowTypeFieldMissing() => throw new RequiredField... FILE: src/Orleans.Serialization.MessagePack/MessagePackCodecOptions.cs class MessagePackCodecOptions (line 10) | public class MessagePackCodecOptions FILE: src/Orleans.Serialization.MessagePack/SerializationHostingExtensions.cs class SerializationHostingExtensions (line 14) | public static class SerializationHostingExtensions method AddMessagePackSerializer (line 25) | public static ISerializerBuilder AddMessagePackSerializer( method AddMessagePackSerializer (line 51) | public static ISerializerBuilder AddMessagePackSerializer( FILE: src/Orleans.Serialization.NewtonsoftJson/NewtonsoftJsonCodec.cs class NewtonsoftJsonCodec (line 20) | [Alias(WellKnownAlias)] method NewtonsoftJsonCodec (line 40) | public NewtonsoftJsonCodec( method WriteField (line 51) | void IFieldCodec.WriteField(ref Writer w... method ReadValue (line 76) | object IFieldCodec.ReadValue(ref Reader reader, Field ... method IsSupportedType (line 124) | bool IGeneralizedCodec.IsSupportedType(Type type) method DeepCopy (line 158) | object IDeepCopier.DeepCopy(object input, CopyContext context) method IsSupportedType (line 188) | bool IGeneralizedCopier.IsSupportedType(Type type) method IsNativelySupportedType (line 216) | private static bool IsNativelySupportedType(Type type) method ThrowTypeFieldMissing (line 228) | private static void ThrowTypeFieldMissing() => throw new RequiredField... method IsSupportedType (line 230) | private bool IsSupportedType(Type type) => ((IGeneralizedCodec)this).I... method IsTypeAllowed (line 231) | bool? ITypeFilter.IsTypeAllowed(Type type) => IsSupportedType(type) ? ... FILE: src/Orleans.Serialization.NewtonsoftJson/NewtonsoftJsonCodecOptions.cs class NewtonsoftJsonCodecOptions (line 9) | public class NewtonsoftJsonCodecOptions FILE: src/Orleans.Serialization.NewtonsoftJson/SerializationHostingExtensions.cs class SerializationHostingExtensions (line 14) | public static class SerializationHostingExtensions method AddNewtonsoftJsonSerializer (line 24) | public static ISerializerBuilder AddNewtonsoftJsonSerializer( method AddNewtonsoftJsonSerializer (line 44) | public static ISerializerBuilder AddNewtonsoftJsonSerializer( method AddNewtonsoftJsonSerializer (line 60) | public static ISerializerBuilder AddNewtonsoftJsonSerializer( FILE: src/Orleans.Serialization.SystemTextJson/JsonCodec.cs class JsonCodec (line 22) | [Alias(WellKnownAlias)] method JsonCodec (line 41) | public JsonCodec( method WriteField (line 52) | void IFieldCodec.WriteField(ref Writer w... method ReadValue (line 94) | object IFieldCodec.ReadValue(ref Reader reader, Field ... method IsSupportedType (line 164) | bool IGeneralizedCodec.IsSupportedType(Type type) method IsNativelySupportedType (line 197) | private static bool IsNativelySupportedType(Type type) method DeepCopy (line 210) | object IDeepCopier.DeepCopy(object input, CopyContext context) method IsSupportedType (line 245) | bool IGeneralizedCopier.IsSupportedType(Type type) method IsTypeAllowed (line 274) | bool? ITypeFilter.IsTypeAllowed(Type type) => (((IGeneralizedCopier)th... method ThrowTypeFieldMissing (line 276) | private static void ThrowTypeFieldMissing() => throw new RequiredField... FILE: src/Orleans.Serialization.SystemTextJson/JsonCodecOptions.cs class JsonCodecOptions (line 9) | public class JsonCodecOptions FILE: src/Orleans.Serialization.SystemTextJson/SerializationHostingExtensions.cs class SerializationHostingExtensions (line 14) | public static class SerializationHostingExtensions method AddJsonSerializer (line 24) | public static ISerializerBuilder AddJsonSerializer( method AddJsonSerializer (line 46) | public static ISerializerBuilder AddJsonSerializer( FILE: src/Orleans.Serialization.TestKit/BufferTestHelper.cs class BufferTestHelper (line 14) | [ExcludeFromCodeCoverage] method GetTestSerializers (line 17) | public static IBufferTestSerializer[] GetTestSerializers(IServiceProvi... type IBufferTestSerializer (line 30) | public interface IBufferTestSerializer method Serialize (line 32) | IOutputBuffer Serialize(TValue input); method Deserialize (line 33) | void Deserialize(ReadOnlySequence buffer, out TValue output); class BufferTester (line 36) | [ExcludeFromCodeCoverage] method BufferTester (line 42) | protected BufferTester(IServiceProvider serviceProvider) method CreateBufferWriter (line 48) | protected abstract TBufferWriter CreateBufferWriter(); method Serialize (line 50) | public IOutputBuffer Serialize(TValue input) method Deserialize (line 58) | public void Deserialize(ReadOnlySequence buffer, out TValue ou... class MultiSegmentBufferWriterTester (line 66) | [ExcludeFromCodeCoverage] method MultiSegmentBufferWriterTester (line 71) | public MultiSegmentBufferWriterTester(IServiceProvider serviceProvid... class Options (line 76) | public class Options method CreateBufferWriter (line 81) | protected override TestMultiSegmentBufferWriter CreateBufferWriter()... method ToString (line 83) | public override string ToString() => $"{nameof(TestMultiSegmentBuffe... class StructBufferWriterTester (line 86) | [ExcludeFromCodeCoverage] method CreateBufferWriter (line 89) | protected override TestBufferWriterStruct CreateBufferWriter() => ne... method StructBufferWriterTester (line 91) | public StructBufferWriterTester(IServiceProvider serviceProvider) : ... method ToString (line 95) | public override string ToString() => $"{nameof(TestBufferWriterStruc... type PooledOutputBuffer (line 98) | private struct PooledOutputBuffer : IBufferWriter, IOutputBuffer... method PooledOutputBuffer (line 102) | public PooledOutputBuffer() method Advance (line 107) | public void Advance(int count) => _buffer.Advance(count); method Dispose (line 108) | public void Dispose() => _buffer.Dispose(); method GetMemory (line 109) | public Memory GetMemory(int sizeHint = 0) => _buffer.GetMemory... method GetReadOnlySequence (line 110) | public ReadOnlySequence GetReadOnlySequence(int maxSegmentSize... method GetSpan (line 111) | public Span GetSpan(int sizeHint = 0) => _buffer.GetSpan(sizeH... class PooledBufferWriterTester (line 114) | [ExcludeFromCodeCoverage] method PooledBufferWriterTester (line 117) | public PooledBufferWriterTester(IServiceProvider serviceProvider) : ... method CreateBufferWriter (line 121) | protected override PooledOutputBuffer CreateBufferWriter() => new(); method ToString (line 123) | public override string ToString() => $"{nameof(PooledBufferWriterTes... FILE: src/Orleans.Serialization.TestKit/CopierTester.cs class CopierTester (line 16) | [Trait("Category", "BVT")] method CopierTester (line 26) | protected CopierTester(ITestOutputHelper output) method Configure (line 72) | protected virtual void Configure(ISerializerBuilder builder) method CreateCopier (line 79) | protected virtual TCopier CreateCopier() => _serviceProvider.GetRequir... method CreateValue (line 84) | protected abstract TValue CreateValue(); method Equals (line 94) | protected virtual bool Equals(TValue left, TValue right) => EqualityCo... method CopiedValuesAreEqual (line 104) | [Fact] method ReferencesAreAddedToCopyContext (line 131) | [Fact] method CanCopyTupleViaSerializer (line 158) | [Fact] method CanCopyUntypedTupleViaSerializer (line 188) | [Fact] method CanCopyCollectionViaSerializer (line 219) | [Fact] method CanCopyCollectionViaUntypedSerializer (line 246) | [Fact] FILE: src/Orleans.Serialization.TestKit/FieldCodecTester.cs class FieldCodecTester (line 24) | [Trait("Category", "BVT")] method FieldCodecTester (line 34) | protected FieldCodecTester(ITestOutputHelper output) method Configure (line 80) | protected virtual void Configure(ISerializerBuilder builder) method CreateCodec (line 87) | protected virtual TCodec CreateCodec() => _serviceProvider.GetRequired... method CreateValue (line 92) | protected abstract TValue CreateValue(); method Equals (line 102) | protected virtual bool Equals(TValue left, TValue right) => EqualityCo... method Dispose (line 110) | void IDisposable.Dispose() => (_serviceProvider as IDisposable)?.Dispo... method GetWriteCopy (line 112) | protected virtual TValue GetWriteCopy(TValue input) => input; method CorrectlyAdvancesReferenceCounterStream (line 117) | [Fact] method CorrectlyAdvancesReferenceCounter (line 173) | [Fact] method CanRoundTripViaSerializer_StreamPooled (line 220) | [Fact] method CanRoundTripViaSerializer_Span (line 258) | [Fact] method CanRoundTripViaSerializer_Array (line 294) | [Fact] method CanRoundTripViaSerializer_Memory (line 330) | [Fact] method CanRoundTripViaSerializer_MemoryStream (line 366) | [Fact] method CanRoundTripViaSerializer_ReadByteByByte (line 409) | [Fact] method ProducesValidBitStream (line 448) | [Fact] method WritersProduceSameResults (line 483) | [Fact] method CanRoundTripCollectionViaSerializer (line 589) | [Fact] method CanRoundTripWeaklyTypedCollectionViaSerializer (line 633) | [Fact] method CanRoundTripTupleViaSerializer (line 681) | [Fact] method CanRoundTripViaSerializer (line 720) | [Fact] method CanRoundTripViaObjectSerializer (line 758) | [Fact] method RoundTrippedValuesEqual (line 805) | [Fact] method CanRoundTripDefaultValueViaCodec (line 811) | [Fact] method CanSkipValue (line 817) | [Fact] method CanSkipDefaultValue (line 823) | [Fact] method CorrectlyHandlesBuffers (line 829) | [Fact] method CanBeSkipped (line 855) | private void CanBeSkipped(TValue original) method TestRoundTrippedValue (line 903) | private void TestRoundTrippedValue(TValue original) method RoundTripThroughCodec (line 932) | protected T RoundTripThroughCodec(T original) method RoundTripThroughUntypedSerializer (line 970) | protected object RoundTripThroughUntypedSerializer(object original, ou... FILE: src/Orleans.Serialization.TestKit/IOutputBuffer.cs type IOutputBuffer (line 5) | public interface IOutputBuffer method GetReadOnlySequence (line 7) | ReadOnlySequence GetReadOnlySequence(int maxSegmentSize); FILE: src/Orleans.Serialization.TestKit/ReadOnlySequenceHelper.cs class ReadOnlySequenceHelper (line 9) | [ExcludeFromCodeCoverage] method Batch (line 12) | public static IEnumerable Batch(this IEnumerable sequenc... method ToReadOnlySequence (line 32) | public static ReadOnlySequence ToReadOnlySequence(this IEnumerab... method ToReadOnlySequence (line 34) | public static ReadOnlySequence ToReadOnlySequence(this IEnumerab... method CreateReadOnlySequence (line 36) | public static ReadOnlySequence CreateReadOnlySequence(params byt... class ReadOnlyBufferSegment (line 52) | private class ReadOnlyBufferSegment : ReadOnlySequenceSegment method Create (line 54) | public static ReadOnlySequence Create(IEnumerable... FILE: src/Orleans.Serialization.TestKit/TestBufferWriterStruct.cs type TestBufferWriterStruct (line 9) | [ExcludeFromCodeCoverage] method TestBufferWriterStruct (line 15) | public TestBufferWriterStruct(byte[] buffer) method Advance (line 21) | public void Advance(int bytes) => _written += bytes; method GetMemory (line 23) | [Pure] method GetSpan (line 26) | [Pure] method GetReadOnlySequence (line 29) | [Pure] FILE: src/Orleans.Serialization.TestKit/TestMultiSegmentBufferWriter.cs class TestMultiSegmentBufferWriter (line 10) | [ExcludeFromCodeCoverage] method TestMultiSegmentBufferWriter (line 17) | public TestMultiSegmentBufferWriter(int maxAllocationSize) method Advance (line 22) | public void Advance(int bytes) method GetMemory (line 33) | public Memory GetMemory(int sizeHint = 0) method GetSpan (line 51) | public Span GetSpan(int sizeHint) method GetReadOnlySequence (line 69) | [Pure] method PeekAllBuffers (line 72) | public ReadOnlySequence PeekAllBuffers() => _committed.Concat(ne... FILE: src/Orleans.Serialization.TestKit/ValueTypeFieldCodecTester.cs class ValueTypeFieldCodecTester (line 11) | public abstract class ValueTypeFieldCodecTester : FieldC... method ValueTypeFieldCodecTester (line 13) | protected ValueTypeFieldCodecTester(ITestOutputHelper output) : base(o... method ValueSerializerRoundTrip (line 17) | [Fact] method DirectAccessValueSerializerRoundTrip (line 31) | [Fact] method TestRoundTrippedValueViaValueSerializer (line 41) | private void TestRoundTrippedValueViaValueSerializer(ref TField original) FILE: src/Orleans.Serialization/Activators/DefaultActivator.cs class DefaultActivator (line 7) | internal abstract class DefaultActivator : IActivator method Init (line 13) | private static Func Init() method Create (line 26) | public abstract T Create(); class DefaultReferenceTypeActivator (line 29) | internal sealed class DefaultReferenceTypeActivator : DefaultActivato... method Create (line 31) | public override T Create() class DefaultValueTypeActivator (line 37) | internal sealed class DefaultValueTypeActivator : DefaultActivator... method Create (line 39) | public override T Create() FILE: src/Orleans.Serialization/Activators/IActivator.cs type IActivator (line 8) | public interface IActivator method Create (line 14) | T Create(); FILE: src/Orleans.Serialization/Buffers/Adaptors/ArrayStreamBufferWriter.cs type ArrayStreamBufferWriter (line 10) | public struct ArrayStreamBufferWriter : IBufferWriter method ArrayStreamBufferWriter (line 22) | public ArrayStreamBufferWriter(Stream stream, int sizeHint = 0) method Advance (line 35) | public void Advance(int count) method GetMemory (line 55) | public Memory GetMemory(int sizeHint = 0) method GetSpan (line 62) | public Span GetSpan(int sizeHint = 0) method CheckAndResizeBuffer (line 68) | private void CheckAndResizeBuffer(int sizeHint) method ThrowNegativeSizeHint (line 96) | private static void ThrowNegativeSizeHint() => throw new ArgumentExcep... method ThrowNegativeAdvanceCount (line 98) | private static void ThrowNegativeAdvanceCount() => throw new ArgumentE... method ThrowAdvancePastCapacity (line 100) | private static void ThrowAdvancePastCapacity() => throw new InvalidOpe... FILE: src/Orleans.Serialization/Buffers/Adaptors/BufferSliceReaderInput.cs type BufferSliceReaderInput (line 11) | public struct BufferSliceReaderInput method BufferSliceReaderInput (line 23) | public BufferSliceReaderInput(in BufferSlice slice) method ForkFrom (line 35) | internal readonly BufferSliceReaderInput ForkFrom(int position) method GetNext (line 41) | internal ReadOnlySpan GetNext() method ThrowInsufficientData (line 109) | [DoesNotReturn] FILE: src/Orleans.Serialization/Buffers/Adaptors/BufferWriterBox.cs class BufferWriterBox (line 9) | public class BufferWriterBox : IBufferWriter where ... method BufferWriterBox (line 13) | public BufferWriterBox(TBufferWriter bufferWriter) method Advance (line 24) | public void Advance(int count) => _bufferWriter.Advance(count); method GetMemory (line 27) | public Memory GetMemory(int sizeHint = 0) => _bufferWriter.GetMe... method GetSpan (line 30) | public Span GetSpan(int sizeHint = 0) => _bufferWriter.GetSpan(s... FILE: src/Orleans.Serialization/Buffers/Adaptors/BufferWriterExtensions.cs class BufferWriterExtensions (line 7) | internal static class BufferWriterExtensions method Write (line 9) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteMultiSegment (line 26) | private static void WriteMultiSegment(ref TBufferWriter... FILE: src/Orleans.Serialization/Buffers/Adaptors/MemoryBufferWriter.cs type MemoryBufferWriter (line 9) | public struct MemoryBufferWriter : IBufferWriter method MemoryBufferWriter (line 18) | internal MemoryBufferWriter(Memory buffer) method Advance (line 31) | public void Advance(int count) method GetMemory (line 44) | public Memory GetMemory(int sizeHint = 0) method GetSpan (line 55) | public Span GetSpan(int sizeHint = 0) method ThrowInsufficientCapacity (line 65) | private void ThrowInsufficientCapacity(int sizeHint) => throw new Inva... FILE: src/Orleans.Serialization/Buffers/Adaptors/MemoryStreamBufferWriter.cs type MemoryStreamBufferWriter (line 10) | public readonly struct MemoryStreamBufferWriter : IBufferWriter method MemoryStreamBufferWriter (line 19) | public MemoryStreamBufferWriter(MemoryStream stream) method Advance (line 25) | public void Advance(int count) method GetMemory (line 31) | public Memory GetMemory(int sizeHint = 0) method GetSpan (line 48) | public Span GetSpan(int sizeHint = 0) FILE: src/Orleans.Serialization/Buffers/Adaptors/PooledBufferStream.cs class PooledBufferStream (line 12) | public sealed class PooledBufferStream : Stream method PooledBufferStream (line 24) | public PooledBufferStream() : this(0) method PooledBufferStream (line 31) | public PooledBufferStream(int minAllocationSize = 0) method Rent (line 42) | public static PooledBufferStream Rent() => StreamPool.Get(); method Return (line 47) | public static void Return(PooledBufferStream stream) method ToArray (line 67) | public byte[] ToArray() method CopyTo (line 84) | public void CopyTo(ref Writer writer) wh... method Reset (line 95) | public void Reset() method RentReadOnlySequence (line 111) | public ReadOnlySequence RentReadOnlySequence() method ReturnReadOnlySequence (line 150) | public void ReturnReadOnlySequence(in ReadOnlySequence sequence) method Seek (line 173) | public override long Seek(long offset, SeekOrigin origin) method Read (line 191) | public override int Read(byte[] buffer, int offset, int count) method SetLength (line 229) | public override void SetLength(long value) method Grow (line 282) | private byte[] Grow() method Write (line 290) | public override void Write(byte[] buffer, int offset, int count) method FindCurrentSegment (line 328) | private void FindCurrentSegment(out int segmentIndex, out int indexInt... method Append (line 349) | private void Append(ref ReadOnlyMemory data) method Flush (line 368) | public override void Flush() { } method GetWriteHead (line 370) | private Memory GetWriteHead() => _segments[^1].AsMemory((int)(_s... class PooledStreamPolicy (line 372) | private sealed class PooledStreamPolicy : PooledObjectPolicy new(); method Return (line 375) | public override bool Return(PooledBufferStream obj) class BufferSegment (line 383) | internal sealed class BufferSegment : ReadOnlySequenceSegment method Initialize (line 387) | public void Initialize(ReadOnlyMemory memory, long runningIndex) method SetNext (line 393) | public void SetNext(BufferSegment next) => Next = next; method Reset (line 395) | public void Reset() class SegmentPoolPolicy (line 402) | private sealed class SegmentPoolPolicy : PooledObjectPolicy new(); method Return (line 406) | public override bool Return(BufferSegment obj) FILE: src/Orleans.Serialization/Buffers/Adaptors/PoolingStreamBufferWriter.cs type PoolingStreamBufferWriter (line 8) | public struct PoolingStreamBufferWriter : IBufferWriter, IDisposable method PoolingStreamBufferWriter (line 19) | internal PoolingStreamBufferWriter(Stream stream, int sizeHint) method Advance (line 26) | public void Advance(int count) => _stream.Write(_buffer, 0, count); method GetMemory (line 29) | public Memory GetMemory(int sizeHint = 0) => sizeHint <= _buffer... method GetSpan (line 32) | public Span GetSpan(int sizeHint = 0) => sizeHint <= _buffer.Len... method Resize (line 34) | private byte[] Resize(int sizeHint) method Dispose (line 42) | public void Dispose() FILE: src/Orleans.Serialization/Buffers/Adaptors/SpanBufferWriter.cs type SpanBufferWriter (line 9) | public struct SpanBufferWriter : IBufferWriter method SpanBufferWriter (line 18) | internal SpanBufferWriter(Span buffer) method Advance (line 31) | public void Advance(int count) => _bytesWritten += count; method GetMemory (line 34) | public readonly Memory GetMemory(int sizeHint = 0) => throw GetE... method GetSpan (line 37) | public readonly Span GetSpan(int sizeHint = 0) => throw GetExcep... method GetException (line 39) | private readonly Exception GetException(int sizeHint) FILE: src/Orleans.Serialization/Buffers/ArcBufferWriter.cs class ArcBufferWriter (line 24) | [StructLayout(LayoutKind.Auto)] method ArcBufferWriter (line 55) | public ArcBufferWriter() method ReplenishBuffers (line 78) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Advance (line 101) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method AdvanceWriter (line 108) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Reset (line 139) | public void Reset() method Dispose (line 151) | public void Dispose() method GetMemory (line 162) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method GetSpan (line 176) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Peek (line 194) | public ReadOnlySpan Peek(scoped in Span destination) method Peek (line 212) | public int Peek(Span output) method Write (line 238) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Write (line 253) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteMultiSegment (line 272) | private void WriteMultiSegment(in ReadOnlySpan source, Span AsMemory(int offset) method AsMemory (line 620) | public Memory AsMemory(int offset, int length) method AsArraySegment (line 638) | public ArraySegment AsArraySegment(int offset, int length) => ne... method AsSpan (line 645) | public Span AsSpan(int offset) => Array.AsSpan(offset); method AsSpan (line 653) | public Span AsSpan(int offset, int length) => Array.AsSpan(offse... method Advance (line 659) | public void Advance(int bytes) method SetNext (line 671) | public void SetNext(ArcBufferPage next, int token) method Pin (line 684) | public void Pin(int token) method Unpin (line 698) | public void Unpin(int token) method Return (line 707) | private void Return() method CheckValidity (line 720) | public void CheckValidity(int token) method ThrowInvalidVersion (line 733) | [DoesNotReturn] method ThrowAccessViolation (line 736) | [DoesNotReturn] type ArcBufferReader (line 744) | public readonly struct ArcBufferReader(ArcBufferWriter writer) method Peek (line 760) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method PeekSlice (line 768) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ConsumeSlice (line 776) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Consume (line 783) | public void Consume(Span output) method Skip (line 794) | public void Skip(int count) type ArcBuffer (line 810) | public struct ArcBuffer(ArcBufferPage first, int token, int offset, int ... method CopyTo (line 833) | public readonly int CopyTo(Span output) method CopyTo (line 854) | public readonly void CopyTo(ArcBufferWriter output) method CopyTo (line 864) | public readonly void CopyTo(ref TBufferWriter output) w... method Write (line 873) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteMultiSegment (line 890) | private static void WriteMultiSegment(ref TBufferWriter... method ThrowInsufficientSpaceException (line 915) | [DoesNotReturn] method AsReadOnlySequence (line 921) | public readonly ReadOnlySequence AsReadOnlySequence() method ToArray (line 956) | public readonly byte[] ToArray() method CheckValidity (line 967) | private readonly void CheckValidity() => First.CheckValidity(_firstPag... method Slice (line 969) | public readonly ArcBuffer Slice(int offset) => Slice(offset, Length - ... method Slice (line 971) | public readonly ArcBuffer Slice(int offset, int length) method UnsafeSlice (line 978) | public readonly ArcBuffer UnsafeSlice(int offset, int length) method Pin (line 1026) | public readonly void Pin() method Unpin (line 1046) | public void Unpin() method Dispose (line 1065) | public void Dispose() method GetEnumerator (line 1080) | public readonly SpanEnumerator GetEnumerator() => new(this); type PageSegment (line 1115) | public readonly struct PageSegment(ArcBufferPage page, int offset, int... type PageSegmentEnumerator (line 1155) | internal struct PageSegmentEnumerator(ArcBuffer slice) : IEnumerable this; method MoveNext (line 1188) | public bool MoveNext() method GetEnumerator (line 1222) | readonly IEnumerator IEnumerable.GetEnumer... method GetEnumerator (line 1225) | readonly IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); method Reset (line 1228) | void IEnumerator.Reset() method Dispose (line 1236) | readonly void IDisposable.Dispose() { } type PageEnumerator (line 1246) | internal struct PageEnumerator(ArcBuffer slice) : IEnumerable this; method MoveNext (line 1268) | public bool MoveNext() method GetEnumerator (line 1281) | readonly IEnumerator IEnumerable.GetEn... method GetEnumerator (line 1284) | readonly IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); method Reset (line 1287) | void IEnumerator.Reset() method Dispose (line 1294) | readonly void IDisposable.Dispose() { } type SpanEnumerator (line 1304) | public ref struct SpanEnumerator(ArcBuffer slice) method GetEnumerator (line 1312) | public readonly SpanEnumerator GetEnumerator() => this; method MoveNext (line 1323) | public bool MoveNext() type MemoryEnumerator (line 1343) | public struct MemoryEnumerator(ArcBuffer slice) : IEnumerable this; method MoveNext (line 1365) | public bool MoveNext() method GetEnumerator (line 1378) | readonly IEnumerator> IEnumerable GetEnumerator(); method Reset (line 1384) | void IEnumerator.Reset() method Dispose (line 1391) | readonly void IDisposable.Dispose() { } type ArraySegmentEnumerator (line 1401) | public struct ArraySegmentEnumerator(ArcBuffer slice) : IEnumerable this; method MoveNext (line 1428) | public bool MoveNext() method GetEnumerator (line 1441) | readonly IEnumerator> IEnumerable GetEnumerator(); method Reset (line 1447) | void IEnumerator.Reset() method Dispose (line 1454) | readonly void IDisposable.Dispose() { } class ReadOnlySequenceSegment (line 1457) | private sealed class ReadOnlySequenceSegment : ReadOnlySequenceSegment... method ReadOnlySequenceSegment (line 1459) | public ReadOnlySequenceSegment(ReadOnlyMemory memory, long run... method SetNext (line 1465) | public void SetNext(ReadOnlySequenceSegment next) FILE: src/Orleans.Serialization/Buffers/BufferWriterExtensions.cs class BufferWriterExtensions (line 11) | public static class BufferWriterExtensions method CreateWriter (line 20) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/Buffers/PooledBuffer.cs type PooledBuffer (line 19) | [StructLayout(LayoutKind.Auto)] method PooledBuffer (line 32) | public PooledBuffer() method ToArray (line 47) | public readonly byte[] ToArray() method Advance (line 69) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Reset (line 85) | public void Reset() method Dispose (line 103) | public void Dispose() => Reset(); method GetMemory (line 106) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method GetSpan (line 118) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CopyTo (line 130) | public readonly void CopyTo(Span output) method CopyTo (line 150) | public readonly void CopyTo(ref Writer w... method CopyTo (line 167) | public readonly void CopyTo(ref TBufferWriter writer) w... method AsReadOnlySequence (line 186) | public ReadOnlySequence AsReadOnlySequence() method Slice (line 209) | public readonly BufferSlice Slice() => new(this, 0, Length); method Slice (line 218) | public readonly BufferSlice Slice(int offset) => new(this, offset, Len... method Slice (line 227) | public readonly BufferSlice Slice(int offset, int length) => new(this,... method Write (line 239) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Write (line 252) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteMultiSegment (line 270) | private void WriteMultiSegment(in ReadOnlySpan source) method GetSpanSlow (line 289) | [MethodImpl(MethodImplOptions.NoInlining)] method GetMemorySlow (line 292) | [MethodImpl(MethodImplOptions.NoInlining)] method Grow (line 295) | private SequenceSegment Grow(int sizeHint) method Commit (line 302) | private void Commit() type MemoryEnumerator (line 329) | public struct MemoryEnumerator method MemoryEnumerator (line 341) | public MemoryEnumerator(PooledBuffer buffer) method GetEnumerator (line 352) | public readonly MemoryEnumerator GetEnumerator() => this; method MoveNext (line 364) | public bool MoveNext() type SpanEnumerator (line 418) | public ref struct SpanEnumerator method SpanEnumerator (line 434) | public SpanEnumerator(ref PooledBuffer buffer) method GetEnumerator (line 449) | public readonly SpanEnumerator GetEnumerator() => this; method MoveNext (line 460) | public bool MoveNext() type BufferSlice (line 514) | public readonly struct BufferSlice method BufferSlice (line 528) | public BufferSlice(in PooledBuffer buffer, int offset, int length) method Slice (line 555) | public readonly BufferSlice Slice(int offset) => new(in _buffer, _of... method Slice (line 563) | public readonly BufferSlice Slice(int offset, int length) => new(in ... method CopyTo (line 566) | public readonly int CopyTo(Span output) method CopyTo (line 581) | public readonly void CopyTo(ref PooledBuffer output) method CopyTo (line 590) | public readonly void CopyTo(ref TBufferWriter output)... method ToArray (line 602) | public readonly byte[] ToArray() method GetEnumerator (line 613) | public readonly SpanEnumerator GetEnumerator() => new(this); type SpanEnumerator (line 624) | public ref struct SpanEnumerator method SpanEnumerator (line 636) | public SpanEnumerator(BufferSlice slice) method GetEnumerator (line 651) | public readonly SpanEnumerator GetEnumerator() => this; method MoveNext (line 662) | public bool MoveNext() type MemoryEnumerator (line 738) | public struct MemoryEnumerator method MemoryEnumerator (line 750) | public MemoryEnumerator(BufferSlice slice) method GetEnumerator (line 765) | public readonly MemoryEnumerator GetEnumerator() => this; method MoveNext (line 776) | public bool MoveNext() class SequenceSegmentPool (line 850) | private sealed class SequenceSegmentPool method SequenceSegmentPool (line 857) | private SequenceSegmentPool() { } method Rent (line 859) | public SequenceSegment Rent(int size = -1) method Return (line 875) | internal void Return(SequenceSegment block) class SequenceSegment (line 882) | internal sealed class SequenceSegment : ReadOnlySequenceSegment method SequenceSegment (line 884) | internal SequenceSegment() method SequenceSegment (line 889) | internal SequenceSegment(bool large) method ResizeLargeSegment (line 901) | public void ResizeLargeSegment(int length) method AsMemory (line 930) | public Memory AsMemory(int offset) method AsMemory (line 942) | public Memory AsMemory(int offset, int length) method Commit (line 954) | public void Commit(long runningIndex, int length) method SetNext (line 960) | public void SetNext(SequenceSegment next) => Next = next; method Return (line 962) | public void Return() class PooledBufferExtensions (line 976) | public static class PooledBufferExtensions method GetEnumerator (line 982) | public static PooledBuffer.SpanEnumerator GetEnumerator(this ref Poole... FILE: src/Orleans.Serialization/Buffers/Reader.cs class ReaderInput (line 23) | public abstract class ReaderInput method Skip (line 41) | public abstract void Skip(long count); method Seek (line 47) | public abstract void Seek(long position); method ReadByte (line 53) | public abstract byte ReadByte(); method ReadUInt32 (line 59) | public abstract uint ReadUInt32(); method ReadUInt64 (line 65) | public abstract ulong ReadUInt64(); method ReadBytes (line 71) | public abstract void ReadBytes(Span destination); method ReadBytes (line 79) | public abstract void ReadBytes(byte[] destination, int offset, int len... method TryReadBytes (line 87) | public abstract bool TryReadBytes(int length, out ReadOnlySpan b... method StreamReaderInput (line 101) | public StreamReaderInput(Stream stream, ArrayPool memoryPool) method ReadByte (line 107) | public override byte ReadByte() method ReadBytes (line 118) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadBytes (line 128) | public override void ReadBytes(byte[] destination, int offset, int length) method ReadUInt32 (line 138) | [SkipLocalsInit] method ReadUInt64 (line 148) | [SkipLocalsInit] method Skip (line 157) | public override void Skip(long count) => _ = _stream.Seek(count, SeekOri... method Seek (line 159) | public override void Seek(long position) => _ = _stream.Seek(position, S... method TryReadBytes (line 161) | public override bool TryReadBytes(int length, out ReadOnlySpan des... method ThrowInsufficientData (line 168) | private static void ThrowInsufficientData() => throw new InvalidOperatio... method GetScratchBuffer (line 170) | private static byte[] GetScratchBuffer() => Scratch ??= new byte[1024]; class Reader (line 176) | public static class Reader method Create (line 184) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 193) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 202) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 211) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 220) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 229) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 238) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Reader (line 276) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Reader (line 315) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Skip (line 409) | public void Skip(long count) method ForkFrom (line 470) | public void ForkFrom(long position, out Reader forked) method ResumeFrom (line 533) | public void ResumeFrom(long position) method MoveNext (line 568) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadByte (line 614) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadByteSlow (line 640) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadInt32 (line 651) | public int ReadInt32() => (int)ReadUInt32(); method ReadUInt32 (line 657) | public uint ReadUInt32() method ReadInt64 (line 695) | public long ReadInt64() => (long)ReadUInt64(); method ReadUInt64 (line 701) | public ulong ReadUInt64() method ThrowInsufficientData (line 740) | [DoesNotReturn] method ReadBytes (line 746) | public void ReadBytes(scoped ref TBufferWriter writer, ... method ReadBytes (line 768) | public byte[] ReadBytes(uint count) method ReadBytes (line 798) | public void ReadBytes(scoped Span destination) method ReadBytesMultiSegment (line 821) | private void ReadBytesMultiSegment(scoped Span dest) method TryReadBytes (line 845) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarUInt32NoInlining (line 871) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadVarUInt32 (line 878) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ThrowOverflowException (line 908) | private static void ThrowOverflowException() => throw new OverflowExce... method ReadVarUInt32Slow (line 910) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadVarUInt64 (line 936) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarUInt64Slow (line 974) | [MethodImpl(MethodImplOptions.NoInlining)] method ThrowNotSupportedInput (line 1039) | private static T ThrowNotSupportedInput() => throw new NotSupported... method ThrowNotSupportedInput (line 1041) | private static void ThrowNotSupportedInput() => throw new NotSupported... method ThrowInvalidSizeException (line 1043) | private static void ThrowInvalidSizeException(uint length) => throw ne... type SpanReaderInput (line 245) | public readonly struct SpanReaderInput type ReadOnlySequenceInput (line 252) | public struct ReadOnlySequenceInput type Reader (line 263) | public ref struct Reader method Create (line 184) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 193) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 202) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 211) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 220) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 229) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 238) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Reader (line 276) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Reader (line 315) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Skip (line 409) | public void Skip(long count) method ForkFrom (line 470) | public void ForkFrom(long position, out Reader forked) method ResumeFrom (line 533) | public void ResumeFrom(long position) method MoveNext (line 568) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadByte (line 614) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadByteSlow (line 640) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadInt32 (line 651) | public int ReadInt32() => (int)ReadUInt32(); method ReadUInt32 (line 657) | public uint ReadUInt32() method ReadInt64 (line 695) | public long ReadInt64() => (long)ReadUInt64(); method ReadUInt64 (line 701) | public ulong ReadUInt64() method ThrowInsufficientData (line 740) | [DoesNotReturn] method ReadBytes (line 746) | public void ReadBytes(scoped ref TBufferWriter writer, ... method ReadBytes (line 768) | public byte[] ReadBytes(uint count) method ReadBytes (line 798) | public void ReadBytes(scoped Span destination) method ReadBytesMultiSegment (line 821) | private void ReadBytesMultiSegment(scoped Span dest) method TryReadBytes (line 845) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarUInt32NoInlining (line 871) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadVarUInt32 (line 878) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ThrowOverflowException (line 908) | private static void ThrowOverflowException() => throw new OverflowExce... method ReadVarUInt32Slow (line 910) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadVarUInt64 (line 936) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarUInt64Slow (line 974) | [MethodImpl(MethodImplOptions.NoInlining)] method ThrowNotSupportedInput (line 1039) | private static T ThrowNotSupportedInput() => throw new NotSupported... method ThrowNotSupportedInput (line 1041) | private static void ThrowNotSupportedInput() => throw new NotSupported... method ThrowInvalidSizeException (line 1043) | private static void ThrowInvalidSizeException(uint length) => throw ne... FILE: src/Orleans.Serialization/Buffers/Writer.FieldHeader.cs method WriteFieldHeader (line 18) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteFieldHeaderEncodeType (line 57) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteFieldHeaderExpected (line 72) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class FieldHeaderCodec (line 89) | public static class FieldHeaderCodec method ReadFieldHeader (line 97) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadFieldHeader (line 120) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadExtendedFieldHeader (line 146) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadType (line 171) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadTypeForAnalysis (line 191) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadFieldHeaderForAnalysis (line 225) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadFieldHeaderForAnalysisSlow (line 246) | [MethodImpl(MethodImplOptions.NoInlining)] FILE: src/Orleans.Serialization/Buffers/Writer.TagDelimitedField.cs method WriteStartObject (line 15) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteEndObject (line 21) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteEndBase (line 27) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/Buffers/Writer.VarInt.cs method WriteVarInt8 (line 11) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarInt16 (line 18) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarInt32 (line 25) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarInt64 (line 32) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarUInt8 (line 39) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarUInt16 (line 46) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ZigZagEncode (line 49) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ZigZagEncode (line 52) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/Buffers/Writer.cs class Writer (line 21) | public static class Writer method Create (line 30) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 39) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreatePooled (line 49) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 59) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 68) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 77) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 86) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreatePooled (line 94) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Writer (line 132) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 30) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 39) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreatePooled (line 49) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 59) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 68) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 77) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 86) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreatePooled (line 94) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Writer (line 143) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 30) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 39) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreatePooled (line 49) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 59) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 68) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 77) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Create (line 86) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreatePooled (line 94) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Dispose (line 155) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method AdvanceSpan (line 198) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Commit (line 204) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method EnsureContiguous (line 221) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Allocate (line 243) | [MethodImpl(MethodImplOptions.NoInlining)] method Write (line 261) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteMultiSegment (line 277) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteByte (line 304) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteByteSlow (line 320) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteInt32 (line 332) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteInt64 (line 339) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteUInt32 (line 346) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteUInt32Slow (line 363) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteUInt64 (line 375) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteUInt64Slow (line 392) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteVarUInt7 (line 403) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarUInt28 (line 413) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarUInt28Slow (line 435) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteVarUInt32 (line 449) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarUInt56 (line 472) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarUInt56Slow (line 494) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteVarUInt64 (line 508) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteVarUInt64Slow (line 536) | [MethodImpl(MethodImplOptions.NoInlining)] FILE: src/Orleans.Serialization/Cloning/IDeepCopier.cs type IDeepCopierProvider (line 21) | public interface IDeepCopierProvider method GetDeepCopier (line 28) | IDeepCopier GetDeepCopier(); method TryGetDeepCopier (line 35) | IDeepCopier? TryGetDeepCopier(); method GetDeepCopier (line 44) | IDeepCopier GetDeepCopier(Type type); method TryGetDeepCopier (line 53) | IDeepCopier? TryGetDeepCopier(Type type); method GetBaseCopier (line 62) | IBaseCopier GetBaseCopier() where T : class; type IDeepCopier (line 68) | public interface IDeepCopier method DeepCopy (line 73) | object? DeepCopy(object? input, CopyContext context); method DeepCopy (line 122) | T DeepCopy(T input, CopyContext context); method DeepCopy (line 124) | object? IDeepCopier.DeepCopy(object? input, CopyContext context) => in... type IOptionalDeepCopier (line 79) | public interface IOptionalDeepCopier : IDeepCopier method IsShallowCopyable (line 84) | bool IsShallowCopyable(); class ShallowCopier (line 87) | internal sealed class ShallowCopier : IOptionalDeepCopier method IsShallowCopyable (line 91) | public bool IsShallowCopyable() => true; method DeepCopy (line 92) | public object? DeepCopy(object? input, CopyContext _) => input; method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => true; method DeepCopy (line 103) | public T DeepCopy(T input, CopyContext _) => input; method DeepCopy (line 106) | public object? DeepCopy(object? input, CopyContext _) => input; class ShallowCopier (line 98) | public class ShallowCopier : IOptionalDeepCopier, IDeepCopier method IsShallowCopyable (line 91) | public bool IsShallowCopyable() => true; method DeepCopy (line 92) | public object? DeepCopy(object? input, CopyContext _) => input; method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => true; method DeepCopy (line 103) | public T DeepCopy(T input, CopyContext _) => input; method DeepCopy (line 106) | public object? DeepCopy(object? input, CopyContext _) => input; type IDeepCopier (line 114) | public interface IDeepCopier : IDeepCopier method DeepCopy (line 73) | object? DeepCopy(object? input, CopyContext context); method DeepCopy (line 122) | T DeepCopy(T input, CopyContext context); method DeepCopy (line 124) | object? IDeepCopier.DeepCopy(object? input, CopyContext context) => in... type IBaseCopier (line 130) | public interface IBaseCopier method DeepCopy (line 147) | void DeepCopy(T input, T output, CopyContext context); type IBaseCopier (line 139) | public interface IBaseCopier : IBaseCopier where T : class method DeepCopy (line 147) | void DeepCopy(T input, T output, CopyContext context); type IDerivedTypeCopier (line 153) | public interface IDerivedTypeCopier : IDeepCopier type IGeneralizedCopier (line 160) | public interface IGeneralizedCopier : IDeepCopier method IsSupportedType (line 167) | bool IsSupportedType(Type type); type ISpecializableCopier (line 173) | public interface ISpecializableCopier method IsSupportedType (line 180) | bool IsSupportedType(Type type); method GetSpecializedCopier (line 187) | IDeepCopier GetSpecializedCopier(Type type); class CopyContext (line 199) | public sealed class CopyContext(CodecProvider codecProvider, Action(object? original, out T? result) where T : c... method RecordCopy (line 235) | public void RecordCopy(object original, object copy) method Reset (line 243) | public void Reset() => _copies.Clear(); method DeepCopy (line 251) | public T? DeepCopy(T? value) method Dispose (line 263) | public void Dispose() => _onDisposed?.Invoke(this); class ShallowCopyableTypes (line 266) | internal static class ShallowCopyableTypes method Contains (line 298) | public static bool Contains(Type type) method IsShallowCopyableInternal (line 308) | private static bool IsShallowCopyableInternal(Type type) class UntypedCopierWrapper (line 356) | internal sealed class UntypedCopierWrapper(IDeepCopier copier) : IDee... method DeepCopy (line 360) | public T DeepCopy(T original, CopyContext context) => (T)_copier.DeepC... method DeepCopy (line 362) | public object? DeepCopy(object? original, CopyContext context) => _cop... class CopyContextPool (line 368) | public sealed class CopyContextPool method CopyContextPool (line 376) | public CopyContextPool(CodecProvider codecProvider) method GetContext (line 386) | public CopyContext GetContext() => _pool.Get(); method Return (line 392) | private void Return(CopyContext context) => _pool.Return(context); type PoolPolicy (line 394) | private readonly struct PoolPolicy(CodecProvider codecProvider, Action... method Create (line 399) | public CopyContext Create() => new(_codecProvider, _onDisposed); method Return (line 401) | public bool Return(CopyContext obj) FILE: src/Orleans.Serialization/Codecs/ArrayCodec.cs class ArrayCodec (line 15) | [RegisterSerializer] method ArrayCodec (line 25) | public ArrayCodec(IFieldCodec fieldCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 55) | public T[] ReadValue(ref Reader reader, Field field) method ThrowIndexOutOfRangeException (line 119) | private static void ThrowIndexOutOfRangeException(int length) => throw... method ThrowInvalidSizeException (line 122) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 125) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... class ArrayCopier (line 132) | [RegisterCopier] method ArrayCopier (line 141) | public ArrayCopier(IDeepCopier elementCopier) method DeepCopy (line 147) | public T[] DeepCopy(T[] input, CopyContext context) class ReadOnlyMemoryCodec (line 169) | [RegisterSerializer] method ReadOnlyMemoryCodec (line 180) | public ReadOnlyMemoryCodec(IFieldCodec fieldCodec) method WriteField (line 186) | public void WriteField(ref Writer writer... method ReadValue (line 211) | public ReadOnlyMemory ReadValue(ref Reader reader, ... method ThrowIndexOutOfRangeException (line 269) | private static void ThrowIndexOutOfRangeException(int length) => throw... method ThrowLengthFieldMissing (line 272) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... method ThrowInvalidSizeException (line 274) | private static void ThrowInvalidSizeException(int length) => throw new... class ReadOnlyMemoryCopier (line 282) | [RegisterCopier] method ReadOnlyMemoryCopier (line 291) | public ReadOnlyMemoryCopier(IDeepCopier elementCopier) method DeepCopy (line 297) | public ReadOnlyMemory DeepCopy(ReadOnlyMemory input, CopyContext... class MemoryCodec (line 331) | [RegisterSerializer] method MemoryCodec (line 342) | public MemoryCodec(IFieldCodec fieldCodec) method WriteField (line 348) | public void WriteField(ref Writer writer... method ReadValue (line 373) | public Memory ReadValue(ref Reader reader, Field fi... method ThrowIndexOutOfRangeException (line 431) | private static void ThrowIndexOutOfRangeException(int length) => throw... method ThrowLengthFieldMissing (line 434) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... method ThrowInvalidSizeException (line 436) | private static void ThrowInvalidSizeException(int length) => throw new... class MemoryCopier (line 444) | [RegisterCopier] method MemoryCopier (line 453) | public MemoryCopier(IDeepCopier elementCopier) method DeepCopy (line 459) | public Memory DeepCopy(Memory input, CopyContext context) class ArraySegmentCodec (line 493) | [RegisterSerializer] method ArraySegmentCodec (line 504) | public ArraySegmentCodec(IFieldCodec fieldCodec) method WriteField (line 510) | public void WriteField(ref Writer writer... method ReadValue (line 538) | public ArraySegment ReadValue(ref Reader reader, Fi... method ThrowIndexOutOfRangeException (line 596) | private static void ThrowIndexOutOfRangeException(int length) => throw... method ThrowLengthFieldMissing (line 599) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... method ThrowInvalidSizeException (line 601) | private static void ThrowInvalidSizeException(int length) => throw new... class ArraySegmentCopier (line 609) | [RegisterCopier] method ArraySegmentCopier (line 618) | public ArraySegmentCopier(IDeepCopier elementCopier) method DeepCopy (line 624) | public ArraySegment DeepCopy(ArraySegment input, CopyContext con... FILE: src/Orleans.Serialization/Codecs/ArrayListCodec.cs class ArrayListCodec (line 10) | [RegisterSerializer] method ArrayListCodec (line 17) | public ArrayListCodec(IValueSerializer surrogateSe... method ConvertFromSurrogate (line 22) | public override ArrayList ConvertFromSurrogate(ref ArrayListSurrogate ... method ConvertToSurrogate (line 25) | public override void ConvertToSurrogate(ArrayList value, ref ArrayList... type ArrayListSurrogate (line 31) | [GenerateSerializer] class ArrayListCopier (line 45) | [RegisterCopier] method DeepCopy (line 49) | public ArrayList DeepCopy(ArrayList input, CopyContext context) method DeepCopy (line 72) | public void DeepCopy(ArrayList input, ArrayList output, CopyContext co... FILE: src/Orleans.Serialization/Codecs/BigIntegerCodec.cs class BigIntegerCodec (line 13) | [RegisterSerializer] method WriteField (line 17) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader(ref Writer writer... method ReadValue (line 24) | public BitVector32 ReadValue(ref Reader reader, Field ... FILE: src/Orleans.Serialization/Codecs/ByteArrayCodec.cs class BitArrayCodec (line 17) | [RegisterSerializer] method GetSetArray (line 22) | [UnsafeAccessor(UnsafeAccessorKind.Field, Name = "m_array")] method GetSetArray (line 25) | private static int[] GetSetArray(BitArray bitArray) => typeof(BitArray... method ReadValue (line 28) | BitArray IFieldCodec.ReadValue(ref Reader re... method ReadValue (line 37) | public static BitArray ReadValue(ref Reader reader, Fi... method WriteField (line 58) | void IFieldCodec.WriteField(ref Writer.DeepCopy(BitArray input, CopyContext co... method DeepCopy (line 103) | public static BitArray DeepCopy(BitArray input, CopyContext context) class ByteArrayCodec (line 119) | [RegisterSerializer] method ReadValue (line 122) | byte[] IFieldCodec.ReadValue(ref Reader reader... method ReadValue (line 131) | public static byte[] ReadValue(ref Reader reader, Fiel... method WriteField (line 145) | void IFieldCodec.WriteField(ref Writer.DeepCopy(byte[] input, CopyContext context)... method DeepCopy (line 193) | public static byte[] DeepCopy(byte[] input, CopyContext context) class ReadOnlyMemoryOfByteCodec (line 210) | [RegisterSerializer] method ReadValue (line 214) | ReadOnlyMemory IFieldCodec>.ReadValue(ref Reader reader, Fiel... method WriteField (line 238) | void IFieldCodec>.WriteField(ref W... method WriteField (line 247) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteField (line 251) | private static void WriteField(ref Writer IDeepCopier>.DeepCopy(ReadOn... method DeepCopy (line 279) | public static ReadOnlyMemory DeepCopy(ReadOnlyMemory input... class ArraySegmentOfByteCopier (line 293) | [RegisterCopier] method DeepCopy (line 297) | ArraySegment IDeepCopier>.DeepCopy(ArraySegme... method DeepCopy (line 305) | public static ArraySegment DeepCopy(ArraySegment input, Co... class MemoryOfByteCodec (line 319) | [RegisterSerializer] method ReadValue (line 323) | Memory IFieldCodec>.ReadValue(ref Reader ReadValue(ref Reader reader... method WriteField (line 347) | void IFieldCodec>.WriteField(ref Writer(ref Writer IDeepCopier>.DeepCopy(Memory input, Co... method DeepCopy (line 388) | public static Memory DeepCopy(Memory input, CopyContext co... class PooledBufferCodec (line 402) | [RegisterSerializer] method WriteField (line 405) | public void WriteField(ref Writer writer... method ReadValue (line 419) | public PooledBuffer ReadValue(ref Reader reader, Field... class PooledBufferCopier (line 443) | [RegisterCopier] method DeepCopy (line 446) | public PooledBuffer DeepCopy(PooledBuffer input, CopyContext context) ... method IsShallowCopyable (line 447) | public bool IsShallowCopyable() => true; FILE: src/Orleans.Serialization/Codecs/CollectionCodec.cs class CollectionCodec (line 18) | [RegisterSerializer] method CollectionCodec (line 29) | public CollectionCodec(IFieldCodec fieldCodec) method WriteField (line 35) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 51) | public Collection ReadValue(ref Reader reader, Fiel... method ThrowInvalidSizeException (line 107) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 110) | private void ThrowLengthFieldMissing() => throw new RequiredFieldMissi... method Serialize (line 112) | public void Serialize(ref Writer writer,... method Deserialize (line 126) | public void Deserialize(ref Reader reader, Collection<... class CollectionCopier (line 167) | [RegisterCopier] method CollectionCopier (line 176) | public CollectionCopier(IDeepCopier valueCopier) method DeepCopy (line 182) | public Collection DeepCopy(Collection input, CopyContext context) method DeepCopy (line 205) | public void DeepCopy(Collection input, Collection output, CopyCo... FILE: src/Orleans.Serialization/Codecs/CommonCodecTypeFilter.cs class CommonCodecTypeFilter (line 13) | public class CommonCodecTypeFilter method IsAbstractOrFrameworkType (line 20) | public static bool IsAbstractOrFrameworkType(Type type) FILE: src/Orleans.Serialization/Codecs/CompareInfoCodec.cs class CompareInfoCodec (line 12) | [RegisterSerializer] method ReadValue (line 16) | public CompareInfo ReadValue(ref Reader reader, Field ... method WriteField (line 54) | public void WriteField(ref Writer writer... FILE: src/Orleans.Serialization/Codecs/ConcurrentDictionaryCodec.cs class ConcurrentDictionaryCodec (line 14) | [RegisterSerializer] method ConcurrentDictionaryCodec (line 21) | public ConcurrentDictionaryCodec(IValueSerializer ConvertFromSurrogat... method ConvertToSurrogate (line 30) | public override void ConvertToSurrogate(ConcurrentDictionary keyCopier, IDeepCo... method DeepCopy (line 78) | public ConcurrentDictionary DeepCopy(ConcurrentDictionar... method DeepCopy (line 105) | public void DeepCopy(ConcurrentDictionary input, Concurr... FILE: src/Orleans.Serialization/Codecs/ConcurrentQueueCodec.cs class ConcurrentQueueCodec (line 13) | [RegisterSerializer] method ConcurrentQueueCodec (line 20) | public ConcurrentQueueCodec(IValueSerializer ConvertFromSurrogate(ref Concurrent... method ConvertToSurrogate (line 28) | public override void ConvertToSurrogate(ConcurrentQueue value, ref ... type ConcurrentQueueSurrogate (line 35) | [GenerateSerializer] class ConcurrentQueueCopier (line 50) | [RegisterCopier] method ConcurrentQueueCopier (line 60) | public ConcurrentQueueCopier(IDeepCopier valueCopier) method DeepCopy (line 66) | public ConcurrentQueue DeepCopy(ConcurrentQueue input, CopyConte... method DeepCopy (line 89) | public void DeepCopy(ConcurrentQueue input, ConcurrentQueue outp... FILE: src/Orleans.Serialization/Codecs/ConsumeFieldExtension.cs class ConsumeFieldExtension (line 9) | public static class ConsumeFieldExtension method ConsumeUnknownField (line 17) | public static void ConsumeUnknownField(this ref Reader... method ConsumeUnknownField (line 25) | public static void ConsumeUnknownField(this ref Reader... method ConsumeTagDelimitedField (line 70) | private static void ConsumeTagDelimitedField(this ref Reader surroga... method ConvertFromSurrogate (line 22) | public override CultureInfo ConvertFromSurrogate(ref CultureInfoSurrog... method ConvertToSurrogate (line 25) | public override void ConvertToSurrogate(CultureInfo value, ref Culture... type CultureInfoSurrogate (line 31) | [GenerateSerializer] class CultureInfoCopier (line 42) | [RegisterCopier] FILE: src/Orleans.Serialization/Codecs/DateOnlyCodec.cs class DateOnlyCodec (line 13) | [RegisterSerializer] method WriteField (line 16) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader re... method ReadValue (line 44) | public static DateOnly ReadValue(ref Reader reader, Fi... FILE: src/Orleans.Serialization/Codecs/DateTimeCodec.cs class DateTimeCodec (line 12) | [RegisterSerializer] method WriteField (line 15) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader re... method ReadValue (line 43) | public static DateTime ReadValue(ref Reader reader, Fi... FILE: src/Orleans.Serialization/Codecs/DateTimeOffsetCodec.cs class DateTimeOffsetCodec (line 12) | [RegisterSerializer] method WriteField (line 15) | void IFieldCodec.WriteField(ref Writer<... method WriteField (line 27) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 38) | DateTimeOffset IFieldCodec.ReadValue(ref Reade... method ReadValue (line 41) | public static DateTimeOffset ReadValue(ref Reader read... FILE: src/Orleans.Serialization/Codecs/DictionaryCodec.cs class DictionaryCodec (line 20) | [RegisterSerializer] method DictionaryCodec (line 36) | public DictionaryCodec( method WriteField (line 47) | public void WriteField(ref Writer writer... method ReadValue (line 77) | public Dictionary ReadValue(ref Reader r... method CreateInstance (line 140) | private Dictionary CreateInstance(int length, IEqualityC... method ThrowInvalidSizeException (line 147) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 150) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... class DictionaryCopier (line 158) | [RegisterCopier] method DictionaryCopier (line 170) | public DictionaryCopier(IDeepCopier keyCopier, IDeepCopier DeepCopy(Dictionary inpu... method DeepCopy (line 201) | public void DeepCopy(Dictionary input, Dictionary>.Serialize(ref... method Deserialize (line 273) | void IBaseCodec>.Deserialize(ref Read... method ThrowInvalidSizeException (line 340) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 343) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... FILE: src/Orleans.Serialization/Codecs/Enum32BaseCodec.cs class Enum32BaseCodec (line 14) | public abstract class Enum32BaseCodec : IFieldCodec where T : unma... method WriteField (line 19) | public unsafe void WriteField(ref Writer... method ReadValue (line 28) | public unsafe T ReadValue(ref Reader reader, Field field) type HolderStruct (line 34) | [StructLayout(LayoutKind.Sequential)] class DateTimeKindCodec (line 45) | [RegisterSerializer] class DayOfWeekCodec (line 51) | [RegisterSerializer] FILE: src/Orleans.Serialization/Codecs/FloatCodec.cs class FloatCodec (line 15) | [RegisterSerializer] method WriteField (line 18) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader reader, ... method ReadValue (line 58) | public static float ReadValue(ref Reader reader, Field... method ReadFloatRaw (line 96) | public static float ReadFloatRaw(ref Reader reader) =>... method ReadFloatRaw (line 98) | public static float ReadFloatRaw(ref Reader reader) =>... method ThrowWireTypeOutOfRange (line 101) | private static void ThrowWireTypeOutOfRange(WireType wireType) => thro... method ThrowValueOutOfRange (line 104) | private static void ThrowValueOutOfRange(T value) => throw new Over... class DoubleCodec (line 111) | [RegisterSerializer] method WriteField (line 114) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader reader... method ReadValue (line 154) | public static double ReadValue(ref Reader reader, Fiel... method ReadDoubleRaw (line 183) | public static double ReadDoubleRaw(ref Reader reader) ... method ReadDoubleRaw (line 185) | public static double ReadDoubleRaw(ref Reader reader) ... method ThrowWireTypeOutOfRange (line 188) | private static void ThrowWireTypeOutOfRange(WireType wireType) => thro... class DecimalCodec (line 195) | [RegisterSerializer] method WriteField (line 200) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader read... method ReadValue (line 251) | public static decimal ReadValue(ref Reader reader, Fie... method ReadDecimalRaw (line 294) | public static decimal ReadDecimalRaw(ref Reader reader) type DecimalConverter (line 318) | private struct DecimalConverter method ThrowWireTypeOutOfRange (line 325) | private static void ThrowWireTypeOutOfRange(WireType wireType) => thro... method ThrowValueOutOfRange (line 328) | private static void ThrowValueOutOfRange(T value) => throw new Over... class HalfCodec (line 336) | [RegisterSerializer] method WriteField (line 339) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader reader, Fi... method ReadValue (line 369) | public static Half ReadValue(ref Reader reader, Field ... method ReadHalfRaw (line 419) | internal static Half ReadHalfRaw(ref Reader reader) =>... method ThrowWireTypeOutOfRange (line 421) | [DoesNotReturn] method ThrowValueOutOfRange (line 425) | [DoesNotReturn] FILE: src/Orleans.Serialization/Codecs/GeneralizedReferenceTypeSurrogateCodec.cs class GeneralizedReferenceTypeSurrogateCodec (line 14) | public abstract class GeneralizedReferenceTypeSurrogateCodec(ref Reader reader, Field field) method WriteField (line 47) | public void WriteField(ref Writer writer... method ConvertFromSurrogate (line 66) | public abstract TField ConvertFromSurrogate(ref TSurrogate surrogate); method ConvertToSurrogate (line 73) | public abstract void ConvertToSurrogate(TField value, ref TSurrogate s... FILE: src/Orleans.Serialization/Codecs/GeneralizedValueTypeSurrogateCodec.cs class GeneralizedValueTypeSurrogateCodec (line 14) | public abstract class GeneralizedValueTypeSurrogateCodec(ref Reader reader, Field field) method WriteField (line 40) | public void WriteField(ref Writer writer... method ConvertFromSurrogate (line 55) | public abstract TField ConvertFromSurrogate(ref TSurrogate surrogate); method ConvertToSurrogate (line 62) | public abstract void ConvertToSurrogate(TField value, ref TSurrogate s... FILE: src/Orleans.Serialization/Codecs/GuidCodec.cs class GuidCodec (line 14) | [RegisterSerializer] method WriteField (line 19) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 43) | Guid IFieldCodec.ReadValue(ref Reader reader, Fi... method ReadValue (line 52) | public static Guid ReadValue(ref Reader reader, Field ... method WriteRaw (line 70) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadRaw (line 99) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/Codecs/HashSetCodec.cs class HashSetCodec (line 19) | [RegisterSerializer] method HashSetCodec (line 34) | public HashSetCodec(IFieldCodec fieldCodec, IFieldCodec(ref Writer writer... method ReadValue (line 57) | public HashSet ReadValue(ref Reader reader, Field f... method CreateInstance (line 109) | private static HashSet CreateInstance(int length, IEqualityComparer... method ThrowInvalidSizeException (line 116) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 119) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... method Serialize (line 121) | public void Serialize(ref Writer writer,... method Deserialize (line 140) | void IBaseCodec>.Deserialize(ref Reader rea... class HashSetCopier (line 200) | [RegisterCopier] method DeepCopy (line 208) | public HashSet DeepCopy(HashSet input, CopyContext context) method DeepCopy (line 231) | public void DeepCopy(HashSet input, HashSet output, CopyContext ... FILE: src/Orleans.Serialization/Codecs/IFieldCodec.cs type IFieldCodec (line 11) | public interface IFieldCodec method WriteField (line 16) | void WriteField(ref Writer writer, uint ... method ReadValue (line 21) | object ReadValue(ref Reader reader, Field field); method WriteField (line 40) | void WriteField(ref Writer writer, uint ... method ReadValue (line 49) | new T ReadValue(ref Reader reader, Field field); method WriteField (line 51) | void IFieldCodec.WriteField(ref Writer w... method ReadValue (line 54) | object IFieldCodec.ReadValue(ref Reader reader, Field ... type IFieldCodec (line 30) | public interface IFieldCodec : IFieldCodec method WriteField (line 16) | void WriteField(ref Writer writer, uint ... method ReadValue (line 21) | object ReadValue(ref Reader reader, Field field); method WriteField (line 40) | void WriteField(ref Writer writer, uint ... method ReadValue (line 49) | new T ReadValue(ref Reader reader, Field field); method WriteField (line 51) | void IFieldCodec.WriteField(ref Writer w... method ReadValue (line 54) | object IFieldCodec.ReadValue(ref Reader reader, Field ... type IDerivedTypeCodec (line 60) | public interface IDerivedTypeCodec : IFieldCodec type ISerializationCallbacks (line 68) | public interface ISerializationCallbacks method OnSerializing (line 74) | void OnSerializing(T value); method OnSerialized (line 80) | void OnSerialized(T value); method OnDeserializing (line 86) | void OnDeserializing(T value); method OnDeserialized (line 92) | void OnDeserialized(T value); method OnCopying (line 99) | void OnCopying(T original, T result); method OnCopied (line 106) | void OnCopied(T original, T result); class UntypedCodecWrapper (line 109) | internal sealed class UntypedCodecWrapper : IFieldCodec method UntypedCodecWrapper (line 113) | public UntypedCodecWrapper(IFieldCodec codec) => _codec = codec; method WriteField (line 115) | public void WriteField(ref Writer writer... method WriteField (line 118) | void IFieldCodec.WriteField(ref Writer w... method ReadValue (line 121) | public TField ReadValue(ref Reader reader, Field field... method ReadValue (line 123) | object IFieldCodec.ReadValue(ref Reader reader, Field ... FILE: src/Orleans.Serialization/Codecs/IPAddressCodec.cs class IPAddressCodec (line 13) | [RegisterSerializer] method ReadValue (line 16) | IPAddress IFieldCodec.ReadValue(ref Buffers.Reader<... method ReadValue (line 25) | public static IPAddress ReadValue(ref Buffers.Reader r... method ReadRaw (line 41) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteField (line 52) | void IFieldCodec.WriteField(ref Buffers.Writ... method WriteField (line 70) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteRaw (line 85) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ThrowNotSupported (line 95) | private static void ThrowNotSupported() => throw new NotSupportedExcep... class IPAddressCopier (line 98) | [RegisterCopier] FILE: src/Orleans.Serialization/Codecs/IPEndPointCodec.cs class IPEndPointCodec (line 14) | [RegisterSerializer] method ReadValue (line 17) | IPEndPoint IFieldCodec.ReadValue(ref Buffers.Reade... method ReadValue (line 26) | public static IPEndPoint ReadValue(ref Buffers.Reader ... method WriteField (line 57) | void IFieldCodec.WriteField(ref Buffers.Wri... method WriteField (line 77) | public static void WriteField(ref Buffers.Writer... method ConvertFromSurrogate (line 25) | public override ImmutableArray ConvertFromSurrogate(ref ImmutableAr... method ConvertToSurrogate (line 29) | public override void ConvertToSurrogate(ImmutableArray value, ref I... type ImmutableArraySurrogate (line 37) | [GenerateSerializer] class ImmutableArrayCopier (line 52) | [RegisterCopier] method ImmutableArrayCopier (line 57) | public ImmutableArrayCopier(IDeepCopier copier) => _copier = Orlean... method IsShallowCopyable (line 59) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 61) | object IDeepCopier.DeepCopy(object input, CopyContext context) method DeepCopy (line 71) | public ImmutableArray DeepCopy(ImmutableArray input, CopyContext... FILE: src/Orleans.Serialization/Codecs/ImmutableDictionaryCodec.cs class ImmutableDictionaryCodec (line 14) | [RegisterSerializer] method ImmutableDictionaryCodec (line 21) | public ImmutableDictionaryCodec(IValueSerializer ConvertFromSurrogate... method ConvertToSurrogate (line 30) | public override void ConvertToSurrogate(ImmutableDictionary keyCopier, IDeepCop... method IsShallowCopyable (line 67) | public bool IsShallowCopyable() => _keyCopier is null && _valueCopier ... method DeepCopy (line 70) | public ImmutableDictionary DeepCopy(ImmutableDictionary<... FILE: src/Orleans.Serialization/Codecs/ImmutableHashSetCodec.cs class ImmutableHashSetCodec (line 13) | [RegisterSerializer] method ImmutableHashSetCodec (line 20) | public ImmutableHashSetCodec(IValueSerializer ConvertFromSurrogate(ref Immutable... method ConvertToSurrogate (line 29) | public override void ConvertToSurrogate(ImmutableHashSet value, ref... type ImmutableHashSetSurrogate (line 40) | [GenerateSerializer] class ImmutableHashSetCopier (line 62) | [RegisterCopier] method ImmutableHashSetCopier (line 67) | public ImmutableHashSetCopier(IDeepCopier copier) => _copier = Orle... method IsShallowCopyable (line 69) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 72) | public ImmutableHashSet DeepCopy(ImmutableHashSet input, CopyCon... FILE: src/Orleans.Serialization/Codecs/ImmutableListCodec.cs class ImmutableListCodec (line 13) | [RegisterSerializer] method ImmutableListCodec (line 20) | public ImmutableListCodec(IValueSerializer> ... method ConvertFromSurrogate (line 25) | public override ImmutableList ConvertFromSurrogate(ref ImmutableLis... method ConvertToSurrogate (line 28) | public override void ConvertToSurrogate(ImmutableList value, ref Im... type ImmutableListSurrogate (line 35) | [GenerateSerializer] class ImmutableListCopier (line 50) | [RegisterCopier] method ImmutableListCopier (line 55) | public ImmutableListCopier(IDeepCopier copier) => _copier = Orleans... method IsShallowCopyable (line 57) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 60) | public ImmutableList DeepCopy(ImmutableList input, CopyContext c... FILE: src/Orleans.Serialization/Codecs/ImmutableQueueCodec.cs class ImmutableQueueCodec (line 13) | [RegisterSerializer] method ImmutableQueueCodec (line 20) | public ImmutableQueueCodec(IValueSerializer... method ConvertFromSurrogate (line 25) | public override ImmutableQueue ConvertFromSurrogate(ref ImmutableQu... method ConvertToSurrogate (line 28) | public override void ConvertToSurrogate(ImmutableQueue value, ref I... type ImmutableQueueSurrogate (line 35) | [GenerateSerializer] class ImmutableQueueCopier (line 50) | [RegisterCopier] method ImmutableQueueCopier (line 55) | public ImmutableQueueCopier(IDeepCopier copier) => _copier = Orlean... method IsShallowCopyable (line 57) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 60) | public ImmutableQueue DeepCopy(ImmutableQueue input, CopyContext... FILE: src/Orleans.Serialization/Codecs/ImmutableSortedDictionaryCodec.cs class ImmutableSortedDictionaryCodec (line 14) | [RegisterSerializer] method ImmutableSortedDictionaryCodec (line 21) | public ImmutableSortedDictionaryCodec(IValueSerializer ConvertFromSur... method ConvertToSurrogate (line 30) | public override void ConvertToSurrogate(ImmutableSortedDictionary keyCopier, ID... method IsShallowCopyable (line 84) | public bool IsShallowCopyable() => _keyCopier is null && _valueCopier ... method DeepCopy (line 87) | public ImmutableSortedDictionary DeepCopy(ImmutableSorte... FILE: src/Orleans.Serialization/Codecs/ImmutableSortedSetCodec.cs class ImmutableSortedSetCodec (line 13) | [RegisterSerializer] method ImmutableSortedSetCodec (line 20) | public ImmutableSortedSetCodec(IValueSerializer ConvertFromSurrogate(ref Immutab... method ConvertToSurrogate (line 29) | public override void ConvertToSurrogate(ImmutableSortedSet value, r... type ImmutableSortedSetSurrogate (line 40) | [GenerateSerializer] class ImmutableSortedSetCopier (line 62) | [RegisterCopier] method ImmutableSortedSetCopier (line 67) | public ImmutableSortedSetCopier(IDeepCopier copier) => _copier = Or... method IsShallowCopyable (line 69) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 72) | public ImmutableSortedSet DeepCopy(ImmutableSortedSet input, Cop... FILE: src/Orleans.Serialization/Codecs/ImmutableStackCodec.cs class ImmutableStackCodec (line 15) | [RegisterSerializer] method ImmutableStackCodec (line 22) | public ImmutableStackCodec(IValueSerializer... method ConvertFromSurrogate (line 27) | public override ImmutableStack ConvertFromSurrogate(ref ImmutableSt... method ConvertToSurrogate (line 30) | public override void ConvertToSurrogate(ImmutableStack value, ref I... type ImmutableStackSurrogate (line 37) | [GenerateSerializer] class ImmutableStackCopier (line 52) | [RegisterCopier] method ImmutableStackCopier (line 57) | public ImmutableStackCopier(IDeepCopier copier) => _copier = Orlean... method IsShallowCopyable (line 59) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 62) | public ImmutableStack DeepCopy(ImmutableStack input, CopyContext... FILE: src/Orleans.Serialization/Codecs/IntegerCodec.cs class BoolCodec (line 15) | [RegisterSerializer] method WriteField (line 18) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader reader, Fi... method ReadValue (line 50) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class CharCodec (line 61) | [RegisterSerializer] method WriteField (line 64) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader reader, Fi... method ReadValue (line 96) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class ByteCodec (line 107) | [RegisterSerializer] method WriteField (line 110) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 145) | byte IFieldCodec.ReadValue(ref Reader reader, Fi... method ReadValue (line 154) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class SByteCodec (line 165) | [RegisterSerializer] method WriteField (line 168) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 203) | sbyte IFieldCodec.ReadValue(ref Reader reader, ... method ReadValue (line 212) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class UInt16Codec (line 223) | [RegisterSerializer] method ReadValue (line 227) | ushort IFieldCodec.ReadValue(ref Reader reader... method ReadValue (line 236) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteField (line 243) | void IFieldCodec.WriteField(ref Writer(ref Writer... class Int16Codec (line 285) | [RegisterSerializer] method WriteField (line 288) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 327) | short IFieldCodec.ReadValue(ref Reader reader, ... method ReadValue (line 336) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class UInt32Codec (line 347) | [RegisterSerializer] method WriteField (line 350) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 395) | uint IFieldCodec.ReadValue(ref Reader reader, Fi... method ReadValue (line 404) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class Int32Codec (line 415) | [RegisterSerializer] method WriteField (line 418) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 466) | int IFieldCodec.ReadValue(ref Reader reader, Fiel... method ReadValue (line 475) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class Int64Codec (line 486) | [RegisterSerializer] method WriteField (line 489) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 558) | long IFieldCodec.ReadValue(ref Reader reader, Fi... method ReadValue (line 567) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class UInt64Codec (line 578) | [RegisterSerializer] method WriteField (line 581) | void IFieldCodec.WriteField(ref Writer(ref Writer... method ReadValue (line 650) | ulong IFieldCodec.ReadValue(ref Reader reader, ... method ReadValue (line 659) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class Int128Codec (line 671) | [RegisterSerializer] method WriteField (line 675) | void IFieldCodec.WriteField(ref Writer(ref Writer.ReadValue(ref Reader reader... method ReadValue (line 724) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadRaw (line 742) | internal static Int128 ReadRaw(ref Reader reader) method TryReadLittleEndian (line 758) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class UInt128Codec (line 765) | [RegisterSerializer] method WriteField (line 769) | void IFieldCodec.WriteField(ref Writer(ref Writer.ReadValue(ref Reader read... method ReadValue (line 818) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadRaw (line 836) | internal static UInt128 ReadRaw(ref Reader reader) method TryReadLittleEndian (line 852) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/Codecs/KeyValuePairCodec.cs class KeyValuePairCodec (line 16) | [RegisterSerializer] method KeyValuePairCodec (line 29) | public KeyValuePairCodec(IFieldCodec keyCodec, IFieldCodec(ref Writer writer, method ReadValue (line 51) | public KeyValuePair ReadValue(ref Reader... class KeyValuePairCopier (line 90) | [RegisterCopier] method KeyValuePairCopier (line 101) | public KeyValuePairCopier(IDeepCopier keyCopier, IDeepCopier _keyCopier is null && _valueCopier ... method DeepCopy (line 109) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 112) | public KeyValuePair DeepCopy(KeyValuePair ... FILE: src/Orleans.Serialization/Codecs/ListCodec.cs class ListCodec (line 17) | [RegisterSerializer] method ListCodec (line 28) | public ListCodec(IFieldCodec fieldCodec) method WriteField (line 34) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 50) | public List ReadValue(ref Reader reader, Field field) method ThrowInvalidSizeException (line 106) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 109) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... method Serialize (line 111) | public void Serialize(ref Writer writer,... method Deserialize (line 125) | public void Deserialize(ref Reader reader, List value) class ListCopier (line 169) | [RegisterCopier] method ListCopier (line 178) | public ListCopier(IDeepCopier valueCopier) method DeepCopy (line 184) | public List DeepCopy(List input, CopyContext context) method DeepCopy (line 207) | public void DeepCopy(List input, List output, CopyContext context) FILE: src/Orleans.Serialization/Codecs/MultiDimensionalArrayCodec.cs class MultiDimensionalArrayCodec (line 15) | internal sealed class MultiDimensionalArrayCodec : IGeneralizedCodec method MultiDimensionalArrayCodec (line 28) | public MultiDimensionalArrayCodec(IFieldCodec intArrayCodec, IF... method WriteField (line 35) | public void WriteField(ref Writer writer... method ReadValue (line 87) | public object ReadValue(ref Reader reader, Field field) method IsSupportedType (line 154) | public bool IsSupportedType(Type type) => type.IsArray && !type.IsSZAr... method ThrowIndexOutOfRangeException (line 156) | private void ThrowIndexOutOfRangeException(int[] lengths) => throw new... method ThrowLengthsFieldMissing (line 159) | private static void ThrowLengthsFieldMissing() => throw new RequiredFi... class MultiDimensionalArrayCopier (line 166) | internal sealed class MultiDimensionalArrayCopier : IGeneralizedCopier method DeepCopy (line 169) | public object DeepCopy(object original, CopyContext context) method IsSupportedType (line 240) | public bool IsSupportedType(Type type) => type.IsArray && !type.IsSZAr... FILE: src/Orleans.Serialization/Codecs/NameValueCollectionCodec.cs class NameValueCollectionCodec (line 11) | [RegisterSerializer] method NameValueCollectionCodec (line 18) | public NameValueCollectionCodec(IValueSerializer fieldCodec) method WriteField (line 31) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 46) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ThrowInvalidReference (line 62) | private static void ThrowInvalidReference(uint reference) => throw new... class NullableCopier (line 69) | [RegisterCopier] method NullableCopier (line 78) | public NullableCopier(IDeepCopier copier) => _copier = OrleansGener... method IsShallowCopyable (line 80) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 82) | object IDeepCopier.DeepCopy(object input, CopyContext context) => inpu... method DeepCopy (line 85) | public T? DeepCopy(T? input, CopyContext context) => input is null || ... FILE: src/Orleans.Serialization/Codecs/ObjectCodec.cs class ObjectCodec (line 13) | [RegisterSerializer] method ReadValue (line 17) | object IFieldCodec.ReadValue(ref Reader reader... method ReadValue (line 26) | public static object ReadValue(ref Reader reader, Fiel... method ReadObject (line 40) | [MethodImpl(MethodImplOptions.NoInlining)] method WriteField (line 54) | void IFieldCodec.WriteField(ref Writer(ref Writer w... class ObjectCopier (line 111) | [RegisterCopier] method DeepCopy (line 120) | public static object DeepCopy(object input, CopyContext context) method DeepCopy (line 126) | object IDeepCopier.DeepCopy(object input, CopyContext context) method DeepCopy (line 132) | object IDeepCopier.DeepCopy(object input, CopyContext context) FILE: src/Orleans.Serialization/Codecs/QueueCodec.cs class QueueCodec (line 15) | [RegisterSerializer] method QueueCodec (line 25) | public QueueCodec(IFieldCodec fieldCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 55) | public Queue ReadValue(ref Reader reader, Field field) method ThrowLengthFieldMissing (line 106) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... class QueueCopier (line 113) | [RegisterCopier] method QueueCopier (line 123) | public QueueCopier(IDeepCopier valueCopier) method DeepCopy (line 129) | public Queue DeepCopy(Queue input, CopyContext context) method DeepCopy (line 152) | public void DeepCopy(Queue input, Queue output, CopyContext cont... FILE: src/Orleans.Serialization/Codecs/ReadOnlyCollectionCodec.cs type ReadOnlyCollectionSurrogate (line 13) | [GenerateSerializer] class ReadOnlyCollectionCodec (line 28) | [RegisterSerializer] method ReadOnlyCollectionCodec (line 35) | public ReadOnlyCollectionCodec(IValueSerializer ConvertFromSurrogate(ref ReadOnl... method ConvertToSurrogate (line 43) | public override void ConvertToSurrogate(ReadOnlyCollection value, r... class ReadOnlyCollectionCopier (line 50) | [RegisterCopier] method ReadOnlyCollectionCopier (line 60) | public ReadOnlyCollectionCopier(IDeepCopier elementCopier) method DeepCopy (line 66) | public ReadOnlyCollection DeepCopy(ReadOnlyCollection input, Cop... FILE: src/Orleans.Serialization/Codecs/ReadOnlyDictionaryCodec.cs class ReadOnlyDictionaryCodec (line 9) | [RegisterSerializer] method ReadOnlyDictionaryCodec (line 12) | public ReadOnlyDictionaryCodec(IValueSerializer ConvertFromSurrogate(... method ConvertToSurrogate (line 18) | public override void ConvertToSurrogate(ReadOnlyDictionary keyCopier, IDeepCopi... method DeepCopy (line 41) | public ReadOnlyDictionary DeepCopy(ReadOnlyDictionary(ref Reader reader,... method DeserializeFromMarker (line 151) | private static object DeserializeFromMarker( method RecordObject (line 195) | public static void RecordObject(SerializerSession session, object valu... method RecordObject (line 203) | public static void RecordObject(SerializerSession session, object valu... method CreateRecordPlaceholder (line 210) | public static uint CreateRecordPlaceholder(SerializerSession session) ... FILE: src/Orleans.Serialization/Codecs/ReferenceTypeSurrogateCodec.cs class ReferenceTypeSurrogateCodec (line 15) | public abstract class ReferenceTypeSurrogateCodec : ... method ReferenceTypeSurrogateCodec (line 24) | protected ReferenceTypeSurrogateCodec(IValueSerializer sur... method ReadValue (line 30) | public TField ReadValue(ref Reader reader, Field field) method WriteField (line 55) | public void WriteField(ref Writer writer... method ConvertFromSurrogate (line 82) | public abstract TField ConvertFromSurrogate(ref TSurrogate surrogate); method ConvertToSurrogate (line 89) | public abstract void ConvertToSurrogate(TField value, ref TSurrogate s... FILE: src/Orleans.Serialization/Codecs/SkipFieldExtension.cs class SkipFieldCodec (line 11) | public class SkipFieldCodec : IFieldCodec method WriteField (line 14) | public void WriteField(ref Writer writer... method ReadValue (line 20) | public object ReadValue(ref Reader reader, Field field) class SkipFieldExtension (line 30) | public static class SkipFieldExtension method SkipField (line 38) | public static void SkipField(this ref Reader reader, F... method ThrowUnexpectedExtendedWireType (line 76) | internal static void ThrowUnexpectedExtendedWireType(Field field) => t... method ThrowUnexpectedWireType (line 79) | internal static void ThrowUnexpectedWireType(Field field) => throw new... method SkipLengthPrefixedField (line 82) | internal static void SkipLengthPrefixedField(ref Reader(ref Reader r... FILE: src/Orleans.Serialization/Codecs/SortedDictionaryCodec.cs class SortedDictionaryCodec (line 13) | [RegisterSerializer] method SortedDictionaryCodec (line 20) | public SortedDictionaryCodec(IValueSerializer ConvertFromSurrogate(re... method ConvertToSurrogate (line 37) | public override void ConvertToSurrogate(SortedDictionary... type SortedDictionarySurrogate (line 49) | [GenerateSerializer] class SortedDictionaryCopier (line 72) | [RegisterCopier] method SortedDictionaryCopier (line 84) | public SortedDictionaryCopier(IDeepCopier keyCopier, IDeepCopier... method DeepCopy (line 91) | public SortedDictionary DeepCopy(SortedDictionary input, SortedDicti... FILE: src/Orleans.Serialization/Codecs/SortedListCodec.cs class SortedListCodec (line 13) | [RegisterSerializer] method SortedListCodec (line 20) | public SortedListCodec(IValueSerializer ConvertFromSurrogate(ref Sort... method ConvertToSurrogate (line 44) | public override void ConvertToSurrogate(SortedList value... type SortedListSurrogate (line 56) | [GenerateSerializer] class SortedListCopier (line 79) | [RegisterCopier] method SortedListCopier (line 91) | public SortedListCopier(IDeepCopier keyCopier, IDeepCopier DeepCopy(SortedList inpu... method DeepCopy (line 121) | public void DeepCopy(SortedList input, SortedList> surrogat... method ConvertFromSurrogate (line 24) | public override SortedSet ConvertFromSurrogate(ref SortedSetSurroga... method ConvertToSurrogate (line 27) | public override void ConvertToSurrogate(SortedSet value, ref Sorted... type SortedSetSurrogate (line 38) | [GenerateSerializer] class SortedSetCopier (line 60) | [RegisterCopier] method SortedSetCopier (line 70) | public SortedSetCopier(IDeepCopier elementCopier) method DeepCopy (line 76) | public SortedSet DeepCopy(SortedSet input, CopyContext context) method DeepCopy (line 99) | public void DeepCopy(SortedSet input, SortedSet output, CopyCont... FILE: src/Orleans.Serialization/Codecs/StackCodec.cs class StackCodec (line 16) | [RegisterSerializer] method StackCodec (line 27) | public StackCodec(IFieldCodec fieldCodec) method WriteField (line 33) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 58) | public Stack ReadValue(ref Reader reader, Field field) method ThrowInvalidSizeException (line 112) | private void ThrowInvalidSizeException(int length) => throw new IndexO... method ThrowLengthFieldMissing (line 115) | private void ThrowLengthFieldMissing() => throw new RequiredFieldMissi... class StackCopier (line 122) | [RegisterCopier] method StackCopier (line 132) | public StackCopier(IDeepCopier valueCopier) method DeepCopy (line 138) | public Stack DeepCopy(Stack input, CopyContext context) method DeepCopy (line 163) | public void DeepCopy(Stack input, Stack output, CopyContext cont... FILE: src/Orleans.Serialization/Codecs/StringCodec.cs class StringCodec (line 14) | [RegisterSerializer] method ReadValue (line 18) | string IFieldCodec.ReadValue(ref Reader reader... method ReadValue (line 27) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadRaw (line 45) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadMultiSegment (line 54) | private static string ReadMultiSegment(ref Reader read... method WriteField (line 64) | void IFieldCodec.WriteField(ref Writer(ref Writer.WriteField(ref Writer.ReadValue(ref Reader re... method ReadValue (line 44) | public static TimeOnly ReadValue(ref Reader reader, Fi... FILE: src/Orleans.Serialization/Codecs/TimeSpanCodec.cs class TimeSpanCodec (line 12) | [RegisterSerializer] method WriteField (line 15) | void IFieldCodec.WriteField(ref Writer.ReadValue(ref Reader re... method ReadValue (line 47) | public static TimeSpan ReadValue(ref Reader reader, Fi... FILE: src/Orleans.Serialization/Codecs/TupleCodec.cs class TupleCodec (line 14) | [RegisterSerializer] method TupleCodec (line 25) | public TupleCodec(IFieldCodec valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 88) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 213) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 359) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 525) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 711) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 914) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 1135) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple valueCodec) method WriteField (line 31) | public void WriteField(ref Writer writer... method ReadValue (line 46) | public Tuple ReadValue(ref Reader reader, Field field) method TupleCodec (line 143) | public TupleCodec(IFieldCodec item1Codec, IFieldCodec item2Codec) method WriteField (line 150) | public void WriteField(ref Writer writer... method ReadValue (line 166) | public Tuple ReadValue(ref Reader reader, Fiel... method TupleCodec (line 279) | public TupleCodec( method WriteField (line 290) | public void WriteField(ref Writer writer... method ReadValue (line 307) | public Tuple ReadValue(ref Reader reader, ... method TupleCodec (line 437) | public TupleCodec( method WriteField (line 450) | public void WriteField(ref Writer writer... method ReadValue (line 468) | public Tuple ReadValue(ref Reader read... method TupleCodec (line 612) | public TupleCodec( method WriteField (line 627) | public void WriteField(ref Writer writer, method ReadValue (line 649) | public Tuple ReadValue(ref Reader ... method TupleCodec (line 807) | public TupleCodec( method WriteField (line 824) | public void WriteField(ref Writer writer, method ReadValue (line 847) | public Tuple ReadValue(ref Reader(ref Writer writer, method ReadValue (line 1063) | public Tuple ReadValue(ref Reader<... method TupleCodec (line 1249) | public TupleCodec( method WriteField (line 1270) | public void WriteField(ref Writer writer, method ReadValue (line 1295) | public Tuple ReadValue(ref Rea... class TupleCopier (line 1372) | [RegisterCopier] method TupleCopier (line 98) | public TupleCopier(IDeepCopier copier) => _copier = OrleansGenerate... method IsShallowCopyable (line 100) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 103) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 225) | public TupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 231) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 233) | public Tuple DeepCopy(Tuple input, CopyContext context) method TupleCopier (line 373) | public TupleCopier( method IsShallowCopyable (line 383) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 386) | public Tuple DeepCopy(Tuple input, CopyContext... method TupleCopier (line 541) | public TupleCopier( method IsShallowCopyable (line 553) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 556) | public Tuple DeepCopy(Tuple input, Cop... method TupleCopier (line 729) | public TupleCopier( method IsShallowCopyable (line 743) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 746) | public Tuple DeepCopy(Tuple in... method TupleCopier (line 934) | public TupleCopier( method IsShallowCopyable (line 950) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 953) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1178) | public Tuple DeepCopy(Tuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1419) | public Tuple DeepCopy(Tuple.WriteField(ref Writer(ref Writer.ReadValue(ref Reader reader, Fi... method ReadValue (line 80) | public static Type ReadValue(ref Reader reader, Field ... method ThrowInvalidSchemaType (line 146) | private static void ThrowInvalidSchemaType(SchemaType schemaType) => t... method ThrowUnknownWellKnownType (line 149) | private static void ThrowUnknownWellKnownType(uint id) => throw new Un... method ThrowMissingType (line 150) | private static void ThrowMissingType() => throw new TypeMissingExcepti... FILE: src/Orleans.Serialization/Codecs/UnknownFieldMarker.cs class UnknownFieldMarker (line 8) | public sealed class UnknownFieldMarker method UnknownFieldMarker (line 15) | public UnknownFieldMarker(Field field, long position) method ToString (line 32) | public override string ToString() => $"{nameof(Position)}: 0x{Position... FILE: src/Orleans.Serialization/Codecs/UriCodec.cs class UriCodec (line 13) | [RegisterSerializer] method ReadValue (line 16) | Uri IFieldCodec.ReadValue(ref Buffers.Reader read... method ReadValue (line 21) | public static Uri ReadValue(ref Buffers.Reader reader,... method WriteField (line 40) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCodec (line 41) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 106) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCopier (line 123) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCodec (line 152) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 223) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCodec (line 259) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 340) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCodec (line 384) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 473) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCodec (line 523) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 619) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCodec (line 675) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 780) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCodec (line 842) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 957) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... class ValueTupleCodec (line 1025) | [RegisterSerializer] method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 25) | public ValueTuple ReadValue(ref Reader reader, Field f... method ValueTupleCodec (line 52) | public ValueTupleCodec(IFieldCodec valueCodec) method WriteField (line 58) | public void WriteField( method ReadValue (line 73) | public ValueTuple ReadValue(ref Reader reader, Fiel... method ValueTupleCodec (line 166) | public ValueTupleCodec(IFieldCodec item1Codec, IFieldCodec ite... method WriteField (line 173) | public void WriteField( method ReadValue (line 189) | public (T1, T2) ReadValue(ref Reader reader, Field field) method ValueTupleCodec (line 276) | public ValueTupleCodec( method WriteField (line 287) | public void WriteField( method ReadValue (line 304) | public (T1, T2, T3) ReadValue(ref Reader reader, Field... method ValueTupleCodec (line 404) | public ValueTupleCodec( method WriteField (line 417) | public void WriteField( method ReadValue (line 435) | public (T1, T2, T3, T4) ReadValue(ref Reader reader, F... method ValueTupleCodec (line 546) | public ValueTupleCodec( method WriteField (line 561) | public void WriteField(ref Writer writer, method ReadValue (line 579) | public (T1, T2, T3, T4, T5) ReadValue(ref Reader reade... method ValueTupleCodec (line 701) | public ValueTupleCodec( method WriteField (line 718) | public void WriteField(ref Writer writer, method ReadValue (line 738) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Reader r... method ValueTupleCodec (line 871) | public ValueTupleCodec( method WriteField (line 890) | public void WriteField(ref Writer writer, method ReadValue (line 911) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue( method ValueTupleCodec (line 1057) | public ValueTupleCodec( method WriteField (line 1078) | public void WriteField( method ReadValue (line 1100) | public ValueTuple ReadValue(re... class ValueTupleCopier (line 1147) | [RegisterCopier] method IsShallowCopyable (line 110) | public bool IsShallowCopyable() => true; method DeepCopy (line 113) | object IDeepCopier.DeepCopy(object input, CopyContext context) => input; method DeepCopy (line 116) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) => i... method ValueTupleCopier (line 132) | public ValueTupleCopier(IDeepCopier copier) => _copier = OrleansGen... method IsShallowCopyable (line 135) | public bool IsShallowCopyable() => _copier is null; method DeepCopy (line 137) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 140) | public ValueTuple DeepCopy(ValueTuple input, CopyContext context) method ValueTupleCopier (line 234) | public ValueTupleCopier(IDeepCopier copier1, IDeepCopier copier2) method IsShallowCopyable (line 240) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is null; method DeepCopy (line 242) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 245) | public ValueTuple DeepCopy(ValueTuple input, CopyConte... method ValueTupleCopier (line 353) | public ValueTupleCopier( method IsShallowCopyable (line 363) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 365) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 368) | public ValueTuple DeepCopy(ValueTuple input, C... method ValueTupleCopier (line 488) | public ValueTupleCopier( method IsShallowCopyable (line 500) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 502) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 505) | public ValueTuple DeepCopy(ValueTuple ... method ValueTupleCopier (line 636) | public ValueTupleCopier( method IsShallowCopyable (line 650) | public bool IsShallowCopyable() => _copier1 is null && _copier2 is nul... method DeepCopy (line 652) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 655) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 817) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 820) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 998) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1001) | public ValueTuple DeepCopy(ValueTuple _copier1 is null && _copier2 is nul... method DeepCopy (line 1192) | object IDeepCopier.DeepCopy(object input, CopyContext context) => IsSh... method DeepCopy (line 1195) | public ValueTuple DeepCopy(ValueTuple<... FILE: src/Orleans.Serialization/Codecs/VersionCodec.cs class VersionCodec (line 9) | [RegisterSerializer] method VersionCodec (line 16) | public VersionCodec(IValueSerializer surrogateSerial... method ConvertFromSurrogate (line 21) | public override Version ConvertFromSurrogate(ref VersionSurrogate surr... method ConvertToSurrogate (line 43) | public override void ConvertToSurrogate(Version value, ref VersionSurr... type VersionSurrogate (line 55) | [GenerateSerializer] FILE: src/Orleans.Serialization/Codecs/VoidCodec.cs class VoidCodec (line 12) | internal sealed class VoidCodec : IFieldCodec method WriteField (line 15) | public void WriteField(ref Writer writer... method ReadValue (line 24) | public object ReadValue(ref Reader reader, Field field) method ThrowNotNullException (line 30) | private static void ThrowNotNullException(object value) => throw new I... class VoidCopier (line 37) | internal sealed class VoidCopier : IDeepCopier method DeepCopy (line 39) | public object DeepCopy(object input, CopyContext context) method ThrowNotNullException (line 50) | private static void ThrowNotNullException(object value) => throw new I... FILE: src/Orleans.Serialization/Codecs/WellKnownStringComparerCodec.cs class WellKnownStringComparerCodec (line 21) | [Alias("StringComparer")] method WellKnownStringComparerCodec (line 39) | public WellKnownStringComparerCodec() method IsSupportedType (line 55) | public bool IsSupportedType(Type type) => method ReadValue (line 63) | public object ReadValue(ref Reader reader, Field field) method WriteField (line 138) | public void WriteField(ref Writer writer... method TryGetWellKnownCultureAwareComparerInfo (line 212) | private bool TryGetWellKnownCultureAwareComparerInfo(object value, out... method ThrowNotSupported (line 244) | [DoesNotReturn] method ThrowNotSupported (line 247) | [DoesNotReturn] class EqualityComparerBaseCodec (line 255) | [RegisterCopier] method DeepCopy (line 260) | public void DeepCopy(EqualityComparer input, EqualityComparer ou... method Deserialize (line 263) | public void Deserialize(ref Reader reader, EqualityCom... method Serialize (line 266) | public void Serialize(ref Writer writer,... class ComparerBaseCodec (line 275) | [RegisterCopier] method DeepCopy (line 280) | public void DeepCopy(Comparer input, Comparer output, CopyContex... method Deserialize (line 283) | public void Deserialize(ref Reader reader, Comparer... method Serialize (line 286) | public void Serialize(ref Writer writer,... FILE: src/Orleans.Serialization/Configuration/DefaultTypeManifestProvider.cs class DefaultTypeManifestProvider (line 8) | internal class DefaultTypeManifestProvider : TypeManifestProviderBase, I... method PostConfigure (line 10) | public void PostConfigure(string name, TypeManifestOptions options) method ConfigureInner (line 16) | protected override void ConfigureInner(TypeManifestOptions typeManifest) FILE: src/Orleans.Serialization/Configuration/ITypeManifestProvider.cs type ITypeManifestProvider (line 8) | public interface ITypeManifestProvider : IConfigureOptions.Configure(TypeManifestOpti... method ConfigureInner (line 35) | protected abstract void ConfigureInner(TypeManifestOptions options); FILE: src/Orleans.Serialization/Configuration/TypeManifestOptions.cs class TypeManifestOptions (line 10) | public sealed class TypeManifestOptions FILE: src/Orleans.Serialization/Configuration/TypeManifestProviderAttribute.cs class TypeManifestProviderAttribute (line 8) | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] method TypeManifestProviderAttribute (line 15) | public TypeManifestProviderAttribute(Type providerType) FILE: src/Orleans.Serialization/Exceptions.cs class ExceptionHelper (line 6) | internal static class ExceptionHelper method ThrowArgumentOutOfRange (line 8) | public static T ThrowArgumentOutOfRange(string argument) => throw n... class SerializerException (line 14) | [Serializable] method SerializerException (line 21) | public SerializerException() method SerializerException (line 29) | public SerializerException(string message) : base(message) method SerializerException (line 38) | public SerializerException(string message, Exception innerException) :... method SerializerException (line 50) | protected SerializerException(SerializationInfo info, StreamingContext... class FieldIdNotPresentException (line 58) | [Serializable] method FieldIdNotPresentException (line 65) | public FieldIdNotPresentException() : base("Attempted to access the fi... method FieldIdNotPresentException (line 77) | private FieldIdNotPresentException(SerializationInfo info, StreamingCo... class SchemaTypeInvalidException (line 85) | [Serializable] method SchemaTypeInvalidException (line 92) | public SchemaTypeInvalidException() : base("Attempted to access the sc... method SchemaTypeInvalidException (line 104) | private SchemaTypeInvalidException(SerializationInfo info, StreamingCo... class FieldTypeInvalidException (line 112) | [Serializable] method FieldTypeInvalidException (line 119) | public FieldTypeInvalidException() : base("Attempted to access the sch... method FieldTypeInvalidException (line 131) | private FieldTypeInvalidException(SerializationInfo info, StreamingCon... class FieldTypeMissingException (line 139) | [Serializable] method FieldTypeMissingException (line 147) | public FieldTypeMissingException(Type type) : base($"Attempted to dese... method FieldTypeMissingException (line 159) | private FieldTypeMissingException(SerializationInfo info, StreamingCon... class ExtendedWireTypeInvalidException (line 167) | [Serializable] method ExtendedWireTypeInvalidException (line 174) | public ExtendedWireTypeInvalidException() : base( method ExtendedWireTypeInvalidException (line 187) | private ExtendedWireTypeInvalidException(SerializationInfo info, Strea... class UnsupportedWireTypeException (line 195) | [Serializable] method UnsupportedWireTypeException (line 202) | public UnsupportedWireTypeException() method UnsupportedWireTypeException (line 210) | public UnsupportedWireTypeException(string message) : base(message) method UnsupportedWireTypeException (line 222) | private UnsupportedWireTypeException(SerializationInfo info, Streaming... method ReferenceNotFoundException (line 253) | public ReferenceNotFoundException(Type targetType, uint targetId) : base( method ReferenceNotFoundException (line 266) | [Obsolete] method GetObjectData (line 276) | [Obsolete] method UnknownReferencedTypeException (line 297) | public UnknownReferencedTypeException(uint reference) : base($"Unknown r... method UnknownReferencedTypeException (line 308) | [Obsolete] method GetObjectData (line 324) | [Obsolete] method ReferenceFieldNotSupportedException (line 351) | public ReferenceFieldNotSupportedException(Type targetType) : base( method ReferenceFieldNotSupportedException (line 363) | [Obsolete] method GetObjectData (line 372) | [Obsolete] method UnknownWellKnownTypeException (line 392) | public UnknownWellKnownTypeException(uint id) : base($"Unknown well-know... method UnknownWellKnownTypeException (line 403) | [Obsolete] method GetObjectData (line 419) | [Obsolete] method IllegalTypeException (line 439) | public IllegalTypeException(string typeName) : base($"Type \"{typeName}\... method IllegalTypeException (line 450) | [Obsolete] method GetObjectData (line 466) | [Obsolete] class TypeMissingException (line 478) | [Serializable] method TypeMissingException (line 485) | public TypeMissingException() : base("Expected a type but none were en... method TypeMissingException (line 497) | private TypeMissingException(SerializationInfo info, StreamingContext ... class RequiredFieldMissingException (line 505) | [Serializable] method RequiredFieldMissingException (line 513) | public RequiredFieldMissingException(string message) : base(message) method RequiredFieldMissingException (line 525) | private RequiredFieldMissingException(SerializationInfo info, Streamin... class CodecNotFoundException (line 533) | [Serializable] method CodecNotFoundException (line 541) | public CodecNotFoundException(string message) : base(message) method CodecNotFoundException (line 553) | private CodecNotFoundException(SerializationInfo info, StreamingContex... class UnexpectedLengthPrefixValueException (line 561) | [Serializable] method UnexpectedLengthPrefixValueException (line 569) | public UnexpectedLengthPrefixValueException(string message) : base(mes... method UnexpectedLengthPrefixValueException (line 579) | public UnexpectedLengthPrefixValueException(string typeName, uint expe... method UnexpectedLengthPrefixValueException (line 592) | private UnexpectedLengthPrefixValueException(SerializationInfo info, S... FILE: src/Orleans.Serialization/GeneratedCodeHelpers/OrleansGeneratedCodeHelper.cs class OrleansGeneratedCodeHelper (line 20) | public static class OrleansGeneratedCodeHelper class RecursiveServiceResolutionState (line 24) | private sealed class RecursiveServiceResolutionState method Enter (line 30) | public void Enter(object caller) method Exit (line 39) | public void Exit() method GetService (line 55) | public static TService GetService(object caller, ICodecProvi... method UnwrapService (line 93) | public static TService UnwrapService(object caller, TService... method TryGetService (line 127) | internal static object TryGetService(Type serviceType) method GetOptionalCopier (line 145) | public static IDeepCopier GetOptionalCopier(IDeepCopier copie... method InvokableThrowArgumentOutOfRange (line 150) | public static object InvokableThrowArgumentOutOfRange(int index, int m... method ConsumeEndBaseOrEndObject (line 157) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ConsumeEndBaseOrEndObject (line 169) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ConsumeUnexpectedContent (line 176) | [MethodImpl(MethodImplOptions.NoInlining)] method SerializeUnexpectedType (line 194) | [MethodImpl(MethodImplOptions.NoInlining)] method DeserializeUnexpectedType (line 209) | [MethodImpl(MethodImplOptions.NoInlining)] method GetMethodInfoOrDefault (line 224) | [MethodImpl(MethodImplOptions.NoInlining)] class ExceptionCopier (line 293) | public abstract class ExceptionCopier : IDeepCopier, IBaseCop... method ExceptionCopier (line 299) | protected ExceptionCopier(ICodecProvider codecProvider) method DeepCopy (line 305) | public T DeepCopy(T original, CopyContext context) method DeepCopy (line 322) | public virtual void DeepCopy(T input, T output, CopyContext context)... FILE: src/Orleans.Serialization/Hosting/ISerializerBuilder.cs type ISerializerBuilder (line 8) | public interface ISerializerBuilder FILE: src/Orleans.Serialization/Hosting/ReferencedAssemblyProvider.cs class ReferencedAssemblyProvider (line 14) | public static class ReferencedAssemblyProvider method GetRelevantAssemblies (line 16) | public static IEnumerable GetRelevantAssemblies() method AddAssembly (line 34) | public static void AddAssembly(HashSet parts, Assembly assem... method AddFromAssemblyLoadContext (line 61) | public static void AddFromAssemblyLoadContext(HashSet parts,... method AddFromAssemblyLoadContext (line 74) | public static void AddFromAssemblyLoadContext(HashSet parts,... method AddFromDependencyContext (line 92) | public static void AddFromDependencyContext(HashSet parts, A... method GetApplicationPartAssemblies (line 165) | private static IEnumerable GetApplicationPartAssemblies(Asse... FILE: src/Orleans.Serialization/Hosting/SerializerBuilderExtensions.cs class SerializerBuilderExtensions (line 12) | public static class SerializerBuilderExtensions method Configure (line 22) | public static ISerializerBuilder Configure(this ISerializerBuilder bui... method Configure (line 34) | public static ISerializerBuilder Configure(this ISerializerBuilder bui... method Configure (line 46) | public static ISerializerBuilder Configure(this ISerializerBuilder bui... method AddAssembly (line 58) | public static ISerializerBuilder AddAssembly(this ISerializerBuilder b... FILE: src/Orleans.Serialization/Hosting/SerializerConfigurationAnalyzer.cs class SerializerConfigurationAnalyzer (line 14) | public static class SerializerConfigurationAnalyzer method AnalyzeSerializerAvailability (line 28) | public static Dictionary Analy... class SerializerConfigurationComplaint (line 100) | public class SerializerConfigurationComplaint FILE: src/Orleans.Serialization/Hosting/ServiceCollectionExtensions.cs class ServiceCollectionExtensions (line 25) | public static class ServiceCollectionExtensions method AddSerializer (line 33) | public static IServiceCollection AddSerializer(this IServiceCollection... method GetFromServices (line 94) | private static T GetFromServices(IServiceCollection services) class ConfigurationContext (line 107) | private sealed class ConfigurationContext method ConfigurationContext (line 109) | public ConfigurationContext(IServiceCollection services) => Builder ... method CreateServiceDescriptor (line 111) | public ServiceDescriptor CreateServiceDescriptor() => new ServiceDes... class SerializerBuilder (line 116) | private class SerializerBuilder : ISerializerBuilder method SerializerBuilder (line 118) | public SerializerBuilder(IServiceCollection services) => Services = ... class ActivatorHolder (line 123) | private sealed class ActivatorHolder : IActivator, IServiceHolde... method ActivatorHolder (line 128) | public ActivatorHolder(IActivatorProvider codecProvider) method Create (line 135) | public T Create() => Value.Create(); class FieldCodecHolder (line 138) | private sealed class FieldCodecHolder : IFieldCodec, I... method FieldCodecHolder (line 143) | public FieldCodecHolder(IFieldCodecProvider codecProvider) method WriteField (line 148) | public void WriteField(ref Writer writ... method ReadValue (line 150) | public TField ReadValue(ref Reader reader, Field fie... class BaseCodecHolder (line 155) | private sealed class BaseCodecHolder : IBaseCodec, ISe... method BaseCodecHolder (line 160) | public BaseCodecHolder(IBaseCodecProvider provider) method Serialize (line 165) | public void Serialize(ref Writer write... method Deserialize (line 167) | public void Deserialize(ref Reader reader, TField va... class ValueSerializerHolder (line 172) | private sealed class ValueSerializerHolder : IValueSerializer<... method ValueSerializerHolder (line 177) | public ValueSerializerHolder(IValueSerializerProvider provider) method Serialize (line 182) | public void Serialize(ref Writer write... method Deserialize (line 184) | public void Deserialize(ref Reader reader, scoped re... class CopierHolder (line 189) | private sealed class CopierHolder : IDeepCopier, IServiceHolder<... method CopierHolder (line 194) | public CopierHolder(IDeepCopierProvider codecProvider) method DeepCopy (line 199) | public T DeepCopy(T original, CopyContext context) => Value.DeepCopy... method DeepCopy (line 201) | public object DeepCopy(object original, CopyContext context) => Valu... method IsShallowCopyable (line 203) | public bool IsShallowCopyable() => (Value as IOptionalDeepCopier)?.I... class BaseCopierHolder (line 208) | private sealed class BaseCopierHolder : IBaseCopier, IServiceHol... method BaseCopierHolder (line 213) | public BaseCopierHolder(IDeepCopierProvider codecProvider) method DeepCopy (line 218) | public void DeepCopy(T original, T copy, CopyContext context) => Val... type IServiceHolder (line 228) | internal interface IServiceHolder FILE: src/Orleans.Serialization/ISerializableSerializer/DotNetSerializableCodec.cs class DotNetSerializableCodec (line 18) | [Alias("ISerializable")] method DotNetSerializableCodec (line 38) | public DotNetSerializableCodec(TypeConverter typeResolver) method WriteField (line 61) | [SecurityCritical] method ReadValue (line 85) | [SecurityCritical] method ReadFallbackException (line 121) | private object ReadFallbackException(ref Reader reader... method ReadObject (line 129) | private object ReadObject(ref Reader reader, Type type... method WriteObject (line 179) | private void WriteObject(ref Writer writ... method IsSupportedType (line 224) | [SecurityCritical] FILE: src/Orleans.Serialization/ISerializableSerializer/ExceptionCodec.cs class ExceptionCodec (line 23) | [RegisterSerializer] method ExceptionCodec (line 47) | public ExceptionCodec( method Deserialize (line 67) | public void Deserialize(ref Reader reader, Exception v... method GetObjectData (line 115) | public SerializationInfo GetObjectData(Exception value) method SetBaseProperties (line 135) | public void SetBaseProperties(Exception value, string message, string ... method GetDataProperty (line 179) | public Dictionary GetDataProperty(Exception exception) method Serialize (line 198) | public void Serialize(ref Writer writer,... method SerializeException (line 211) | public void SerializeException(ref Writer(ref Writer writer... method IsSupportedType (line 248) | public bool IsSupportedType(Type type) method WriteField (line 280) | public void WriteField(ref Writer writer... method ReadValue (line 295) | public Exception ReadValue(ref Reader reader, Field fi... method ReadValue (line 322) | object IFieldCodec.ReadValue(ref Reader reader, Field ... method DeserializeException (line 332) | public Exception DeserializeException(ref Reader reade... method DeepCopy (line 418) | public void DeepCopy(Exception input, Exception output, CopyContext co... method Serialize (line 432) | public void Serialize(ref Writer writer,... method Deserialize (line 435) | public void Deserialize(ref Reader reader, object valu... class AggregateExceptionCodec (line 441) | [RegisterSerializer] method AggregateExceptionCodec (line 451) | public AggregateExceptionCodec(ExceptionCodec baseCodec, IValueSeriali... method ConvertFromSurrogate (line 457) | public override AggregateException ConvertFromSurrogate(ref AggregateE... method ConvertToSurrogate (line 466) | public override void ConvertToSurrogate(AggregateException value, ref ... type AggregateExceptionSurrogate (line 485) | [GenerateSerializer] FILE: src/Orleans.Serialization/ISerializableSerializer/ExceptionSerializationOptions.cs class ExceptionSerializationOptions (line 9) | public class ExceptionSerializationOptions FILE: src/Orleans.Serialization/ISerializableSerializer/SerializationCallbacksFactory.cs class SerializationCallbacksFactory (line 13) | internal sealed class SerializationCallbacksFactory method GetReferenceTypeCallbacks (line 23) | [SecurityCritical] method GetValueTypeCallbacks (line 34) | [SecurityCritical] method GetValueTypeCallbacks (line 38) | private SerializationCallbacks GetValueTypeCallbacks method SerializationCallbacks (line 128) | public SerializationCallbacks( FILE: src/Orleans.Serialization/ISerializableSerializer/SerializationConstructorFactory.cs class SerializationConstructorFactory (line 13) | internal sealed class SerializationConstructorFactory method HasSerializationConstructor (line 24) | [SecurityCritical] method GetSerializationConstructorDelegate (line 27) | [SecurityCritical] method GetSerializationConstructorDelegate (line 31) | [SecurityCritical] method GetSerializationConstructorDelegate (line 35) | private object GetSerializationConstructorDelegate(Type owner, Type de... method GetSerializationConstructor (line 38) | [SecurityCritical] method GetSerializationConstructorInvoker (line 45) | [SecurityCritical] FILE: src/Orleans.Serialization/ISerializableSerializer/SerializationConstructorNotFoundException.cs class SerializationConstructorNotFoundException (line 10) | [Serializable] method SerializationConstructorNotFoundException (line 17) | [SecurityCritical] method SerializationConstructorNotFoundException (line 28) | [SecurityCritical] FILE: src/Orleans.Serialization/ISerializableSerializer/SerializationEntryCodec.cs class SerializationEntryCodec (line 10) | internal sealed class SerializationEntryCodec : IFieldCodec string.IsNullOrWhiteSpace(Excepti... method GetDebuggerDisplay (line 49) | private string GetDebuggerDisplay() => ToString(); FILE: src/Orleans.Serialization/ISerializableSerializer/ValueTypeSerializer.cs class ValueTypeSerializer (line 10) | internal abstract class ValueTypeSerializer method WriteValue (line 12) | public abstract void WriteValue(ref Writer(ref Reader reader, Ty... method ValueTypeSerializer (line 37) | [SecurityCritical] method WriteValue (line 54) | [SecurityCritical] method ReadValue (line 89) | [SecurityCritical] class ValueTypeSerializer (line 20) | internal class ValueTypeSerializer : ValueTypeSerializer where T : st... method WriteValue (line 12) | public abstract void WriteValue(ref Writer(ref Reader reader, Ty... method ValueTypeSerializer (line 37) | [SecurityCritical] method WriteValue (line 54) | [SecurityCritical] method ReadValue (line 89) | [SecurityCritical] FILE: src/Orleans.Serialization/ISerializableSerializer/ValueTypeSerializerFactory.cs class ValueTypeSerializerFactory (line 9) | internal class ValueTypeSerializerFactory method ValueTypeSerializerFactory (line 26) | [SecurityCritical] method GetSerializer (line 44) | [SecurityCritical] method CreateTypedSerializer (line 47) | [SecurityCritical] FILE: src/Orleans.Serialization/Invocation/IInvokable.cs type IInvokable (line 12) | public interface IInvokable : IDisposable method GetTarget (line 18) | object? GetTarget(); method SetTarget (line 24) | void SetTarget(ITargetHolder holder); method Invoke (line 29) | ValueTask Invoke(); method GetArgumentCount (line 34) | int GetArgumentCount(); method GetArgument (line 41) | object? GetArgument(int index); method SetArgument (line 48) | void SetArgument(int index, object value); method GetMethodName (line 53) | string GetMethodName(); method GetInterfaceName (line 58) | string GetInterfaceName(); method GetActivityName (line 63) | string GetActivityName(); method GetMethod (line 68) | MethodInfo GetMethod(); method GetInterfaceType (line 73) | Type GetInterfaceType(); method GetDefaultResponseTimeout (line 78) | TimeSpan? GetDefaultResponseTimeout() => default; method GetCancellationToken (line 84) | CancellationToken GetCancellationToken() => default; method TryCancel (line 91) | bool TryCancel() => false; FILE: src/Orleans.Serialization/Invocation/IResponseCompletionSource.cs type IResponseCompletionSource (line 6) | public interface IResponseCompletionSource method Complete (line 12) | void Complete(Response value); method Complete (line 17) | void Complete(); FILE: src/Orleans.Serialization/Invocation/ITargetHolder.cs type ITargetHolder (line 9) | public interface ITargetHolder method GetTarget (line 15) | object? GetTarget(); method GetComponent (line 22) | object? GetComponent(Type componentType); FILE: src/Orleans.Serialization/Invocation/Pools/ConcurrentObjectPool.cs class ConcurrentObjectPool (line 7) | internal sealed class ConcurrentObjectPool : ConcurrentObjectPool _policy = policy; method Get (line 24) | public override T Get() method Return (line 35) | public override void Return(T obj) class ConcurrentObjectPool (line 14) | internal class ConcurrentObjectPool : ObjectPool wher... method ConcurrentObjectPool (line 9) | public ConcurrentObjectPool() : base(new()) method ConcurrentObjectPool (line 20) | public ConcurrentObjectPool(TPoolPolicy policy) => _policy = policy; method Get (line 24) | public override T Get() method Return (line 35) | public override void Return(T obj) FILE: src/Orleans.Serialization/Invocation/Pools/DefaultConcurrentObjectPoolPolicy.cs type DefaultConcurrentObjectPoolPolicy (line 5) | internal readonly struct DefaultConcurrentObjectPoolPolicy : IPooledO... method Create (line 7) | public T Create() => new(); method Return (line 9) | public bool Return(T obj) => true; FILE: src/Orleans.Serialization/Invocation/Pools/InvokablePool.cs class InvokablePool (line 6) | public static class InvokablePool method Get (line 13) | public static T Get() where T : class, IInvokable, new() => TypedPo... method Return (line 20) | public static void Return(T obj) where T : class, IInvokable, new()... class TypedPool (line 22) | private static class TypedPool where T : class, IInvokable, new() FILE: src/Orleans.Serialization/Invocation/Pools/ResponseCompletionSourcePool.cs class ResponseCompletionSourcePool (line 6) | public static class ResponseCompletionSourcePool method Get (line 15) | public static ResponseCompletionSource Get() => TypedPool.Poo... method Return (line 22) | public static void Return(ResponseCompletionSource obj) => Typed... method Get (line 28) | public static ResponseCompletionSource Get() => UntypedPool.Get(); method Return (line 34) | public static void Return(ResponseCompletionSource obj) => UntypedPool... class TypedPool (line 36) | private static class TypedPool FILE: src/Orleans.Serialization/Invocation/Pools/ResponsePool.cs class ResponsePool (line 6) | public static class ResponsePool method Get (line 13) | public static Response Get() => TypedPool.Pool.Get(); method Return (line 20) | public static void Return(Response obj) => TypedPool.Pool.Ret... class TypedPool (line 22) | private static class TypedPool FILE: src/Orleans.Serialization/Invocation/Response.cs class Response (line 19) | [SerializerTransparent] method FromException (line 27) | public static Response FromException(Exception exception) => new Excep... method FromResult (line 35) | public static Response FromResult(TResult value) method GetSimpleResultType (line 50) | public virtual Type? GetSimpleResultType() => null; method GetResult (line 56) | public abstract T GetResult(); method Dispose (line 59) | public abstract void Dispose(); method ToString (line 62) | public override string ToString() => Exception is { } ex ? ex.ToString... method GetSimpleResultType (line 162) | public override Type GetSimpleResultType() => typeof(TResult); method GetResult (line 164) | public override T GetResult() method Dispose (line 172) | public override void Dispose() method ToString (line 178) | public override string ToString() => _result?.ToString() ?? "[null]"; class CompletedResponse (line 68) | [GenerateSerializer, Immutable, UseActivator, SuppressReferenceTracking] method GetResult (line 83) | public override T GetResult() => default!; method Dispose (line 86) | public override void Dispose() { } method ToString (line 89) | public override string ToString() => "[Completed]"; class CompletedResponseActivator (line 95) | [RegisterActivator] method Create (line 99) | public CompletedResponse Create() => CompletedResponse.Instance; class ExceptionResponse (line 105) | [GenerateSerializer, Immutable] method GetResult (line 125) | public override T GetResult() method Dispose (line 132) | public override void Dispose() { } method ToString (line 135) | public override string ToString() => Exception?.ToString() ?? "[null]"; class Response (line 142) | [UseActivator, SuppressReferenceTracking] method FromException (line 27) | public static Response FromException(Exception exception) => new Excep... method FromResult (line 35) | public static Response FromResult(TResult value) method GetSimpleResultType (line 50) | public virtual Type? GetSimpleResultType() => null; method GetResult (line 56) | public abstract T GetResult(); method Dispose (line 59) | public abstract void Dispose(); method ToString (line 62) | public override string ToString() => Exception is { } ex ? ex.ToString... method GetSimpleResultType (line 162) | public override Type GetSimpleResultType() => typeof(TResult); method GetResult (line 164) | public override T GetResult() method Dispose (line 172) | public override void Dispose() method ToString (line 178) | public override string ToString() => _result?.ToString() ?? "[null]"; class ResponseCodec (line 184) | public abstract class ResponseCodec method WriteRaw (line 186) | public abstract void WriteRaw(ref Writer... method ReadRaw (line 187) | public abstract object ReadRaw(ref Reader reader, scop... class PooledResponseCodec (line 190) | [RegisterSerializer] method PooledResponseCodec (line 197) | public PooledResponseCodec(ICodecProvider codecProvider) method WriteField (line 200) | public void WriteField(ref Writer writer... method ReadValue (line 215) | public Response ReadValue(ref Reader reader, ... method WriteRaw (line 233) | public override void WriteRaw(ref Writer... method ReadRaw (line 242) | public override object ReadRaw(ref Reader reader, scop... class PooledResponseCopier (line 257) | [RegisterCopier] method PooledResponseCopier (line 262) | public PooledResponseCopier(ICodecProvider codecProvider) method DeepCopy (line 265) | public Response DeepCopy(Response? input, CopyContex... class PooledResponseActivator (line 276) | [RegisterActivator] method Create (line 279) | public Response Create() => ResponsePool.Get(); class ResponseExtensions (line 282) | public static class ResponseExtensions method ThrowIfExceptionResponse (line 284) | public static void ThrowIfExceptionResponse(this Response response) FILE: src/Orleans.Serialization/Invocation/ResponseCompletionSource.cs class ResponseCompletionSource (line 11) | public sealed class ResponseCompletionSource : IResponseCompletionSource... method AsValueTask (line 19) | public ValueTask AsValueTask() => new(this, _core.Version); method AsVoidValueTask (line 25) | public ValueTask AsVoidValueTask() => new(this, _core.Version); method GetStatus (line 28) | public ValueTaskSourceStatus GetStatus(short token) => _core.GetStatus... method OnCompleted (line 31) | public void OnCompleted(Action continuation, object state, sho... method Reset (line 36) | public void Reset() method SetException (line 46) | public void SetException(Exception exception) => _core.SetException(ex... method SetResult (line 52) | public void SetResult(Response result) method Complete (line 68) | public void Complete(Response value) => SetResult(value); method Complete (line 73) | public void Complete() => SetResult(Response.Completed); method GetResult (line 76) | public Response GetResult(short token) method GetResult (line 93) | void IValueTaskSource.GetResult(short token) method AsValueTask (line 122) | public ValueTask AsValueTask() => new(this, _core.Version); method AsVoidValueTask (line 128) | public ValueTask AsVoidValueTask() => new(this, _core.Version); method GetStatus (line 131) | public ValueTaskSourceStatus GetStatus(short token) => _core.GetStatus... method OnCompleted (line 134) | public void OnCompleted(Action continuation, object state, sho... method Reset (line 139) | public void Reset() method SetException (line 149) | public void SetException(Exception exception) => _core.SetException(ex... method SetResult (line 155) | public void SetResult(TResult result) => _core.SetResult(result); method Complete (line 158) | public void Complete(Response value) method SetInvalidCastException (line 186) | [MethodImpl(MethodImplOptions.NoInlining)] method Complete (line 209) | public void Complete(Response value) method Complete (line 222) | public void Complete() => SetResult(default); method GetResult (line 225) | public TResult GetResult(short token) method GetResult (line 242) | void IValueTaskSource.GetResult(short token) class ResponseCompletionSource (line 114) | public sealed class ResponseCompletionSource : IResponseComplet... method AsValueTask (line 19) | public ValueTask AsValueTask() => new(this, _core.Version); method AsVoidValueTask (line 25) | public ValueTask AsVoidValueTask() => new(this, _core.Version); method GetStatus (line 28) | public ValueTaskSourceStatus GetStatus(short token) => _core.GetStatus... method OnCompleted (line 31) | public void OnCompleted(Action continuation, object state, sho... method Reset (line 36) | public void Reset() method SetException (line 46) | public void SetException(Exception exception) => _core.SetException(ex... method SetResult (line 52) | public void SetResult(Response result) method Complete (line 68) | public void Complete(Response value) => SetResult(value); method Complete (line 73) | public void Complete() => SetResult(Response.Completed); method GetResult (line 76) | public Response GetResult(short token) method GetResult (line 93) | void IValueTaskSource.GetResult(short token) method AsValueTask (line 122) | public ValueTask AsValueTask() => new(this, _core.Version); method AsVoidValueTask (line 128) | public ValueTask AsVoidValueTask() => new(this, _core.Version); method GetStatus (line 131) | public ValueTaskSourceStatus GetStatus(short token) => _core.GetStatus... method OnCompleted (line 134) | public void OnCompleted(Action continuation, object state, sho... method Reset (line 139) | public void Reset() method SetException (line 149) | public void SetException(Exception exception) => _core.SetException(ex... method SetResult (line 155) | public void SetResult(TResult result) => _core.SetResult(result); method Complete (line 158) | public void Complete(Response value) method SetInvalidCastException (line 186) | [MethodImpl(MethodImplOptions.NoInlining)] method Complete (line 209) | public void Complete(Response value) method Complete (line 222) | public void Complete() => SetResult(default); method GetResult (line 225) | public TResult GetResult(short token) method GetResult (line 242) | void IValueTaskSource.GetResult(short token) FILE: src/Orleans.Serialization/Invocation/TargetHolderExtensions.cs class TargetHolderExtensions (line 8) | public static class TargetHolderExtensions method GetComponent (line 16) | public static TComponent? GetComponent(this ITargetHolder ... FILE: src/Orleans.Serialization/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: src/Orleans.Serialization/Serializer.cs class Serializer (line 17) | public sealed class Serializer method Serializer (line 25) | public Serializer(SerializerSessionPool sessionPool) => _sessionPool =... method GetSerializer (line 36) | public Serializer GetSerializer() => new(_sessionPool); method CanSerialize (line 41) | public bool CanSerialize() => _sessionPool.CodecProvider.TryGetCode... method CanSerialize (line 46) | public bool CanSerialize(Type type) => _sessionPool.CodecProvider.TryG... method SerializeToArray (line 54) | public byte[] SerializeToArray(T value) method Serialize (line 78) | public void Serialize(T value, ref Memory destination) method Serialize (line 96) | public void Serialize(T value, ref Memory destination, Serial... method Serialize (line 113) | public void Serialize(T value, Stream destination, int sizeHint = 0) method Serialize (line 148) | public void Serialize(T value, Stream destination, SerializerSessio... method Serialize (line 180) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 199) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 216) | public void Serialize(T value, ref Writer(T value, ref Span destination) method Serialize (line 248) | public void Serialize(T value, ref Span destination, Serializ... method Serialize (line 264) | public int Serialize(T value, byte[] destination) method Serialize (line 281) | public int Serialize(T value, ArraySegment destination) method Serialize (line 296) | public int Serialize(T value, ArraySegment destination, Seria... method Serialize (line 311) | public int Serialize(T value, byte[] destination, SerializerSession... method Deserialize (line 326) | public T Deserialize(Stream source) method Deserialize (line 342) | public T Deserialize(Stream source, SerializerSession session) method Deserialize (line 356) | public T Deserialize(ReadOnlySequence source) method Deserialize (line 372) | public T Deserialize(ReadOnlySequence source, SerializerSessi... method Deserialize (line 386) | public T Deserialize(PooledBuffer.BufferSlice source) method Deserialize (line 402) | public T Deserialize(PooledBuffer.BufferSlice source, SerializerSes... method Deserialize (line 416) | public T Deserialize(ReadOnlySpan source) method Deserialize (line 432) | public T Deserialize(ReadOnlySpan source, SerializerSession s... method Deserialize (line 446) | public T Deserialize(byte[] source) => Deserialize(source.AsSpan... method Deserialize (line 455) | public T Deserialize(byte[] source, SerializerSession session) => D... method Deserialize (line 463) | public T Deserialize(ReadOnlyMemory source) => Deserialize... method Deserialize (line 472) | public T Deserialize(ReadOnlyMemory source, SerializerSession... method Deserialize (line 479) | public T Deserialize(ArraySegment source) => Deserialize(s... method Deserialize (line 487) | public T Deserialize(ArraySegment source, SerializerSession s... method Deserialize (line 496) | public T Deserialize(ref Reader source) method Serializer (line 518) | public Serializer(SerializerSessionPool sessionPool) : this(OrleansGen... method Serializer (line 527) | public Serializer(IFieldCodec codec, SerializerSessionPool sessionP... method Serialize (line 539) | public void Serialize(T value, ref Writer(T value, TBufferWriter destinatio... method Serialize (line 568) | public void Serialize(T value, TBufferWriter destinatio... method SerializeToArray (line 582) | public byte[] SerializeToArray(T value) method Serialize (line 604) | public void Serialize(T value, ref Memory destination) method Serialize (line 620) | public void Serialize(T value, ref Memory destination, Serialize... method Serialize (line 634) | public void Serialize(T value, ref Span destination) method Serialize (line 650) | public void Serialize(T value, ref Span destination, SerializerS... method Serialize (line 664) | public int Serialize(T value, byte[] destination) method Serialize (line 680) | public int Serialize(T value, byte[] destination, SerializerSession se... method Serialize (line 695) | public void Serialize(T value, Stream destination, int sizeHint = 0) method Serialize (line 727) | public void Serialize(T value, Stream destination, SerializerSession s... method Deserialize (line 756) | public T Deserialize(ref Reader source) method Deserialize (line 767) | public T Deserialize(Stream source) method Deserialize (line 781) | public T Deserialize(Stream source, SerializerSession session) method Deserialize (line 793) | public T Deserialize(ReadOnlySequence source) method Deserialize (line 806) | public T Deserialize(ArraySegment source) => Deserialize(source.... method Deserialize (line 814) | public T Deserialize(ReadOnlySequence source, SerializerSession ... method Deserialize (line 826) | public T Deserialize(PooledBuffer.BufferSlice source) method Deserialize (line 840) | public T Deserialize(PooledBuffer.BufferSlice source, SerializerSessio... method Deserialize (line 852) | public T Deserialize(ReadOnlySpan source) method Deserialize (line 866) | public T Deserialize(ReadOnlySpan source, SerializerSession sess... method Deserialize (line 878) | public T Deserialize(byte[] source) => Deserialize(source.AsSpan()); method Deserialize (line 886) | public T Deserialize(byte[] source, SerializerSession session) => Dese... method Deserialize (line 893) | public T Deserialize(ReadOnlyMemory source) => Deserialize(sourc... method Deserialize (line 901) | public T Deserialize(ReadOnlyMemory source, SerializerSession se... method Deserialize (line 909) | public T Deserialize(ArraySegment source, SerializerSession sess... class Serializer (line 508) | public sealed class Serializer method Serializer (line 25) | public Serializer(SerializerSessionPool sessionPool) => _sessionPool =... method GetSerializer (line 36) | public Serializer GetSerializer() => new(_sessionPool); method CanSerialize (line 41) | public bool CanSerialize() => _sessionPool.CodecProvider.TryGetCode... method CanSerialize (line 46) | public bool CanSerialize(Type type) => _sessionPool.CodecProvider.TryG... method SerializeToArray (line 54) | public byte[] SerializeToArray(T value) method Serialize (line 78) | public void Serialize(T value, ref Memory destination) method Serialize (line 96) | public void Serialize(T value, ref Memory destination, Serial... method Serialize (line 113) | public void Serialize(T value, Stream destination, int sizeHint = 0) method Serialize (line 148) | public void Serialize(T value, Stream destination, SerializerSessio... method Serialize (line 180) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 199) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 216) | public void Serialize(T value, ref Writer(T value, ref Span destination) method Serialize (line 248) | public void Serialize(T value, ref Span destination, Serializ... method Serialize (line 264) | public int Serialize(T value, byte[] destination) method Serialize (line 281) | public int Serialize(T value, ArraySegment destination) method Serialize (line 296) | public int Serialize(T value, ArraySegment destination, Seria... method Serialize (line 311) | public int Serialize(T value, byte[] destination, SerializerSession... method Deserialize (line 326) | public T Deserialize(Stream source) method Deserialize (line 342) | public T Deserialize(Stream source, SerializerSession session) method Deserialize (line 356) | public T Deserialize(ReadOnlySequence source) method Deserialize (line 372) | public T Deserialize(ReadOnlySequence source, SerializerSessi... method Deserialize (line 386) | public T Deserialize(PooledBuffer.BufferSlice source) method Deserialize (line 402) | public T Deserialize(PooledBuffer.BufferSlice source, SerializerSes... method Deserialize (line 416) | public T Deserialize(ReadOnlySpan source) method Deserialize (line 432) | public T Deserialize(ReadOnlySpan source, SerializerSession s... method Deserialize (line 446) | public T Deserialize(byte[] source) => Deserialize(source.AsSpan... method Deserialize (line 455) | public T Deserialize(byte[] source, SerializerSession session) => D... method Deserialize (line 463) | public T Deserialize(ReadOnlyMemory source) => Deserialize... method Deserialize (line 472) | public T Deserialize(ReadOnlyMemory source, SerializerSession... method Deserialize (line 479) | public T Deserialize(ArraySegment source) => Deserialize(s... method Deserialize (line 487) | public T Deserialize(ArraySegment source, SerializerSession s... method Deserialize (line 496) | public T Deserialize(ref Reader source) method Serializer (line 518) | public Serializer(SerializerSessionPool sessionPool) : this(OrleansGen... method Serializer (line 527) | public Serializer(IFieldCodec codec, SerializerSessionPool sessionP... method Serialize (line 539) | public void Serialize(T value, ref Writer(T value, TBufferWriter destinatio... method Serialize (line 568) | public void Serialize(T value, TBufferWriter destinatio... method SerializeToArray (line 582) | public byte[] SerializeToArray(T value) method Serialize (line 604) | public void Serialize(T value, ref Memory destination) method Serialize (line 620) | public void Serialize(T value, ref Memory destination, Serialize... method Serialize (line 634) | public void Serialize(T value, ref Span destination) method Serialize (line 650) | public void Serialize(T value, ref Span destination, SerializerS... method Serialize (line 664) | public int Serialize(T value, byte[] destination) method Serialize (line 680) | public int Serialize(T value, byte[] destination, SerializerSession se... method Serialize (line 695) | public void Serialize(T value, Stream destination, int sizeHint = 0) method Serialize (line 727) | public void Serialize(T value, Stream destination, SerializerSession s... method Deserialize (line 756) | public T Deserialize(ref Reader source) method Deserialize (line 767) | public T Deserialize(Stream source) method Deserialize (line 781) | public T Deserialize(Stream source, SerializerSession session) method Deserialize (line 793) | public T Deserialize(ReadOnlySequence source) method Deserialize (line 806) | public T Deserialize(ArraySegment source) => Deserialize(source.... method Deserialize (line 814) | public T Deserialize(ReadOnlySequence source, SerializerSession ... method Deserialize (line 826) | public T Deserialize(PooledBuffer.BufferSlice source) method Deserialize (line 840) | public T Deserialize(PooledBuffer.BufferSlice source, SerializerSessio... method Deserialize (line 852) | public T Deserialize(ReadOnlySpan source) method Deserialize (line 866) | public T Deserialize(ReadOnlySpan source, SerializerSession sess... method Deserialize (line 878) | public T Deserialize(byte[] source) => Deserialize(source.AsSpan()); method Deserialize (line 886) | public T Deserialize(byte[] source, SerializerSession session) => Dese... method Deserialize (line 893) | public T Deserialize(ReadOnlyMemory source) => Deserialize(sourc... method Deserialize (line 901) | public T Deserialize(ReadOnlyMemory source, SerializerSession se... method Deserialize (line 909) | public T Deserialize(ArraySegment source, SerializerSession sess... class ValueSerializer (line 916) | public sealed class ValueSerializer where T : struct method ValueSerializer (line 926) | public ValueSerializer(IValueSerializerProvider codecProvider, Seriali... method Serialize (line 938) | public void Serialize(scoped ref T value, ref Writer(scoped ref T value, TBufferWriter... method Serialize (line 969) | public void Serialize(scoped ref T value, TBufferWriter... method SerializeToArray (line 984) | public byte[] SerializeToArray(scoped ref T value) method Serialize (line 1007) | public void Serialize(scoped ref T value, ArraySegment destination) method Serialize (line 1019) | public void Serialize(scoped ref T value, ref Memory destination) method Serialize (line 1036) | public void Serialize(scoped ref T value, ref Memory destination... method Serialize (line 1051) | public void Serialize(scoped ref T value, ref Span destination) method Serialize (line 1068) | public void Serialize(scoped ref T value, ref Span destination, ... method Serialize (line 1083) | public int Serialize(scoped ref T value, byte[] destination) method Serialize (line 1100) | public int Serialize(scoped ref T value, byte[] destination, Serialize... method Serialize (line 1116) | public void Serialize(scoped ref T value, Stream destination, int size... method Serialize (line 1150) | public void Serialize(scoped ref T value, Stream destination, Serializ... method Deserialize (line 1182) | public void Deserialize(ref Reader source, scoped ref ... method Deserialize (line 1193) | public void Deserialize(Stream source, scoped ref T result) method Deserialize (line 1207) | public void Deserialize(Stream source, scoped ref T result, Serializer... method Deserialize (line 1219) | public void Deserialize(ReadOnlySequence source, scoped ref T re... method Deserialize (line 1233) | public void Deserialize(ReadOnlySequence source, scoped ref T re... method Deserialize (line 1246) | public void Deserialize(ArraySegment source, scoped ref T result... method Deserialize (line 1254) | public void Deserialize(ReadOnlySpan source, scoped ref T result) method Deserialize (line 1268) | public void Deserialize(ReadOnlySpan source, scoped ref T result... method Deserialize (line 1280) | public void Deserialize(byte[] source, scoped ref T result) => Deseria... method Deserialize (line 1289) | public void Deserialize(byte[] source, scoped ref T result, Serializer... method Deserialize (line 1297) | public void Deserialize(ReadOnlyMemory source, scoped ref T resu... method Deserialize (line 1306) | public void Deserialize(ReadOnlyMemory source, scoped ref T resu... method Deserialize (line 1314) | public void Deserialize(ArraySegment source, scoped ref T result... class ObjectSerializer (line 1320) | public sealed class ObjectSerializer method ObjectSerializer (line 1328) | public ObjectSerializer(SerializerSessionPool sessionPool) => _session... method CanSerialize (line 1333) | public bool CanSerialize(Type type) => _sessionPool.CodecProvider.TryG... method Serialize (line 1342) | public void Serialize(object value, ref Memory destination, Type... method Serialize (line 1359) | public void Serialize(object value, ref Memory destination, Seri... method Serialize (line 1375) | public void Serialize(object value, Stream destination, Type type, int... method Serialize (line 1408) | public void Serialize(object value, Stream destination, SerializerSess... method Serialize (line 1438) | public void Serialize(object value, TBufferWriter desti... method Serialize (line 1456) | public void Serialize(object value, TBufferWriter desti... method Serialize (line 1472) | public void Serialize(object value, ref Writer destination, Type t... method Serialize (line 1502) | public void Serialize(object value, ref Span destination, Serial... method Serialize (line 1517) | public int Serialize(object value, byte[] destination, Type type) method Serialize (line 1533) | public int Serialize(object value, ArraySegment destination, Typ... method Serialize (line 1548) | public int Serialize(object value, ArraySegment destination, Ser... method Serialize (line 1563) | public int Serialize(object value, byte[] destination, SerializerSessi... method Deserialize (line 1577) | public object Deserialize(Stream source, Type type) method Deserialize (line 1593) | public object Deserialize(Stream source, SerializerSession session, Ty... method Deserialize (line 1607) | public object Deserialize(ReadOnlySequence source, Type type) method Deserialize (line 1623) | public object Deserialize(ReadOnlySequence source, SerializerSes... method Deserialize (line 1637) | public object Deserialize(ReadOnlySpan source, Type type) method Deserialize (line 1653) | public object Deserialize(ReadOnlySpan source, SerializerSession... method Deserialize (line 1667) | public object Deserialize(byte[] source, Type type) => Deserialize(sou... method Deserialize (line 1676) | public object Deserialize(byte[] source, SerializerSession session, Ty... method Deserialize (line 1684) | public object Deserialize(ReadOnlyMemory source, Type type) => D... method Deserialize (line 1693) | public object Deserialize(ReadOnlyMemory source, SerializerSessi... method Deserialize (line 1701) | public object Deserialize(ArraySegment source, Type type) => Des... method Deserialize (line 1710) | public object Deserialize(ArraySegment source, SerializerSession... method Deserialize (line 1719) | public object Deserialize(ref Reader source, Type type) class DeepCopier (line 1730) | public sealed class DeepCopier method DeepCopier (line 1740) | public DeepCopier(CodecProvider codecProvider, CopyContextPool context... method GetCopier (line 1750) | public DeepCopier GetCopier() => new(_codecProvider.GetDeepCopie... method Copy (line 1758) | public T Copy(T value) method DeepCopier (line 1778) | public DeepCopier(IDeepCopier copier, CopyContextPool contextPool) method Copy (line 1789) | public T Copy(T value) class DeepCopier (line 1768) | public sealed class DeepCopier method DeepCopier (line 1740) | public DeepCopier(CodecProvider codecProvider, CopyContextPool context... method GetCopier (line 1750) | public DeepCopier GetCopier() => new(_codecProvider.GetDeepCopie... method Copy (line 1758) | public T Copy(T value) method DeepCopier (line 1778) | public DeepCopier(IDeepCopier copier, CopyContextPool contextPool) method Copy (line 1789) | public T Copy(T value) FILE: src/Orleans.Serialization/Serializers/AbstractTypeSerializer.cs class AbstractTypeSerializer (line 13) | public class AbstractTypeSerializer : AbstractTypeSerializer, IF... method AbstractTypeSerializer (line 15) | protected AbstractTypeSerializer() : base(typeof(TField)) { } method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 20) | public new TField ReadValue(ref Reader reader, Field f... method Serialize (line 22) | public virtual void Serialize(ref Writer... method Deserialize (line 24) | public virtual void Deserialize(ref Reader... method AbstractTypeSerializer (line 42) | protected internal AbstractTypeSerializer(Type fieldType) => _fieldTyp... method WriteField (line 44) | public void WriteField(ref Writer writer... method ReadValue (line 56) | public object ReadValue(ref Reader reader, Field field) method ThrowMissingFieldType (line 69) | private void ThrowMissingFieldType() => throw new FieldTypeMissingExce... class AbstractTypeSerializerWrapper (line 28) | internal sealed class AbstractTypeSerializerWrapper : AbstractTy... method AbstractTypeSerializerWrapper (line 30) | public AbstractTypeSerializerWrapper() : base(typeof(TField)) { } method WriteField (line 32) | public void WriteField(ref Writer writer... method ReadValue (line 35) | public new TField ReadValue(ref Reader reader, Field f... class AbstractTypeSerializer (line 38) | public class AbstractTypeSerializer : IFieldCodec method AbstractTypeSerializer (line 15) | protected AbstractTypeSerializer() : base(typeof(TField)) { } method WriteField (line 17) | public void WriteField(ref Writer writer... method ReadValue (line 20) | public new TField ReadValue(ref Reader reader, Field f... method Serialize (line 22) | public virtual void Serialize(ref Writer... method Deserialize (line 24) | public virtual void Deserialize(ref Reader... method AbstractTypeSerializer (line 42) | protected internal AbstractTypeSerializer(Type fieldType) => _fieldTyp... method WriteField (line 44) | public void WriteField(ref Writer writer... method ReadValue (line 56) | public object ReadValue(ref Reader reader, Field field) method ThrowMissingFieldType (line 69) | private void ThrowMissingFieldType() => throw new FieldTypeMissingExce... FILE: src/Orleans.Serialization/Serializers/CodecProvider.cs class CodecProvider (line 19) | public sealed class CodecProvider : ICodecProvider method CodecProvider (line 63) | public CodecProvider(IServiceProvider serviceProvider, IOptions codecConfig... method TryGetCodec (line 143) | public IFieldCodec TryGetCodec() method GetCodec (line 163) | public IFieldCodec GetCodec(Type fieldType) method TryGetCodec (line 171) | public IFieldCodec TryGetCodec(Type fieldType) method TryCreateCodec (line 179) | private IFieldCodec TryCreateCodec(Type fieldType) method GetCodec (line 204) | public IFieldCodec GetCodec() method GetActivator (line 212) | public IActivator GetActivator() method TryCreateBaseCodec (line 222) | private IBaseCodec TryCreateBaseCodec(Type fieldType) ... method GetBaseCodec (line 267) | public IBaseCodec GetBaseCodec() where TField : class method GetValueSerializer (line 279) | public IValueSerializer GetValueSerializer() where TFi... method GetBaseCopier (line 290) | public IBaseCopier GetBaseCopier() where TField : class method GetDeepCopier (line 301) | public IDeepCopier GetDeepCopier() method TryGetDeepCopier (line 309) | public IDeepCopier TryGetDeepCopier() method GetDeepCopier (line 329) | public IDeepCopier GetDeepCopier(Type fieldType) method TryGetDeepCopier (line 337) | public IDeepCopier TryGetDeepCopier(Type fieldType) method TryCreateCopier (line 346) | private IDeepCopier TryCreateCopier(Type fieldType) method GetValueSerializerInner (line 370) | private object GetValueSerializerInner(Type concreteType, Type searchT... method GetBaseCopierInner (line 401) | private object GetBaseCopierInner(Type concreteType, Type searchType) method GetActivatorInner (line 433) | private object GetActivatorInner(Type concreteType, Type searchType) method ThrowIfUnsupportedType (line 463) | private static void ThrowIfUnsupportedType(Type fieldType) method GetServiceOrCreateInstance (line 481) | private object GetServiceOrCreateInstance(Type type, object[] construc... method CreateCodecInstance (line 499) | private IFieldCodec CreateCodecInstance(Type fieldType, Type searchType) method TryGetSurrogateCodec (line 565) | private bool TryGetSurrogateCodec(Type fieldType, Type searchType, out... method CreateBaseCodecInstance (line 608) | private IBaseCodec CreateBaseCodecInstance(Type fieldType, Type search... method CreateCopierInstance (line 626) | private IDeepCopier CreateCopierInstance(Type fieldType, Type searchType) method ThrowPointerType (line 671) | private static void ThrowPointerType(Type fieldType) => throw new NotS... method ThrowByRefType (line 673) | private static void ThrowByRefType(Type fieldType) => throw new NotSup... method ThrowGenericTypeDefinition (line 675) | private static void ThrowGenericTypeDefinition(Type fieldType) => thro... method ThrowCodecNotFound (line 677) | private static void ThrowCodecNotFound(Type fieldType) => throw new Co... method ThrowCopierNotFound (line 679) | private static void ThrowCopierNotFound(Type type) => throw new CodecN... method ThrowBaseCodecNotFound (line 681) | private static void ThrowBaseCodecNotFound(Type fieldType) => throw ne... method ThrowValueSerializerNotFound (line 683) | private static void ThrowValueSerializerNotFound(Type fieldType) => th... method ThrowActivatorNotFound (line 685) | private static void ThrowActivatorNotFound(Type type) => throw new Key... method ThrowBaseCopierNotFound (line 687) | private static void ThrowBaseCopierNotFound(Type type) => throw new Ke... FILE: src/Orleans.Serialization/Serializers/ConcreteTypeSerializer.cs class ConcreteTypeSerializer (line 16) | public sealed class ConcreteTypeSerializer : IFieldC... method ConcreteTypeSerializer (line 27) | public ConcreteTypeSerializer(IActivator activator, TBaseCodec... method WriteField (line 34) | public void WriteField(ref Writer writer... method ReadValue (line 54) | public TField ReadValue(ref Reader reader, Field field) method ReadValueSealed (line 73) | public TField ReadValueSealed(ref Reader reader, Field... FILE: src/Orleans.Serialization/Serializers/IActivatorProvider.cs type IActivatorProvider (line 8) | public interface IActivatorProvider method GetActivator (line 15) | IActivator GetActivator(); FILE: src/Orleans.Serialization/Serializers/IBaseCodec.cs type IBaseCodec (line 11) | public interface IBaseCodec : IBaseCodec where T : class method Serialize (line 19) | void Serialize(ref Writer writer, T valu... method Deserialize (line 27) | void Deserialize(ref Reader reader, T value); type IBaseCodec (line 33) | public interface IBaseCodec method Serialize (line 19) | void Serialize(ref Writer writer, T valu... method Deserialize (line 27) | void Deserialize(ref Reader reader, T value); type IGeneralizedBaseCodec (line 40) | public interface IGeneralizedBaseCodec : IBaseCodec method IsSupportedType (line 47) | bool IsSupportedType(Type type); type ISpecializableBaseCodec (line 53) | public interface ISpecializableBaseCodec method IsSupportedType (line 60) | bool IsSupportedType(Type type); method GetSpecializedCodec (line 67) | IBaseCodec GetSpecializedCodec(Type type); FILE: src/Orleans.Serialization/Serializers/IBaseCodecProvider.cs type IBaseCodecProvider (line 6) | public interface IBaseCodecProvider method GetBaseCodec (line 13) | IBaseCodec GetBaseCodec() where TField : class; FILE: src/Orleans.Serialization/Serializers/ICodecProvider.cs type ICodecProvider (line 9) | public interface ICodecProvider : FILE: src/Orleans.Serialization/Serializers/ICodecSelector.cs type ICodecSelector (line 8) | public interface ICodecSelector method IsSupportedType (line 18) | public bool IsSupportedType(Type type); type ICopierSelector (line 24) | public interface ICopierSelector method IsSupportedType (line 34) | public bool IsSupportedType(Type type); class DelegateCodecSelector (line 40) | public sealed class DelegateCodecSelector : ICodecSelector method IsSupportedType (line 46) | public bool IsSupportedType(Type type) => IsSupportedTypeDelegate(type); class DelegateCopierSelector (line 52) | public sealed class DelegateCopierSelector : ICopierSelector method IsSupportedType (line 58) | public bool IsSupportedType(Type type) => IsSupportedTypeDelegate(type); FILE: src/Orleans.Serialization/Serializers/IFieldCodecProvider.cs type IFieldCodecProvider (line 10) | public interface IFieldCodecProvider method GetCodec (line 17) | IFieldCodec GetCodec(); method TryGetCodec (line 24) | IFieldCodec TryGetCodec(); method GetCodec (line 33) | IFieldCodec GetCodec(Type fieldType); method TryGetCodec (line 42) | IFieldCodec TryGetCodec(Type fieldType); FILE: src/Orleans.Serialization/Serializers/IGeneralizedCodec.cs type IGeneralizedCodec (line 9) | public interface IGeneralizedCodec : IFieldCodec method IsSupportedType (line 16) | bool IsSupportedType(Type type); type ISpecializableCodec (line 22) | public interface ISpecializableCodec method IsSupportedType (line 29) | bool IsSupportedType(Type type); method GetSpecializedCodec (line 36) | IFieldCodec GetSpecializedCodec(Type type); FILE: src/Orleans.Serialization/Serializers/IValueSerializer.cs type IValueSerializer (line 10) | public interface IValueSerializer : IValueSerializer where T : struct method Serialize (line 18) | void Serialize(ref Writer writer, scoped... method Deserialize (line 26) | void Deserialize(ref Reader reader, scoped ref T value); type IValueSerializer (line 32) | public interface IValueSerializer method Serialize (line 18) | void Serialize(ref Writer writer, scoped... method Deserialize (line 26) | void Deserialize(ref Reader reader, scoped ref T value); FILE: src/Orleans.Serialization/Serializers/IValueSerializerProvider.cs type IValueSerializerProvider (line 6) | public interface IValueSerializerProvider method GetValueSerializer (line 13) | IValueSerializer GetValueSerializer() where TField : s... FILE: src/Orleans.Serialization/Serializers/SurrogateCodec.cs class SurrogateCodec (line 19) | public sealed class SurrogateCodec method SurrogateCodec (line 37) | public SurrogateCodec( method DeepCopy (line 49) | public TField DeepCopy(TField input, CopyContext context) method ReadValue (line 65) | public TField ReadValue(ref Reader reader, Field field) method WriteField (line 98) | public void WriteField(ref Writer writer... method Serialize (line 121) | public void Serialize(ref Writer writer,... method Deserialize (line 130) | public void Deserialize(ref Reader reader, TField value) method DeepCopy (line 140) | public void DeepCopy(TField input, TField output, CopyContext context) method ThrowNoPopulatorException (line 149) | [DoesNotReturn] FILE: src/Orleans.Serialization/Serializers/ValueSerializer.cs class ValueSerializer (line 14) | public sealed class ValueSerializer : IFieldCo... method ValueSerializer (line 23) | public ValueSerializer(TValueSerializer serializer) method WriteField (line 29) | public void WriteField(ref Writer writer... method ReadValue (line 38) | public TField ReadValue(ref Reader reader, Field field) FILE: src/Orleans.Serialization/Serializers/ValueTypeSurrogateCodec.cs class ValueTypeSurrogateCodec (line 17) | public sealed class ValueTypeSurrogateCodec method ValueTypeSurrogateCodec (line 33) | public ValueTypeSurrogateCodec( method DeepCopy (line 44) | public TField DeepCopy(TField input, CopyContext context) method Deserialize (line 54) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 63) | public TField ReadValue(ref Reader reader, Field field) method Serialize (line 73) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method WriteField (line 81) | public void WriteField(ref Writer writer... FILE: src/Orleans.Serialization/Session/ReferencedObjectCollection.cs class ReferencedObjectCollection (line 18) | public sealed class ReferencedObjectCollection type ReferencePair (line 20) | private struct ReferencePair method ReferencePair (line 22) | public ReferencePair(uint id, object @object) method TryGetReferencedObject (line 51) | public object TryGetReferencedObject(uint reference) method MarkValueField (line 69) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreateRecordPlaceholder (line 72) | internal uint CreateRecordPlaceholder() => ++_currentReferenceId; method GetOrAddReference (line 80) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method GetReferenceIndex (line 154) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CreateObjectToReferenceOverflow (line 174) | [MethodImpl(MethodImplOptions.NoInlining)] method AddToReferences (line 192) | private void AddToReferences(object value, uint reference) method ThrowReferenceExistsException (line 257) | [DoesNotReturn] method RecordReferenceField (line 264) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method RecordReferenceField (line 272) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method CopyReferenceTable (line 287) | public Dictionary CopyReferenceTable() => _referenceToOb... method CopyIdTable (line 293) | public Dictionary CopyIdTable() => _objectToReference.Ta... method Reset (line 304) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/Session/ReferencedTypeCollection.cs class ReferencedTypeCollection (line 11) | public sealed class ReferencedTypeCollection method GetReferencedType (line 23) | public Type GetReferencedType(uint reference) method ThrowUnknownReferencedType (line 30) | private static void ThrowUnknownReferencedType(uint id) => throw new U... method TryGetReferencedType (line 38) | public bool TryGetReferencedType(uint reference, out Type type) => _re... method RecordReferencedType (line 43) | public void RecordReferencedType(Type type) => _referencedTypes.Add(++... method TryGetTypeReference (line 51) | public bool TryGetTypeReference(Type type, out uint reference) => _ref... method GetOrAddTypeReference (line 56) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Reset (line 81) | public void Reset() FILE: src/Orleans.Serialization/Session/SerializerSession.cs class SerializerSession (line 10) | public sealed class SerializerSession : IDisposable method SerializerSession (line 18) | public SerializerSession(TypeCodec typeCodec, WellKnownTypeCollection ... method PartialReset (line 60) | public void PartialReset() => ReferencedObjects.Reset(); method Reset (line 65) | public void Reset() method Dispose (line 71) | public void Dispose() => OnDisposed?.Invoke(this); FILE: src/Orleans.Serialization/Session/SerializerSessionPool.cs class SerializerSessionPool (line 12) | public sealed class SerializerSessionPool method SerializerSessionPool (line 22) | public SerializerSessionPool(TypeCodec typeCodec, WellKnownTypeCollect... method GetSession (line 38) | public SerializerSession GetSession() => _sessionPool.Get(); method ReturnSession (line 44) | private void ReturnSession(SerializerSession session) => _sessionPool.... type SerializerSessionPoolPolicy (line 46) | private readonly struct SerializerSessionPoolPolicy : IPooledObjectPol... method SerializerSessionPoolPolicy (line 53) | public SerializerSessionPoolPolicy(TypeCodec typeCodec, WellKnownTyp... method Create (line 61) | public SerializerSession Create() method Return (line 69) | public bool Return(SerializerSession obj) FILE: src/Orleans.Serialization/Session/WellKnownTypeCollection.cs class WellKnownTypeCollection (line 12) | public sealed class WellKnownTypeCollection method WellKnownTypeCollection (line 21) | public WellKnownTypeCollection(IOptions config) method GetWellKnownType (line 36) | public Type GetWellKnownType(uint typeId) method TryGetWellKnownType (line 52) | public bool TryGetWellKnownType(uint typeId, [NotNullWhen(true)] out T... method TryGetWellKnownTypeId (line 69) | public bool TryGetWellKnownTypeId(Type type, out uint typeId) => _well... FILE: src/Orleans.Serialization/TypeSystem/CachedTypeResolver.cs class CachedTypeResolver (line 10) | public sealed class CachedTypeResolver : TypeResolver method GetName (line 19) | public static string GetName(Assembly assembly) => _assemblyNameCache.... method ResolveType (line 22) | public override Type ResolveType(string name) method TryResolveType (line 33) | public override bool TryResolveType(string name, out Type type) method TryPerformUncachedTypeResolution (line 54) | private bool TryPerformUncachedTypeResolution(string name, out Type type) method TryGetCachedType (line 70) | private bool TryGetCachedType(string name, out Type result) method AddTypeToCache (line 80) | private void AddTypeToCache(string name, Type type) method TryPerformUncachedTypeResolution (line 89) | private bool TryPerformUncachedTypeResolution(string fullName, out Typ... FILE: src/Orleans.Serialization/TypeSystem/CompoundTypeAliasTree.cs class CompoundTypeAliasTree (line 11) | public class CompoundTypeAliasTree method CompoundTypeAliasTree (line 18) | private CompoundTypeAliasTree(object? key, Type? value) method Create (line 37) | public static CompoundTypeAliasTree Create() => new(default, default); method GetChildOrDefault (line 39) | internal CompoundTypeAliasTree? GetChildOrDefault(object key) method TryGetChild (line 45) | internal bool TryGetChild(object key, out CompoundTypeAliasTree? result) method Add (line 60) | public CompoundTypeAliasTree Add(Type key) => AddInternal(key); method Add (line 66) | public CompoundTypeAliasTree Add(string key) => AddInternal(key); method Add (line 73) | public CompoundTypeAliasTree Add(string key, Type value) => AddInterna... method Add (line 80) | public CompoundTypeAliasTree Add(Type key, Type value) => AddInternal(... method AddInternal (line 82) | private CompoundTypeAliasTree AddInternal(object key) => AddInternal(k... method AddInternal (line 83) | private CompoundTypeAliasTree AddInternal(object key, Type? value) FILE: src/Orleans.Serialization/TypeSystem/DefaultTypeFilter.cs class DefaultTypeFilter (line 8) | public sealed class DefaultTypeFilter : ITypeNameFilter method IsTypeNameAllowed (line 11) | public bool? IsTypeNameAllowed(string typeName, string assemblyName) FILE: src/Orleans.Serialization/TypeSystem/ITypeConverter.cs type ITypeConverter (line 8) | public interface ITypeConverter method TryFormat (line 13) | bool TryFormat(Type type, out string formatted); method TryParse (line 18) | bool TryParse(string formatted, out Type type); type ITypeNameFilter (line 24) | public interface ITypeNameFilter method IsTypeNameAllowed (line 32) | bool? IsTypeNameAllowed(string typeName, string assemblyName); type ITypeFilter (line 38) | public interface ITypeFilter method IsTypeAllowed (line 45) | bool? IsTypeAllowed(Type type); FILE: src/Orleans.Serialization/TypeSystem/ITypeResolver.cs class TypeResolver (line 8) | public abstract class TypeResolver method ResolveType (line 15) | public abstract Type ResolveType(string name); method TryResolveType (line 23) | public abstract bool TryResolveType(string name, out Type type); FILE: src/Orleans.Serialization/TypeSystem/QualifiedType.cs type QualifiedType (line 11) | public readonly struct QualifiedType method QualifiedType (line 24) | public QualifiedType(string? assembly, string type) method Deconstruct (line 47) | public void Deconstruct(out string? assembly, out string type) method Equals (line 54) | public override bool Equals(object? obj) => obj is QualifiedType type ... method GetHashCode (line 57) | public override int GetHashCode() => HashCode.Combine(Assembly, Type); class QualifiedTypeEqualityComparer (line 91) | public sealed class QualifiedTypeEqualityComparer : IEqualityComparer<... method Equals (line 94) | public bool Equals(QualifiedType x, QualifiedType y) => x == y; method GetHashCode (line 97) | public int GetHashCode(QualifiedType obj) => obj.GetHashCode(); FILE: src/Orleans.Serialization/TypeSystem/RuntimeTypeNameFormatter.cs class RuntimeTypeNameFormatter (line 16) | public static class RuntimeTypeNameFormatter method Format (line 29) | public static string Format(Type type) method ThrowTypeArgumentNull (line 44) | [DoesNotReturn] method FormatInternalNoCache (line 47) | internal static string FormatInternalNoCache(Type type, bool allowAlia... method GetCompoundTypeAlias (line 54) | private static CompoundTypeAliasAttribute? GetCompoundTypeAlias(Type t... method Format (line 79) | private static void Format(StringBuilder builder, Type type, bool isEl... method AddCompoundTypeAlias (line 114) | private static void AddCompoundTypeAlias(StringBuilder builder, Type t... method AddNamespace (line 161) | private static void AddNamespace(StringBuilder builder, Type type) method AddClassName (line 172) | private static void AddClassName(StringBuilder builder, Type type) method AddGenericParameters (line 190) | private static void AddGenericParameters(StringBuilder builder, Type t... method AddGenericArity (line 215) | private static void AddGenericArity(StringBuilder builder, Type type) method AddPointerSymbol (line 237) | private static void AddPointerSymbol(StringBuilder builder, Type type) method AddByRefSymbol (line 247) | private static void AddByRefSymbol(StringBuilder builder, Type type) method AddArrayRank (line 257) | private static void AddArrayRank(StringBuilder builder, Type type) method AddAssembly (line 269) | private static void AddAssembly(StringBuilder builder, Type type) FILE: src/Orleans.Serialization/TypeSystem/RuntimeTypeNameParser.cs class RuntimeTypeNameParser (line 10) | public static class RuntimeTypeNameParser method Parse (line 36) | public static TypeSpec Parse(string input) => Parse(input.AsSpan()); method Parse (line 43) | public static TypeSpec Parse(ReadOnlySpan input) => ParseInterna... method ParseInternal (line 45) | private static TypeSpec ParseInternal(ref ReadOnlySpan input) method ParseInternal (line 54) | private static TypeSpec ParseInternal(ref BufferReader input) method ParseTypeName (line 209) | private static ReadOnlySpan ParseTypeName(ref BufferReader s) method ParseArraySpecifier (line 251) | private static int ParseArraySpecifier(ref BufferReader s) method ExtractAssemblySpec (line 266) | private static ReadOnlySpan ExtractAssemblySpec(ref BufferReader s) method ParseSpan (line 272) | private static ReadOnlySpan ParseSpan(ref BufferReader s, ReadOn... method ParseCompoundTypeAliasElement (line 288) | private static TypeSpec ParseCompoundTypeAliasElement(ref BufferReader... method ThrowGenericArityTooLarge (line 322) | private static void ThrowGenericArityTooLarge(int arity) => throw new ... type BufferReader (line 324) | private ref struct BufferReader method TryPeek (line 332) | public readonly bool TryPeek(out char c) method TryPeek (line 344) | public readonly bool TryPeek(out char c, out char d) method TryPeek (line 351) | public readonly bool TryPeek(int index, out char c) method Consume (line 363) | public void Consume(int chars) method ConsumeCharacter (line 374) | public void ConsumeCharacter(char assertChar) method ConsumeWhitespace (line 391) | public void ConsumeWhitespace() method ThrowUnexpectedCharacter (line 399) | private static void ThrowUnexpectedCharacter(ReadOnlySpan valu... method ThrowEndOfInput (line 407) | private static void ThrowEndOfInput() => throw new InvalidOperationE... method ToString (line 409) | public override readonly string ToString() FILE: src/Orleans.Serialization/TypeSystem/RuntimeTypeNameRewriter.cs class RuntimeTypeNameRewriter (line 10) | internal static class RuntimeTypeNameRewriter method Rewrite (line 31) | public static TypeSpec Rewrite(TypeSpec input, Rewriter(TypeSpec input, Rewriter method TypeRewriter (line 56) | public TypeRewriter(Rewriter nameRewriter, CompoundAliasReso... method Rewrite (line 63) | public TypeSpec Rewrite(TypeSpec input) method ApplyInner (line 75) | private (TypeSpec Type, string? Assembly) ApplyInner(TypeSpec input,... method HandleGeneric (line 91) | private (TypeSpec Type, string? Assembly) HandleGeneric(ConstructedG... method HandleNamedType (line 127) | private (TypeSpec Type, string? Assembly) HandleNamedType(NamedTypeS... method HandleAssembly (line 168) | private (TypeSpec Type, string? Assembly) HandleAssembly(AssemblyQua... method HandleArray (line 188) | private (TypeSpec Type, string? Assembly) HandleArray(ArrayTypeSpec ... method HandleReference (line 199) | private (TypeSpec Type, string? Assembly) HandleReference(ReferenceT... method HandlePointer (line 210) | private (TypeSpec Type, string? Assembly) HandlePointer(PointerTypeS... method HandleCompoundType (line 221) | private (TypeSpec Type, string? Assembly) HandleCompoundType(TupleTy... FILE: src/Orleans.Serialization/TypeSystem/TypeCodec.cs class TypeCodec (line 18) | public sealed class TypeCodec method TypeCodec (line 30) | public TypeCodec(TypeConverter typeConverter) method WriteLengthPrefixed (line 42) | public void WriteLengthPrefixed(ref Writer(ref Writer ... method TryRead (line 70) | public unsafe Type TryRead(ref Reader reader) method ReadLengthPrefixed (line 130) | public unsafe Type ReadLengthPrefixed(ref Reader reader) method TryReadForAnalysis (line 158) | public unsafe bool TryReadForAnalysis(ref Reader reade... method ThrowUnsupportedVersion (line 182) | [DoesNotReturn] type TypeKey (line 188) | internal readonly struct TypeKey method TypeKey (line 194) | public TypeKey(int hashCode, byte[] key) method TypeKey (line 200) | public TypeKey(byte[] key) method Equals (line 208) | public bool Equals(in TypeKey other) method Equals (line 220) | public override bool Equals(object obj) => obj is TypeKey key && Equ... method GetHashCode (line 222) | public override int GetHashCode() => HashCode; method ToString (line 224) | public override string ToString() => $"TypeName \"{Encoding.UTF8.Get... FILE: src/Orleans.Serialization/TypeSystem/TypeConverter.cs class TypeConverter (line 21) | public class TypeConverter method TypeConverter (line 68) | public TypeConverter( method ConsumeMetadata (line 124) | private void ConsumeMetadata(TypeManifestOptions metadata) method Format (line 226) | public string Format(Type type, bool allowAllTypes = false) => FormatI... method Format (line 235) | public string Format(Type type, Func rewriter, boo... method Parse (line 243) | public Type Parse(string formatted) method TryParse (line 259) | public bool TryParse(string formatted, [NotNullWhen(true)] out Type re... method FormatInternal (line 264) | private string FormatInternal(Type type, Func rewr... method ParseInternal (line 307) | private bool ParseInternal(string formatted, out Type type) method ParseInternal (line 313) | private bool ParseInternal(TypeSpec parsed, out Type type) method IsNameTypeAllowed (line 348) | private bool? IsNameTypeAllowed(in QualifiedType type) method ConvertToDisplayName (line 386) | private QualifiedType ConvertToDisplayName(in QualifiedType input, ref... method ConvertFromDisplayName (line 406) | private QualifiedType ConvertFromDisplayName(in QualifiedType input, r... method UpdateValidationResult (line 426) | private ValidationResult UpdateValidationResult(QualifiedType input, V... method ThrowTypeNotAllowed (line 444) | [DoesNotReturn] method ThrowTypeNotAllowed (line 477) | [DoesNotReturn] type ValidationResult (line 484) | private readonly struct ValidationResult method ValidationResult (line 486) | public ValidationResult(bool? isTypeNameAllowed, List... method InspectType (line 496) | private static bool? InspectType(ITypeFilter[] filters, Type type) method ResolveCompoundAliasType (line 543) | private TypeSpec ResolveCompoundAliasType(TupleTypeSpec input,... FILE: src/Orleans.Serialization/TypeSystem/TypeSpec.cs class TypeSpec (line 12) | public abstract class TypeSpec method Format (line 17) | public abstract string Format(); class PointerTypeSpec (line 23) | public class PointerTypeSpec : TypeSpec method PointerTypeSpec (line 29) | public PointerTypeSpec(TypeSpec elementType) method Format (line 45) | public override string Format() => ToString(); method ToString (line 48) | public override string ToString() => $"{ElementType}*"; class ReferenceTypeSpec (line 54) | public class ReferenceTypeSpec : TypeSpec method ReferenceTypeSpec (line 60) | public ReferenceTypeSpec(TypeSpec elementType) method Format (line 76) | public override string Format() => ToString(); method ToString (line 79) | public override string ToString() => $"{ElementType}&"; class ArrayTypeSpec (line 85) | public class ArrayTypeSpec : TypeSpec method ArrayTypeSpec (line 92) | public ArrayTypeSpec(TypeSpec elementType, int dimensions) method Format (line 119) | public override string Format() => ToString(); method ToString (line 122) | public override string ToString() => $"{ElementType}[{new string(',', ... class ConstructedGenericTypeSpec (line 128) | public class ConstructedGenericTypeSpec : TypeSpec method ConstructedGenericTypeSpec (line 136) | public ConstructedGenericTypeSpec(TypeSpec unconstructedType, int arit... method Format (line 181) | public override string Format() => ToString(); method ToString (line 184) | public override string ToString() => $"{UnconstructedType}[{string.Joi... class NamedTypeSpec (line 190) | public class NamedTypeSpec : TypeSpec method NamedTypeSpec (line 198) | public NamedTypeSpec(NamedTypeSpec containingType, string name, int ar... method GetNamespaceQualifiedName (line 234) | public string GetNamespaceQualifiedName() method Format (line 253) | public override string Format() => ToString(); method ToString (line 256) | public override string ToString() => ContainingType is not null ? $"{C... class AssemblyQualifiedTypeSpec (line 262) | public class AssemblyQualifiedTypeSpec : TypeSpec method AssemblyQualifiedTypeSpec (line 269) | public AssemblyQualifiedTypeSpec(TypeSpec type, string? assembly) method Format (line 296) | public override string Format() => ToString(); method ToString (line 299) | public override string ToString() => Assembly switch class TupleTypeSpec (line 309) | public class TupleTypeSpec : TypeSpec method TupleTypeSpec (line 316) | public TupleTypeSpec(TypeSpec[] elements, int arity) method Format (line 349) | public override string Format() => ToString(); method ToString (line 352) | public override string ToString() class LiteralTypeSpec (line 371) | public class LiteralTypeSpec : TypeSpec method LiteralTypeSpec (line 377) | public LiteralTypeSpec(string value) method Format (line 393) | public override string Format() => ToString(); method ToString (line 396) | public override string ToString() => $"\"{Value}\""; FILE: src/Orleans.Serialization/Utilities/BitOperations.cs class BitOperations (line 13) | internal static class BitOperations method Log2 (line 36) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Log2 (line 52) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Log2SoftwareFallback (line 73) | private static int Log2SoftwareFallback(uint value) method TrailingZeroCount (line 98) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method TrailingZeroCount (line 120) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method RoundUpToPowerOf2 (line 139) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/Utilities/BitStreamFormatter.cs class BitStreamFormatter (line 15) | public static class BitStreamFormatter method Format (line 23) | public static string Format(ref Reader reader) method Format (line 36) | public static string Format(PooledBuffer.BufferSlice slice, Serializer... method Format (line 48) | public static string Format(byte[] array, SerializerSession session) method Format (line 60) | public static string Format(ReadOnlySpan input, SerializerSessio... method Format (line 72) | public static string Format(ReadOnlyMemory input, SerializerSess... method Format (line 84) | public static string Format(ReadOnlySequence input, SerializerSe... method Format (line 96) | public static string Format(Stream input, SerializerSession session) method Format (line 108) | public static void Format(ref Reader reader, StringBui... method FormatField (line 114) | private static void FormatField(ref Reader reader, Fie... method FormatByteArray (line 215) | private static void FormatByteArray(StringBuilder res, byte[] a) method FormatFieldHeader (line 251) | private static void FormatFieldHeader(StringBuilder res, SerializerSes... method FormatTagDelimitedField (line 280) | private static void FormatTagDelimitedField(this ref Reader(ref Reader reader, S... FILE: src/Orleans.Serialization/Utilities/FieldAccessor.cs class FieldAccessor (line 27) | public static class FieldAccessor method GetGetter (line 33) | public static Delegate GetGetter(Type declaringType, string fieldName)... method GetValueGetter (line 39) | public static Delegate GetValueGetter(Type declaringType, string field... method GetGetter (line 41) | private static Delegate GetGetter(Type declaringType, string fieldName... method GetReferenceSetter (line 61) | public static Delegate GetReferenceSetter(Type declaringType, string f... method GetValueSetter (line 67) | public static Delegate GetValueSetter(Type declaringType, string field... method GetSetter (line 69) | private static Delegate GetSetter(Type declaringType, string fieldName... FILE: src/Orleans.Serialization/Utilities/ReferenceEqualsComparer.cs class ReferenceEqualsComparer (line 7) | internal sealed class ReferenceEqualsComparer : IEqualityComparer ReferenceEquals(x, y); method GetHashCode (line 13) | public int GetHashCode(object obj) => obj is null ? 0 : RuntimeHelpers... FILE: src/Orleans.Serialization/Utilities/ServiceCollectionExtensions.cs class InternalServiceCollectionExtensions (line 9) | public static class InternalServiceCollectionExtensions method AddFromExisting (line 17) | public static void AddFromExisting(this ISe... method AddFromExisting (line 28) | public static void AddFromExisting(this IServiceCollection services, T... FILE: src/Orleans.Serialization/Utilities/VarIntReaderExtensions.cs class VarIntReaderExtensions (line 10) | public static class VarIntReaderExtensions method ReadVarInt8 (line 18) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarInt16 (line 27) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarUInt8 (line 36) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarUInt16 (line 45) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarInt32 (line 54) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadVarInt64 (line 63) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadUInt8 (line 73) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadUInt16 (line 92) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadUInt32 (line 111) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadUInt64 (line 130) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadInt8 (line 149) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadInt16 (line 168) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadInt32 (line 187) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadInt32Slower (line 198) | [MethodImpl(MethodImplOptions.NoInlining)] method ReadInt64 (line 216) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ZigZagDecode (line 233) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ZigZagDecode (line 240) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ZigZagDecode (line 247) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ZigZagDecode (line 254) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/WireProtocol/ExtendedWireType.cs type ExtendedWireType (line 6) | public enum ExtendedWireType : uint FILE: src/Orleans.Serialization/WireProtocol/Field.cs type Field (line 10) | public struct Field method Field (line 31) | public Field(Tag tag) method Field (line 44) | public Field(Tag tag, uint extendedFieldIdDelta, Type type) method EnsureWireTypeTagDelimited (line 226) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method UnsupportedWireType (line 233) | private void UnsupportedWireType() => throw new UnsupportedWireTypeExc... method EnsureWireType (line 238) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method UnsupportedWireType (line 245) | private void UnsupportedWireType(WireType expectedType) => throw new U... method ToString (line 248) | public override string ToString() FILE: src/Orleans.Serialization/WireProtocol/SchemaType.cs type SchemaType (line 6) | public enum SchemaType : uint FILE: src/Orleans.Serialization/WireProtocol/Tag.cs type Tag (line 12) | public struct Tag method Tag (line 50) | public Tag(byte tag) => _tag = tag; method Tag (line 52) | internal Tag(uint tag) => _tag = tag; method SetFieldIdInvalid (line 144) | [MethodImpl(MethodImplOptions.AggressiveInlining)] FILE: src/Orleans.Serialization/WireProtocol/WireType.cs type WireType (line 6) | public enum WireType : uint FILE: src/Orleans.Streaming.NATS/Hosting/ClientBuilderExtensions.cs class ClientBuilderExtensions (line 7) | public static class ClientBuilderExtensions method AddNatsStreams (line 12) | public static IClientBuilder AddNatsStreams(this IClientBuilder builde... method AddNatsStreams (line 23) | public static IClientBuilder AddNatsStreams(this IClientBuilder builde... FILE: src/Orleans.Streaming.NATS/Hosting/NatsStreamConfigurator.cs class SiloNatsStreamConfigurator (line 9) | public class SiloNatsStreamConfigurator : SiloPersistentStreamConfigurator method SiloNatsStreamConfigurator (line 11) | public SiloNatsStreamConfigurator(string name, Action method QueueMessageBatchAsync (line 26) | public async Task QueueMessageBatchAsync(StreamId streamId, IEnumer... FILE: src/Orleans.Streaming.NATS/Providers/NatsAdapterFactory.cs class NatsAdapterFactory (line 14) | internal class NatsAdapterFactory : IQueueAdapterFactory method NatsAdapterFactory (line 28) | public NatsAdapterFactory( method Init (line 46) | public virtual void Init() method CreateAdapter (line 56) | public virtual async Task CreateAdapter() method GetQueueAdapterCache (line 67) | public virtual IQueueAdapterCache GetQueueAdapterCache() method GetStreamQueueMapper (line 73) | public IStreamQueueMapper GetStreamQueueMapper() method GetDeliveryFailureHandler (line 83) | public Task GetDeliveryFailureHandler(QueueId q... method Create (line 88) | public static NatsAdapterFactory Create(IServiceProvider services, str... FILE: src/Orleans.Streaming.NATS/Providers/NatsBatchContainer.cs class NatsBatchContainer (line 11) | [Serializable] method ImportRequestContext (line 42) | public bool ImportRequestContext() method GetEvents (line 53) | public IEnumerable> GetEvents() => method ToString (line 56) | public override string ToString() => $"[NatsBatchContainer:Stream={Str... FILE: src/Orleans.Streaming.NATS/Providers/NatsConnectionManager.cs class NatsConnectionManager (line 16) | internal sealed class NatsConnectionManager method NatsConnectionManager (line 28) | [GeneratedActivatorConstructor] method Initialize (line 75) | public async Task Initialize(CancellationToken cancellationToken = def... method EnqueueMessage (line 146) | public async Task EnqueueMessage(NatsStreamMessage message, Cancellati... method CreateConsumer (line 182) | public NatsStreamConsumer CreateConsumer(uint partition) => method AcknowledgeMessages (line 195) | public async Task AcknowledgeMessages(string subject) FILE: src/Orleans.Streaming.NATS/Providers/NatsQueueAdapterReceiver.cs class NatsQueueAdapterReceiver (line 14) | internal sealed class NatsQueueAdapterReceiver : IQueueAdapterReceiver method Create (line 25) | public static IQueueAdapterReceiver Create(string providerName, ILogge... method NatsQueueAdapterReceiver (line 36) | private NatsQueueAdapterReceiver(string providerName, ILoggerFactory l... method Initialize (line 50) | public async Task Initialize(TimeSpan timeout) method Shutdown (line 67) | public async Task Shutdown(TimeSpan timeout) method GetQueueMessagesAsync (line 83) | public async Task> GetQueueMessagesAsync(int ma... method MessagesDeliveredAsync (line 121) | public async Task MessagesDeliveredAsync(IList messages) FILE: src/Orleans.Streaming.NATS/Providers/NatsStreamConsumer.cs class NatsStreamConsumer (line 15) | internal sealed class NatsStreamConsumer( method GetMessages (line 36) | public async Task<(NatsStreamMessage[] Messages, int Count)> GetMessag... method Initialize (line 73) | public async Task Initialize(CancellationToken cancellationToken = def... FILE: src/Orleans.Streaming.NATS/Providers/NatsStreamMessage.cs class NatsStreamMessage (line 8) | [Serializable] FILE: src/Orleans.Streaming.NATS/Providers/StreamIdJsonConverter.cs class StreamIdJsonConverter (line 9) | internal class StreamIdJsonConverter : JsonConverter method Read (line 11) | public override StreamId Read(ref Utf8JsonReader reader, Type typeToCo... method Write (line 28) | public override void Write(Utf8JsonWriter writer, StreamId value, Json... FILE: src/Orleans.Streaming/Common/EventSequenceToken.cs class EventSequenceToken (line 11) | [Serializable] method EventSequenceToken (line 33) | public EventSequenceToken(long sequenceNumber) method EventSequenceToken (line 44) | public EventSequenceToken(long sequenceNumber, int eventIndex) method EventSequenceToken (line 56) | [JsonConstructor] method CreateSequenceTokenForEvent (line 65) | public EventSequenceToken CreateSequenceTokenForEvent(int eventInd) method Equals (line 71) | public override bool Equals(object obj) method Equals (line 77) | public override bool Equals(StreamSequenceToken other) method CompareTo (line 85) | public override int CompareTo(StreamSequenceToken other) method GetHashCode (line 99) | public override int GetHashCode() => HashCode.Combine(SequenceNumber, ... method ToString (line 102) | public override string ToString() FILE: src/Orleans.Streaming/Common/EventSequenceTokenV2.cs class EventSequenceTokenV2 (line 11) | [Serializable] method EventSequenceTokenV2 (line 33) | public EventSequenceTokenV2(long seqNumber) method EventSequenceTokenV2 (line 44) | public EventSequenceTokenV2(long seqNumber, int eventInd) method EventSequenceTokenV2 (line 56) | public EventSequenceTokenV2() method CreateSequenceTokenForEvent (line 65) | public EventSequenceTokenV2 CreateSequenceTokenForEvent(int eventInd) method Equals (line 71) | public override bool Equals(object obj) method Equals (line 77) | public override bool Equals(StreamSequenceToken other) method CompareTo (line 85) | public override int CompareTo(StreamSequenceToken other) method GetHashCode (line 99) | public override int GetHashCode() => HashCode.Combine(SequenceNumber, ... method ToString (line 102) | public override string ToString() FILE: src/Orleans.Streaming/Common/Monitors/DefaultBlockPoolMonitor.cs class DefaultBlockPoolMonitor (line 11) | public class DefaultBlockPoolMonitor : IBlockPoolMonitor method DefaultBlockPoolMonitor (line 28) | protected DefaultBlockPoolMonitor(KeyValuePair[] dimen... method DefaultBlockPoolMonitor (line 42) | public DefaultBlockPoolMonitor(BlockPoolMonitorDimensions dimensions) ... method GetTotalMemory (line 46) | private Measurement GetTotalMemory() => new(_totalMemory, _dimen... method GetAvailableMemory (line 47) | private Measurement GetAvailableMemory() => new(_availableMemory... method GetClaimedMemory (line 48) | private Measurement GetClaimedMemory() => new(_claimedMemory, _d... method GetReleasedMemory (line 49) | private Measurement GetReleasedMemory() => new(_releasedMemory, ... method GetAllocatedMemory (line 50) | private Measurement GetAllocatedMemory() => new(_allocatedMemory... method Report (line 53) | public void Report(long totalMemoryInByte, long availableMemoryInByte,... method TrackMemoryReleased (line 61) | public void TrackMemoryReleased(long releasedMemoryInByte) method TrackMemoryAllocated (line 67) | public void TrackMemoryAllocated(long allocatedMemoryInByte) FILE: src/Orleans.Streaming/Common/Monitors/DefaultCacheMonitor.cs class DefaultCacheMonitor (line 13) | public class DefaultCacheMonitor : ICacheMonitor method DefaultCacheMonitor (line 40) | protected DefaultCacheMonitor(KeyValuePair[] dimensions) method DefaultCacheMonitor (line 67) | public DefaultCacheMonitor(CacheMonitorDimensions dimensions) : this(n... method GetOldestToNewestAge (line 71) | private Measurement GetOldestToNewestAge() => new(_oldestToNewes... method GetOldestAge (line 72) | private Measurement GetOldestAge() => new(_oldestMessageDequeueA... method TrackCachePressureMonitorStatusChange (line 75) | public void TrackCachePressureMonitorStatusChange( method ReportCacheSize (line 97) | public void ReportCacheSize(long totalCacheSizeInByte) => _totalCacheS... method ReportMessageStatistics (line 100) | public void ReportMessageStatistics(DateTime? oldestMessageEnqueueTime... method TrackMemoryAllocated (line 116) | public void TrackMemoryAllocated(int memoryInByte) => Interlocked.Add(... method TrackMemoryReleased (line 119) | public void TrackMemoryReleased(int memoryInByte) => Interlocked.Add(r... method TrackMessagesAdded (line 122) | public void TrackMessagesAdded(long messageAdded) => Interlocked.Add(r... method TrackMessagesPurged (line 125) | public void TrackMessagesPurged(long messagePurged) => Interlocked.Add... class PressureMonitorStatistics (line 127) | private sealed class PressureMonitorStatistics method PressureMonitorStatistics (line 129) | public PressureMonitorStatistics(string type, KeyValuePair GetOldestMessageReadEnqueueAge() => new(_old... method GetNewestMessageReadEnqueueAge (line 60) | private Measurement GetNewestMessageReadEnqueueAge() => new(_new... method GetMessagesReceivedCount (line 61) | private Measurement GetMessagesReceivedCount() => new(_messagesR... method TrackInitialization (line 64) | public void TrackInitialization(bool success, TimeSpan callTime, Excep... method TrackRead (line 72) | public void TrackRead(bool success, TimeSpan callTime, Exception excep... method TrackMessagesReceived (line 80) | public void TrackMessagesReceived(long count, DateTime? oldestMessageE... method TrackShutdown (line 98) | public void TrackShutdown(bool success, TimeSpan callTime, Exception e... FILE: src/Orleans.Streaming/Common/Monitors/IBlockPoolMonitor.cs type IBlockPoolMonitor (line 6) | public interface IBlockPoolMonitor method TrackMemoryAllocated (line 12) | void TrackMemoryAllocated(long allocatedMemoryInBytes); method TrackMemoryReleased (line 18) | void TrackMemoryReleased(long releasedMemoryInBytes); method Report (line 26) | void Report(long totalSizeInByte, long availableMemoryInByte, long cla... class ObjectPoolMonitorBridge (line 35) | public class ObjectPoolMonitorBridge : IObjectPoolMonitor method ObjectPoolMonitorBridge (line 45) | public ObjectPoolMonitorBridge(IBlockPoolMonitor blockPoolMonitor, int... method TrackObjectAllocated (line 52) | public void TrackObjectAllocated() method TrackObjectReleased (line 59) | public void TrackObjectReleased() method Report (line 66) | public void Report(long totalObjects, long availableObjects, long clai... FILE: src/Orleans.Streaming/Common/Monitors/ICacheMonitor.cs type ICacheMonitor (line 8) | public interface ICacheMonitor method TrackCachePressureMonitorStatusChange (line 18) | void TrackCachePressureMonitorStatusChange(string pressureMonitorType,... method TrackMessagesAdded (line 25) | void TrackMessagesAdded(long messagesAdded); method TrackMessagesPurged (line 31) | void TrackMessagesPurged(long messagesPurged); method TrackMemoryAllocated (line 37) | void TrackMemoryAllocated(int memoryInBytes); method TrackMemoryReleased (line 43) | void TrackMemoryReleased(int memoryInBytes); method ReportMessageStatistics (line 52) | void ReportMessageStatistics(DateTime? oldestMessageEnqueueTimeUtc, Da... method ReportCacheSize (line 59) | void ReportCacheSize(long totalCacheSizeInBytes); FILE: src/Orleans.Streaming/Common/Monitors/IObjectPoolMonitor.cs type IObjectPoolMonitor (line 6) | public interface IObjectPoolMonitor method TrackObjectAllocated (line 11) | void TrackObjectAllocated(); method TrackObjectReleased (line 16) | void TrackObjectReleased(); method Report (line 24) | void Report(long totalObjects, long availableObjects, long claimedObje... FILE: src/Orleans.Streaming/Common/Monitors/IQueueAdapterReceiverMonitor.cs type IQueueAdapterReceiverMonitor (line 8) | public interface IQueueAdapterReceiverMonitor method TrackInitialization (line 16) | void TrackInitialization(bool success, TimeSpan callTime, Exception ex... method TrackRead (line 24) | void TrackRead(bool success, TimeSpan callTime, Exception exception); method TrackMessagesReceived (line 32) | void TrackMessagesReceived(long count, DateTime? oldestMessageEnqueueT... method TrackShutdown (line 40) | void TrackShutdown(bool success, TimeSpan callTime, Exception exception); FILE: src/Orleans.Streaming/Common/Monitors/MonitorAggregationDimensions.cs class ReceiverMonitorDimensions (line 6) | public class ReceiverMonitorDimensions method ReceiverMonitorDimensions (line 12) | public ReceiverMonitorDimensions(string queueId) method ReceiverMonitorDimensions (line 20) | public ReceiverMonitorDimensions() class CacheMonitorDimensions (line 33) | public class CacheMonitorDimensions : ReceiverMonitorDimensions method CacheMonitorDimensions (line 40) | public CacheMonitorDimensions(string queueId, string blockPoolId) class BlockPoolMonitorDimensions (line 56) | public class BlockPoolMonitorDimensions method BlockPoolMonitorDimensions (line 62) | public BlockPoolMonitorDimensions(string blockPoolId) FILE: src/Orleans.Streaming/Common/PooledCache/CachedMessage.cs type CachedMessage (line 12) | public struct CachedMessage class CachedMessageExtensions (line 48) | public static class CachedMessageExtensions method Compare (line 56) | public static int Compare(this ref CachedMessage cachedMessage, Stream... method CompareStreamId (line 69) | public static bool CompareStreamId(this ref CachedMessage cachedMessag... FILE: src/Orleans.Streaming/Common/PooledCache/CachedMessageBlock.cs class CachedMessageBlock (line 14) | public class CachedMessageBlock : PooledResource method CachedMessageBlock (line 73) | public CachedMessageBlock(int blockSize = DefaultCachedMessagesPerBlock) method Remove (line 86) | public bool Remove() method Add (line 103) | public void Add(CachedMessage message) method GetSequenceToken (line 137) | public StreamSequenceToken GetSequenceToken(int index, ICacheDataAdapt... method GetNewestSequenceToken (line 151) | public StreamSequenceToken GetNewestSequenceToken(ICacheDataAdapter da... method GetOldestSequenceToken (line 161) | public StreamSequenceToken GetOldestSequenceToken(ICacheDataAdapter da... method GetIndexOfFirstMessageLessThanOrEqualTo (line 171) | public int GetIndexOfFirstMessageLessThanOrEqualTo(StreamSequenceToken... method TryFindFirstMessage (line 190) | public bool TryFindFirstMessage(StreamId streamId, ICacheDataAdapter d... method TryFindNextMessage (line 203) | public bool TryFindNextMessage(int start, StreamId streamId, ICacheDat... method OnResetState (line 224) | public override void OnResetState() FILE: src/Orleans.Streaming/Common/PooledCache/CachedMessagePool.cs class CachedMessagePool (line 7) | internal class CachedMessagePool method CachedMessagePool (line 16) | public CachedMessagePool(ICacheDataAdapter cacheDataAdapter) method AllocateMessage (line 26) | public CachedMessageBlock AllocateMessage(CachedMessage message) FILE: src/Orleans.Streaming/Common/PooledCache/ChronologicalEvictionStrategy.cs class ChronologicalEvictionStrategy (line 10) | public partial class ChronologicalEvictionStrategy : IEvictionStrategy method ChronologicalEvictionStrategy (line 32) | public ChronologicalEvictionStrategy(ILogger logger, TimePurgePredicat... method ReportCacheSize (line 50) | private void ReportCacheSize() method OnBlockAllocated (line 62) | public void OnBlockAllocated(FixedSizeBuffer newBlock) method PerformPurge (line 77) | public void PerformPurge(DateTime nowUtc) method ShouldPurge (line 90) | protected virtual bool ShouldPurge(ref CachedMessage cachedMessage, re... method PerformPurgeInternal (line 99) | private void PerformPurgeInternal(DateTime nowUtc) method FreePurgedBuffers (line 129) | private void FreePurgedBuffers(CachedMessage? lastMessagePurged, Cache... method ReportPurge (line 166) | private static void ReportPurge(ILogger logger, IPurgeObservable purge... method LogBlockPurgedCacheEmpty (line 182) | [LoggerMessage( method LogBlockPurged (line 188) | [LoggerMessage( FILE: src/Orleans.Streaming/Common/PooledCache/FixedSizeBuffer.cs class FixedSizeBuffer (line 10) | public class FixedSizeBuffer : PooledResource method FixedSizeBuffer (line 29) | public FixedSizeBuffer(int blockSizeInByte) method TryGetSegment (line 47) | public bool TryGetSegment(int size, out ArraySegment value) method OnResetState (line 60) | public override void OnResetState() FILE: src/Orleans.Streaming/Common/PooledCache/ICacheDataAdapter.cs type ICacheDataAdapter (line 11) | public interface ICacheDataAdapter method GetBatchContainer (line 18) | IBatchContainer GetBatchContainer(ref CachedMessage cachedMessage); method GetSequenceToken (line 25) | StreamSequenceToken GetSequenceToken(ref CachedMessage cachedMessage); FILE: src/Orleans.Streaming/Common/PooledCache/IEvictionStrategy.cs type IEvictionStrategy (line 8) | public interface IEvictionStrategy method PerformPurge (line 24) | void PerformPurge(DateTime utcNow); method OnBlockAllocated (line 30) | void OnBlockAllocated(FixedSizeBuffer newBlock); type IPurgeObservable (line 36) | public interface IPurgeObservable method RemoveOldestMessage (line 41) | void RemoveOldestMessage(); FILE: src/Orleans.Streaming/Common/PooledCache/IObjectPool.cs type IObjectPool (line 12) | public interface IObjectPool method Allocate (line 19) | T Allocate(); method Free (line 25) | void Free(T resource); class PooledResource (line 32) | public abstract class PooledResource : IDisposable method SignalPurge (line 47) | public virtual void SignalPurge() method Dispose (line 55) | public void Dispose() method OnResetState (line 69) | public virtual void OnResetState() FILE: src/Orleans.Streaming/Common/PooledCache/ObjectPool.cs class ObjectPool (line 12) | public class ObjectPool : IObjectPool method ObjectPool (line 32) | public ObjectPool(Func factoryFunc, IObjectPoolMonitor monitor = nu... method Allocate (line 56) | public virtual T Allocate() method Free (line 75) | public virtual void Free(T resource) method ReportObjectPoolStatistics (line 82) | private void ReportObjectPoolStatistics() FILE: src/Orleans.Streaming/Common/PooledCache/PooledQueueCache.cs class PooledQueueCache (line 25) | public class PooledQueueCache: IPurgeObservable method PooledQueueCache (line 78) | public PooledQueueCache( method GetCursor (line 115) | public object GetCursor(StreamId streamId, StreamSequenceToken sequenc... method ReportCacheMessageStatistics (line 122) | private void ReportCacheMessageStatistics() method PurgeMetadata (line 139) | private void PurgeMetadata() method TrackAndPurgeMetadata (line 153) | private void TrackAndPurgeMetadata(CachedMessage messageToRemove) method SetCursor (line 167) | private void SetCursor(Cursor cursor, StreamSequenceToken sequenceToken) method TryGetNextMessage (line 266) | public bool TryGetNextMessage(object cursorObj, out IBatchContainer me... method Add (line 345) | public void Add(List messages, DateTime dequeueTime) method Add (line 355) | private void Add(CachedMessage message) method RemoveOldestMessage (line 369) | public void RemoveOldestMessage() type CursorStates (line 384) | private enum CursorStates class Cursor (line 391) | private class Cursor method Cursor (line 395) | public Cursor(StreamId streamId) FILE: src/Orleans.Streaming/Common/PooledCache/TimePurgePredicate.cs class TimePurgePredicate (line 9) | public class TimePurgePredicate method TimePurgePredicate (line 19) | public TimePurgePredicate(TimeSpan minTimeInCache, TimeSpan maxRelativ... method ShouldPurgeFromTime (line 32) | public virtual bool ShouldPurgeFromTime(TimeSpan timeInCache, TimeSpan... FILE: src/Orleans.Streaming/Common/RecoverableStreamConfigurator.cs type ISiloRecoverableStreamConfigurator (line 12) | public interface ISiloRecoverableStreamConfigurator : ISiloPersistentStr... class SiloRecoverableStreamConfiguratorExtensions (line 17) | public static class SiloRecoverableStreamConfiguratorExtensions method ConfigureStatistics (line 24) | public static void ConfigureStatistics(this ISiloRecoverableStreamConf... method ConfigureCacheEviction (line 34) | public static void ConfigureCacheEviction(this ISiloRecoverableStreamC... class SiloRecoverableStreamConfigurator (line 43) | public class SiloRecoverableStreamConfigurator : SiloPersistentStreamCon... method SiloRecoverableStreamConfigurator (line 51) | public SiloRecoverableStreamConfigurator( FILE: src/Orleans.Streaming/Common/RecoverableStreamOptions.cs class StreamCacheEvictionOptions (line 9) | public class StreamCacheEvictionOptions class StreamStatisticOptions (line 47) | public class StreamStatisticOptions FILE: src/Orleans.Streaming/Common/SegmentBuilder.cs class SegmentBuilder (line 10) | public static class SegmentBuilder method CalculateAppendSize (line 15) | public static int CalculateAppendSize(ReadOnlySpan memory) => me... method CalculateAppendSize (line 22) | public static int CalculateAppendSize(string str) => str is null ? siz... method Append (line 30) | public static void Append(ArraySegment segment, ref int writerOf... method Append (line 54) | public static void Append(ArraySegment segment, ref int writerOf... method ReadNextBytes (line 76) | public static ArraySegment ReadNextBytes(ArraySegment segm... method ReadNextString (line 93) | public static string ReadNextString(ArraySegment segment, ref in... FILE: src/Orleans.Streaming/Common/SimpleCache/SimpleQueueAdapterCache.cs class SimpleQueueAdapterCache (line 10) | public class SimpleQueueAdapterCache : IQueueAdapterCache method SimpleQueueAdapterCache (line 27) | public SimpleQueueAdapterCache(SimpleQueueCacheOptions options, string... method CreateQueueCache (line 35) | public IQueueCache CreateQueueCache(QueueId queueId) FILE: src/Orleans.Streaming/Common/SimpleCache/SimpleQueueCache.cs class CacheBucket (line 9) | internal class CacheBucket method UpdateNumItems (line 20) | internal void UpdateNumItems(int val) method UpdateNumCursors (line 24) | internal void UpdateNumCursors(int val) class SimpleQueueCacheItem (line 30) | internal class SimpleQueueCacheItem class SimpleQueueCache (line 41) | public partial class SimpleQueueCache : IQueueCache method GetMaxAddCount (line 56) | public int GetMaxAddCount() method SimpleQueueCache (line 66) | public SimpleQueueCache(int cacheSize, ILogger logger) method IsUnderPressure (line 77) | public virtual bool IsUnderPressure() method TryPurgeFromCache (line 84) | public virtual bool TryPurgeFromCache(out IList purge... method DrainBucket (line 105) | private List DrainBucket(CacheBucket bucket) method AddToCache (line 132) | public virtual void AddToCache(IList msgs) method GetCacheCursor (line 144) | public virtual IQueueCacheCursor GetCacheCursor(StreamId streamId, Str... method InitializeCursor (line 151) | internal void InitializeCursor(SimpleQueueCacheCursor cursor, StreamSe... method RefreshCursor (line 201) | internal void RefreshCursor(SimpleQueueCacheCursor cursor, StreamSeque... method TryGetNextMessage (line 218) | internal bool TryGetNextMessage(SimpleQueueCacheCursor cursor, out IBa... method AdvanceCursor (line 239) | private void AdvanceCursor(SimpleQueueCacheCursor cursor, LinkedListNo... method SetCursor (line 248) | internal void SetCursor(SimpleQueueCacheCursor cursor, LinkedListNode<... method UnsetCursor (line 256) | internal void UnsetCursor(SimpleQueueCacheCursor cursor, StreamSequenc... method Add (line 267) | private void Add(IBatchContainer batch, StreamSequenceToken sequenceTo... method LogDebugTryPurgeFromCache (line 302) | [LoggerMessage( method LogDebugAddToCache (line 308) | [LoggerMessage( method LogDebugInitializeCursor (line 314) | [LoggerMessage( method LogDebugRefreshCursor (line 320) | [LoggerMessage( method LogDebugTryGetNextMessage (line 326) | [LoggerMessage( method LogDebugUpdateCursor (line 332) | [LoggerMessage( method LogDebugSetCursor (line 338) | [LoggerMessage( method LogDebugUnsetCursor (line 344) | [LoggerMessage( FILE: src/Orleans.Streaming/Common/SimpleCache/SimpleQueueCacheCursor.cs class SimpleQueueCacheCursor (line 12) | public partial class SimpleQueueCacheCursor : IQueueCacheCursor method Set (line 31) | internal void Set(LinkedListNode item) method UnSet (line 38) | internal void UnSet(StreamSequenceToken token) method SimpleQueueCacheCursor (line 50) | public SimpleQueueCacheCursor(SimpleQueueCache cache, StreamId streamI... method GetCurrent (line 65) | public virtual IBatchContainer GetCurrent(out Exception exception) method MoveNext (line 74) | public virtual bool MoveNext() method Refresh (line 96) | public virtual void Refresh(StreamSequenceToken sequenceToken) method RecordDeliveryFailure (line 105) | public void RecordDeliveryFailure() method IsInStream (line 113) | private bool IsInStream(IBatchContainer batchContainer) method Dispose (line 120) | public void Dispose() method Dispose (line 129) | protected virtual void Dispose(bool disposing) method ToString (line 139) | public override string ToString() method LogDebugNewCursor (line 144) | [LoggerMessage( method LogDebugGetCurrent (line 150) | [LoggerMessage( FILE: src/Orleans.Streaming/Common/SimpleCache/SimpleQueueCacheOptions.cs class SimpleQueueCacheOptions (line 9) | public class SimpleQueueCacheOptions class SimpleQueueCacheOptionsValidator (line 26) | public class SimpleQueueCacheOptionsValidator : IConfigurationValidator method SimpleQueueCacheOptionsValidator (line 36) | private SimpleQueueCacheOptionsValidator(SimpleQueueCacheOptions optio... method ValidateConfiguration (line 43) | public void ValidateConfiguration() method Create (line 55) | public static IConfigurationValidator Create(IServiceProvider services... FILE: src/Orleans.Streaming/Core/DefaultStreamIdMapper.cs class DefaultStreamIdMapper (line 12) | public sealed class DefaultStreamIdMapper : IStreamIdMapper method GetGrainKeyId (line 20) | public IdSpan GetGrainKeyId(GrainBindings grainBindings, StreamId stre... method GetGuidKey (line 51) | private static IdSpan GetGuidKey(StreamId streamId, bool includeNamesp... method GetIntegerKey (line 63) | private static IdSpan GetIntegerKey(StreamId streamId, bool includeNam... FILE: src/Orleans.Streaming/Core/IAsyncBatchObservable.cs type IAsyncBatchObservable (line 14) | public interface IAsyncBatchObservable method SubscribeAsync (line 24) | Task> SubscribeAsync(IAsyncBatchObserver> SubscribeAsync(IAsyncBatchObserver method SequentialItem (line 18) | public SequentialItem(T item, StreamSequenceToken token) type IAsyncBatchObserver (line 45) | public interface IAsyncBatchObserver method OnNextAsync (line 68) | Task OnNextAsync(IList> items); method OnCompletedAsync (line 77) | Task OnCompletedAsync() => Task.CompletedTask; method OnErrorAsync (line 87) | Task OnErrorAsync(Exception ex); FILE: src/Orleans.Streaming/Core/IAsyncBatchProducer.cs type IAsyncBatchProducer (line 13) | public interface IAsyncBatchProducer : IAsyncObserver method OnNextBatchAsync (line 29) | Task OnNextBatchAsync(IEnumerable batch, StreamSequenceToken token ... FILE: src/Orleans.Streaming/Core/IAsyncObservable.cs type IAsyncObservable (line 17) | public interface IAsyncObservable method SubscribeAsync (line 27) | Task> SubscribeAsync(IAsyncObserver obs... method SubscribeAsync (line 39) | Task> SubscribeAsync(IAsyncObserver obs... FILE: src/Orleans.Streaming/Core/IAsyncObserver.cs type IAsyncObserver (line 16) | public interface IAsyncObserver method OnNextAsync (line 40) | Task OnNextAsync(T item, StreamSequenceToken? token = null); method OnCompletedAsync (line 49) | Task OnCompletedAsync() => Task.CompletedTask; method OnErrorAsync (line 59) | Task OnErrorAsync(Exception ex); FILE: src/Orleans.Streaming/Core/IAsyncStream.cs type IAsyncStream (line 14) | public interface IAsyncStream : method GetAllSubscriptionHandles (line 24) | Task>> GetAllSubscriptionHandles(); type IAsyncStream (line 32) | public interface IAsyncStream method GetAllSubscriptionHandles (line 24) | Task>> GetAllSubscriptionHandles(); FILE: src/Orleans.Streaming/Core/IStreamIdMapper.cs type IStreamIdMapper (line 9) | public interface IStreamIdMapper method GetGrainKeyId (line 17) | IdSpan GetGrainKeyId(GrainBindings grainBindings, StreamId streamId); FILE: src/Orleans.Streaming/Core/IStreamIdentity.cs type IStreamIdentity (line 12) | public interface IStreamIdentity FILE: src/Orleans.Streaming/Core/IStreamSubscriptionHandleFactory.cs type IStreamSubscriptionHandleFactory (line 8) | public interface IStreamSubscriptionHandleFactory method Create (line 33) | StreamSubscriptionHandle Create(); FILE: src/Orleans.Streaming/Core/IStreamSubscriptionManager.cs type IStreamSubscriptionManager (line 11) | public interface IStreamSubscriptionManager method AddSubscription (line 20) | Task AddSubscription(string streamProviderName, St... method RemoveSubscription (line 29) | Task RemoveSubscription(string streamProviderName, StreamId streamId, ... method GetSubscriptions (line 37) | Task> GetSubscriptions(string streamPr... FILE: src/Orleans.Streaming/Core/IStreamSubscriptionManagerAdmin.cs type IStreamSubscriptionManagerAdmin (line 6) | public interface IStreamSubscriptionManagerAdmin method GetStreamSubscriptionManager (line 13) | IStreamSubscriptionManager GetStreamSubscriptionManager(string manager... class StreamSubscriptionManagerType (line 19) | public static class StreamSubscriptionManagerType FILE: src/Orleans.Streaming/Core/IStreamSubscriptionManagerRetriever.cs type IStreamSubscriptionManagerRetriever (line 6) | public interface IStreamSubscriptionManagerRetriever method GetStreamSubscriptionManager (line 12) | IStreamSubscriptionManager GetStreamSubscriptionManager(); FILE: src/Orleans.Streaming/Core/IStreamSubscriptionObserver.cs type IStreamSubscriptionObserver (line 8) | public interface IStreamSubscriptionObserver method OnSubscribed (line 15) | Task OnSubscribed(IStreamSubscriptionHandleFactory handleFactory); FILE: src/Orleans.Streaming/Core/ImplicitConsumerGrainExtensions.cs class ImplicitConsumerGrainExtensions (line 6) | public static class ImplicitConsumerGrainExtensions method GetImplicitStreamIdentity (line 13) | public static StreamIdentity GetImplicitStreamIdentity(this IGrainWith... FILE: src/Orleans.Streaming/Core/StreamIdentity.cs class StreamIdentity (line 14) | [Serializable, GenerateSerializer, Immutable] method StreamIdentity (line 22) | public StreamIdentity(Guid streamGuid, string streamNamespace) method Equals (line 41) | public override bool Equals(object obj) => obj is StreamIdentity ident... method GetHashCode (line 44) | public override int GetHashCode() => HashCode.Combine(Guid, Namespace); FILE: src/Orleans.Streaming/Core/StreamSequenceToken.cs class StreamSequenceToken (line 10) | [Serializable] method Equals (line 25) | public abstract bool Equals(StreamSequenceToken other); method CompareTo (line 28) | public abstract int CompareTo(StreamSequenceToken other); class StreamSequenceTokenUtilities (line 34) | public static class StreamSequenceTokenUtilities method Newer (line 42) | static public bool Newer(this StreamSequenceToken me, StreamSequenceTo... method Older (line 53) | static public bool Older(this StreamSequenceToken me, StreamSequenceTo... FILE: src/Orleans.Streaming/Core/StreamSubscription.cs class StreamSubscription (line 9) | [Serializable, GenerateSerializer, Immutable] method StreamSubscription (line 19) | public StreamSubscription(Guid subscriptionId, string streamProviderNa... FILE: src/Orleans.Streaming/Core/StreamSubscriptionHandle.cs class StreamSubscriptionHandle (line 12) | [Serializable] method UnsubscribeAsync (line 39) | public abstract Task UnsubscribeAsync(); method ResumeAsync (line 49) | public abstract Task> ResumeAsync(IAsyncOb... method ResumeAsync (line 59) | public abstract Task> ResumeAsync(IAsyncBa... method Equals (line 62) | public abstract bool Equals(StreamSubscriptionHandle other); FILE: src/Orleans.Streaming/Core/StreamSubscriptionManager.cs class StreamSubscriptionManager (line 9) | internal class StreamSubscriptionManager: IStreamSubscriptionManager method StreamSubscriptionManager (line 14) | public StreamSubscriptionManager(IStreamPubSub streamPubSub, string ma... method AddSubscription (line 20) | public async Task AddSubscription(string streamPro... method RemoveSubscription (line 30) | public async Task RemoveSubscription(string streamProviderName, Stream... method GetSubscriptions (line 36) | public Task> GetSubscriptions(string s... FILE: src/Orleans.Streaming/Core/StreamSubscriptionManagerAdmin.cs class StreamSubscriptionManagerAdmin (line 5) | internal class StreamSubscriptionManagerAdmin : IStreamSubscriptionManag... method StreamSubscriptionManagerAdmin (line 9) | public StreamSubscriptionManagerAdmin(IStreamProviderRuntime providerR... method GetStreamSubscriptionManager (line 17) | public IStreamSubscriptionManager GetStreamSubscriptionManager(string ... FILE: src/Orleans.Streaming/Extensions/AsyncBatchObservableExtensions.cs class AsyncBatchObservableExtensions (line 10) | public static class AsyncBatchObservableExtensions method SubscribeAsync (line 28) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 49) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 68) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 86) | public static Task> SubscribeAsync(this... FILE: src/Orleans.Streaming/Extensions/AsyncObservableExtensions.cs class AsyncObservableExtensions (line 9) | public static class AsyncObservableExtensions method SubscribeAsync (line 27) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 48) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 67) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 85) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 109) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 135) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 159) | public static Task> SubscribeAsync(this... method SubscribeAsync (line 182) | public static Task> SubscribeAsync(this... FILE: src/Orleans.Streaming/Extensions/GenericAsyncObserver.cs class GenericAsyncObserver (line 10) | internal class GenericAsyncObserver : IAsyncObserver method GenericAsyncObserver (line 16) | public GenericAsyncObserver(Func onNextA... method OnNextAsync (line 27) | public Task OnNextAsync(T item, StreamSequenceToken token = null) method OnCompletedAsync (line 32) | public Task OnCompletedAsync() method OnErrorAsync (line 37) | public Task OnErrorAsync(Exception ex) FILE: src/Orleans.Streaming/Extensions/GenericBatchAsyncObserver.cs class GenericAsyncBatchObserver (line 11) | internal class GenericAsyncBatchObserver : IAsyncBatchObserver method GenericAsyncBatchObserver (line 17) | public GenericAsyncBatchObserver(Func>, Task> ... method OnNextAsync (line 24) | public Task OnNextAsync(IList> items) method OnCompletedAsync (line 29) | public Task OnCompletedAsync() method OnErrorAsync (line 34) | public Task OnErrorAsync(Exception ex) FILE: src/Orleans.Streaming/Extensions/StreamSubscriptionHandleExtensions.cs class StreamSubscriptionHandleExtensions (line 10) | public static class StreamSubscriptionHandleExtensions method ResumeAsync (line 30) | public static Task> ResumeAsync(this St... method ResumeAsync (line 54) | public static Task> ResumeAsync(this St... method ResumeAsync (line 76) | public static Task> ResumeAsync(this St... method ResumeAsync (line 96) | public static Task> ResumeAsync(this St... method ResumeAsync (line 118) | public static Task> ResumeAsync(this St... method ResumeAsync (line 142) | public static Task> ResumeAsync(this St... method ResumeAsync (line 164) | public static Task> ResumeAsync(this St... method ResumeAsync (line 184) | public static Task> ResumeAsync(this St... FILE: src/Orleans.Streaming/Filtering/IStreamFilter.cs type IStreamFilter (line 8) | public interface IStreamFilter method ShouldDeliver (line 17) | bool ShouldDeliver(StreamId streamId, object item, string filterData); class NoOpStreamFilter (line 20) | internal sealed class NoOpStreamFilter : IStreamFilter method ShouldDeliver (line 22) | public bool ShouldDeliver(StreamId streamId, object item, string filte... FILE: src/Orleans.Streaming/Generator/GeneratorAdapterFactory.cs type StreamGeneratorCommand (line 18) | public enum StreamGeneratorCommand class GeneratorAdapterFactory (line 31) | public partial class GeneratorAdapterFactory : IQueueAdapterFactory, IQu... method GeneratorAdapterFactory (line 76) | public GeneratorAdapterFactory( method Init (line 96) | public void Init() method CreateBufferPoolIfNotCreatedYet (line 112) | private void CreateBufferPoolIfNotCreatedYet() method CreateAdapter (line 125) | public Task CreateAdapter() method GetQueueAdapterCache (line 131) | public IQueueAdapterCache GetQueueAdapterCache() method GetStreamQueueMapper (line 137) | public IStreamQueueMapper GetStreamQueueMapper() method GetDeliveryFailureHandler (line 143) | public Task GetDeliveryFailureHandler(QueueId q... method QueueMessageBatchAsync (line 149) | public Task QueueMessageBatchAsync(StreamId streamId, IEnumerable ExecuteCommand(int command, object arg) class Receiver (line 190) | private class Receiver : IQueueAdapterReceiver method Receiver (line 196) | public Receiver(IQueueAdapterReceiverMonitor receiverMonitor) method Initialize (line 201) | public Task Initialize(TimeSpan timeout) method GetQueueMessagesAsync (line 207) | public async Task> GetQueueMessagesAsync(int ... method MessagesDeliveredAsync (line 227) | public Task MessagesDeliveredAsync(IList messages) method Shutdown (line 232) | public Task Shutdown(TimeSpan timeout) method SetGeneratorOnReceiver (line 239) | private void SetGeneratorOnReceiver(Receiver receiver) method CreateQueueCache (line 257) | public IQueueCache CreateQueueCache(QueueId queueId) method Create (line 277) | public static GeneratorAdapterFactory Create(IServiceProvider services... method LogInfoNoGeneratorConfigurationFound (line 287) | [LoggerMessage( FILE: src/Orleans.Streaming/Generator/GeneratorPooledCache.cs class GeneratorPooledCache (line 15) | public class GeneratorPooledCache : IQueueCache, ICacheDataAdapter method GeneratorPooledCache (line 32) | public GeneratorPooledCache(IObjectPool bufferPool, I... method GetBatchContainer (line 42) | public IBatchContainer GetBatchContainer(ref CachedMessage cachedMessage) method GetSequenceToken (line 53) | public StreamSequenceToken GetSequenceToken(ref CachedMessage cachedMe... method QueueMessageToCachedMessage (line 58) | private CachedMessage QueueMessageToCachedMessage(GeneratedBatchContai... method SerializeMessageIntoPooledSegment (line 72) | private ArraySegment SerializeMessageIntoPooledSegment(Generated... method GetStreamPosition (line 102) | private static StreamPosition GetStreamPosition(GeneratedBatchContaine... class Cursor (line 107) | private class Cursor : IQueueCacheCursor method Cursor (line 113) | public Cursor(PooledQueueCache cache, StreamId streamId, StreamSeque... method Dispose (line 119) | public void Dispose() method GetCurrent (line 123) | public IBatchContainer GetCurrent(out Exception exception) method MoveNext (line 129) | public bool MoveNext() method Refresh (line 141) | public void Refresh(StreamSequenceToken token) method RecordDeliveryFailure (line 145) | public void RecordDeliveryFailure() method GetMaxAddCount (line 151) | public int GetMaxAddCount() { return 100; } method AddToCache (line 154) | public void AddToCache(IList messages) method TryPurgeFromCache (line 165) | public bool TryPurgeFromCache(out IList purgedItems) method GetCacheCursor (line 173) | public IQueueCacheCursor GetCacheCursor(StreamId streamId, StreamSeque... method IsUnderPressure (line 179) | public bool IsUnderPressure() FILE: src/Orleans.Streaming/Generator/Generators/GeneratedBatchContainer.cs class GeneratedBatchContainer (line 13) | [GenerateSerializer] method GeneratedBatchContainer (line 50) | public GeneratedBatchContainer(StreamId streamId, object payload, Even... method GetEvents (line 59) | public IEnumerable> GetEvents() method ImportRequestContext (line 65) | public bool ImportRequestContext() FILE: src/Orleans.Streaming/Generator/Generators/GeneratedEvent.cs class GeneratedEvent (line 8) | [Serializable] type GeneratedEventType (line 15) | public enum GeneratedEventType FILE: src/Orleans.Streaming/Generator/Generators/SimpleGenerator.cs class SimpleGenerator (line 15) | internal class SimpleGenerator : IStreamGenerator method Configure (line 22) | public void Configure(IServiceProvider serviceProvider, IStreamGenerat... method TryReadEvents (line 37) | public bool TryReadEvents(DateTime utcNow, int maxCount, out List( method AddPersistentStreams (line 60) | public static IClientBuilder AddPersistentStreams( FILE: src/Orleans.Streaming/Hosting/ClusterClientPersistentStreamConfigurator.cs type IPersistentStreamConfigurator (line 13) | public interface IPersistentStreamConfigurator : INamedServiceConfigurat... class PersistentStreamConfiguratorExtensions (line 18) | public static class PersistentStreamConfiguratorExtensions method ConfigureStreamPubSub (line 25) | public static void ConfigureStreamPubSub(this IPersistentStreamConfigu... type IClusterClientPersistentStreamConfigurator (line 34) | public interface IClusterClientPersistentStreamConfigurator : IPersisten... class ClusterClientPersistentStreamConfiguratorExtensions (line 39) | public static class ClusterClientPersistentStreamConfiguratorExtensions method ConfigureLifecycle (line 46) | public static void ConfigureLifecycle(this IClusterClientPersistentStr... class ClusterClientPersistentStreamConfigurator (line 55) | public class ClusterClientPersistentStreamConfigurator : NamedServiceCon... method ClusterClientPersistentStreamConfigurator (line 63) | public ClusterClientPersistentStreamConfigurator(string name, IClientB... FILE: src/Orleans.Streaming/Hosting/SiloBuilderMemoryStreamExtensions.cs class SiloBuilderMemoryStreamExtensions (line 9) | public static class SiloBuilderMemoryStreamExtensions method AddMemoryStreams (line 21) | public static ISiloBuilder AddMemoryStreams(this ISiloBuilder builder,... method AddMemoryStreams (line 35) | public static ISiloBuilder AddMemoryStreams(this ISiloBui... FILE: src/Orleans.Streaming/Hosting/SiloBuilderStreamingExtensions.cs class SiloBuilderStreamingExtensions (line 10) | public static class SiloBuilderStreamingExtensions method AddStreaming (line 17) | public static ISiloBuilder AddStreaming(this ISiloBuilder builder) => ... method AddPersistentStreams (line 27) | public static ISiloBuilder AddPersistentStreams( method AddStreamFilter (line 46) | public static ISiloBuilder AddStreamFilter(this ISiloBuilder builde... method AddStreamFilter (line 58) | public static IClientBuilder AddStreamFilter(this IClientBuilder bu... FILE: src/Orleans.Streaming/Hosting/StreamingServiceCollectionExtensions.cs class StreamingServiceCollectionExtensions (line 20) | public static class StreamingServiceCollectionExtensions method AddSiloStreaming (line 26) | public static void AddSiloStreaming(this IServiceCollection services) method AddClientStreaming (line 60) | public static void AddClientStreaming(this IServiceCollection services) method AddStreamFilter (line 85) | public static IServiceCollection AddStreamFilter(this IServiceColle... FILE: src/Orleans.Streaming/ISiloPersistentStreamConfigurator.cs type ISiloPersistentStreamConfigurator (line 13) | public interface ISiloPersistentStreamConfigurator : IPersistentStreamCo... class SiloPersistentStreamConfiguratorExtensions (line 18) | public static class SiloPersistentStreamConfiguratorExtensions method ConfigurePullingAgent (line 25) | public static void ConfigurePullingAgent(this ISiloPersistentStreamCon... method ConfigureLifecycle (line 35) | public static void ConfigureLifecycle(this ISiloPersistentStreamConfig... method ConfigurePartitionBalancing (line 45) | public static void ConfigurePartitionBalancing(this ISiloPersistentStr... method ConfigureBackoffProvider (line 55) | public static void ConfigureBackoffProvider(this ISiloPersistentStream... method ConfigureBackoffProvider (line 65) | public static void ConfigureBackoffProvider(this ISiloPersistentStream... method ConfigurePartitionBalancing (line 77) | public static void ConfigurePartitionBalancing( FILE: src/Orleans.Streaming/Internal/IInternalAsyncObservable.cs type IInternalAsyncObservable (line 6) | internal interface IInternalAsyncObservable : IAsyncObservable, IA... method ResumeAsync (line 8) | Task> ResumeAsync( method ResumeAsync (line 13) | Task> ResumeAsync( method UnsubscribeAsync (line 18) | Task UnsubscribeAsync(StreamSubscriptionHandle handle); method GetAllSubscriptions (line 20) | Task>> GetAllSubscriptions(); method Cleanup (line 22) | Task Cleanup(); type IInternalAsyncBatchObserver (line 26) | internal interface IInternalAsyncBatchObserver : IAsyncBatchProducer method Cleanup (line 28) | Task Cleanup(); FILE: src/Orleans.Streaming/Internal/IInternalStreamProvider.cs type IInternalStreamProvider (line 3) | internal interface IInternalStreamProvider method GetProducerInterface (line 5) | IInternalAsyncBatchObserver GetProducerInterface(IAsyncStream... method GetConsumerInterface (line 6) | IInternalAsyncObservable GetConsumerInterface(IAsyncStream st... FILE: src/Orleans.Streaming/Internal/IStreamControl.cs type IStreamControl (line 9) | internal interface IStreamControl method Cleanup (line 15) | Task Cleanup(bool cleanupProducers, bool cleanupConsumers); FILE: src/Orleans.Streaming/Internal/IStreamGrainExtensions.cs type IStreamConsumerExtension (line 9) | internal interface IStreamConsumerExtension : IGrainExtension method DeliverImmutable (line 11) | Task DeliverImmutable(GuidId subscriptionId, Qua... method DeliverMutable (line 12) | Task DeliverMutable(GuidId subscriptionId, Quali... method DeliverBatch (line 13) | Task DeliverBatch(GuidId subscriptionId, Qualifi... method CompleteStream (line 14) | Task CompleteStream(GuidId subscriptionId); method ErrorInStream (line 15) | Task ErrorInStream(GuidId subscriptionId, Exception exc); method GetSequenceToken (line 16) | Task GetSequenceToken(GuidId subscriptionId); type IStreamProducerExtension (line 20) | internal interface IStreamProducerExtension : IGrainExtension method AddSubscriber (line 22) | [AlwaysInterleave] method RemoveSubscriber (line 25) | [AlwaysInterleave] FILE: src/Orleans.Streaming/Internal/PeriodicAction.cs class PeriodicAction (line 5) | internal class PeriodicAction method PeriodicAction (line 11) | public PeriodicAction(TimeSpan period, Action action, DateTime? start ... method TryAction (line 18) | public bool TryAction(DateTime nowUtc) FILE: src/Orleans.Streaming/Internal/StreamConsumer.cs class StreamConsumer (line 11) | internal partial class StreamConsumer : IInternalAsyncObservable method StreamConsumer (line 28) | public StreamConsumer( method SubscribeAsync (line 52) | public Task> SubscribeAsync(IAsyncObserver... method SubscribeAsync (line 57) | public Task> SubscribeAsync( method SubscribeAsync (line 65) | public Task> SubscribeAsync(IAsyncBatchObs... method SubscribeAsync (line 70) | public Task> SubscribeAsync(IAsyncBatchObs... method SubscribeAsyncImpl (line 75) | private async Task> SubscribeAsyncImpl( method ResumeAsync (line 123) | public Task> ResumeAsync( method ResumeAsync (line 131) | public Task> ResumeAsync( method ResumeAsyncImpl (line 139) | private async Task> ResumeAsyncImpl( method UnsubscribeAsync (line 165) | public async Task UnsubscribeAsync(StreamSubscriptionHandle handle) method GetAllSubscriptions (line 185) | public async Task>> GetAllSubscripti... method Cleanup (line 196) | public async Task Cleanup() method InternalRemoveObserver (line 223) | internal bool InternalRemoveObserver(StreamSubscriptionHandle handle) method DiagGetConsumerObserversCount (line 228) | internal Task DiagGetConsumerObserversCount() method BindExtensionLazy (line 233) | private async Task BindExtensionLazy() method CheckHandleValidity (line 249) | private StreamSubscriptionHandleImpl CheckHandleValidity(StreamSubs... method LogDebugSubscribeToken (line 263) | [LoggerMessage( method LogDebugSubscribeRendezvous (line 269) | [LoggerMessage( method LogDebugResumeToken (line 275) | [LoggerMessage( method LogDebugResumeRendezvous (line 281) | [LoggerMessage( method LogDebugUnsubscribe (line 287) | [LoggerMessage( method LogDebugUnsubscribeRendezvous (line 293) | [LoggerMessage( method LogDebugCleanup (line 299) | [LoggerMessage( method LogWarningUnregisterConsumer (line 305) | [LoggerMessage( method LogDebugBindExtensionLazy (line 312) | [LoggerMessage( method LogDebugBindExtension (line 318) | [LoggerMessage( FILE: src/Orleans.Streaming/Internal/StreamConsumerExtension.cs type IStreamSubscriptionHandle (line 13) | internal interface IStreamSubscriptionHandle method DeliverItem (line 15) | Task DeliverItem(object item, StreamSequenceToke... method DeliverBatch (line 16) | Task DeliverBatch(IBatchContainer item, StreamHa... method CompleteStream (line 17) | Task CompleteStream(); method ErrorInStream (line 18) | Task ErrorInStream(Exception exc); method GetSequenceToken (line 19) | StreamHandshakeToken GetSequenceToken(); class StreamConsumerExtension (line 29) | [Serializable] method StreamConsumerExtension (line 45) | internal StreamConsumerExtension(IStreamProviderRuntime providerRt, IS... method SetObserver (line 52) | internal StreamSubscriptionHandleImpl SetObserver( method RemoveObserver (line 78) | public bool RemoveObserver(GuidId subscriptionId) method DeliverImmutable (line 83) | public Task DeliverImmutable(GuidId subscription... method DeliverMutable (line 88) | public async Task DeliverMutable(GuidId subscrip... method DeliverBatch (line 120) | public async Task DeliverBatch(GuidId subscripti... method CompleteStream (line 153) | public Task CompleteStream(GuidId subscriptionId) method ErrorInStream (line 170) | public Task ErrorInStream(GuidId subscriptionId, Exception exc) method GetSequenceToken (line 188) | public Task GetSequenceToken(GuidId subscriptionId) method DiagCountStreamObservers (line 194) | internal int DiagCountStreamObservers(QualifiedStreamId streamId) method GetAllStreamHandles (line 199) | internal List> GetAllStreamHandles() method LogDebugAddObserver (line 209) | [LoggerMessage( method LogErrorAddObserver (line 214) | [LoggerMessage( type ItemWithMaxLength (line 221) | private struct ItemWithMaxLength(object item) method ToString (line 223) | public override string ToString() method LogTraceDeliverItem (line 230) | [LoggerMessage( method LogWarningNoStreamForItem (line 235) | [LoggerMessage( method LogTraceDeliverBatch (line 241) | [LoggerMessage( method LogWarningNoStreamForBatch (line 246) | [LoggerMessage( method LogTraceCompleteStream (line 252) | [LoggerMessage( method LogWarningNoStreamForComplete (line 257) | [LoggerMessage( method LogTraceErrorInStream (line 263) | [LoggerMessage( method LogWarningNoStreamForError (line 268) | [LoggerMessage( FILE: src/Orleans.Streaming/Internal/StreamDirectory.cs class StreamDirectory (line 13) | internal class StreamDirectory : IAsyncDisposable method GetOrAddStream (line 17) | internal IAsyncStream GetOrAddStream(QualifiedStreamId streamId,... method Cleanup (line 29) | internal async Task Cleanup(bool cleanupProducers, bool cleanupConsumers) method Clear (line 48) | internal void Clear() method GetStreamControl (line 54) | private IStreamControl GetStreamControl(QualifiedStreamId streamId) method GetUsedStreamIds (line 61) | private List GetUsedStreamIds() method DisposeAsync (line 66) | public async ValueTask DisposeAsync() => await this.Cleanup(cleanupPro... FILE: src/Orleans.Streaming/Internal/StreamHandshakeToken.cs class StreamHandshakeToken (line 5) | [Serializable] method CreateStartToken (line 12) | public static StreamHandshakeToken CreateStartToken(StreamSequenceToke... method CreateDeliveyToken (line 18) | public static StreamHandshakeToken CreateDeliveyToken(StreamSequenceTo... method Equals (line 24) | public bool Equals(StreamHandshakeToken other) method Equals (line 32) | public override bool Equals(object obj) method GetHashCode (line 40) | public override int GetHashCode() => HashCode.Combine(GetType(), Token); class StartToken (line 43) | [Serializable] class DeliveryToken (line 47) | [Serializable] FILE: src/Orleans.Streaming/Internal/StreamImpl.cs class StreamImpl (line 12) | [Serializable] method StreamImpl (line 51) | public StreamImpl() method StreamImpl (line 55) | public StreamImpl(QualifiedStreamId streamId, IInternalStreamProvider ... method SubscribeAsync (line 65) | public Task> SubscribeAsync(IAsyncObserver... method SubscribeAsync (line 70) | public Task> SubscribeAsync(IAsyncObserver... method SubscribeAsync (line 75) | public Task> SubscribeAsync(IAsyncBatchObs... method SubscribeAsync (line 80) | public Task> SubscribeAsync(IAsyncBatchObs... method Cleanup (line 85) | public async Task Cleanup(bool cleanupProducers, bool cleanupConsumers) method OnNextAsync (line 102) | public Task OnNextAsync(T item, StreamSequenceToken? token = null) method OnNextBatchAsync (line 107) | public Task OnNextBatchAsync(IEnumerable batch, StreamSequenceToken... method OnCompletedAsync (line 112) | public Task OnCompletedAsync() method OnErrorAsync (line 118) | public Task OnErrorAsync(Exception ex) method ResumeAsync (line 124) | internal Task> ResumeAsync( method ResumeAsync (line 132) | internal Task> ResumeAsync( method GetAllSubscriptionHandles (line 140) | public Task>> GetAllSubscriptionHand... method UnsubscribeAsync (line 145) | internal Task UnsubscribeAsync(StreamSubscriptionHandle handle) method GetProducerInterface (line 150) | internal IInternalAsyncBatchObserver GetProducerInterface() method GetConsumerInterface (line 167) | internal IInternalAsyncObservable GetConsumerInterface() method GetStreamProvider (line 185) | private IInternalStreamProvider? GetStreamProvider() method CompareTo (line 190) | public int CompareTo(IAsyncStream? other) method Equals (line 196) | public bool Equals(IAsyncStream? other) method Equals (line 202) | public override bool Equals(object? obj) method GetHashCode (line 208) | public override int GetHashCode() method ToString (line 213) | public override string ToString() method OnDeserialized (line 218) | void IOnDeserialized.OnDeserialized(DeserializationContext context) FILE: src/Orleans.Streaming/Internal/StreamSubscriptionHandleImpl.cs class StreamSubscriptionHandleImpl (line 10) | [Serializable] method StreamSubscriptionHandleImpl (line 41) | [JsonConstructor] method StreamSubscriptionHandleImpl (line 47) | public StreamSubscriptionHandleImpl(GuidId subscriptionId, StreamImpl<... method StreamSubscriptionHandleImpl (line 52) | public StreamSubscriptionHandleImpl( method Invalidate (line 72) | public void Invalidate() method GetSequenceToken (line 79) | public StreamHandshakeToken GetSequenceToken() method UnsubscribeAsync (line 84) | public override Task UnsubscribeAsync() method ResumeAsync (line 90) | public override Task> ResumeAsync(IAsyncOb... method ResumeAsync (line 97) | public override Task> ResumeAsync(IAsyncBa... method DeliverBatch (line 103) | public async Task DeliverBatch(IBatchContainer b... method DeliverItem (line 147) | public async Task DeliverItem(object item, Strea... method NextBatch (line 190) | public async Task NextBatch(IBatchContainerBatch batchContainerBatch) method NextItem (line 219) | private Task NextItem(T item, StreamSequenceToken token) method NextItems (line 229) | private Task NextItems(IEnumerable> items) method CompleteStream (line 243) | public Task CompleteStream() method ErrorInStream (line 252) | public Task ErrorInStream(Exception ex) method SameStreamId (line 261) | internal bool SameStreamId(QualifiedStreamId streamId) method Equals (line 266) | public override bool Equals(StreamSubscriptionHandle other) method Equals (line 272) | public override bool Equals(object obj) method GetHashCode (line 277) | public override int GetHashCode() method ToString (line 282) | public override string ToString() FILE: src/Orleans.Streaming/Internal/StreamSubsriptionHandlerFactory.cs class StreamSubscriptionHandlerFactory (line 10) | public class StreamSubscriptionHandlerFactory : IStreamSubscriptionHandl... method StreamSubscriptionHandlerFactory (line 38) | public StreamSubscriptionHandlerFactory(IStreamProvider streamProvider... method Create (line 47) | public StreamSubscriptionHandle Create() FILE: src/Orleans.Streaming/InternalStreamId.cs type QualifiedStreamId (line 7) | [Immutable] method QualifiedStreamId (line 18) | public QualifiedStreamId(string providerName, StreamId streamId) method QualifiedStreamId (line 24) | private QualifiedStreamId(SerializationInfo info, StreamingContext con... method Equals (line 32) | public bool Equals(QualifiedStreamId other) => StreamId.Equals(other) ... method Equals (line 34) | public override bool Equals(object? obj) => obj is QualifiedStreamId o... method CompareTo (line 40) | public int CompareTo(QualifiedStreamId other) => StreamId.CompareTo(ot... method GetObjectData (line 42) | public void GetObjectData(SerializationInfo info, StreamingContext con... method GetHashCode (line 48) | public override int GetHashCode() => HashCode.Combine(ProviderName, St... method ToString (line 50) | public override string ToString() => $"{ProviderName}/{StreamId}"; method ToString (line 51) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 53) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method GetNamespace (line 56) | internal string? GetNamespace() => StreamId.GetNamespace(); FILE: src/Orleans.Streaming/JsonConverters/StreamImplConverter.cs class StreamImplConverter (line 13) | internal class StreamImplConverter : JsonConverter method StreamImplConverter (line 17) | public StreamImplConverter(IRuntimeClient runtimeClient) method CanConvert (line 22) | public override bool CanConvert(Type objectType) method ReadJson (line 25) | public override object? ReadJson(JsonReader reader, Type objectType, o... method WriteJson (line 46) | public override void WriteJson(JsonWriter writer, object? value, JsonS... FILE: src/Orleans.Streaming/JsonConverters/StreamingConverterConfigurator.cs class StreamingConverterConfigurator (line 9) | internal class StreamingConverterConfigurator : IPostConfigureOptions> Dequeue(int maxCount); FILE: src/Orleans.Streaming/MemoryStreams/MemoryAdapterFactory.cs class MemoryAdapterFactory (line 25) | public partial class MemoryAdapterFactory : IQueueAdapterFa... method MemoryAdapterFactory (line 75) | public MemoryAdapterFactory( method Init (line 100) | public void Init() method CreateBufferPoolIfNotCreatedYet (line 113) | private void CreateBufferPoolIfNotCreatedYet() method CreateAdapter (line 126) | public Task CreateAdapter() method GetQueueAdapterCache (line 132) | public IQueueAdapterCache GetQueueAdapterCache() method GetStreamQueueMapper (line 138) | public IStreamQueueMapper GetStreamQueueMapper() method CreateReceiver (line 144) | public IQueueAdapterReceiver CreateReceiver(QueueId queueId) method QueueMessageBatchAsync (line 154) | public async Task QueueMessageBatchAsync(StreamId streamId, IEnumer... method CreateQueueCache (line 172) | public IQueueCache CreateQueueCache(QueueId queueId) method GetDeliveryFailureHandler (line 182) | public Task GetDeliveryFailureHandler(QueueId q... method GenerateDeterministicGuid (line 190) | private Guid GenerateDeterministicGuid(QueueId queueId) method GetQueueGrain (line 202) | private IMemoryStreamQueueGrain GetQueueGrain(QueueId queueId) method Create (line 213) | public static MemoryAdapterFactory Create(IServiceProvide... method LogErrorQueueMessageBatchAsync (line 223) | [LoggerMessage( FILE: src/Orleans.Streaming/MemoryStreams/MemoryAdapterReceiver.cs class MemoryAdapterReceiver (line 12) | internal partial class MemoryAdapterReceiver : IQueueAdapte... method MemoryAdapterReceiver (line 21) | public MemoryAdapterReceiver(IMemoryStreamQueueGrain queueGrain, ILogg... method Initialize (line 30) | public Task Initialize(TimeSpan timeout) method GetQueueMessagesAsync (line 36) | public async Task> GetQueueMessagesAsync(int ma... method MessagesDeliveredAsync (line 70) | public Task MessagesDeliveredAsync(IList messages) method Shutdown (line 75) | public async Task Shutdown(TimeSpan timeout) method LogErrorGetQueueMessagesAsync (line 94) | [LoggerMessage( FILE: src/Orleans.Streaming/MemoryStreams/MemoryBatchContainer.cs class MemoryBatchContainer (line 11) | [Serializable] method Payload (line 32) | private MemoryMessageBody Payload() method MemoryBatchContainer (line 37) | public MemoryBatchContainer(MemoryMessageData messageData, TSerializer... method GetEvents (line 44) | public IEnumerable> GetEvents() method ImportRequestContext (line 49) | public bool ImportRequestContext() method OnDeserialized (line 60) | void IOnDeserialized.OnDeserialized(DeserializationContext context) FILE: src/Orleans.Streaming/MemoryStreams/MemoryMessageBody.cs type IMemoryMessageBodySerializer (line 13) | public interface IMemoryMessageBodySerializer method Serialize (line 20) | ArraySegment Serialize(MemoryMessageBody body); method Deserialize (line 27) | MemoryMessageBody Deserialize(ArraySegment bodyBytes); class DefaultMemoryMessageBodySerializer (line 33) | [Serializable, GenerateSerializer, Immutable] method DefaultMemoryMessageBodySerializer (line 44) | public DefaultMemoryMessageBodySerializer(Serializer Serialize(MemoryMessageBody body) method Deserialize (line 56) | public MemoryMessageBody Deserialize(ArraySegment bodyBytes) method OnDeserialized (line 62) | void IOnDeserialized.OnDeserialized(DeserializationContext context) class MemoryMessageBody (line 71) | [Serializable] method MemoryMessageBody (line 80) | public MemoryMessageBody(IEnumerable events, Dictionary method GetOrCreateSerializer (line 14) | public static TSerializer GetOrCreateSerializer(IServiceProvider servi... FILE: src/Orleans.Streaming/MemoryStreams/MemoryMessageData.cs type MemoryMessageData (line 10) | [Serializable] method Create (line 44) | internal static MemoryMessageData Create(StreamId streamId, ArraySegme... FILE: src/Orleans.Streaming/MemoryStreams/MemoryPooledCache.cs class MemoryPooledCache (line 16) | public class MemoryPooledCache : IQueueCache, ICacheDataAda... method MemoryPooledCache (line 35) | public MemoryPooledCache( method QueueMessageToCachedMessage (line 50) | private CachedMessage QueueMessageToCachedMessage(MemoryMessageData qu... method SerializeMessageIntoPooledSegment (line 64) | private ArraySegment SerializeMessageIntoPooledSegment(MemoryMes... method GetStreamPosition (line 91) | private static StreamPosition GetStreamPosition(MemoryMessageData queu... class Cursor (line 97) | private class Cursor : IQueueCacheCursor method Cursor (line 103) | public Cursor(PooledQueueCache cache, StreamId streamId, method Dispose (line 110) | public void Dispose() method GetCurrent (line 114) | public IBatchContainer GetCurrent(out Exception exception) method MoveNext (line 120) | public bool MoveNext() method Refresh (line 132) | public void Refresh(StreamSequenceToken token) method RecordDeliveryFailure (line 136) | public void RecordDeliveryFailure() method GetMaxAddCount (line 142) | public int GetMaxAddCount() method AddToCache (line 148) | public void AddToCache(IList messages) method TryPurgeFromCache (line 160) | public bool TryPurgeFromCache(out IList purgedItems) method GetCacheCursor (line 168) | public IQueueCacheCursor GetCacheCursor(StreamId streamId, StreamSeque... method IsUnderPressure (line 174) | public bool IsUnderPressure() method GetBatchContainer (line 180) | public IBatchContainer GetBatchContainer(ref CachedMessage cachedMessage) method GetSequenceToken (line 191) | public StreamSequenceToken GetSequenceToken(ref CachedMessage cachedMe... FILE: src/Orleans.Streaming/MemoryStreams/MemoryStreamBuilder.cs type IMemoryStreamConfigurator (line 11) | public interface IMemoryStreamConfigurator : INamedServiceConfigurator { } class MemoryStreamConfiguratorExtensions (line 16) | public static class MemoryStreamConfiguratorExtensions method ConfigurePartitioning (line 23) | public static void ConfigurePartitioning(this IMemoryStreamConfigurato... type ISiloMemoryStreamConfigurator (line 32) | public interface ISiloMemoryStreamConfigurator : IMemoryStreamConfigurat... class SiloMemoryStreamConfigurator (line 38) | public class SiloMemoryStreamConfigurator : SiloRecoverable... method SiloMemoryStreamConfigurator (line 46) | public SiloMemoryStreamConfigurator( type IClusterClientMemoryStreamConfigurator (line 57) | public interface IClusterClientMemoryStreamConfigurator : IMemoryStreamC... class ClusterClientMemoryStreamConfigurator (line 63) | public class ClusterClientMemoryStreamConfigurator : Cluste... method ClusterClientMemoryStreamConfigurator (line 71) | public ClusterClientMemoryStreamConfigurator(string name, IClientBuild... FILE: src/Orleans.Streaming/MemoryStreams/MemoryStreamProviderBuilder.cs class MemoryStreamProviderBuilder (line 10) | internal sealed class MemoryStreamProviderBuilder : IProviderBuilder> Dequeue(int maxCount) method OnDehydrate (line 56) | void IGrainMigrationParticipant.OnDehydrate(IDehydrationContext dehydr... method OnRehydrate (line 61) | void IGrainMigrationParticipant.OnRehydrate(IRehydrationContext rehydr... FILE: src/Orleans.Streaming/PersistentStreams/IDeploymentConfiguration.cs type IDeploymentConfiguration (line 8) | public interface IDeploymentConfiguration method GetAllSiloNames (line 14) | IList GetAllSiloNames(); FILE: src/Orleans.Streaming/PersistentStreams/IPersistentStreamPullingAgent.cs type IPersistentStreamPullingAgent (line 6) | internal interface IPersistentStreamPullingAgent : ISystemTarget, IStrea... method Initialize (line 8) | Task Initialize(); method Shutdown (line 9) | Task Shutdown(); type IPersistentStreamPullingManager (line 12) | internal interface IPersistentStreamPullingManager : ISystemTarget method Initialize (line 14) | Task Initialize(); method Stop (line 15) | Task Stop(); method StartAgents (line 16) | Task StartAgents(); method StopAgents (line 17) | Task StopAgents(); method ExecuteCommand (line 18) | Task ExecuteCommand(PersistentStreamProviderCommand command, o... FILE: src/Orleans.Streaming/PersistentStreams/IQueueDataAdapter.cs type IQueueDataAdapter (line 9) | public interface IQueueDataAdapter method ToQueueMessage (line 20) | TQueueMessage ToQueueMessage(StreamId streamId, IEnumerable even... method FromQueueMessage (line 36) | TMessageBatch FromQueueMessage(TQueueMessage queueMessage, long sequen... type IQueueDataAdapter (line 28) | public interface IQueueDataAdapter : IQueu... method ToQueueMessage (line 20) | TQueueMessage ToQueueMessage(StreamId streamId, IEnumerable even... method FromQueueMessage (line 36) | TMessageBatch FromQueueMessage(TQueueMessage queueMessage, long sequen... FILE: src/Orleans.Streaming/PersistentStreams/IStreamFailureHandler.cs type IStreamFailureHandler (line 9) | public interface IStreamFailureHandler method OnDeliveryFailure (line 25) | Task OnDeliveryFailure(GuidId subscriptionId, string streamProviderNam... method OnSubscriptionFailure (line 35) | Task OnSubscriptionFailure(GuidId subscriptionId, string streamProvide... FILE: src/Orleans.Streaming/PersistentStreams/IStreamQueueBalancer.cs type IStreamQueueBalancer (line 12) | public interface IStreamQueueBalancer method Initialize (line 19) | Task Initialize(IStreamQueueMapper queueMapper); method Shutdown (line 25) | Task Shutdown(); method GetMyQueues (line 31) | IEnumerable GetMyQueues(); method SubscribeToQueueDistributionChangeEvents (line 38) | bool SubscribeToQueueDistributionChangeEvents(IStreamQueueBalanceListe... method UnSubscribeFromQueueDistributionChangeEvents (line 45) | bool UnSubscribeFromQueueDistributionChangeEvents(IStreamQueueBalanceL... type IStreamQueueBalanceListener (line 54) | public interface IStreamQueueBalanceListener method QueueDistributionChangeNotification (line 60) | Task QueueDistributionChangeNotification(); FILE: src/Orleans.Streaming/PersistentStreams/IStreamQueueCheckpointer.cs type IStreamQueueCheckpointerFactory (line 9) | public interface IStreamQueueCheckpointerFactory method Create (line 16) | Task> Create(string partition); type IStreamQueueCheckpointer (line 23) | public interface IStreamQueueCheckpointer method Load (line 35) | Task Load(); method Update (line 42) | void Update(TCheckpoint offset, DateTime utcNow); FILE: src/Orleans.Streaming/PersistentStreams/NoOpStreamFailureHandler.cs class NoOpStreamDeliveryFailureHandler (line 9) | public class NoOpStreamDeliveryFailureHandler : IStreamFailureHandler method NoOpStreamDeliveryFailureHandler (line 14) | public NoOpStreamDeliveryFailureHandler() method NoOpStreamDeliveryFailureHandler (line 23) | public NoOpStreamDeliveryFailureHandler(bool faultOnError) method OnDeliveryFailure (line 32) | public Task OnDeliveryFailure(GuidId subscriptionId, string streamProv... method OnSubscriptionFailure (line 39) | public Task OnSubscriptionFailure(GuidId subscriptionId, string stream... FILE: src/Orleans.Streaming/PersistentStreams/Options/PersistentStreamProviderOptions.cs class StreamLifecycleOptions (line 10) | public class StreamLifecycleOptions type RunState (line 15) | [Serializable] class StreamPubSubOptions (line 64) | public class StreamPubSubOptions class StreamPullingAgentOptions (line 77) | public class StreamPullingAgentOptions FILE: src/Orleans.Streaming/PersistentStreams/PersistentStreamProducer.cs class PersistentStreamProducer (line 11) | internal partial class PersistentStreamProducer : IInternalAsyncBatch... method PersistentStreamProducer (line 19) | internal PersistentStreamProducer(StreamImpl stream, IStreamProvide... method OnNextAsync (line 29) | public Task OnNextAsync(T item, StreamSequenceToken token) method OnNextBatchAsync (line 34) | public Task OnNextBatchAsync(IEnumerable batch, StreamSequenceToken... method OnCompletedAsync (line 40) | public Task OnCompletedAsync() method OnErrorAsync (line 46) | public Task OnErrorAsync(Exception ex) method Cleanup (line 52) | public Task Cleanup() method LogCreatedPersistentStreamProducer (line 57) | [LoggerMessage( FILE: src/Orleans.Streaming/PersistentStreams/PersistentStreamProvider.cs type PersistentStreamProviderCommand (line 19) | [Serializable] class PersistentStreamProvider (line 68) | public partial class PersistentStreamProvider : IStreamProvider, IIntern... method PersistentStreamProvider (line 84) | public PersistentStreamProvider( method Init (line 103) | private async Task Init(CancellationToken token) method Start (line 118) | private async Task Start(CancellationToken token) method GetStreamSubscriptionManager (line 137) | public IStreamSubscriptionManager GetStreamSubscriptionManager() method Close (line 142) | private async Task Close(CancellationToken token) method GetStream (line 155) | public IAsyncStream GetStream(StreamId streamId) method GetProducerInterface (line 162) | IInternalAsyncBatchObserver IInternalStreamProvider.GetProducerInte... method GetConsumerInterface (line 171) | IInternalAsyncObservable IInternalStreamProvider.GetConsumerInterfa... method GetConsumerInterfaceImpl (line 176) | private IInternalAsyncObservable GetConsumerInterfaceImpl(IAsync... method ExecuteCommand (line 181) | public Task ExecuteCommand(int command, object arg) method Participate (line 208) | public void Participate(ILifecycleObservable lifecycle) method Create (line 214) | public static IStreamProvider Create(IServiceProvider services, string... method ParticipateIn (line 221) | public static ILifecycleParticipant ParticipateIn DoHandshakeWithConsumer( method RemoveSubscriber (line 315) | public Task RemoveSubscriber(GuidId subscriptionId, QualifiedStreamId ... method RemoveSubscriber_Impl (line 321) | public void RemoveSubscriber_Impl(GuidId subscriptionId, QualifiedStre... method AsyncTimerCallback (line 337) | private Task AsyncTimerCallback(QueueId queueId, CancellationToken can... method PumpQueue (line 343) | private async Task PumpQueue(QueueId queueId, CancellationToken cancel... method ReadFromQueue (line 399) | private async Task ReadFromQueue(QueueId myQueueId, IQueueAdapte... method CleanupPubSubCache (line 470) | private void CleanupPubSubCache(DateTime now) method RegisterStream (line 482) | private async Task RegisterStream(QualifiedStreamId streamId, StreamSe... method StartInactiveCursors (line 504) | private void StartInactiveCursors(StreamConsumerCollection streamData,... method RunConsumerCursor (line 529) | private async Task RunConsumerCursor(StreamConsumerData consumerData) method GetBatchForConsumer (line 614) | private IBatchContainer GetBatchForConsumer(IQueueCacheCursor cursor, ... method DeliverBatchToConsumer (line 657) | private async Task DeliverBatchToConsumer(Stream... method ContextualizedDeliverBatchToConsumer (line 675) | private static Task ContextualizedDeliverBatchTo... method DeliverErrorToConsumer (line 693) | private static async Task DeliverErrorToConsumer(StreamConsumerData co... method ErrorProtocol (line 711) | private async Task ErrorProtocol(StreamConsumerData consumerData... method PubsubRegisterProducer (line 757) | private static async Task> PubsubRegiste... method RegisterAsStreamProducer (line 772) | private async Task RegisterAsStreamProducer(QualifiedStreamId streamId... method ShouldDeliverBatch (line 804) | private bool ShouldDeliverBatch(StreamId streamId, IBatchContainer bat... type QueueIdLogRecord (line 825) | private readonly struct QueueIdLogRecord(QueueId queueId) method ToString (line 827) | public override string ToString() => queueId.ToStringWithHashCode(); method LogInfoCreated (line 830) | [LoggerMessage( method LogInfoInit (line 837) | [LoggerMessage( method LogErrorCreatingQueueCache (line 844) | [LoggerMessage( method LogErrorCreatingReceiver (line 852) | [LoggerMessage( method LogErrorReceiverInit (line 859) | [LoggerMessage( method LogInfoTakingQueue (line 866) | [LoggerMessage( method LogInfoShutdown (line 873) | [LoggerMessage( method LogInfoUnregisterProducer (line 880) | [LoggerMessage( method LogWarningUnregisterProducer (line 887) | [LoggerMessage( method LogDebugAddSubscriber (line 894) | [LoggerMessage( method LogDebugRemovedConsumer (line 901) | [LoggerMessage( method LogErrorGivingUpReading (line 908) | [LoggerMessage( method LogErrorRetrying (line 915) | [LoggerMessage( method LogWarningMessagesDeliveredAsync (line 923) | [LoggerMessage( method LogInfoStreamCacheUnderPressure (line 930) | [LoggerMessage( method LogTraceGotMessages (line 937) | [LoggerMessage( method LogDebugPulledNewMessages (line 944) | [LoggerMessage( method LogErrorDeliveringMessages (line 950) | [LoggerMessage( method LogErrorRunConsumerCursor (line 957) | [LoggerMessage( method LogWarningFailedToDeliverMessage (line 964) | [LoggerMessage( method LogWarningConsumerIsDead (line 970) | [LoggerMessage( method LogErrorRegisterAsStreamProducer (line 977) | [LoggerMessage( method LogDebugGotBackSubscribers (line 984) | [LoggerMessage( method LogErrorIgnoredRegisterAsStreamProducer (line 991) | [LoggerMessage( method LogWarningFilterEvaluation (line 998) | [LoggerMessage( FILE: src/Orleans.Streaming/PersistentStreams/PersistentStreamPullingManager.cs class PersistentStreamPullingManager (line 18) | internal sealed partial class PersistentStreamPullingManager : SystemTar... method PersistentStreamPullingManager (line 46) | internal PersistentStreamPullingManager( method Initialize (line 96) | public async Task Initialize() method Stop (line 110) | public async Task Stop() method StartAgents (line 122) | public async Task StartAgents() method StopAgents (line 132) | public async Task StopAgents() method QueueDistributionChangeNotification (line 148) | public Task QueueDistributionChangeNotification() method HandleQueueDistributionChangeNotification (line 153) | public Task HandleQueueDistributionChangeNotification() method QueueDistributionChangeNotification (line 179) | private async Task QueueDistributionChangeNotification(int notificatio... method AddNewQueues (line 216) | private async Task AddNewQueues(IEnumerable myQueues, bool fa... method InitAgent (line 291) | private async Task InitAgent(PersistentStreamPullingAgent agent) method RemoveQueues (line 307) | private async Task RemoveQueues(List queuesToRemove) method ExecuteCommand (line 352) | public async Task ExecuteCommand(PersistentStreamProviderComma... method QueueCommandForExecution (line 392) | private Task QueueCommandForExecution(PersistentStreamProviderCommand ... method PrintQueues (line 416) | private static string PrintQueues(ICollection myQueues) => Ut... method AsyncTimerCallback (line 419) | private Task AsyncTimerCallback(object state) method LogInfoCreated (line 425) | [LoggerMessage( method LogInfoInit (line 432) | [LoggerMessage( type QueueIdsLogRecord (line 439) | private readonly struct QueueIdsLogRecord(ICollection queues) method ToString (line 441) | public override string ToString() => PrintQueues(queues); method LogInfoInitialized (line 444) | [LoggerMessage( method LogInfoStarting (line 452) | [LoggerMessage( method LogInfoStarted (line 459) | [LoggerMessage( method LogInfoStopping (line 466) | [LoggerMessage( method LogInfoStopped (line 473) | [LoggerMessage( method LogInfoGotQueueChangeNotification (line 480) | [LoggerMessage( method LogInfoSkipQueueChangeNotification (line 487) | [LoggerMessage( method LogInfoExecutingQueueChangeNotification (line 495) | [LoggerMessage( method LogInfoDoneExecutingQueueChangeNotification (line 502) | [LoggerMessage( method LogErrorCreatingAgent (line 509) | [LoggerMessage( type AgentsLogRecord (line 516) | private readonly struct AgentsLogRecord(List Utils.EnumerableToString(agents... method LogInfoAddedQueues (line 521) | [LoggerMessage( method LogErrorInitializingAgent (line 528) | [LoggerMessage( method LogInfoRemovingAgents (line 535) | [LoggerMessage( method LogInfoRemovedQueues (line 542) | [LoggerMessage( method LogInfoGotCommand (line 549) | [LoggerMessage( method LogInfoDoneExecutingCommand (line 556) | [LoggerMessage( method LogInfoSkipCommandExecution (line 563) | [LoggerMessage( method LogInfoPeriodicPrint (line 570) | [LoggerMessage( FILE: src/Orleans.Streaming/PersistentStreams/QueueStreamDataStructures.cs type StreamConsumerDataState (line 8) | [Serializable] class StreamConsumerData (line 15) | [Serializable] method StreamConsumerData (line 39) | public StreamConsumerData(GuidId subscriptionId, QualifiedStreamId str... method SafeDisposeCursor (line 47) | internal void SafeDisposeCursor(ILogger logger) FILE: src/Orleans.Streaming/PersistentStreams/StreamConsumerCollection.cs class StreamConsumerCollection (line 9) | [Serializable] method StreamConsumerCollection (line 21) | public StreamConsumerCollection(DateTime now) method AddConsumer (line 27) | public StreamConsumerData AddConsumer(GuidId subscriptionId, Qualified... method RemoveConsumer (line 35) | public bool RemoveConsumer(GuidId subscriptionId, ILogger logger) method Contains (line 43) | public bool Contains(GuidId subscriptionId) method TryGetConsumer (line 48) | public bool TryGetConsumer(GuidId subscriptionId, out StreamConsumerDa... method AllConsumers (line 53) | public IEnumerable AllConsumers() method DisposeAll (line 58) | public void DisposeAll(ILogger logger) method RefreshActivity (line 73) | public void RefreshActivity(DateTime now) method IsInactive (line 78) | public bool IsInactive(DateTime now, TimeSpan inactivityPeriod) FILE: src/Orleans.Streaming/PersistentStreams/StreamEventDeliveryFailureException.cs class StreamEventDeliveryFailureException (line 10) | [Serializable] method StreamEventDeliveryFailureException (line 20) | public StreamEventDeliveryFailureException() { } method StreamEventDeliveryFailureException (line 26) | public StreamEventDeliveryFailureException(string message) : base(mess... method StreamEventDeliveryFailureException (line 32) | internal StreamEventDeliveryFailureException(QualifiedStreamId streamId) method StreamEventDeliveryFailureException (line 40) | public StreamEventDeliveryFailureException(string message, Exception i... method StreamEventDeliveryFailureException (line 47) | [Obsolete] FILE: src/Orleans.Streaming/PersistentStreams/StreamPosition.cs class StreamPosition (line 11) | public class StreamPosition method StreamPosition (line 18) | public StreamPosition(StreamId streamId, StreamSequenceToken sequenceT... FILE: src/Orleans.Streaming/Predicates/AllStreamNamespacesPredicate.cs class AllStreamNamespacesPredicate (line 6) | internal class AllStreamNamespacesPredicate : IStreamNamespacePredicate method IsMatch (line 12) | public bool IsMatch(string streamNamespace) FILE: src/Orleans.Streaming/Predicates/ExactMatchStreamNamespacePredicate.cs class ExactMatchStreamNamespacePredicate (line 8) | [Serializable, GenerateSerializer, Immutable] method ExactMatchStreamNamespacePredicate (line 20) | public ExactMatchStreamNamespacePredicate(string targetStreamNamespace) method IsMatch (line 29) | public bool IsMatch(string streamNamespace) FILE: src/Orleans.Streaming/Predicates/IStreamNamespacePredicate.cs type IStreamNamespacePredicate (line 8) | public interface IStreamNamespacePredicate method IsMatch (line 16) | bool IsMatch(string streamNamespace); type IStreamNamespacePredicateProvider (line 28) | public interface IStreamNamespacePredicateProvider method TryGetPredicate (line 33) | bool TryGetPredicate(string predicatePattern, out IStreamNamespacePred... FILE: src/Orleans.Streaming/Predicates/RegexStreamNamespacePredicate.cs class RegexStreamNamespacePredicate (line 10) | public class RegexStreamNamespacePredicate : IStreamNamespacePredicate method RegexStreamNamespacePredicate (line 24) | public RegexStreamNamespacePredicate(string regex) method IsMatch (line 31) | public bool IsMatch(string streamNameSpace) FILE: src/Orleans.Streaming/Predicates/StreamSubscriptionAttributes.cs class ImplicitStreamSubscriptionAttribute (line 13) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] method ImplicitStreamSubscriptionAttribute (line 33) | public ImplicitStreamSubscriptionAttribute() method ImplicitStreamSubscriptionAttribute (line 43) | public ImplicitStreamSubscriptionAttribute(string streamNamespace, str... method ImplicitStreamSubscriptionAttribute (line 55) | public ImplicitStreamSubscriptionAttribute(Type predicateType, string ... method ImplicitStreamSubscriptionAttribute (line 67) | public ImplicitStreamSubscriptionAttribute(IStreamNamespacePredicate p... method GetBindings (line 74) | public IEnumerable> GetBindings(IServicePro... class RegexImplicitStreamSubscriptionAttribute (line 110) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] method RegexImplicitStreamSubscriptionAttribute (line 117) | public RegexImplicitStreamSubscriptionAttribute([StringSyntax(StringSy... FILE: src/Orleans.Streaming/ProviderErrorCode.cs type ProviderErrorCode (line 3) | internal enum ProviderErrorCode FILE: src/Orleans.Streaming/Providers/ClientStreamingProviderRuntime.cs class ClientStreamingProviderRuntime (line 10) | internal class ClientStreamingProviderRuntime : IStreamProviderRuntime, ... method ClientStreamingProviderRuntime (line 21) | public ClientStreamingProviderRuntime( method GetStreamDirectory (line 44) | public StreamDirectory GetStreamDirectory() method Reset (line 49) | public async Task Reset(bool cleanup = true) method ExecutingEntityIdentity (line 62) | public string ExecutingEntityIdentity() method BindExtension (line 67) | public (TExtension, TExtensionInterface) BindExtension GetStream(StreamId streamId); class StreamProviderExtensions (line 35) | public static class StreamProviderExtensions method GetStream (line 44) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 54) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 63) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 73) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 82) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 92) | public static IAsyncStream GetStream(this IStreamProvider stream... FILE: src/Orleans.Streaming/Providers/IStreamProviderRuntime.cs type IStreamProviderRuntime (line 12) | internal interface IStreamProviderRuntime : IProviderRuntime method ExecutingEntityIdentity (line 18) | string ExecutingEntityIdentity(); method GetStreamDirectory (line 24) | StreamDirectory GetStreamDirectory(); method PubSub (line 30) | IStreamPubSub PubSub(StreamPubSubType pubSubType); type ISiloSideStreamProviderRuntime (line 36) | internal interface ISiloSideStreamProviderRuntime : IStreamProviderRuntime method InitializePullingAgents (line 39) | Task InitializePullingAgents( type StreamPubSubType (line 48) | public enum StreamPubSubType type IStreamPubSub (line 66) | public interface IStreamPubSub // Compare with: IPubSubRendezvousGrain method RegisterProducer (line 68) | Task> RegisterProducer(QualifiedStreamId... method UnregisterProducer (line 70) | Task UnregisterProducer(QualifiedStreamId streamId, GrainId streamProd... method RegisterConsumer (line 72) | Task RegisterConsumer(GuidId subscriptionId, QualifiedStreamId streamI... method UnregisterConsumer (line 74) | Task UnregisterConsumer(GuidId subscriptionId, QualifiedStreamId strea... method ProducerCount (line 76) | Task ProducerCount(QualifiedStreamId streamId); method ConsumerCount (line 78) | Task ConsumerCount(QualifiedStreamId streamId); method GetAllSubscriptions (line 80) | Task> GetAllSubscriptions(QualifiedStreamId s... method CreateSubscriptionId (line 82) | GuidId CreateSubscriptionId(QualifiedStreamId streamId, GrainId stream... method FaultSubscription (line 84) | Task FaultSubscription(QualifiedStreamId streamId, GuidId subscr... FILE: src/Orleans.Streaming/Providers/ProviderStartException.cs class ProviderStartException (line 10) | [Serializable] method ProviderStartException (line 17) | public ProviderStartException() method ProviderStartException (line 24) | public ProviderStartException(string message) method ProviderStartException (line 33) | public ProviderStartException(string message, Exception innerException) method ProviderStartException (line 42) | [Obsolete] FILE: src/Orleans.Streaming/Providers/SiloStreamProviderRuntime.cs class SiloStreamProviderRuntime (line 13) | internal partial class SiloStreamProviderRuntime : ISiloSideStreamProvid... method SiloStreamProviderRuntime (line 29) | public SiloStreamProviderRuntime( method PubSub (line 49) | public IStreamPubSub PubSub(StreamPubSubType pubSubType) method InitializePullingAgents (line 64) | public async Task InitializePullingAg... method CreateBackoffProviders (line 96) | private (IBackoffProvider, IBackoffProvider) CreateBackoffProviders(st... method CreateQueueBalancer (line 107) | private IStreamQueueBalancer CreateQueueBalancer(string streamProvider... method ExecutingEntityIdentity (line 125) | public string ExecutingEntityIdentity() => runtimeClient.CurrentActiva... method GetStreamDirectory (line 128) | public StreamDirectory GetStreamDirectory() method BindExtension (line 145) | public (TExtension, TExtensionInterface) BindExtension> RegisterProducer(QualifiedS... method UnregisterProducer (line 24) | public Task UnregisterProducer(QualifiedStreamId streamId, GrainId str... method RegisterConsumer (line 30) | public Task RegisterConsumer(GuidId subscriptionId, QualifiedStreamId ... method UnregisterConsumer (line 36) | public Task UnregisterConsumer(GuidId subscriptionId, QualifiedStreamI... method ProducerCount (line 42) | public Task ProducerCount(QualifiedStreamId streamId) method ConsumerCount (line 48) | public Task ConsumerCount(QualifiedStreamId streamId) method GetAllSubscriptions (line 54) | public Task> GetAllSubscriptions(QualifiedStr... method GetRendezvousGrain (line 60) | private IPubSubRendezvousGrain GetRendezvousGrain(QualifiedStreamId st... method CreateSubscriptionId (line 65) | public GuidId CreateSubscriptionId(QualifiedStreamId streamId, GrainId... method FaultSubscription (line 71) | public async Task FaultSubscription(QualifiedStreamId streamId, ... FILE: src/Orleans.Streaming/PubSub/IPubSubRendezvousGrain.cs type IPubSubRendezvousGrain (line 8) | internal interface IPubSubRendezvousGrain : IGrainWithStringKey method RegisterProducer (line 10) | Task> RegisterProducer(QualifiedStreamId... method UnregisterProducer (line 12) | Task UnregisterProducer(QualifiedStreamId streamId, GrainId streamProd... method RegisterConsumer (line 14) | Task RegisterConsumer(GuidId subscriptionId, QualifiedStreamId streamI... method UnregisterConsumer (line 16) | Task UnregisterConsumer(GuidId subscriptionId, QualifiedStreamId strea... method ProducerCount (line 18) | Task ProducerCount(QualifiedStreamId streamId); method ConsumerCount (line 20) | Task ConsumerCount(QualifiedStreamId streamId); method DiagGetConsumers (line 22) | Task DiagGetConsumers(QualifiedStreamId str... method Validate (line 24) | Task Validate(); method GetAllSubscriptions (line 26) | Task> GetAllSubscriptions(QualifiedStreamId s... method FaultSubscription (line 28) | Task FaultSubscription(GuidId subscriptionId); FILE: src/Orleans.Streaming/PubSub/ImplicitStreamPubSub.cs class ImplicitStreamPubSub (line 10) | internal class ImplicitStreamPubSub : IStreamPubSub method ImplicitStreamPubSub (line 15) | public ImplicitStreamPubSub(IInternalGrainFactory grainFactory, Implic... method RegisterProducer (line 26) | public Task> RegisterProducer(QualifiedS... method UnregisterProducer (line 40) | public Task UnregisterProducer(QualifiedStreamId streamId, GrainId str... method RegisterConsumer (line 45) | public Task RegisterConsumer(GuidId subscriptionId, QualifiedStreamId ... method UnregisterConsumer (line 55) | public Task UnregisterConsumer(GuidId subscriptionId, QualifiedStreamI... method ProducerCount (line 64) | public Task ProducerCount(QualifiedStreamId streamId) method ConsumerCount (line 69) | public Task ConsumerCount(QualifiedStreamId streamId) method GetAllSubscriptions (line 74) | public Task> GetAllSubscriptions(QualifiedStr... method IsImplicitSubscriber (line 98) | internal bool IsImplicitSubscriber(GrainId grainId, QualifiedStreamId ... method IsImplicitSubscriber (line 103) | internal bool IsImplicitSubscriber(GuidId subscriptionId, QualifiedStr... method CreateSubscriptionId (line 108) | public GuidId CreateSubscriptionId(QualifiedStreamId streamId, GrainId... method FaultSubscription (line 118) | public Task FaultSubscription(QualifiedStreamId streamId, GuidId... FILE: src/Orleans.Streaming/PubSub/ImplicitStreamSubscriberTable.cs class ImplicitStreamSubscriberTable (line 15) | internal class ImplicitStreamSubscriberTable method ImplicitStreamSubscriberTable (line 27) | public ImplicitStreamSubscriberTable( method GetCache (line 39) | private Cache GetCache() method BuildCache (line 60) | private Cache BuildCache(MajorMinorVersion version, ImmutableDictionar... method GetImplicitSubscribers (line 116) | internal Dictionary GetImplicitSubscribers(QualifiedStr... method GetOrAddImplicitSubscribers (line 141) | private HashSet GetOrAddImplicitSubscribers(string s... method IsImplicitSubscriber (line 158) | internal bool IsImplicitSubscriber(GrainId grainId, QualifiedStreamId ... method TryGetImplicitSubscriptionGuid (line 182) | internal bool TryGetImplicitSubscriptionGuid(GrainId grainId, Qualifie... method MakeSubscriptionGuid (line 197) | private Guid MakeSubscriptionGuid(GrainType grainType, QualifiedStream... method IsImplicitSubscribeEligibleNameSpace (line 207) | internal static bool IsImplicitSubscribeEligibleNameSpace(string strea... method FindImplicitSubscribers (line 215) | private static HashSet FindImplicitSubscribers(strin... class StreamSubscriberPredicate (line 229) | private class StreamSubscriberPredicate method StreamSubscriberPredicate (line 231) | public StreamSubscriberPredicate(StreamSubscriber subscriber, IStrea... class StreamSubscriber (line 241) | private sealed class StreamSubscriber : IEquatable method StreamSubscriber (line 243) | public StreamSubscriber(GrainBindings grainBindings, IStreamIdMapper... method Equals (line 255) | public override bool Equals(object obj) => Equals(obj as StreamSubsc... method Equals (line 257) | public bool Equals(StreamSubscriber other) => other != null && Grain... method GetHashCode (line 259) | public override int GetHashCode() => GrainType.GetHashCode(); method GetGrainId (line 261) | internal GrainId GetGrainId(QualifiedStreamId streamId) class Cache (line 268) | private class Cache method Cache (line 270) | public Cache(MajorMinorVersion version, List HashCode.Combine(Stream, Producer); method ToString (line 58) | public override string ToString() FILE: src/Orleans.Streaming/PubSub/PubSubRendezvousGrain.cs class PubSubGrainStateStorageFactory (line 20) | internal sealed partial class PubSubGrainStateStorageFactory method PubSubGrainStateStorageFactory (line 25) | public PubSubGrainStateStorageFactory(IServiceProvider serviceProvider... method GetStorage (line 31) | public StateStorageBridge GetStorage(PubSubRendezvou... method LogDebugTryingToFindStorageProvider (line 55) | [LoggerMessage( method LogDebugFallbackToStorageProvider (line 61) | [LoggerMessage( class PubSubGrainState (line 68) | [Serializable] class PubSubRendezvousGrain (line 78) | [GrainType("pubsubrendezvous")] method PubSubRendezvousGrain (line 89) | public PubSubRendezvousGrain(PubSubGrainStateStorageFactory storageFac... method OnActivateAsync (line 96) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 102) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method RegisterProducer (line 108) | public async Task> RegisterProducer(Qual... method UnregisterProducer (line 131) | public async Task UnregisterProducer(QualifiedStreamId streamId, Grain... method RegisterConsumer (line 162) | public async Task RegisterConsumer( method RemoveProducer (line 249) | private void RemoveProducer(PubSubPublisherState producer) method UnregisterConsumer (line 256) | public async Task UnregisterConsumer(GuidId subscriptionId, QualifiedS... method ProducerCount (line 291) | public Task ProducerCount(QualifiedStreamId streamId) method ConsumerCount (line 296) | public Task ConsumerCount(QualifiedStreamId streamId) method DiagGetConsumers (line 301) | public Task DiagGetConsumers(QualifiedStrea... method GetConsumersForStream (line 306) | private PubSubSubscriptionState[] GetConsumersForStream(QualifiedStrea... method LogPubSubCounts (line 311) | private void LogPubSubCounts(string fmt, params object[] args) method Validate (line 329) | public async Task Validate() method GetAllSubscriptions (line 362) | public Task> GetAllSubscriptions(QualifiedStr... method FaultSubscription (line 387) | public async Task FaultSubscription(GuidId subscriptionId) method NotifyProducersOfRemovedSubscription (line 412) | private async Task NotifyProducersOfRemovedSubscription(GuidId subscri... method TryClearState (line 434) | private async Task TryClearState() method ExecuteProducerTask (line 444) | private async Task ExecuteProducerTask(PubSubPublisherState producer, ... method ReadStateAsync (line 473) | private Task ReadStateAsync() => _storage.ReadStateAsync(); method WriteStateAsync (line 474) | private Task WriteStateAsync() => _storage.WriteStateAsync(); method ClearStateAsync (line 475) | private Task ClearStateAsync() => _storage.ClearStateAsync(); method OnDehydrate (line 476) | void IGrainMigrationParticipant.OnDehydrate(IDehydrationContext dehydr... method OnRehydrate (line 477) | void IGrainMigrationParticipant.OnRehydrate(IRehydrationContext rehydr... method LogErrorRegisterProducer (line 479) | [LoggerMessage( method LogErrorUnregisterProducer (line 486) | [LoggerMessage( method LogErrorRegisterConsumer (line 493) | [LoggerMessage( type ProducersLogRecord (line 500) | private readonly struct ProducersLogRecord(HashSet Utils.EnumerableToString(produc... method LogDebugNotifyProducersOfNewConsumer (line 505) | [LoggerMessage( method LogErrorRegisterConsumerFailed (line 511) | [LoggerMessage( method LogWarningProducerIsDead (line 518) | [LoggerMessage( method LogErrorUnregisterConsumer (line 525) | [LoggerMessage( method LogDebugSettingSubscriptionToFaulted (line 532) | [LoggerMessage( method LogErrorSetSubscriptionToFaulted (line 538) | [LoggerMessage( method LogDebugNotifyProducersOfRemovedConsumer (line 545) | [LoggerMessage( FILE: src/Orleans.Streaming/PubSub/PubSubSubscriptionState.cs class PubSubSubscriptionState (line 7) | [Serializable] type SubscriptionStates (line 12) | public enum SubscriptionStates method PubSubSubscriptionState (line 46) | public PubSubSubscriptionState( method AddFilter (line 57) | public void AddFilter(string filterData) method Equals (line 62) | public override bool Equals(object obj) method Equals (line 69) | public bool Equals(PubSubSubscriptionState other) method Equals (line 77) | public bool Equals(GuidId subscriptionId) method GetHashCode (line 83) | public override int GetHashCode() method ToString (line 104) | public override string ToString() method Fault (line 110) | public void Fault() FILE: src/Orleans.Streaming/PubSub/StreamPubSubImpl.cs class StreamPubSubImpl (line 10) | internal class StreamPubSubImpl : IStreamPubSub method StreamPubSubImpl (line 15) | public StreamPubSubImpl(IStreamPubSub explicitPubSub, ImplicitStreamPu... method RegisterProducer (line 31) | public async Task> RegisterProducer(Qual... method UnregisterProducer (line 39) | public Task UnregisterProducer(QualifiedStreamId streamId, GrainId str... method RegisterConsumer (line 44) | public Task RegisterConsumer(GuidId subscriptionId, QualifiedStreamId ... method UnregisterConsumer (line 51) | public Task UnregisterConsumer(GuidId subscriptionId, QualifiedStreamI... method ProducerCount (line 58) | public Task ProducerCount(QualifiedStreamId streamId) method ConsumerCount (line 63) | public Task ConsumerCount(QualifiedStreamId streamId) method GetAllSubscriptions (line 68) | public async Task> GetAllSubscriptions(Qualif... method CreateSubscriptionId (line 84) | public GuidId CreateSubscriptionId(QualifiedStreamId streamId, GrainId... method FaultSubscription (line 91) | public Task FaultSubscription(QualifiedStreamId streamId, GuidId... FILE: src/Orleans.Streaming/PubSub/StreamSubscriptionManagerExtensions.cs class StreamSubscriptionManagerExtensions (line 11) | public static class StreamSubscriptionManagerExtensions method AddSubscription (line 23) | public static Task AddSubscription( method AddSubscription (line 46) | public static Task AddSubscription( method AddSubscription (line 70) | public static Task AddSubscription( method AddSubscription (line 94) | public static Task AddSubscription( method AddSubscription (line 119) | public static Task AddSubscription( method AddSubscription (line 145) | public static Task AddSubscription( method TryGetStreamSubscriptionManager (line 165) | public static bool TryGetStreamSubscriptionManager(this IStreamProvide... FILE: src/Orleans.Streaming/PubSub/SubscriptionMarker.cs class SubscriptionMarker (line 11) | internal static class SubscriptionMarker method MarkAsExplicitSubscriptionId (line 13) | internal static Guid MarkAsExplicitSubscriptionId(Guid subscriptionGuid) method MarkAsImplictSubscriptionId (line 18) | internal static Guid MarkAsImplictSubscriptionId(Guid subscriptionGuid) method IsImplicitSubscription (line 23) | internal static bool IsImplicitSubscription(Guid subscriptionGuid) method MarkSubscriptionGuid (line 31) | private static Guid MarkSubscriptionGuid(Guid subscriptionGuid, bool i... FILE: src/Orleans.Streaming/QueueAdapters/AggregatedQueueFlowController.cs class AggregatedQueueFlowController (line 11) | public class AggregatedQueueFlowController : List,... method AggregatedQueueFlowController (line 19) | public AggregatedQueueFlowController(int defaultMaxAddCount) method GetMaxAddCount (line 25) | public int GetMaxAddCount() FILE: src/Orleans.Streaming/QueueAdapters/BatchContainerBatch.cs class BatchContainerBatch (line 12) | [GenerateSerializer] method BatchContainerBatch (line 35) | public BatchContainerBatch(List batchContainers) method GetEvents (line 50) | public IEnumerable> GetEvents() method ImportRequestContext (line 56) | public bool ImportRequestContext() FILE: src/Orleans.Streaming/QueueAdapters/DataNotAvailableException.cs class DataNotAvailableException (line 10) | [Serializable] method DataNotAvailableException (line 17) | public DataNotAvailableException() : this("Data not found") { } method DataNotAvailableException (line 23) | public DataNotAvailableException(string message) : base(message) { } method DataNotAvailableException (line 30) | public DataNotAvailableException(string message, Exception inner) : ba... method DataNotAvailableException (line 37) | [Obsolete] class CacheFullException (line 47) | [Serializable] method CacheFullException (line 54) | public CacheFullException() : this("Queue message cache is full") { } method CacheFullException (line 60) | public CacheFullException(string message) : base(message) { } method CacheFullException (line 67) | public CacheFullException(string message, Exception inner) : base(mess... method CacheFullException (line 74) | [Obsolete] FILE: src/Orleans.Streaming/QueueAdapters/HashRing.cs type HashRing (line 6) | internal readonly struct HashRing method HashRing (line 10) | public HashRing(QueueId[] ring) method GetAllRingMembers (line 16) | public QueueId[] GetAllRingMembers() => _ring; method CalculateResponsible (line 18) | public QueueId CalculateResponsible(uint uniformHashCode) type Searcher (line 31) | private readonly struct Searcher : IComparable method Searcher (line 34) | public Searcher(uint value) => _value = value; method CompareTo (line 35) | public int CompareTo(QueueId other) => _value.CompareTo(other.GetUni... method ToString (line 38) | public override string ToString() FILE: src/Orleans.Streaming/QueueAdapters/HashRingBasedStreamQueueMapper.cs class HashRingBasedStreamQueueMapper (line 11) | public class HashRingBasedStreamQueueMapper : IConsistentRingStreamQueue... method HashRingBasedStreamQueueMapper (line 20) | public HashRingBasedStreamQueueMapper(HashRingStreamQueueMapperOptions... method HashRingBasedStreamQueueMapper (line 22) | internal HashRingBasedStreamQueueMapper(int numQueues, string queueNam... method GetQueuesForRange (line 44) | public IEnumerable GetQueuesForRange(IRingRange range) method GetAllQueues (line 59) | public IEnumerable GetAllQueues() => hashRing.GetAllRingMembe... method GetQueueForStream (line 62) | public QueueId GetQueueForStream(StreamId streamId) => hashRing.Calcul... method ToString (line 65) | public override string ToString() => hashRing.ToString(); class HashRingBasedPartitionedStreamQueueMapper (line 71) | public sealed class HashRingBasedPartitionedStreamQueueMapper : HashRing... method HashRingBasedPartitionedStreamQueueMapper (line 80) | public HashRingBasedPartitionedStreamQueueMapper(IReadOnlyList... method QueueToPartition (line 94) | public string QueueToPartition(QueueId queue) => _partitions.TryGetVal... FILE: src/Orleans.Streaming/QueueAdapters/HashRingStreamQueueMapperOptions.cs class HashRingStreamQueueMapperOptions (line 8) | public class HashRingStreamQueueMapperOptions FILE: src/Orleans.Streaming/QueueAdapters/IBatchContainer.cs type IBatchContainer (line 11) | public interface IBatchContainer method GetEvents (line 23) | IEnumerable> GetEvents(); method ImportRequestContext (line 35) | bool ImportRequestContext(); FILE: src/Orleans.Streaming/QueueAdapters/IBatchContainerBatch.cs type IBatchContainerBatch (line 8) | public interface IBatchContainerBatch : IBatchContainer FILE: src/Orleans.Streaming/QueueAdapters/IConsistentRingStreamQueueMapper.cs type IConsistentRingStreamQueueMapper (line 11) | public interface IConsistentRingStreamQueueMapper : IStreamQueueMapper method GetQueuesForRange (line 18) | IEnumerable GetQueuesForRange(IRingRange range); FILE: src/Orleans.Streaming/QueueAdapters/IQueueAdapter.cs type IQueueAdapter (line 10) | public interface IQueueAdapter method QueueMessageBatchAsync (line 26) | Task QueueMessageBatchAsync(StreamId streamId, IEnumerable event... method CreateReceiver (line 33) | IQueueAdapterReceiver CreateReceiver(QueueId queueId); class QueueAdapterExtensions (line 51) | public static class QueueAdapterExtensions method QueueMessageAsync (line 63) | public static Task QueueMessageAsync(this IQueueAdapter adapter, St... FILE: src/Orleans.Streaming/QueueAdapters/IQueueAdapterCache.cs type IQueueAdapterCache (line 6) | public interface IQueueAdapterCache method CreateQueueCache (line 13) | IQueueCache CreateQueueCache(QueueId queueId); FILE: src/Orleans.Streaming/QueueAdapters/IQueueAdapterFactory.cs type IQueueAdapterFactory (line 8) | public interface IQueueAdapterFactory method CreateAdapter (line 14) | Task CreateAdapter(); method GetQueueAdapterCache (line 20) | IQueueAdapterCache GetQueueAdapterCache(); method GetStreamQueueMapper (line 26) | IStreamQueueMapper GetStreamQueueMapper(); method GetDeliveryFailureHandler (line 33) | Task GetDeliveryFailureHandler(QueueId queueId); FILE: src/Orleans.Streaming/QueueAdapters/IQueueAdapterReceiver.cs type IQueueAdapterReceiver (line 10) | public interface IQueueAdapterReceiver method Initialize (line 16) | Task Initialize(TimeSpan timeout); method GetQueueMessagesAsync (line 25) | Task> GetQueueMessagesAsync(int maxCount); method MessagesDeliveredAsync (line 35) | Task MessagesDeliveredAsync(IList messages); method Shutdown (line 41) | Task Shutdown(TimeSpan timeout); FILE: src/Orleans.Streaming/QueueAdapters/IQueueCache.cs type IQueueCache (line 6) | public interface IQueueCache : IQueueFlowController method AddToCache (line 12) | void AddToCache(IList messages); method TryPurgeFromCache (line 19) | bool TryPurgeFromCache(out IList purgedItems); method GetCacheCursor (line 28) | IQueueCacheCursor GetCacheCursor(StreamId streamId, StreamSequenceToke... method IsUnderPressure (line 34) | bool IsUnderPressure(); FILE: src/Orleans.Streaming/QueueAdapters/IQueueCacheCursor.cs type IQueueCacheCursor (line 8) | public interface IQueueCacheCursor : IDisposable method GetCurrent (line 19) | IBatchContainer GetCurrent(out Exception exception); method MoveNext (line 28) | bool MoveNext(); method Refresh (line 34) | void Refresh(StreamSequenceToken token); method RecordDeliveryFailure (line 39) | void RecordDeliveryFailure(); FILE: src/Orleans.Streaming/QueueAdapters/IQueueFlowController.cs type IQueueFlowController (line 8) | public interface IQueueFlowController method GetMaxAddCount (line 16) | int GetMaxAddCount(); FILE: src/Orleans.Streaming/QueueAdapters/IStreamQueueMapper.cs type IStreamQueueMapper (line 10) | public interface IStreamQueueMapper method GetAllQueues (line 16) | IEnumerable GetAllQueues(); method GetQueueForStream (line 23) | QueueId GetQueueForStream(StreamId streamId); FILE: src/Orleans.Streaming/QueueAdapters/QueueAdapterConstants.cs class QueueAdapterConstants (line 6) | public static class QueueAdapterConstants FILE: src/Orleans.Streaming/QueueAdapters/QueueCacheMissException.cs class QueueCacheMissException (line 10) | [Serializable] method QueueCacheMissException (line 38) | public QueueCacheMissException() : this("Item no longer in cache") { } method QueueCacheMissException (line 44) | public QueueCacheMissException(string message) : base(message) { } method QueueCacheMissException (line 51) | public QueueCacheMissException(string message, Exception innerExceptio... method QueueCacheMissException (line 59) | public QueueCacheMissException(StreamSequenceToken requested, StreamSe... method QueueCacheMissException (line 70) | public QueueCacheMissException(string requested, string low, string high) method QueueCacheMissException (line 83) | [Obsolete] method GetObjectData (line 93) | [Obsolete] FILE: src/Orleans.Streaming/QueueBalancer/BestFitBalancer.cs class BestFitBalancer (line 31) | internal class BestFitBalancer method BestFitBalancer (line 45) | public BestFitBalancer(IEnumerable buckets, IEnumerable> GetDistribution(IEnumerabl... method BuildIdealDistribution (line 125) | private static Dictionary> BuildIdealDistribu... FILE: src/Orleans.Streaming/QueueBalancer/ConsistentRingQueueBalancer.cs class ConsistentRingQueueBalancer (line 11) | internal class ConsistentRingQueueBalancer : QueueBalancerBase, IStreamQ... method Create (line 16) | public static IStreamQueueBalancer Create(IServiceProvider services, s... method ConsistentRingQueueBalancer (line 21) | public ConsistentRingQueueBalancer(IConsistentRingProvider consistentR... method Initialize (line 33) | public override Task Initialize(IStreamQueueMapper queueMapper) method GetMyQueues (line 49) | public override IEnumerable GetMyQueues() method OnClusterMembershipChange (line 54) | protected override void OnClusterMembershipChange(HashSet... method RangeChangeNotification (line 58) | public void RangeChangeNotification(IRingRange old, IRingRange now, bo... FILE: src/Orleans.Streaming/QueueBalancer/DeploymentBasedQueueBalancer.cs class DeploymentBasedQueueBalancer (line 21) | public class DeploymentBasedQueueBalancer : QueueBalancerBase, IStreamQu... method DeploymentBasedQueueBalancer (line 30) | public DeploymentBasedQueueBalancer( method Create (line 52) | public static IStreamQueueBalancer Create(IServiceProvider services, s... method Initialize (line 58) | public override Task Initialize(IStreamQueueMapper queueMapper) method NotifyAfterStart (line 69) | private async Task NotifyAfterStart() method RecordImmatureSilo (line 76) | private async Task RecordImmatureSilo(SiloAddress updatedSilo) method GetMyQueues (line 83) | public override IEnumerable GetMyQueues() method GetActiveSilos (line 105) | private static List GetActiveSilos(ISiloStatusOracle siloStatu... method GetBalancer (line 128) | private BestFitBalancer GetBalancer() method GetQueuesOfImmatureSilos (line 135) | private static HashSet GetQueuesOfImmatureSilos(ISiloStatusOr... method OnClusterMembershipChange (line 155) | protected override void OnClusterMembershipChange(HashSet... method SignalClusterChange (line 160) | private async Task SignalClusterChange(HashSet activeSilos) FILE: src/Orleans.Streaming/QueueBalancer/DeploymentBasedQueueBalancerOptions.cs class DeploymentBasedQueueBalancerOptions (line 9) | public class DeploymentBasedQueueBalancerOptions FILE: src/Orleans.Streaming/QueueBalancer/IResourceSelector.cs type IResourceSelector (line 9) | internal interface IResourceSelector method NextSelection (line 22) | List NextSelection(int newSelectionCount, List existingSelection); FILE: src/Orleans.Streaming/QueueBalancer/LeaseBasedQueueBalancer.cs class LeaseBasedQueueBalancer (line 27) | public partial class LeaseBasedQueueBalancer( class AcquiredQueue (line 35) | private sealed class AcquiredQueue(int order, QueueId queueId, Acquire... method Create (line 61) | public static IStreamQueueBalancer Create(IServiceProvider services, s... method Initialize (line 71) | public override async Task Initialize(IStreamQueueMapper queueMapper) method Shutdown (line 97) | public override async Task Shutdown() method GetMyQueues (line 118) | public override IEnumerable GetMyQueues() method PeriodicallyMaintainLeases (line 128) | private async Task PeriodicallyMaintainLeases() method PeriodicallyAcquireLeasesToMeetResponsibility (line 165) | private async Task PeriodicallyAcquireLeasesToMeetResponsibility() method AcquireLeasesToMeetResponsibility (line 185) | private async Task AcquireLeasesToMeetResponsibility() method ReleaseLeasesToMeetResponsibility (line 211) | private async Task ReleaseLeasesToMeetResponsibility() method AcquireLeasesToMeetExpectation (line 245) | private async Task AcquireLeasesToMeetExpectation(int expectedTotalLea... method RenewLeases (line 327) | private async Task RenewLeases() method NotifyOnChange (line 382) | private Task NotifyOnChange(HashSet oldQueues) method OnClusterMembershipChange (line 394) | protected override void OnClusterMembershipChange(HashSet... method ScheduleUpdateResponsibilities (line 400) | private async Task ScheduleUpdateResponsibilities(HashSet... method ShouldBeGreedy (line 422) | private bool ShouldBeGreedy(int overflow, HashSet activeS... method UpdateResponsibilities (line 431) | private async Task UpdateResponsibilities(HashSet activeS... method LogTraceReleaseLeasesToMeetResponsibility (line 454) | [LoggerMessage( method LogDebugReleasedLeases (line 460) | [LoggerMessage( method LogTraceAcquireLeasesToMeetExpectation (line 466) | [LoggerMessage( method LogDebugHoldingLeased (line 472) | [LoggerMessage( method LogWarningFailedToAcquireLeaseTransient (line 478) | [LoggerMessage( method LogDebugFailedToAcquireLeaseNotAvailable (line 484) | [LoggerMessage( method LogErrorFailedToAcquireLeaseInvalidToken (line 490) | [LoggerMessage( method LogErrorUnexpectedAcquireLease (line 496) | [LoggerMessage( method LogDebugHoldingLeasedAgain (line 502) | [LoggerMessage( method LogDebugHoldingLeases (line 508) | [LoggerMessage( method LogTraceRenewLeases (line 514) | [LoggerMessage( method LogWarningFailedToRenewLeaseTransient (line 520) | [LoggerMessage( method LogWarningFailedToRenewLeaseReason (line 526) | [LoggerMessage( method LogErrorUnexpectedRenewLease (line 532) | [LoggerMessage( method LogDebugRenewedLeases (line 538) | [LoggerMessage( method LogDebugUpdatingResponsibilities (line 544) | [LoggerMessage( FILE: src/Orleans.Streaming/QueueBalancer/LeaseBasedQueueBalancerOptions.cs class LeaseBasedQueueBalancerOptions (line 9) | public class LeaseBasedQueueBalancerOptions FILE: src/Orleans.Streaming/QueueBalancer/PersistentStreamConfiguratorExtension.cs class SiloPersistentStreamConfiguratorExtension (line 12) | public static class SiloPersistentStreamConfiguratorExtension method UseConsistentRingQueueBalancer (line 18) | public static void UseConsistentRingQueueBalancer(this ISiloPersistent... method UseStaticClusterConfigDeploymentBalancer (line 28) | public static void UseStaticClusterConfigDeploymentBalancer( method UseDynamicClusterConfigDeploymentBalancer (line 47) | public static void UseDynamicClusterConfigDeploymentBalancer( method UseLeaseBasedQueueBalancer (line 66) | public static void UseLeaseBasedQueueBalancer(this ISiloPersistentStre... FILE: src/Orleans.Streaming/QueueBalancer/QueueBalancerBase.cs class QueueBalancerBase (line 17) | public abstract partial class QueueBalancerBase : IStreamQueueBalancer method QueueBalancerBase (line 30) | protected QueueBalancerBase(IServiceProvider sp, ILogger logger) method QueueBalancerBase (line 38) | private QueueBalancerBase(IClusterMembershipService clusterMembership,... method GetMyQueues (line 48) | public abstract IEnumerable GetMyQueues(); method Initialize (line 51) | public virtual Task Initialize(IStreamQueueMapper queueMapper) method Shutdown (line 58) | public virtual async Task Shutdown() method SubscribeToQueueDistributionChangeEvents (line 73) | public bool SubscribeToQueueDistributionChangeEvents(IStreamQueueBalan... method UnSubscribeFromQueueDistributionChangeEvents (line 87) | public bool UnSubscribeFromQueueDistributionChangeEvents(IStreamQueueB... method NotifyListeners (line 96) | protected Task NotifyListeners() method ListenForClusterChanges (line 107) | private async Task ListenForClusterChanges() method OnClusterMembershipChange (line 134) | protected abstract void OnClusterMembershipChange(HashSet... method LogErrorSignalingShutdownToken (line 136) | [LoggerMessage( method LogErrorProcessingClusterMembershipUpdate (line 142) | [LoggerMessage( FILE: src/Orleans.Streaming/QueueBalancer/RoundRobinSelector.cs class RoundRobinSelector (line 11) | internal sealed class RoundRobinSelector : IResourceSelector method RoundRobinSelector (line 15) | public RoundRobinSelector(IEnumerable resources) method NextSelection (line 30) | public List NextSelection(int newSelectionCount, List existingSe... FILE: src/Orleans.Streaming/QueueBalancer/StaticClusterDeploymentConfiguration.cs class StaticClusterDeploymentOptions (line 9) | public class StaticClusterDeploymentOptions : IDeploymentConfiguration method GetAllSiloNames (line 18) | IList IDeploymentConfiguration.GetAllSiloNames() FILE: src/Orleans.Streaming/QueueId.cs type QueueId (line 10) | [Serializable] method QueueId (line 28) | private QueueId(string queuePrefix, uint id, uint hash) method GetQueueId (line 42) | public static QueueId GetQueueId(string queueName, uint queueId, uint ... method GetStringNamePrefix (line 48) | public string GetStringNamePrefix() => queueNamePrefix; method GetNumericId (line 54) | public uint GetNumericId() => queueId; method GetUniformHashCode (line 57) | public uint GetUniformHashCode() => uniformHashCache; method CompareTo (line 65) | public int CompareTo(QueueId other) method Equals (line 77) | public bool Equals(QueueId other) => queueId == other.queueId && unifo... method Equals (line 80) | public override bool Equals(object? obj) => obj is QueueId queueId && ... method GetHashCode (line 83) | public override int GetHashCode() => HashCode.Combine(queueId, uniform... method ToString (line 90) | public override string ToString() => $"{this}"; method ToString (line 92) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 94) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method ToStringWithHashCode (line 123) | public string ToStringWithHashCode() => $"{this:H}"; FILE: src/Orleans.Streaming/SiloPersistentStreamConfigurator.cs class PersistentStreamStorageConfigurationValidator (line 15) | public class PersistentStreamStorageConfigurationValidator : IConfigurat... method PersistentStreamStorageConfigurationValidator (line 25) | private PersistentStreamStorageConfigurationValidator(IServiceProvider... method ValidateConfiguration (line 32) | public void ValidateConfiguration() method Create (line 51) | public static IConfigurationValidator Create(IServiceProvider services... class SiloPersistentStreamConfigurator (line 60) | public class SiloPersistentStreamConfigurator : NamedServiceConfigurator... method SiloPersistentStreamConfigurator (line 68) | public SiloPersistentStreamConfigurator(string name, Action ns, ReadOnlySpan Create(ns, key.T... method Create (line 125) | public static StreamId Create(string ns, string key) method Create (line 142) | public static StreamId Create(IStreamIdentity streamIdentity) => Creat... method CompareTo (line 145) | public int CompareTo(StreamId other) => fullKey.AsSpan().SequenceCompa... method Equals (line 148) | public bool Equals(StreamId other) => fullKey.AsSpan().SequenceEqual(o... method Equals (line 151) | public override bool Equals(object? obj) => obj is StreamId other ? th... method GetObjectData (line 170) | public void GetObjectData(SerializationInfo info, StreamingContext con... method ToString (line 178) | public override string ToString() => $"{this}"; method ToString (line 179) | string IFormattable.ToString(string? format, IFormatProvider? formatPr... method TryFormat (line 181) | bool ISpanFormattable.TryFormat(Span destination, out int charsW... method Parse (line 210) | public static StreamId Parse(ReadOnlySpan value) method GetHashCode (line 222) | public override int GetHashCode() => this.hash; method GetUniformHashCode (line 224) | internal uint GetUniformHashCode() => (uint)hash; method GetKeyIndex (line 226) | internal uint GetKeyIndex() => keyIndex; method GetKeyAsString (line 232) | public string GetKeyAsString() => Encoding.UTF8.GetString(fullKey, key... method GetNamespace (line 238) | public string? GetNamespace() => keyIndex == 0 ? null : Encoding.UTF8.... method GetKeyIdSpan (line 240) | internal IdSpan GetKeyIdSpan() => keyIndex == 0 ? IdSpan.UnsafeCreate(... FILE: src/Orleans.TestingHost/ClientExtensions.cs class ClientExtensions (line 9) | internal static class ClientExtensions method GetTestHooks (line 17) | public static ITestHooks GetTestHooks(this IClusterClient client, Silo... FILE: src/Orleans.TestingHost/ConfigureDistributedGrainDirectory.cs class ConfigureDistributedGrainDirectory (line 5) | internal class ConfigureDistributedGrainDirectory : ISiloConfigurator method Configure (line 8) | public void Configure(ISiloBuilder siloBuilder) => siloBuilder.AddDist... FILE: src/Orleans.TestingHost/IClientBuilderConfigurator.cs type IClientBuilderConfigurator (line 9) | public interface IClientBuilderConfigurator method Configure (line 16) | void Configure(IConfiguration configuration, IClientBuilder clientBuil... FILE: src/Orleans.TestingHost/IHostConfigurator.cs type IHostConfigurator (line 8) | public interface IHostConfigurator method Configure (line 14) | void Configure(IHostBuilder hostBuilder); FILE: src/Orleans.TestingHost/IPortAllocator.cs type ITestClusterPortAllocator (line 8) | public interface ITestClusterPortAllocator : IDisposable method AllocateConsecutivePortPairs (line 15) | ValueTuple AllocateConsecutivePortPairs(int numPorts); FILE: src/Orleans.TestingHost/ISiloConfigurator.cs type ISiloConfigurator (line 8) | public interface ISiloConfigurator method Configure (line 14) | void Configure(ISiloBuilder siloBuilder); FILE: src/Orleans.TestingHost/InMemoryTransport/InMemoryTransportConnection.cs class InMemoryTransportConnection (line 13) | internal class InMemoryTransportConnection : TransportConnection method InMemoryTransportConnection (line 20) | private InMemoryTransportConnection(MemoryPool memoryPool, ILogg... method Create (line 34) | public static InMemoryTransportConnection Create(MemoryPool memo... method Create (line 42) | public static InMemoryTransportConnection Create(MemoryPool memo... method Abort (line 54) | public override void Abort(ConnectionAbortedException? abortReason) method OnClosed (line 64) | public void OnClosed() method DisposeAsync (line 83) | public override async ValueTask DisposeAsync() method ToString (line 91) | public override string ToString() => $"InMem({LocalEndPoint}<->{Remote... FILE: src/Orleans.TestingHost/InMemoryTransport/InMemoryTransportListenerFactory.cs class InMemoryTransportExtensions (line 17) | internal static class InMemoryTransportExtensions method UseInMemoryConnectionTransport (line 19) | public static ISiloBuilder UseInMemoryConnectionTransport(this ISiloBu... method UseInMemoryConnectionTransport (line 31) | public static IClientBuilder UseInMemoryConnectionTransport(this IClie... method CreateInMemoryConnectionFactory (line 41) | private static Func Crea... method CreateInMemoryConnectionListenerFactory (line 51) | private static Func AcceptAsync(CancellationToke... method BindAsync (line 119) | public ValueTask BindAsync(EndPoint endpoint, Can... method DisposeAsync (line 126) | public ValueTask DisposeAsync() method UnbindAsync (line 131) | public ValueTask UnbindAsync(CancellationToken cancellationToken = def... class InMemoryTransportConnectionHub (line 145) | internal class InMemoryTransportConnectionHub method RegisterConnectionListenerFactory (line 151) | public void RegisterConnectionListenerFactory(EndPoint endPoint, InMem... method GetConnectionListenerFactory (line 160) | public InMemoryTransportListener GetConnectionListenerFactory(EndPoint... class InMemoryTransportConnectionFactory (line 167) | internal class InMemoryTransportConnectionFactory : IConnectionFactory method InMemoryTransportConnectionFactory (line 174) | public InMemoryTransportConnectionFactory(InMemoryTransportConnectionH... method ConnectAsync (line 182) | public async ValueTask ConnectAsync(EndPoint endpoi... FILE: src/Orleans.TestingHost/InProcTestCluster.cs class InProcessTestCluster (line 33) | public sealed class InProcessTestCluster : IDisposable, IAsyncDisposable method InProcessTestCluster (line 88) | public InProcessTestCluster( method GetSiloServiceProvider (line 103) | public IServiceProvider GetSiloServiceProvider(SiloAddress silo = null) method DeployAsync (line 121) | public async Task DeployAsync() method WaitForInitialStabilization (line 170) | private async Task WaitForInitialStabilization() method GetActiveSilos (line 212) | public IEnumerable GetActiveSilos() method GetSiloForAddress (line 234) | public InProcessSiloHandle GetSiloForAddress(SiloAddress siloAddress) method WaitForLivenessToStabilizeAsync (line 245) | public async Task WaitForLivenessToStabilizeAsync(bool didKill = false) method GetLivenessStabilizationTime (line 258) | public static TimeSpan GetLivenessStabilizationTime(ClusterMembershipO... method StartAdditionalSilo (line 282) | public InProcessSiloHandle StartAdditionalSilo() method StartAdditionalSiloAsync (line 291) | public async Task StartAdditionalSiloAsync() method StartAdditionalSilo (line 300) | [Obsolete("Use overload which does not have a 'startAdditionalSiloOnNe... method StartAdditionalSiloAsync (line 310) | public async Task StartAdditionalSiloAsync(bool s... method StartSilosAsync (line 321) | [Obsolete("Use overload which does not have a 'startAdditionalSiloOnNe... method StartSilosAsync (line 332) | public async Task> StartSilosAsync(int silos... method StopSilosAsync (line 367) | public async Task StopSilosAsync() method StopClusterClientAsync (line 379) | public async Task StopClusterClientAsync() method StopAllSilos (line 403) | public void StopAllSilos() method StopAllSilosAsync (line 411) | public async Task StopAllSilosAsync() method StopSiloAsync (line 422) | public async Task StopSiloAsync(InProcessSiloHandle instance) method KillSiloAsync (line 438) | public async Task KillSiloAsync(InProcessSiloHandle instance) method KillClientAsync (line 454) | public async Task KillClientAsync() method RestartSiloAsync (line 477) | public async Task RestartSiloAsync(InProcessSiloH... method RestartStoppedSecondarySiloAsync (line 499) | public async Task RestartStoppedSecondarySiloAsyn... method InitializeClientAsync (line 514) | public async Task InitializeClientAsync() method InitializeAsync (line 557) | private async Task InitializeAsync() method CreateSiloAsync (line 574) | public async Task CreateSiloAsync(InProcessTestSi... method StartSiloAsync (line 662) | public static async Task StartSiloAsync(InProcess... method StartSiloAsync (line 677) | [Obsolete("Use the overload which does not have a 'startSiloOnNewPort'... method StartSiloAsync (line 690) | public async Task StartSiloAsync(int instanceNumb... method StartSiloAsync (line 707) | [Obsolete("Use the overload which does not have a 'startSiloOnNewPort'... method StopSiloAsync (line 713) | private async Task StopSiloAsync(InProcessSiloHandle instance, bool st... method GetLog (line 731) | public string GetLog() method ReportUnobservedException (line 736) | private void ReportUnobservedException(object sender, UnhandledExcepti... method WriteLog (line 742) | private void WriteLog(string format, params object[] args) method FlushLogToConsole (line 747) | private void FlushLogToConsole() method DisposeAsync (line 753) | public async ValueTask DisposeAsync() method Dispose (line 777) | public void Dispose() method DisposeAsync (line 795) | private static async Task DisposeAsync(IDisposable value) method TryConfigureFileLogging (line 807) | private static void TryConfigureFileLogging(InProcessTestClusterOption... method InitializeTestHooksSystemTarget (line 816) | private static void InitializeTestHooksSystemTarget(IHost host) FILE: src/Orleans.TestingHost/InProcTestClusterBuilder.cs class InProcessTestClusterBuilder (line 12) | public sealed class InProcessTestClusterBuilder method InProcessTestClusterBuilder (line 17) | public InProcessTestClusterBuilder() method InProcessTestClusterBuilder (line 26) | public InProcessTestClusterBuilder(short initialSilosCount) method ConfigureHost (line 54) | public InProcessTestClusterBuilder ConfigureHost(Action Lookup(GrainId grainId) method Register (line 24) | public Task Register(GrainAddress address, GrainAddress... method Register (line 50) | public Task Register(GrainAddress address) => Register(... method Unregister (line 52) | public Task Unregister(GrainAddress address) method UnregisterSilos (line 65) | public Task UnregisterSilos(List siloAddresses) method IsSiloDead (line 81) | private bool IsSiloDead(GrainAddress existing) => existing.SiloAddress... FILE: src/Orleans.TestingHost/InProcess/InProcessMembershipTable.cs class InProcessMembershipTable (line 15) | internal sealed class InProcessMembershipTable(string clusterId) : IMemb... method InitializeMembershipTable (line 23) | public Task InitializeMembershipTable(bool tryInitTableVersion) => Tas... method DeleteMembershipTableEntries (line 25) | public Task DeleteMembershipTableEntries(string clusterId) method ReadRow (line 35) | public Task ReadRow(SiloAddress key) => Task.From... method ReadAll (line 37) | public Task ReadAll() => Task.FromResult(_table.R... method InsertRow (line 39) | public Task InsertRow(MembershipEntry entry, TableVersion tableV... method UpdateRow (line 41) | public Task UpdateRow(MembershipEntry entry, string etag, TableV... method UpdateIAmAlive (line 43) | public Task UpdateIAmAlive(MembershipEntry entry) method CleanupDefunctSiloEntries (line 49) | public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method InitializeGatewayListProvider (line 55) | public Task InitializeGatewayListProvider() => Task.CompletedTask; method GetGateways (line 57) | public Task> GetGateways() method GetSiloStatus (line 70) | public SiloStatus GetSiloStatus(SiloAddress address) => _table.GetSilo... class Table (line 72) | private sealed class Table method Table (line 83) | public Table() method GetSiloStatus (line 87) | public SiloStatus GetSiloStatus(SiloAddress key) method Read (line 95) | public MembershipTableData Read(SiloAddress key) method ReadAll (line 105) | public MembershipTableData ReadAll() method ReadTableVersion (line 113) | public TableVersion ReadTableVersion() => _tableVersion; method Insert (line 115) | public bool Insert(MembershipEntry entry, TableVersion version) method Update (line 135) | public bool Update(MembershipEntry entry, string etag, TableVersion ... method UpdateIAmAlive (line 155) | public void UpdateIAmAlive(MembershipEntry entry) method CleanupDefunctSiloEntries (line 169) | public void CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method Clear (line 186) | internal void Clear() method ToString (line 194) | public override string ToString() => $"Table = {ReadAll()}, ETagCoun... method NewETag (line 196) | private string NewETag() => _lastETagCounter++.ToString(CultureInfo.... FILE: src/Orleans.TestingHost/InProcessSiloHandle.cs class InProcessSiloHandle (line 14) | public class InProcessSiloHandle : SiloHandle method CreateAsync (line 36) | public static async Task CreateAsync( method StopSiloAsync (line 60) | public override async Task StopSiloAsync(bool stopGracefully) method StopSiloAsync (line 72) | public override async Task StopSiloAsync(CancellationToken ct) method Dispose (line 92) | protected override void Dispose(bool disposing) method DisposeAsync (line 111) | public override async ValueTask DisposeAsync() method WriteLog (line 128) | private static void WriteLog(object value) FILE: src/Orleans.TestingHost/Logging/FileLogger.cs class FileLoggingOutput (line 15) | public class FileLoggingOutput : IDisposable method FileLoggingOutput (line 31) | static FileLoggingOutput() method FileLoggingOutput (line 48) | public FileLoggingOutput(string fileName) method Log (line 65) | public void Log(LogLevel logLevel, EventId eventId, TState sta... method FormatMessage (line 83) | private static string FormatMessage( method Dispose (line 108) | public void Dispose() method Dispose (line 113) | private void Dispose(bool disposing) class FileLogger (line 141) | public class FileLogger : ILogger method FileLogger (line 151) | public FileLogger(FileLoggingOutput output, string category) method BeginScope (line 158) | public IDisposable BeginScope(TState state) method IsEnabled (line 164) | public bool IsEnabled(LogLevel logLevel) method Log (line 170) | public void Log(LogLevel logLevel, EventId eventId, TState sta... class NullScope (line 176) | private class NullScope : IDisposable method NullScope (line 180) | private NullScope() method Dispose (line 184) | public void Dispose() FILE: src/Orleans.TestingHost/Logging/FileLoggerProvider.cs class FileLoggerProvider (line 9) | public class FileLoggerProvider : ILoggerProvider method FileLoggerProvider (line 17) | public FileLoggerProvider(string filePath) method CreateLogger (line 23) | public ILogger CreateLogger(string categoryName) method Dispose (line 29) | public void Dispose() class FileLoggerProviderExtensions (line 38) | public static class FileLoggerProviderExtensions method AddFile (line 46) | public static ILoggingBuilder AddFile( FILE: src/Orleans.TestingHost/SiloHandle.cs class SiloHandle (line 11) | public abstract class SiloHandle : IDisposable, IAsyncDisposable method StopSiloAsync (line 33) | public abstract Task StopSiloAsync(bool stopGracefully); method StopSiloAsync (line 37) | public abstract Task StopSiloAsync(CancellationToken ct); method Dispose (line 40) | public void Dispose() method Dispose (line 47) | protected virtual void Dispose(bool disposing) method DisposeAsync (line 60) | public abstract ValueTask DisposeAsync(); method ToString (line 69) | public override string ToString() FILE: src/Orleans.TestingHost/StandaloneSiloHandle.cs class StandaloneSiloHandle (line 17) | public class StandaloneSiloHandle : SiloHandle method StandaloneSiloHandle (line 39) | public StandaloneSiloHandle(string siloName, IConfiguration configurat... method Create (line 143) | public static async Task Create( method CreateDelegate (line 157) | public static Func> CreateDel... method CreateForAssembly (line 171) | public static Func> CreateFor... method StartAsync (line 206) | private async Task StartAsync() method StopSiloAsync (line 273) | public override async Task StopSiloAsync(bool stopGracefully) method StopSiloAsync (line 284) | public override async Task StopSiloAsync(CancellationToken ct) method Dispose (line 317) | protected override void Dispose(bool disposing) method DisposeAsync (line 338) | public override async ValueTask DisposeAsync() FILE: src/Orleans.TestingHost/StandaloneSiloHost.cs class StandaloneSiloHost (line 14) | public static class StandaloneSiloHost method Main (line 21) | public static async Task Main(string[] args) method MonitorParentProcess (line 71) | private static void MonitorParentProcess(int monitorProcessId) method ListenForShutdownCommand (line 108) | private static void ListenForShutdownCommand(CancellationTokenSource cts) method WhenCancelled (line 137) | private static Task WhenCancelled(this CancellationToken token) FILE: src/Orleans.TestingHost/TestCluster.cs class TestCluster (line 33) | public class TestCluster : IDisposable, IAsyncDisposable method TestCluster (line 135) | public TestCluster( method GetSiloServiceProvider (line 151) | public IServiceProvider GetSiloServiceProvider(SiloAddress silo = null) method Deploy (line 170) | public void Deploy() method DeployAsync (line 178) | public async Task DeployAsync() method WaitForInitialStabilization (line 227) | private async Task WaitForInitialStabilization() method GetActiveSilos (line 269) | public IEnumerable GetActiveSilos() method GetSiloForAddress (line 294) | public SiloHandle GetSiloForAddress(SiloAddress siloAddress) method WaitForLivenessToStabilizeAsync (line 305) | public async Task WaitForLivenessToStabilizeAsync(bool didKill = false) method GetLivenessStabilizationTime (line 318) | public static TimeSpan GetLivenessStabilizationTime(ClusterMembershipO... method StartAdditionalSilo (line 341) | public SiloHandle StartAdditionalSilo(bool startAdditionalSiloOnNewPor... method StartAdditionalSiloAsync (line 350) | public async Task StartAdditionalSiloAsync(bool startAddit... method StartAdditionalSilosAsync (line 361) | public async Task> StartAdditionalSilosAsync(int silo... method StopSecondarySilosAsync (line 396) | public async Task StopSecondarySilosAsync() method StopPrimarySiloAsync (line 407) | public async Task StopPrimarySiloAsync() method StopClusterClientAsync (line 418) | public async Task StopClusterClientAsync() method StopAllSilos (line 442) | public void StopAllSilos() method StopAllSilosAsync (line 450) | public async Task StopAllSilosAsync() method StopSiloAsync (line 465) | public async Task StopSiloAsync(SiloHandle instance) method KillSiloAsync (line 488) | public async Task KillSiloAsync(SiloHandle instance) method KillClientAsync (line 511) | public async Task KillClientAsync() method RestartSiloAsync (line 534) | public async Task RestartSiloAsync(SiloHandle instance) method RestartStoppedSecondarySiloAsync (line 565) | public async Task RestartStoppedSecondarySiloAsync(string ... method InitializeClientAsync (line 580) | public async Task InitializeClientAsync() method InitializeAsync (line 651) | private async Task InitializeAsync() method DefaultCreateSiloAsync (line 680) | public async Task DefaultCreateSiloAsync(string siloName, ... method StartSiloAsync (line 723) | public static async Task StartSiloAsync(TestCluster cluste... method StartSiloAsync (line 737) | public async Task StartSiloAsync(int instanceNumber, TestC... method StopSiloAsync (line 761) | private async Task StopSiloAsync(SiloHandle instance, bool stopGracefu... method GetLog (line 779) | public string GetLog() method ReportUnobservedException (line 784) | private void ReportUnobservedException(object sender, UnhandledExcepti... method WriteLog (line 790) | private void WriteLog(string format, params object[] args) method FlushLogToConsole (line 795) | private void FlushLogToConsole() method DisposeAsync (line 801) | public async ValueTask DisposeAsync() method Dispose (line 830) | public void Dispose() method DisposeAsync (line 840) | private static async Task DisposeAsync(IDisposable value) FILE: src/Orleans.TestingHost/TestClusterBuilder.cs class TestClusterBuilder (line 16) | public class TestClusterBuilder method TestClusterBuilder (line 25) | public TestClusterBuilder() method TestClusterBuilder (line 34) | public TestClusterBuilder(short initialSilosCount) method ConfigureBuilder (line 87) | public TestClusterBuilder ConfigureBuilder(Action configureDelegate) method ConfigureHostConfiguration (line 100) | public TestClusterBuilder ConfigureHostConfiguration(Action() where T : new() method AddClientBuilderConfigurator (line 127) | public TestClusterBuilder AddClientBuilderConfigurator() where T : ... method Build (line 142) | public TestCluster Build() method CreateClusterId (line 177) | public static string CreateClusterId() method ConfigureDefaultPorts (line 186) | private void ConfigureDefaultPorts() class ConfigureStaticClusterDeploymentOptions (line 194) | internal class ConfigureStaticClusterDeploymentOptions : IHostConfigur... method Configure (line 196) | public void Configure(IHostBuilder hostBuilder) method GetSiloName (line 206) | private static string GetSiloName(int instanceNumber) FILE: src/Orleans.TestingHost/TestClusterExtensions.cs class TestClusterExtensions (line 11) | public static class TestClusterExtensions method GetConfiguration (line 19) | public static IConfiguration GetConfiguration(this IHostBuilder builder) method GetConfigurationValue (line 36) | public static string GetConfigurationValue(this IHostBuilder hostBuild... method GetTestClusterOptions (line 46) | public static TestClusterOptions GetTestClusterOptions(this IHostBuild... method GetTestClusterOptions (line 56) | public static TestClusterOptions GetTestClusterOptions(this IConfigura... FILE: src/Orleans.TestingHost/TestClusterHostFactory.cs class TestClusterHostFactory (line 26) | public class TestClusterHostFactory method CreateSiloHost (line 35) | public static IHost CreateSiloHost(string hostName, IConfiguration con... method CreateClusterClient (line 80) | public static IHost CreateClusterClient(string hostName, IConfiguratio... method SerializeConfiguration (line 109) | public static string SerializeConfiguration(IConfiguration configuration) method DeserializeConfiguration (line 122) | public static IConfiguration DeserializeConfiguration(string serialize... method ConfigureAppServices (line 132) | private static void ConfigureAppServices(IConfiguration configuration,... method ConfigureClientAppServices (line 149) | private static void ConfigureClientAppServices(IConfiguration configur... method TryConfigureFileLogging (line 170) | private static void TryConfigureFileLogging(IConfiguration configurati... method InitializeTestHooksSystemTarget (line 180) | private static void InitializeTestHooksSystemTarget(IHost host) FILE: src/Orleans.TestingHost/TestClusterOptions.cs class TestClusterOptions (line 11) | public class TestClusterOptions method ToDictionary (line 110) | public Dictionary ToDictionary() class TestSiloSpecificOptions (line 159) | public class TestSiloSpecificOptions method Create (line 193) | public static TestSiloSpecificOptions Create(TestCluster testCluster, ... method ToDictionary (line 220) | public Dictionary ToDictionary() type ConnectionTransportType (line 242) | public enum ConnectionTransportType FILE: src/Orleans.TestingHost/TestClusterPortAllocator.cs class TestClusterPortAllocator (line 16) | public class TestClusterPortAllocator : ITestClusterPortAllocator method AllocateConsecutivePortPairs (line 27) | public (int, int) AllocateConsecutivePortPairs(int numPorts = 5) method Dispose (line 40) | public void Dispose() method Dispose (line 50) | protected virtual void Dispose(bool disposing) method GetAvailableConsecutiveServerPorts (line 82) | private int GetAvailableConsecutiveServerPorts(IPEndPoint[] tcpConnInf... class MutexManager (line 161) | private class MutexManager method MutexManager (line 169) | private MutexManager() method OnAppDomainUnload (line 180) | private void OnAppDomainUnload(object sender, EventArgs e) => Shutdo... method Shutdown (line 182) | private void Shutdown() method Acquire (line 188) | public bool Acquire(string name) method SignalRelease (line 234) | public void SignalRelease(string name) method Run (line 254) | private void Run() FILE: src/Orleans.TestingHost/TestStorageProviders/FaultInjectionStorageProvider.cs class FaultInjectionGrainStorageOptions (line 15) | public class FaultInjectionGrainStorageOptions class FaultInjectionGrainStorage (line 31) | public class FaultInjectionGrainStorage : IGrainStorage, ILifecycleParti... method FaultInjectionGrainStorage (line 46) | public FaultInjectionGrainStorage(IGrainStorage realStorageProvider, s... method InsertDelay (line 55) | private Task InsertDelay() method ReadStateAsync (line 62) | public async Task ReadStateAsync(string grainType, GrainId grainId,... method WriteStateAsync (line 87) | public async Task WriteStateAsync(string grainType, GrainId grainId... method ClearStateAsync (line 112) | public async Task ClearStateAsync(string grainType, GrainId grainId... method Participate (line 137) | public void Participate(ISiloLifecycle lifecycle) class FaultInjectionGrainStorageFactory (line 146) | public static class FaultInjectionGrainStorageFactory method Create (line 155) | public static IGrainStorage Create(IServiceProvider services, string n... FILE: src/Orleans.TestingHost/TestStorageProviders/FaultInjectionStorageServiceCollectionExtensions.cs class FaultInjectionStorageServiceCollectionExtensions (line 16) | public static class FaultInjectionStorageServiceCollectionExtensions method AddFaultInjectionMemoryStorage (line 26) | public static IServiceCollection AddFaultInjectionMemoryStorage( method AddFaultInjectionMemoryStorage (line 44) | public static IServiceCollection AddFaultInjectionMemoryStorage( FILE: src/Orleans.TestingHost/TestStorageProviders/FaultyMemoryStorage.cs class SiloBuilderExtensions (line 12) | public static class SiloBuilderExtensions method AddFaultInjectionMemoryStorage (line 22) | public static ISiloBuilder AddFaultInjectionMemoryStorage( method AddFaultInjectionMemoryStorage (line 40) | public static ISiloBuilder AddFaultInjectionMemoryStorage( FILE: src/Orleans.TestingHost/TestStorageProviders/IStorageFaultGrain.cs type IStorageFaultGrain (line 11) | public interface IStorageFaultGrain : IGrainWithStringKey method AddFaultOnRead (line 17) | Task AddFaultOnRead(GrainId grainId, Exception exception); method AddFaultOnWrite (line 23) | Task AddFaultOnWrite(GrainId grainId, Exception exception); method AddFaultOnClear (line 29) | Task AddFaultOnClear(GrainId grainId, Exception exception); method OnRead (line 34) | Task OnRead(GrainId grainId); method OnWrite (line 39) | Task OnWrite(GrainId grainId); method OnClear (line 44) | Task OnClear(GrainId grainId); FILE: src/Orleans.TestingHost/TestStorageProviders/RandomlyInjectedStorageException.cs class RandomlyInjectedStorageException (line 10) | [Serializable] method RandomlyInjectedStorageException (line 17) | public RandomlyInjectedStorageException() : base("injected fault") { } method RandomlyInjectedStorageException (line 24) | [Obsolete] class RandomlyInjectedInconsistentStateException (line 34) | [Serializable] method RandomlyInjectedInconsistentStateException (line 41) | public RandomlyInjectedInconsistentStateException() : base("injected f... method RandomlyInjectedInconsistentStateException (line 48) | [Obsolete] FILE: src/Orleans.TestingHost/TestStorageProviders/StorageFaultGrain.cs class StorageFaultGrain (line 15) | public class StorageFaultGrain : Grain, IStorageFaultGrain method OnActivateAsync (line 23) | public override async Task OnActivateAsync(CancellationToken cancellat... method AddFaultOnRead (line 34) | public Task AddFaultOnRead(GrainId grainId, Exception exception) method AddFaultOnWrite (line 42) | public Task AddFaultOnWrite(GrainId grainId, Exception exception) method AddFaultOnClear (line 50) | public Task AddFaultOnClear(GrainId grainId, Exception exception) method OnRead (line 58) | public Task OnRead(GrainId grainId) method OnWrite (line 68) | public Task OnWrite(GrainId grainId) method OnClear (line 78) | public Task OnClear(GrainId grainId) FILE: src/Orleans.TestingHost/UnixSocketTransport/UnixSocketConnectionExtensions.cs class UnixSocketConnectionExtensions (line 10) | public static class UnixSocketConnectionExtensions method UseUnixSocketConnection (line 12) | public static ISiloBuilder UseUnixSocketConnection(this ISiloBuilder s... method UseUnixSocketConnection (line 24) | public static IClientBuilder UseUnixSocketConnection(this IClientBuild... method CreateUnixSocketConnectionFactory (line 34) | private static Func Crea... method CreateUnixSocketConnectionListenerFactory (line 39) | private static Func ConnectAsync(EndPoint endpoi... FILE: src/Orleans.TestingHost/UnixSocketTransport/UnixSocketConnectionListener.cs class UnixSocketConnectionListener (line 12) | internal class UnixSocketConnectionListener : IConnectionListener method UnixSocketConnectionListener (line 22) | public UnixSocketConnectionListener(UnixDomainSocketEndPoint unixEndpo... method Bind (line 34) | public void Bind() method AcceptAsync (line 41) | public async ValueTask AcceptAsync(CancellationToke... method DisposeAsync (line 73) | public ValueTask DisposeAsync() method UnbindAsync (line 79) | public ValueTask UnbindAsync(CancellationToken cancellationToken = def... FILE: src/Orleans.TestingHost/UnixSocketTransport/UnixSocketConnectionListenerFactory.cs class UnixSocketConnectionListenerFactory (line 12) | internal class UnixSocketConnectionListenerFactory : IConnectionListener... method UnixSocketConnectionListenerFactory (line 18) | public UnixSocketConnectionListenerFactory( method BindAsync (line 29) | public ValueTask BindAsync(EndPoint endpoint, Can... FILE: src/Orleans.TestingHost/UnixSocketTransport/UnixSocketConnectionOptions.cs class UnixSocketConnectionOptions (line 10) | public partial class UnixSocketConnectionOptions method ConvertEndpointRegex (line 22) | [GeneratedRegex("[^a-zA-Z0-9]")] method DefaultConvertEndpointToPath (line 25) | private static string DefaultConvertEndpointToPath(EndPoint endPoint) ... FILE: src/Orleans.TestingHost/Utils/AsyncResultHandle.cs class AsyncResultHandle (line 9) | public class AsyncResultHandle method Reset (line 15) | public virtual void Reset() method WaitForFinished (line 47) | public Task WaitForFinished(TimeSpan timeout) method WaitForContinue (line 56) | public Task WaitForContinue(TimeSpan timeout) method WaitFor (line 66) | public async Task WaitFor(TimeSpan timeout, Func checkFlag) FILE: src/Orleans.TestingHost/Utils/StorageEmulator.cs class StorageEmulator (line 15) | public static class StorageEmulator method IsStarted (line 40) | public static bool IsStarted() method Help (line 62) | public static string Help() method TryStart (line 91) | public static bool TryStart() method Start (line 103) | public static bool Start() method Stop (line 127) | public static bool Stop() method CreateProcessArguments (line 152) | private static ProcessStartInfo CreateProcessArguments(string arguments) method GetStorageEmulatorProcess (line 173) | private static bool GetStorageEmulatorProcess() method GetStorageEmulatorPath (line 192) | private static string GetStorageEmulatorPath() method GetProgramFilesBasePath (line 207) | private static string GetProgramFilesBasePath() FILE: src/Orleans.TestingHost/Utils/TestingUtils.cs class TestingUtils (line 14) | public static class TestingUtils method ConfigureDefaultLoggingBuilder (line 24) | public static void ConfigureDefaultLoggingBuilder(ILoggingBuilder buil... method CreateTraceFileName (line 35) | public static string CreateTraceFileName(string nodeName, string clust... method CreateDefaultLoggerFactory (line 55) | public static ILoggerFactory CreateDefaultLoggerFactory(string filePath) method CreateDefaultLoggerFactory (line 67) | public static ILoggerFactory CreateDefaultLoggerFactory(string filePat... method WaitUntilAsync (line 79) | public static async Task WaitUntilAsync(Func> predicat... method Multiply (line 116) | public static TimeSpan Multiply(TimeSpan time, double value) FILE: src/Orleans.Transactions.TestKit.Base/Consistency/ConsistencyTestGrain.cs class ConsistencyTestGrain (line 11) | [Reentrant] class State (line 17) | [Serializable] method ConsistencyTestGrain (line 29) | public ConsistencyTestGrain( method Run (line 43) | public async Task Run(ConsistencyTestOptions options, i... method Read (line 96) | private Task Read() method Write (line 113) | private Task Write() method Recurse (line 139) | private async Task Recurse(ConsistencyTestOptions optio... FILE: src/Orleans.Transactions.TestKit.Base/Consistency/ConsistencyTestHarness.cs class ConsistencyTestHarness (line 11) | public class ConsistencyTestHarness method ConsistencyTestHarness (line 33) | public ConsistencyTestHarness( method RunRandomTransactionSequence (line 69) | public async Task RunRandomTransactionSequence(int partition, int coun... method CheckConsistency (line 144) | public void CheckConsistency(bool tolerateGenericTimeouts = false, boo... method DFS (line 228) | private void DFS() method Visit (line 238) | private bool Visit(string node, HashSet edges) FILE: src/Orleans.Transactions.TestKit.Base/Consistency/ConsistencyTestOptions.cs class ConsistencyTestOptions (line 5) | [Serializable] type ReadWriteDetermination (line 27) | public enum ReadWriteDetermination FILE: src/Orleans.Transactions.TestKit.Base/Consistency/IConsistencyTestGrain.cs type IConsistencyTestGrain (line 7) | public interface IConsistencyTestGrain : IGrainWithIntegerKey method Run (line 9) | [Transaction(TransactionOption.CreateOrJoin)] class UserAbort (line 14) | [Serializable] method UserAbort (line 18) | public UserAbort() : base("User aborted transaction") { } method UserAbort (line 20) | [Obsolete] FILE: src/Orleans.Transactions.TestKit.Base/Consistency/Observation.cs type Observation (line 5) | [Serializable] FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/FaultInjectionAzureTableTransactionStateStorage.cs class FaultInjectionAzureTableTransactionStateStorage (line 13) | public class FaultInjectionAzureTableTransactionStateStorage : I... method FaultInjectionAzureTableTransactionStateStorage (line 18) | public FaultInjectionAzureTableTransactionStateStorage(ITransactionFau... method Load (line 25) | public Task> Load() method Store (line 30) | public async Task Store( class FaultInjectionAzureTableTransactionStateStorageFactory (line 52) | public class FaultInjectionAzureTableTransactionStateStorageFactory : IT... method Create (line 57) | public static ITransactionalStateStorageFactory Create(IServiceProvide... method FaultInjectionAzureTableTransactionStateStorageFactory (line 64) | public FaultInjectionAzureTableTransactionStateStorageFactory( method Create (line 70) | public ITransactionalStateStorage Create(string stateN... method Participate (line 77) | public void Participate(ISiloLifecycle lifecycle) FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/FaultInjectionTransactionCoordinatorGrain.cs type IFaultInjectionTransactionCoordinatorGrain (line 7) | public interface IFaultInjectionTransactionCoordinatorGrain : IGrainWith... method MultiGrainSet (line 9) | [Transaction(TransactionOption.Create)] method MultiGrainAddAndFaultInjection (line 12) | [Transaction(TransactionOption.Create)] class FaultInjectionTransactionCoordinatorGrain (line 16) | public class FaultInjectionTransactionCoordinatorGrain : Grain, IFaultIn... method MultiGrainSet (line 18) | public Task MultiGrainSet(List gr... method MultiGrainAddAndFaultInjection (line 23) | public Task MultiGrainAddAndFaultInjection(List : ITransactionMa... method FaultInjectionTransactionManager (line 20) | public FaultInjectionTransactionManager(IControlledTransactionFaultInj... method PrepareAndCommit (line 30) | public async Task PrepareAndCommit(Guid transacti... method Prepared (line 61) | public async Task Prepared(Guid transactionId, DateTime timeStamp, Par... method Ping (line 80) | public async Task Ping(Guid transactionId, DateTime timeStamp, Partici... class FaultInjectionTransactionalResource (line 98) | internal class FaultInjectionTransactionalResource : ITransactio... method FaultInjectionTransactionalResource (line 108) | public FaultInjectionTransactionalResource(IControlledTransactionFault... method CommitReadOnly (line 119) | public async Task CommitReadOnly(Guid transaction... method Abort (line 140) | public async Task Abort(Guid transactionId) method Cancel (line 159) | public async Task Cancel(Guid transactionId, DateTime timeStamp, Trans... method Confirm (line 175) | public async Task Confirm(Guid transactionId, DateTime timeStamp) method Prepare (line 206) | public async Task Prepare(Guid transactionId, AccessCounter accessCoun... FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/FaultInjectionTransactionState.cs class FaultInjectionControl (line 10) | [GenerateSerializer] method Reset (line 19) | public void Reset() type TransactionFaultInjectPhase (line 26) | [GenerateSerializer] type FaultInjectionType (line 46) | public enum FaultInjectionType type IFaultInjectionTransactionalState (line 54) | public interface IFaultInjectionTransactionalState : ITransactio... class FaultInjectionTransactionalState (line 59) | internal class FaultInjectionTransactionalState : IFaultInjectio... method FaultInjectionTransactionalState (line 68) | public FaultInjectionTransactionalState(TransactionalState txS... method Participate (line 77) | public void Participate(IGrainLifecycle lifecycle) method SetupResourceFactory (line 83) | internal void SetupResourceFactory(IGrainContext context, string state... method PerformRead (line 92) | public Task PerformRead(Func readFu... method PerformUpdate (line 97) | public Task PerformUpdate(Func upda... FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/FaultInjectionTransactionStateAttribute.cs type IFaultInjectionTransactionalStateConfiguration (line 9) | public interface IFaultInjectionTransactionalStateConfiguration : ITrans... class FaultInjectionTransactionalStateAttribute (line 13) | [AttributeUsage(AttributeTargets.Parameter)] method FaultInjectionTransactionalStateAttribute (line 19) | public FaultInjectionTransactionalStateAttribute(string stateName, str... type IFaultInjectionTransactionalStateFactory (line 26) | public interface IFaultInjectionTransactionalStateFactory method Create (line 28) | IFaultInjectionTransactionalState Create(IFaultInjecti... class FaultInjectionTransactionalStateFactory (line 31) | public class FaultInjectionTransactionalStateFactory : IFaultInjectionTr... method FaultInjectionTransactionalStateFactory (line 34) | public FaultInjectionTransactionalStateFactory(IGrainContextAccessor c... method Create (line 39) | public IFaultInjectionTransactionalState Create(IFault... class FaultInjectionTransactionalStateAttributeMapper (line 49) | public class FaultInjectionTransactionalStateAttributeMapper : IAttribut... method GetFactory (line 53) | public Factory GetFactory(ParameterInfo paramet... method Create (line 62) | private static object Create(IGrainContext context, MethodInfo generic... FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/HostingExtensions.cs class SiloBuilderExtensions (line 9) | public static class SiloBuilderExtensions method UseControlledFaultInjectionTransactionState (line 14) | public static ISiloBuilder UseControlledFaultInjectionTransactionState... method AddFaultInjectionAzureTableTransactionalStateStorage (line 19) | public static ISiloBuilder AddFaultInjectionAzureTableTransactionalSta... method AddFaultInjectionAzureTableTransactionalStateStorage (line 24) | public static ISiloBuilder AddFaultInjectionAzureTableTransactionalSta... FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/IControlledFaultInjector.cs type IControlledTransactionFaultInjector (line 3) | public interface IControlledTransactionFaultInjector : ITransactionFault... FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/SimpleAzureStorageExceptionInjector.cs class SimpleAzureStorageExceptionInjector (line 9) | public class SimpleAzureStorageExceptionInjector : IControlledTransactio... method SimpleAzureStorageExceptionInjector (line 16) | public SimpleAzureStorageExceptionInjector(ILogger Get() method Deactivate (line 79) | public Task Deactivate() FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ControlledInjection/TransactionFaultInjectionServiceCollectionExtensions.cs class TransactionFaultInjectionServiceCollectionExtensions (line 16) | public static class TransactionFaultInjectionServiceCollectionExtensions method UseControlledFaultInjectionTransactionState (line 21) | public static IServiceCollection UseControlledFaultInjectionTransactio... method AddFaultInjectionAzureTableTransactionalStateStorage (line 29) | internal static IServiceCollection AddFaultInjectionAzureTableTransact... FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/ITransactionFaultInjector.cs type ITransactionFaultInjector (line 3) | public interface ITransactionFaultInjector method BeforeStore (line 5) | void BeforeStore(); method AfterStore (line 6) | void AfterStore(); FILE: src/Orleans.Transactions.TestKit.Base/FaultInjection/RandomInjection/RandomErrorInjector.cs class RandomErrorInjector (line 7) | public class RandomErrorInjector : ITransactionFaultInjector method RandomErrorInjector (line 13) | public RandomErrorInjector(double injectionProbability) method BeforeStore (line 20) | public void BeforeStore() method AfterStore (line 32) | public void AfterStore() class RandomlyInjectedStorageException (line 40) | [Serializable] method RandomlyInjectedStorageException (line 44) | public RandomlyInjectedStorageException() : base("injected fault") { } method RandomlyInjectedStorageException (line 46) | [Obsolete] class RandomlyInjectedInconsistentStateException (line 53) | [Serializable] method RandomlyInjectedInconsistentStateException (line 57) | public RandomlyInjectedInconsistentStateException() : base("injected... method RandomlyInjectedInconsistentStateException (line 59) | [Obsolete] FILE: src/Orleans.Transactions.TestKit.Base/Grains/ITransactionAttributionGrain.cs type INoAttributionGrain (line 7) | public interface INoAttributionGrain : IGrainWithGuidKey method GetNestedTransactionIds (line 9) | Task[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List HashCode.Combine(value); method BitArrayState (line 56) | public BitArrayState() method BitArrayState (line 60) | public BitArrayState(BitArrayState other) method Set (line 69) | public void Set(int index, bool value) method GetEnumerator (line 84) | public IEnumerator GetEnumerator() method ToString (line 89) | public override string ToString() method Apply (line 141) | public static BitArrayState Apply(BitArrayState left, BitArrayState ri... class MaxStateTransactionalGrain (line 163) | [GrainType("txn-correctness-MaxStateTransactionalGrain")] method MaxStateTransactionalGrain (line 166) | public MaxStateTransactionalGrain(ITransactionalStateFactory stateFact... class DoubleStateTransactionalGrain (line 176) | [GrainType("txn-correctness-DoubleStateTransactionalGrain")] method DoubleStateTransactionalGrain (line 179) | public DoubleStateTransactionalGrain( class SingleStateTransactionalGrain (line 190) | [GrainType("txn-correctness-SingleStateTransactionalGrain")] method SingleStateTransactionalGrain (line 193) | public SingleStateTransactionalGrain( class MultiStateTransactionalBitArrayGrain (line 202) | [GrainType("txn-correctness-MultiStateTransactionalBitArrayGrain")] method MultiStateTransactionalBitArrayGrain (line 209) | public MultiStateTransactionalBitArrayGrain( method OnActivateAsync (line 217) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Ping (line 225) | public Task Ping() method SetBit (line 230) | public Task SetBit(int index) method Get (line 241) | public async Task> Get() FILE: src/Orleans.Transactions.TestKit.Base/Grains/MultiStateTransactionalGrain.cs class GrainData (line 11) | [Serializable] class MaxStateTransactionalGrain (line 19) | public class MaxStateTransactionalGrain : MultiStateTransactionalGrainBa... method MaxStateTransactionalGrain (line 21) | public MaxStateTransactionalGrain(ITransactionalStateFactory stateFact... class DoubleStateTransactionalGrain (line 31) | public class DoubleStateTransactionalGrain : MultiStateTransactionalGrai... method DoubleStateTransactionalGrain (line 33) | public DoubleStateTransactionalGrain( class SingleStateTransactionalGrain (line 44) | public class SingleStateTransactionalGrain : MultiStateTransactionalGrai... method SingleStateTransactionalGrain (line 46) | public SingleStateTransactionalGrain( class NoStateTransactionalGrain (line 55) | public class NoStateTransactionalGrain : MultiStateTransactionalGrainBas... method NoStateTransactionalGrain (line 57) | public NoStateTransactionalGrain( class MultiStateTransactionalGrainBaseClass (line 64) | public class MultiStateTransactionalGrainBaseClass : Grain, ITransaction... method MultiStateTransactionalGrainBaseClass (line 70) | public MultiStateTransactionalGrainBaseClass( method OnActivateAsync (line 78) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Set (line 84) | public async Task Set(int newValue) method Add (line 97) | public async Task Add(int numberToAdd) method Get (line 113) | public async Task Get() method AddAndThrow (line 127) | public async Task AddAndThrow(int numberToAdd) method SetAndThrow (line 133) | public async Task SetAndThrow(int numberToSet) method Deactivate (line 139) | public Task Deactivate() class AddAndThrowException (line 146) | [Serializable] method AddAndThrowException (line 150) | public AddAndThrowException() : base("Unexpected error.") { } method AddAndThrowException (line 152) | public AddAndThrowException(string message) : base(message) { } method AddAndThrowException (line 154) | public AddAndThrowException(string message, Exception innerException) ... method AddAndThrowException (line 156) | [Obsolete] FILE: src/Orleans.Transactions.TestKit.Base/Grains/RemoteCommitService.cs type IRemoteCommitService (line 8) | public interface IRemoteCommitService method Pass (line 10) | Task Pass(Guid transactionId, string data); method Fail (line 11) | Task Fail(Guid transactionId, string data); method Throw (line 12) | Task Throw(Guid transactionId, string data); class RemoteCommitService (line 18) | public class RemoteCommitService : IRemoteCommitService method RemoteCommitService (line 22) | public RemoteCommitService(ILogger logger) method Pass (line 27) | public async Task Pass(Guid transactionId, string data) method Fail (line 34) | public async Task Fail(Guid transactionId, string data) method Throw (line 41) | public async Task Throw(Guid transactionId, string data) class PassOperation (line 49) | [Serializable] method PassOperation (line 56) | public PassOperation(string data) method Commit (line 61) | public async Task Commit(Guid transactionId, IRemoteCommitServic... class FailOperation (line 67) | [Serializable] method FailOperation (line 74) | public FailOperation(string data) method Commit (line 79) | public async Task Commit(Guid transactionId, IRemoteCommitServic... class ThrowOperation (line 85) | [Serializable] method ThrowOperation (line 92) | public ThrowOperation(string data) method Commit (line 97) | public async Task Commit(Guid transactionId, IRemoteCommitServic... FILE: src/Orleans.Transactions.TestKit.Base/Grains/TransactionAttributionGrain.cs class NoAttributionGrain (line 8) | public class NoAttributionGrain : Grain, INoAttributionGrain method GetNestedTransactionIds (line 10) | public Task[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int tier, List[]> GetNestedTransactionIds(int t... FILE: src/Orleans.Transactions.TestKit.Base/Grains/TransactionCommitterTestGrain.cs class TransactionCommitterTestGrain (line 8) | public class TransactionCommitterTestGrain : Grain, ITransactionCommitte... method TransactionCommitterTestGrain (line 14) | public TransactionCommitterTestGrain( method OnActivateAsync (line 22) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Commit (line 28) | public Task Commit(ITransactionCommitOperation o... FILE: src/Orleans.Transactions.TestKit.Base/Grains/TransactionCoordinatorGrain.cs class TransactionCoordinatorGrain (line 12) | [StatelessWorker] method MultiGrainSet (line 15) | public Task MultiGrainSet(List grains, int newV... method MultiGrainAdd (line 20) | public Task MultiGrainAdd(List grains, int numb... method MultiGrainDouble (line 25) | public Task MultiGrainDouble(List grains) method OrphanCallTransaction (line 30) | public Task OrphanCallTransaction() method AddAndThrow (line 36) | public async Task AddAndThrow(ITransactionTestGrain grain, int numberT... method MultiGrainAddAndThrow (line 42) | public async Task MultiGrainAddAndThrow(List th... method MultiGrainSetBit (line 48) | public Task MultiGrainSetBit(List grains,... method MultiGrainAdd (line 53) | public Task MultiGrainAdd(ITransactionCommitterTestGrain committer, IT... method UpdateViolated (line 61) | public Task UpdateViolated(ITransactionTestGrain grain, int numberToAdd) method Double (line 66) | private async Task Double(ITransactionTestGrain grain) method MultiGrainDoubleByRWRW (line 72) | public async Task MultiGrainDoubleByRWRW(List g... method MultiGrainDoubleByWRWR (line 80) | public async Task MultiGrainDoubleByWRWR(List g... FILE: src/Orleans.Transactions.TestKit.Base/ITestState.cs type ITestState (line 3) | public interface ITestState FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/ConsistencyTransactionTestRunner.cs class ConsistencyTransactionTestRunner (line 8) | public abstract class ConsistencyTransactionTestRunner : TransactionTest... method ConsistencyTransactionTestRunner (line 10) | protected ConsistencyTransactionTestRunner(IGrainFactory grainFactory,... method RandomizedConsistency (line 19) | public virtual async Task RandomizedConsistency(int numGrains, int sca... FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/ControlledFaultInjectionTransactionTestRunner.cs class ControlledFaultInjectionTransactionTestRunner (line 9) | public class ControlledFaultInjectionTransactionTestRunner : Transaction... method ControlledFaultInjectionTransactionTestRunner (line 11) | public ControlledFaultInjectionTransactionTestRunner(IGrainFactory gra... method SingleGrainReadTransaction (line 15) | public virtual async Task SingleGrainReadTransaction() method SingleGrainWriteTransaction (line 28) | public virtual async Task SingleGrainWriteTransaction() method MultiGrainWriteTransaction_FaultInjection (line 40) | public virtual async Task MultiGrainWriteTransaction_FaultInjection(Tr... FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/DisabledTransactionsTestRunner.cs class DisabledTransactionsTestRunner (line 9) | public abstract class DisabledTransactionsTestRunner : TransactionTestRu... method DisabledTransactionsTestRunner (line 11) | protected DisabledTransactionsTestRunner(IGrainFactory grainFactory, A... method TransactionGrainsThrowWhenTransactions (line 14) | public virtual void TransactionGrainsThrowWhenTransactions(string tran... method MultiTransactionGrainsThrowWhenTransactions (line 22) | public virtual void MultiTransactionGrainsThrowWhenTransactions(string... FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/GoldenPathTransactionTestRunner.cs class GoldenPathTransactionTestRunner (line 9) | public abstract class GoldenPathTransactionTestRunner : TransactionTestR... method GoldenPathTransactionTestRunner (line 11) | protected GoldenPathTransactionTestRunner(IGrainFactory grainFactory, ... method SingleGrainReadTransaction (line 14) | public virtual async Task SingleGrainReadTransaction(string grainStates) method SingleGrainWriteTransaction (line 27) | public virtual async Task SingleGrainWriteTransaction(string grainStates) method MultiGrainWriteTransaction (line 38) | public virtual async Task MultiGrainWriteTransaction(string grainState... method MultiGrainReadWriteTransaction (line 61) | public virtual async Task MultiGrainReadWriteTransaction(string grainS... method RepeatGrainReadWriteTransaction (line 87) | public virtual async Task RepeatGrainReadWriteTransaction(string grain... method MultiWriteToSingleGrainTransaction (line 120) | public virtual async Task MultiWriteToSingleGrainTransaction(string gr... method RWRWTest (line 140) | public virtual async Task RWRWTest(string grainStates, int grainCount) method WRWRTest (line 165) | public virtual async Task WRWRTest(string grainStates, int grainCount) FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/GrainFaultTransactionTestRunner.cs class GrainFaultTransactionTestRunner (line 9) | public abstract class GrainFaultTransactionTestRunner : TransactionTestR... method GrainFaultTransactionTestRunner (line 11) | public GrainFaultTransactionTestRunner(IGrainFactory grainFactory, Act... method AbortTransactionOnExceptions (line 15) | public virtual async Task AbortTransactionOnExceptions(string grainSta... method AbortTransactionOnReadOnlyViolatedException (line 36) | public virtual async Task AbortTransactionOnReadOnlyViolatedException(... method MultiGrainAbortTransactionOnExceptions (line 57) | public virtual async Task MultiGrainAbortTransactionOnExceptions(strin... method AbortTransactionExceptionInnerExceptionOnlyContainsOneRootCauseException (line 91) | public virtual async Task AbortTransactionExceptionInnerExceptionOnlyC... method AbortTransactionOnOrphanCalls (line 140) | public virtual async Task AbortTransactionOnOrphanCalls(string grainSt... method TestAfterDustSettles (line 163) | private static async Task TestAfterDustSettles(Func what) FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/ScopedTransactionsTestRunner.cs class ScopedTransactionsTestRunner (line 8) | public abstract class ScopedTransactionsTestRunner : TransactionTestRunn... method ScopedTransactionsTestRunner (line 12) | protected ScopedTransactionsTestRunner(IGrainFactory grainFactory, ITr... method CreateTransactionScopeAndSetValue (line 18) | public virtual async Task CreateTransactionScopeAndSetValue(string gra... method CreateTransactionScopeAndSetValueWithFailure (line 31) | public virtual async Task CreateTransactionScopeAndSetValueWithFailure... method CreateTransactionScopeAndSetValueAndAssert (line 43) | public virtual async Task CreateTransactionScopeAndSetValueAndAssert(s... method CreateNestedTransactionScopeAndSetValueAndInnerFailAndAssert (line 61) | public virtual async Task CreateNestedTransactionScopeAndSetValueAndIn... FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/SkewedClock.cs class SkewedClock (line 5) | public class SkewedClock : IClock method SkewedClock (line 10) | public SkewedClock(TimeSpan minSkew, TimeSpan maxSkew) method UtcNow (line 16) | public DateTime UtcNow() FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/SkewedClockConfigurator.cs class SkewedClockConfigurator (line 8) | public class SkewedClockConfigurator : ISiloConfigurator method Configure (line 13) | public void Configure(ISiloBuilder hostBuilder) FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/TOCGoldenPathTestRunner.cs class TocGoldenPathTestRunner (line 10) | public abstract class TocGoldenPathTestRunner : TransactionTestRunnerBase method TocGoldenPathTestRunner (line 12) | protected TocGoldenPathTestRunner(IGrainFactory grainFactory, Action gra... method RunWhileSucceeding (line 127) | private async Task RunWhileSucceeding(List CheckTxResult(List[][]... method RunAllTxReportFailed (line 156) | private async Task[]> RunAllTxReportFailed... method AllTxSucceed (line 175) | private async Task AllTxSucceed(List[] tr... method SetBit (line 181) | private async Task SetBit(List grains, int index) method ValidateResults (line 214) | private async Task ValidateResults(List txGrain... FILE: src/Orleans.Transactions.TestKit.Base/TestRunners/TransactionalStateStorageTestRunner.cs class TransactionalStateStorageTestRunner (line 10) | public abstract class TransactionalStateStorageTestRunner : Tran... method TransactionalStateStorageTestRunner (line 28) | protected TransactionalStateStorageTestRunner(Func MakePendingState(long s... method MakeParticipantId (line 164) | private static ParticipantId MakeParticipantId() method MakeCommitRecords (line 173) | private static Dictionary MakeCommitRecords(int co... method PrepareOne (line 192) | private async Task PrepareOne() method ConfirmOne (line 219) | public virtual async Task ConfirmOne(bool useTwoSteps) method CancelOne (line 253) | public virtual async Task CancelOne() method ReplaceOne (line 279) | public virtual async Task ReplaceOne() method ConfirmOneAndCancelOne (line 311) | public virtual async Task ConfirmOneAndCancelOne(bool useTwoSteps = fa... method PrepareMany (line 356) | public virtual async Task PrepareMany(int count) method ConfirmMany (line 396) | public virtual async Task ConfirmMany(int count, bool useTwoSteps) method CancelMany (line 438) | public virtual async Task CancelMany(int count) method ReplaceMany (line 474) | public virtual async Task ReplaceMany(int count) method GrowingBatch (line 528) | public virtual async Task GrowingBatch() method ShrinkingBatch (line 581) | public virtual async Task ShrinkingBatch() FILE: src/Orleans.Transactions.TestKit.Base/TransactionTestConstants.cs class TransactionTestConstants (line 4) | public static class TransactionTestConstants FILE: src/Orleans.Transactions.TestKit.Base/TransactionTestRunnerBase.cs class TransactionTestRunnerBase (line 5) | public class TransactionTestRunnerBase method TransactionTestRunnerBase (line 10) | protected TransactionTestRunnerBase(IGrainFactory grainFactory, Action... method RandomTestGrain (line 16) | protected ITransactionTestGrain RandomTestGrain(string transactionTest... method RandomTestGrain (line 21) | protected TGrainInterface RandomTestGrain(string tran... method TestGrain (line 27) | protected virtual ITransactionTestGrain TestGrain(string transactionTe... method TestGrain (line 32) | protected virtual TGrainInterface TestGrain(string tr... FILE: src/Orleans.Transactions.TestKit.xUnit/ConsistencyTransactionTestRunner.cs class ConsistencyTransactionTestRunnerxUnit (line 8) | public abstract class ConsistencyTransactionTestRunnerxUnit : Consistenc... method ConsistencyTransactionTestRunnerxUnit (line 10) | public ConsistencyTransactionTestRunnerxUnit(IGrainFactory grainFactor... method RandomizedConsistency (line 18) | [SkippableTheory] FILE: src/Orleans.Transactions.TestKit.xUnit/ControlledFaultInjectionTransactionTestRunner.cs class ControlledFaultInjectionTransactionTestRunnerxUnit (line 7) | public class ControlledFaultInjectionTransactionTestRunnerxUnit : Contro... method ControlledFaultInjectionTransactionTestRunnerxUnit (line 9) | public ControlledFaultInjectionTransactionTestRunnerxUnit(IGrainFactor... method SingleGrainReadTransaction (line 13) | [SkippableFact] method SingleGrainWriteTransaction (line 19) | [SkippableFact] method MultiGrainWriteTransaction_FaultInjection (line 25) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9551")] FILE: src/Orleans.Transactions.TestKit.xUnit/DisabledTransactionsTestRunner.cs class DisabledTransactionsTestRunnerxUnit (line 6) | public class DisabledTransactionsTestRunnerxUnit : DisabledTransactionsT... method DisabledTransactionsTestRunnerxUnit (line 8) | protected DisabledTransactionsTestRunnerxUnit(IGrainFactory grainFacto... method TransactionGrainsThrowWhenTransactions (line 11) | [SkippableTheory] method MultiTransactionGrainsThrowWhenTransactions (line 18) | [SkippableTheory] FILE: src/Orleans.Transactions.TestKit.xUnit/GoldenPathTransactionTestRunner.cs class GoldenPathTransactionTestRunnerxUnit (line 7) | public abstract class GoldenPathTransactionTestRunnerxUnit : GoldenPathT... method GoldenPathTransactionTestRunnerxUnit (line 9) | protected GoldenPathTransactionTestRunnerxUnit(IGrainFactory grainFact... method SingleGrainReadTransaction (line 12) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] method SingleGrainWriteTransaction (line 21) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] method MultiGrainWriteTransaction (line 30) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] method MultiGrainReadWriteTransaction (line 39) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] method RepeatGrainReadWriteTransaction (line 48) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] method MultiWriteToSingleGrainTransaction (line 57) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] method RWRWTest (line 66) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] method WRWRTest (line 75) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9553")] FILE: src/Orleans.Transactions.TestKit.xUnit/GrainFaultTransactionTestRunner.cs class GrainFaultTransactionTestRunnerxUnit (line 7) | public class GrainFaultTransactionTestRunnerxUnit : GrainFaultTransactio... method GrainFaultTransactionTestRunnerxUnit (line 9) | public GrainFaultTransactionTestRunnerxUnit(IGrainFactory grainFactory... method AbortTransactionOnExceptions (line 13) | [SkippableTheory] method AbortTransactionOnReadOnlyViolatedException (line 22) | [SkippableTheory] method MultiGrainAbortTransactionOnExceptions (line 31) | [SkippableTheory] method AbortTransactionExceptionInnerExceptionOnlyContainsOneRootCauseException (line 40) | [SkippableTheory] method AbortTransactionOnOrphanCalls (line 49) | [SkippableTheory()] FILE: src/Orleans.Transactions.TestKit.xUnit/ScopedTransactionsTestRunnerxUnit.cs class ScopedTransactionsTestRunnerxUnit (line 8) | public abstract class ScopedTransactionsTestRunnerxUnit : ScopedTransact... method ScopedTransactionsTestRunnerxUnit (line 10) | protected ScopedTransactionsTestRunnerxUnit(IGrainFactory grainFactory... method CreateTransactionScopeAndSetValue (line 13) | [SkippableTheory] method CreateTransactionScopeAndSetValueWithFailure (line 22) | [SkippableTheory] method CreateTransactionScopeAndSetValueAndAssert (line 31) | [SkippableTheory] method CreateNestedTransactionScopeAndSetValueAndInnerFailAndAssert (line 40) | [SkippableTheory] FILE: src/Orleans.Transactions.TestKit.xUnit/TOCGoldenPathTestRunner.cs class TocGoldenPathTestRunnerxUnit (line 7) | public abstract class TocGoldenPathTestRunnerxUnit : TocGoldenPathTestRu... method TocGoldenPathTestRunnerxUnit (line 9) | protected TocGoldenPathTestRunnerxUnit(IGrainFactory grainFactory, ITe... method MultiGrainWriteTransaction (line 12) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9556")] FILE: src/Orleans.Transactions.TestKit.xUnit/TocFaultTransactionTestRunner.cs class TocFaultTransactionTestRunnerxUnit (line 7) | public abstract class TocFaultTransactionTestRunnerxUnit : TocFaultTrans... method TocFaultTransactionTestRunnerxUnit (line 9) | protected TocFaultTransactionTestRunnerxUnit(IGrainFactory grainFactor... method MultiGrainWriteTransactionWithCommitFailure (line 12) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9556")] method MultiGrainWriteTransactionWithCommitException (line 21) | [SkippableTheory] FILE: src/Orleans.Transactions.TestKit.xUnit/TransactionConcurrencyTestRunner.cs class TransactionConcurrencyTestRunnerxUnit (line 7) | public abstract class TransactionConcurrencyTestRunnerxUnit : Transactio... method TransactionConcurrencyTestRunnerxUnit (line 9) | protected TransactionConcurrencyTestRunnerxUnit(IGrainFactory grainFac... method SingleSharedGrainTest (line 17) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9554")] method TransactionChainTest (line 31) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9554")] method TransactionTreeTest (line 45) | [SkippableTheory(Skip = "https://github.com/dotnet/orleans/issues/9554")] FILE: src/Orleans.Transactions.TestKit.xUnit/TransactionRecoveryTestsRunner.cs class TransactionRecoveryTestsRunnerxUnit (line 8) | public class TransactionRecoveryTestsRunnerxUnit : TransactionRecoveryTe... method TransactionRecoveryTestsRunnerxUnit (line 10) | public TransactionRecoveryTestsRunnerxUnit(TestCluster cluster, ITestO... method TransactionWillRecoverAfterRandomSiloGracefulShutdown (line 15) | [SkippableTheory] method TransactionWillRecoverAfterRandomSiloUnGracefulShutdown (line 23) | [SkippableTheory] FILE: src/Orleans.Transactions.TestKit.xUnit/TransactionalStateStorageTestRunner.cs class TransactionalStateStorageTestRunnerxUnit (line 10) | public abstract class TransactionalStateStorageTestRunnerxUnit :... method TransactionalStateStorageTestRunnerxUnit (line 24) | public TransactionalStateStorageTestRunnerxUnit(Func(this ITransactionalState Create(string storageName, ... FILE: src/Orleans.Transactions/Abstractions/ITransactionAgentStatistics.cs type ITransactionAgentStatistics (line 4) | public interface ITransactionAgentStatistics method TrackTransactionStarted (line 6) | void TrackTransactionStarted(); method TrackTransactionSucceeded (line 9) | void TrackTransactionSucceeded(); method TrackTransactionFailed (line 12) | void TrackTransactionFailed(); method TrackTransactionThrottled (line 15) | void TrackTransactionThrottled(); FILE: src/Orleans.Transactions/Abstractions/ITransactionCommitter.cs type ITransactionCommitOperation (line 7) | public interface ITransactionCommitOperation method Commit (line 10) | Task Commit(Guid transactionId, TService service); type ITransactionCommitter (line 13) | public interface ITransactionCommitter method OnCommit (line 16) | Task OnCommit(ITransactionCommitOperation operation); FILE: src/Orleans.Transactions/Abstractions/ITransactionCommitterConfiguration.cs type ITransactionCommitterConfiguration (line 4) | public interface ITransactionCommitterConfiguration FILE: src/Orleans.Transactions/Abstractions/ITransactionCommitterFactory.cs type ITransactionCommitterFactory (line 3) | public interface ITransactionCommitterFactory method Create (line 5) | ITransactionCommitter Create(ITransactionCommitter... FILE: src/Orleans.Transactions/Abstractions/ITransactionDataCopier.cs type ITransactionDataCopier (line 4) | public interface ITransactionDataCopier method DeepCopy (line 6) | TData DeepCopy(TData original); FILE: src/Orleans.Transactions/Abstractions/ITransactionManager.cs type ITransactionManager (line 8) | public interface ITransactionManager method PrepareAndCommit (line 19) | Task PrepareAndCommit(Guid transactionId, AccessC... method Prepared (line 30) | Task Prepared(Guid transactionId, DateTime timeStamp, ParticipantId re... method Ping (line 39) | Task Ping(Guid transactionId, DateTime timeStamp, ParticipantId resour... type AccessCounter (line 45) | [GenerateSerializer] FILE: src/Orleans.Transactions/Abstractions/ITransactionManagerExtension.cs type ITransactionManagerExtension (line 9) | public interface ITransactionManagerExtension : IGrainExtension method PrepareAndCommit (line 11) | [AlwaysInterleave] method Prepared (line 15) | [AlwaysInterleave] method Ping (line 20) | [AlwaysInterleave] FILE: src/Orleans.Transactions/Abstractions/ITransactionalResource.cs type ITransactionalResource (line 9) | public interface ITransactionalResource method CommitReadOnly (line 19) | Task CommitReadOnly(Guid transactionId, AccessCou... method Prepare (line 29) | Task Prepare(Guid transactionId, AccessCounter accessCount, method Abort (line 36) | Task Abort(Guid transactionId); method Cancel (line 44) | Task Cancel(Guid transactionId, DateTime timeStamp, TransactionalStatu... method Confirm (line 52) | Task Confirm(Guid transactionId, DateTime timeStamp); FILE: src/Orleans.Transactions/Abstractions/ITransactionalResourceExtension.cs type ITransactionalResourceExtension (line 8) | public interface ITransactionalResourceExtension : IGrainExtension method CommitReadOnly (line 10) | [AlwaysInterleave] method Abort (line 14) | [AlwaysInterleave] method Cancel (line 18) | [AlwaysInterleave] method Confirm (line 22) | [AlwaysInterleave] method Prepare (line 26) | [AlwaysInterleave] FILE: src/Orleans.Transactions/Abstractions/ITransactionalState.cs type ITransactionalState (line 12) | public interface ITransactionalState method PerformRead (line 20) | Task PerformRead(Func readFunction); method PerformUpdate (line 27) | Task PerformUpdate(Func updateFunct... FILE: src/Orleans.Transactions/Abstractions/ITransactionalStateConfiguration.cs type ITransactionalStateConfiguration (line 4) | public interface ITransactionalStateConfiguration FILE: src/Orleans.Transactions/Abstractions/ITransactionalStateFactory.cs class TransactionalStateConfiguration (line 3) | public class TransactionalStateConfiguration : ITransactionalStateConfig... method TransactionalStateConfiguration (line 7) | public TransactionalStateConfiguration(ITransactionalStateConfiguratio... type ITransactionalStateFactory (line 20) | public interface ITransactionalStateFactory method Create (line 22) | ITransactionalState Create(TransactionalStateConfigura... FILE: src/Orleans.Transactions/Abstractions/ITransactionalStateStorage.cs type ITransactionalStateStorage (line 11) | public interface ITransactionalStateStorage method Load (line 14) | Task> Load(); method Store (line 16) | Task Store( class PendingTransactionState (line 32) | [Serializable, GenerateSerializer, Immutable] class TransactionalStorageLoadResponse (line 72) | [Serializable, GenerateSerializer, Immutable] method TransactionalStorageLoadResponse (line 76) | public TransactionalStorageLoadResponse() : this(null, new TState(), 0... method TransactionalStorageLoadResponse (line 78) | public TransactionalStorageLoadResponse(string etag, TState committedS... class TransactionalStateMetaData (line 115) | [GenerateSerializer] class CommitRecord (line 126) | [Serializable, GenerateSerializer, Immutable] FILE: src/Orleans.Transactions/Abstractions/ITransactionalStateStorageFactory.cs type ITransactionalStateStorageFactory (line 6) | public interface ITransactionalStateStorageFactory method Create (line 8) | ITransactionalStateStorage Create(string stateName, IG... FILE: src/Orleans.Transactions/Abstractions/TransactionCommitterAttribute.cs class TransactionCommitterAttribute (line 5) | [AttributeUsage(AttributeTargets.Parameter)] method TransactionCommitterAttribute (line 11) | public TransactionCommitterAttribute(string serviceName, string storag... FILE: src/Orleans.Transactions/Abstractions/TransactionalStateAttribute.cs class TransactionalStateAttribute (line 5) | [AttributeUsage(AttributeTargets.Parameter)] method TransactionalStateAttribute (line 11) | public TransactionalStateAttribute(string stateName, string storageNam... FILE: src/Orleans.Transactions/DisabledTransactionAgent.cs class DisabledTransactionAgent (line 6) | internal class DisabledTransactionAgent : ITransactionAgent method Abort (line 8) | public Task Abort(TransactionInfo transactionInfo) method Resolve (line 13) | public Task<(TransactionalStatus Status, Exception exception)> Resolve... method StartTransaction (line 18) | public Task StartTransaction(bool readOnly, TimeSpan ... FILE: src/Orleans.Transactions/DistributedTM/ContextResourceFactoryExtensions.cs class ResourceFactoryRegistry (line 7) | internal class ResourceFactoryRegistry : Dictionary> ... class ContextResourceFactoryExtensions (line 9) | internal static class ContextResourceFactoryExtensions method RegisterResourceFactory (line 11) | public static void RegisterResourceFactory(this IGrainContext conte... method GetResourceFactoryRegistry (line 17) | public static ResourceFactoryRegistry GetResourceFactoryRegistry... FILE: src/Orleans.Transactions/DistributedTM/ParticipantId.cs type ParticipantId (line 9) | [Serializable, GenerateSerializer, Immutable] type Role (line 14) | [GenerateSerializer] method ParticipantId (line 32) | public ParticipantId(string name, GrainReference reference, Role suppo... method ToString (line 39) | public override string ToString() class IdComparer (line 44) | [GenerateSerializer, Immutable] method Equals (line 47) | public bool Equals(ParticipantId x, ParticipantId y) method GetHashCode (line 52) | public int GetHashCode(ParticipantId obj) => HashCode.Combine(obj.Na... class ParticipantRoleExtensions (line 56) | public static class ParticipantRoleExtensions method SupportsRoles (line 58) | public static bool SupportsRoles(this ParticipantId participant, Parti... method IsResource (line 63) | public static bool IsResource(this ParticipantId participant) method IsManager (line 68) | public static bool IsManager(this ParticipantId participant) method IsPriorityManager (line 73) | public static bool IsPriorityManager(this ParticipantId participant) method SelectResources (line 78) | public static IEnumerable> S... method SelectManagers (line 83) | public static IEnumerable> ... method SelectPriorityManagers (line 88) | public static IEnumerable SelectPriorityManagers(this I... FILE: src/Orleans.Transactions/DistributedTM/TransactionAgent.cs class TransactionAgent (line 11) | internal partial class TransactionAgent : ITransactionAgent method TransactionAgent (line 19) | public TransactionAgent(IClock clock, ILogger logger... method StartTransaction (line 27) | public Task StartTransaction(bool readOnly, TimeSpan ... method Resolve (line 43) | public async Task<(TransactionalStatus, Exception)> Resolve(Transactio... method CommitReadOnlyTransaction (line 77) | private async Task<(TransactionalStatus, Exception)> CommitReadOnlyTra... method CommitReadWriteTransaction (line 139) | private async Task<(TransactionalStatus, Exception)> CommitReadWriteTr... method Abort (line 201) | public async Task Abort(TransactionInfo transactionInfo) method CollateParticipants (line 213) | private void CollateParticipants(Dictionary stopwatch.Elapsed.TotalMillisec... type DateTimeLogRecord (line 259) | private readonly struct DateTimeLogRecord(DateTime ts) method ToString (line 261) | public override string ToString() => ts.ToString("o"); method LogTraceStartTransaction (line 264) | [LoggerMessage( method LogTracePrepareTransaction (line 270) | [LoggerMessage( method LogDebugPrepareTransactionFailure (line 276) | [LoggerMessage( method LogDebugCommitReadOnlyTimeout (line 282) | [LoggerMessage( method LogDebugCommitReadOnlyFailure (line 288) | [LoggerMessage( method LogWarnCommitReadOnlyFailure (line 294) | [LoggerMessage( method LogDebugCommitReadOnlyFailureAborting (line 300) | [LoggerMessage( method LogWarnFailAbortReadonlyTransaction (line 306) | [LoggerMessage( method LogTraceFinishReadOnlyTransaction (line 312) | [LoggerMessage( method LogDebugCommitReadWriteTimeout (line 318) | [LoggerMessage( method LogDebugCommitReadWriteFailure (line 325) | [LoggerMessage( method LogWarnCommitTransactionFailure (line 331) | [LoggerMessage( method LogDebugCommitTransactionFailure (line 337) | [LoggerMessage( method LogDebugCommitReadWriteFailureAborting (line 343) | [LoggerMessage( method LogWarnFailAbortTransaction (line 349) | [LoggerMessage( method LogTraceFinishTransaction (line 355) | [LoggerMessage( type ParticipantsLogRecord (line 361) | private readonly struct ParticipantsLogRecord(List part... method ToString (line 363) | public override string ToString() => string.Join(",", participants.S... method LogTraceAbortTransaction (line 366) | [LoggerMessage( FILE: src/Orleans.Transactions/DistributedTM/TransactionAgentStatistics.cs class TransactionAgentStatistics (line 7) | public class TransactionAgentStatistics : ITransactionAgentStatistics method TransactionAgentStatistics (line 25) | public TransactionAgentStatistics() method TrackTransactionStarted (line 38) | public void TrackTransactionStarted() method TrackTransactionSucceeded (line 43) | public void TrackTransactionSucceeded() method TrackTransactionFailed (line 48) | public void TrackTransactionFailed() method TrackTransactionThrottled (line 53) | public void TrackTransactionThrottled() method Copy (line 58) | public static ITransactionAgentStatistics Copy(ITransactionAgentStatis... FILE: src/Orleans.Transactions/DistributedTM/TransactionClient.cs class TransactionClient (line 10) | internal class TransactionClient : ITransactionClient method TransactionClient (line 15) | public TransactionClient(ITransactionAgent transactionAgent, Serialize... method RunTransaction (line 21) | public async Task RunTransaction(TransactionOption transactionOption, ... method RunTransaction (line 35) | public async Task RunTransaction(TransactionOption transactionOption, ... method RunDelegateWithDisallowedTransaction (line 88) | private static async Task RunDelegateWithDisallowedTransaction(Transac... method RunDelegateWithSupportedTransaction (line 100) | private static async Task RunDelegateWithSupportedTransaction(Transact... method RunDelegateWithSupressedTransaction (line 114) | private static async Task RunDelegateWithSupressedTransaction(Transact... method RunDelegateWithTransaction (line 131) | private async Task RunDelegateWithTransaction(TransactionInfo ambientT... method FinalizeTransaction (line 177) | private async Task FinalizeTransaction(TransactionInfo transactionInfo) FILE: src/Orleans.Transactions/DistributedTM/TransactionInfo.cs class TransactionInfo (line 11) | [GenerateSerializer] method TransactionInfo (line 14) | public TransactionInfo() method TransactionInfo (line 20) | public TransactionInfo(Guid id, DateTime timeStamp, DateTime priority,... method TransactionInfo (line 32) | public TransactionInfo(TransactionInfo other) : this() method Fork (line 72) | public TransactionInfo Fork() method Join (line 78) | public void Join(TransactionInfo x) method MustAbort (line 83) | public OrleansTransactionAbortedException MustAbort(Serializer PrepareAndCommit(string resourceId, G... method Prepared (line 31) | public Task Prepared(string resourceId, Guid transactionId, DateTime t... method GetManager (line 36) | private ITransactionManager GetManager(string resourceId) FILE: src/Orleans.Transactions/DistributedTM/TransactionOverloadDetector.cs type ITransactionOverloadDetector (line 8) | public interface ITransactionOverloadDetector method IsOverloaded (line 10) | bool IsOverloaded(); class TransactionRateLoadSheddingOptions (line 16) | public class TransactionRateLoadSheddingOptions class TransactionOverloadDetector (line 33) | public class TransactionOverloadDetector : ITransactionOverloadDetector method TransactionOverloadDetector (line 42) | public TransactionOverloadDetector(ITransactionAgentStatistics statist... method RecordStatistics (line 51) | private void RecordStatistics() method IsOverloaded (line 61) | public bool IsOverloaded() method CalculateTps (line 75) | private static double CalculateTps(long startCounter, DateTime startTi... FILE: src/Orleans.Transactions/DistributedTM/TransactionRecord.cs type CommitRole (line 11) | internal enum CommitRole class TransactionRecord (line 23) | internal class TransactionRecord method TransactionRecord (line 25) | public TransactionRecord() method AddRead (line 50) | public void AddRead() method AddWrite (line 54) | public void AddWrite() method ToString (line 140) | public override string ToString() FILE: src/Orleans.Transactions/DistributedTM/TransactionalResourceExtension.cs class TransactionalResourceExtension (line 10) | public class TransactionalResourceExtension : ITransactionalResourceExte... method TransactionalResourceExtension (line 15) | public TransactionalResourceExtension(IGrainContextAccessor contextAcc... method CommitReadOnly (line 21) | public Task CommitReadOnly(string resourceId, Gui... method Abort (line 26) | public Task Abort(string resourceId, Guid transactionId) method Cancel (line 31) | public Task Cancel(string resourceId, Guid transactionId, DateTime tim... method Confirm (line 36) | public Task Confirm(string resourceId, Guid transactionId, DateTime ti... method Prepare (line 41) | public Task Prepare(string resourceId, Guid transactionId, AccessCount... method GetResource (line 46) | private ITransactionalResource GetResource(string resourceId) FILE: src/Orleans.Transactions/ErrorCodes.cs type OrleansTransactionsErrorCode (line 7) | internal enum OrleansTransactionsErrorCode FILE: src/Orleans.Transactions/Hosting/ClientBuilderExtensions.cs class ClientBuilderExtensions (line 3) | public static class ClientBuilderExtensions method UseTransactions (line 5) | public static IClientBuilder UseTransactions(this IClientBuilder builder) FILE: src/Orleans.Transactions/Hosting/DefaultTransactionDataCopier.cs class DefaultTransactionDataCopier (line 6) | public class DefaultTransactionDataCopier : ITransactionDataCopie... method DefaultTransactionDataCopier (line 10) | public DefaultTransactionDataCopier(DeepCopier deepCopier) method DeepCopy (line 15) | public TData DeepCopy(TData original) FILE: src/Orleans.Transactions/Hosting/SiloBuilderExtensions.cs class SiloBuilderExtensions (line 6) | public static class SiloBuilderExtensions method UseTransactions (line 13) | public static ISiloBuilder UseTransactions(this ISiloBuilder builder) FILE: src/Orleans.Transactions/Hosting/TransactionCommitterAttributeMapper.cs class TransactionCommitterAttributeMapper (line 8) | internal class TransactionCommitterAttributeMapper : IAttributeToFactory... method GetFactory (line 12) | public Factory GetFactory(ParameterInfo paramet... method Create (line 21) | private static object Create(IGrainContext context, MethodInfo generic... FILE: src/Orleans.Transactions/Hosting/TransactionalStateAttributeMapper.cs class TransactionalStateAttributeMapper (line 8) | public class TransactionalStateAttributeMapper : TransactionalStateAttri... method AttributeToConfig (line 10) | protected override TransactionalStateConfiguration AttributeToConfig(T... method GetFactory (line 21) | public Factory GetFactory(ParameterInfo paramet... method Create (line 30) | private object Create(IGrainContext context, MethodInfo genericCreate,... method AttributeToConfig (line 36) | protected abstract TransactionalStateConfiguration AttributeToConfig(T... class TransactionalStateAttributeMapper (line 16) | public abstract class TransactionalStateAttributeMapper : IA... method AttributeToConfig (line 10) | protected override TransactionalStateConfiguration AttributeToConfig(T... method GetFactory (line 21) | public Factory GetFactory(ParameterInfo paramet... method Create (line 30) | private object Create(IGrainContext context, MethodInfo genericCreate,... method AttributeToConfig (line 36) | protected abstract TransactionalStateConfiguration AttributeToConfig(T... FILE: src/Orleans.Transactions/Hosting/TransactionsServiceCollectionExtensions.cs class TransactionsServiceCollectionExtensions (line 12) | public static class TransactionsServiceCollectionExtensions method UseTransactionsWithSilo (line 14) | internal static IServiceCollection UseTransactionsWithSilo(this IServi... method UseTransactionsWithClient (line 27) | internal static IServiceCollection UseTransactionsWithClient(this ISer... method AddTransactionsBaseline (line 29) | internal static IServiceCollection AddTransactionsBaseline(this IServi... FILE: src/Orleans.Transactions/ITransactionAgent.cs type ITransactionAgent (line 14) | public interface ITransactionAgent method StartTransaction (line 22) | Task StartTransaction(bool readOnly, TimeSpan timeout); method Resolve (line 31) | Task<(TransactionalStatus Status, Exception exception)> Resolve(Transa... method Abort (line 39) | Task Abort(TransactionInfo transactionInfo); FILE: src/Orleans.Transactions/ITransactionClient.cs type ITransactionClient (line 6) | public interface ITransactionClient method RunTransaction (line 15) | Task RunTransaction(TransactionOption transactionOption, Func tr... method RunTransaction (line 23) | Task RunTransaction(TransactionOption transactionOption, Func Task.CompletedTask; method OnStop (line 24) | public Task OnStop(CancellationToken ct) method OnStopAsync (line 36) | private async Task OnStopAsync(CancellationToken ct) method BlockDeactivation (line 46) | public IDisposable BlockDeactivation() => new BlockDeactivationDisposa... class BlockDeactivationDisposable (line 48) | private class BlockDeactivationDisposable : IDisposable method BlockDeactivationDisposable (line 52) | public BlockDeactivationDisposable(ActivationLifetime owner) method Dispose (line 58) | public void Dispose() FILE: src/Orleans.Transactions/State/ConfirmationWorker.cs class ConfirmationWorker (line 13) | internal partial class ConfirmationWorker method ConfirmationWorker (line 25) | public ConfirmationWorker( method Add (line 44) | public void Add(Guid transactionId, DateTime timestamp, List TryCollect(Guid transactionId) type Confirmation (line 147) | private struct Confirmation method Confirmation (line 157) | public Confirmation(ParticipantId paricipant, Guid transactionId, Da... method Confirmed (line 168) | public async Task Confirmed() method LogTraceCollectionCompleted (line 187) | [LoggerMessage( method LogWarnCollectingTransaction (line 193) | [LoggerMessage( method LogWarningConfirmationFailed (line 199) | [LoggerMessage( FILE: src/Orleans.Transactions/State/IActivationLifetime.cs type IActivationLifetime (line 6) | internal interface IActivationLifetime method BlockDeactivation (line 10) | IDisposable BlockDeactivation(); FILE: src/Orleans.Transactions/State/NamedTransactionalStateStorageFactory.cs class NamedTransactionalStateStorageFactory (line 9) | public class NamedTransactionalStateStorageFactory : INamedTransactional... method NamedTransactionalStateStorageFactory (line 13) | [Obsolete("Use the NamedTransactionalStateStorageFactory(IGrainContext... method NamedTransactionalStateStorageFactory (line 18) | public NamedTransactionalStateStorageFactory(IGrainContextAccessor con... method Create (line 23) | public ITransactionalStateStorage Create(string storag... FILE: src/Orleans.Transactions/State/ReaderWriterLock.cs class ReadWriteLock (line 12) | internal partial class ReadWriteLock class LockGroup (line 31) | private class LockGroup : Dictionary> method Reset (line 37) | public void Reset() method ReadWriteLock (line 46) | public ReadWriteLock( method EnterLock (line 61) | public async Task EnterLock(Guid transactionId, Date... method ValidateLock (line 184) | public async Task<(TransactionalStatus Status, TransactionRecord e... method AbortQueuedTransactions (line 229) | public void AbortQueuedTransactions() method Rollback (line 249) | public void Rollback(Guid guid) => currentGroup?.Remove(guid); method Rollback (line 251) | public Task Rollback(Guid guid, bool notify) method LockWork (line 263) | private async Task LockWork() method Find (line 362) | private bool Find(Guid guid, bool isRead, out LockGroup group, out Tra... method HasConflict (line 407) | private static bool HasConflict(bool isRead, DateTime priority, Guid t... method Conflicts (line 438) | private static IEnumerable Conflicts(Guid transactionId, LockGro... method LockExits (line 449) | private bool LockExits(out TransactionRecord single, out List<... method Comparer (line 528) | private static int Comparer(TransactionRecord a, TransactionRe... type DateTimeLogRecord (line 533) | private readonly struct DateTimeLogRecord(DateTime? ts) method ToString (line 535) | public override string ToString() => ts?.ToString("o") ?? "none"; method LogTraceSetLockExpiration (line 538) | [LoggerMessage( method LogTraceEnterLock (line 544) | [LoggerMessage( method LogTraceEnterLockQueue (line 550) | [LoggerMessage( method LogTraceBreakLock (line 556) | [LoggerMessage( type TransactionIdsLogRecord (line 562) | private readonly struct TransactionIdsLogRecord(IEnumerable guids) method ToString (line 564) | public override string ToString() => string.Join(",", guids); method LogTraceBreakLockTimeout (line 567) | [LoggerMessage( method LogTraceRecheckLockExpiration (line 573) | [LoggerMessage( method LogWarningDeadlineNotSet (line 579) | [LoggerMessage( method LogTraceExpireLockWaiter (line 585) | [LoggerMessage( method LogTraceLockGroupSize (line 591) | [LoggerMessage( method LogTraceEnterLockKey (line 598) | [LoggerMessage( method LogDebugExitLock (line 604) | [LoggerMessage( method LogDebugExitLockProgress (line 610) | [LoggerMessage( FILE: src/Orleans.Transactions/State/StorageBatch.cs type ITransactionalStateStorageEvents (line 12) | public interface ITransactionalStateStorageEvents where TState :... method Prepare (line 14) | void Prepare(long sequenceNumber, Guid transactionId, DateTime timesta... method Read (line 16) | void Read(DateTime timestamp); method Cancel (line 18) | void Cancel(long sequenceNumber); method Confirm (line 20) | void Confirm(long sequenceNumber); method Commit (line 22) | void Commit(Guid transactionId, DateTime timestamp, List : ITransactionalStateStorageEvents previous) method StorageBatch (line 82) | public StorageBatch(TransactionalStorageLoadResponse loadrespo... method Store (line 87) | public async Task Store(ITransactionalStateStorage sto... method RunFollowUpActions (line 95) | public void RunFollowUpActions() method Read (line 103) | public void Read(DateTime timestamp) method Prepare (line 114) | public void Prepare(long sequenceNumber, Guid transactionId, DateTime ... method Cancel (line 138) | public void Cancel(long sequenceNumber) method Confirm (line 151) | public void Confirm(long sequenceNumber) method Commit (line 174) | public void Commit(Guid transactionId, DateTime timestamp, List> action) method CheckStorePreConditions (line 204) | public async Task CheckStorePreConditions() FILE: src/Orleans.Transactions/State/TransactionManager.cs class TransactionManager (line 8) | internal class TransactionManager : ITransactionManager method TransactionManager (line 13) | public TransactionManager(TransactionQueue queue) method PrepareAndCommit (line 18) | public async Task PrepareAndCommit(Guid transacti... method Prepared (line 44) | public Task Prepared(Guid transactionId, DateTime timeStamp, Participa... method Ping (line 49) | public async Task Ping(Guid transactionId, DateTime timeStamp, Partici... FILE: src/Orleans.Transactions/State/TransactionQueue.cs class TransactionQueue (line 15) | internal partial class TransactionQueue class PreparedMessages (line 35) | private class PreparedMessages method PreparedMessages (line 37) | public PreparedMessages(TransactionalStatus status) method TransactionQueue (line 50) | public TransactionQueue( method EnqueueCommit (line 75) | public async Task EnqueueCommit(TransactionRecord record) method NotifyOfPrepared (line 164) | public async Task NotifyOfPrepared(Guid transactionId, DateTime timeSt... method NotifyOfPrepare (line 212) | public async Task NotifyOfPrepare(Guid transactionId, AccessCounter ac... method NotifyOfAbort (line 237) | public async Task NotifyOfAbort(TransactionRecord entry, Trans... method NotifyOfPing (line 313) | public async Task NotifyOfPing(Guid transactionId, DateTime timeStamp,... method NotifyOfConfirm (line 337) | public async Task NotifyOfConfirm(Guid transactionId, DateTime timeStamp) method NotifyOfCancel (line 366) | public async Task NotifyOfCancel(Guid transactionId, DateTime timeStam... method NotifyOfRestore (line 387) | public async Task NotifyOfRestore() method Ready (line 404) | public Task Ready() method Restore (line 425) | private async Task Restore() method GetMostRecentState (line 476) | public void GetMostRecentState(out TState state, out long sequenceNumber) method BatchableOperationsCount (line 491) | public int BatchableOperationsCount() method StorageWork (line 503) | private async Task StorageWork() method AbortAndRestore (line 596) | private Task AbortAndRestore(TransactionalStatus status, Exception exc... method Bail (line 602) | private async Task Bail(TransactionalStatus status, Exception exceptio... method CheckProgressOfCommitQueue (line 625) | private async Task CheckProgressOfCommitQueue() method CollectEventsForBatch (line 698) | private void CollectEventsForBatch(int batchsize) method OnLocalCommit (line 757) | protected virtual void OnLocalCommit(TransactionRecord entry) method AbortCommits (line 786) | private async Task AbortCommits(TransactionalStatus status, int from = 0) type DateTimeLogRecord (line 800) | private readonly struct DateTimeLogRecord(DateTime ts) method ToString (line 802) | public override string ToString() => ts.ToString("O"); method LogTraceStartTwoPhaseCommit (line 805) | [LoggerMessage( method LogTracePersisted (line 811) | [LoggerMessage( method LogTraceSendingImmediatePrepared (line 817) | [LoggerMessage( method LogErrorImpossibleCase (line 823) | [LoggerMessage( method LogErrorTransactionAbortInternalError (line 830) | [LoggerMessage( method LogTraceNotifyOfPrepared (line 836) | [LoggerMessage( method LogErrorTransactionAbortWrongCommitType (line 842) | [LoggerMessage( method LogTraceAborting (line 848) | [LoggerMessage( method LogTraceAbortingViaPrepared (line 854) | [LoggerMessage( method LogWarningFailedToNotifyAllTransactionParticipantsOfCancellation (line 860) | [LoggerMessage( method LogTraceReceivedPingIrrelevant (line 866) | [LoggerMessage( method LogTraceReceivedPingUnknown (line 873) | [LoggerMessage( method LogTraceNotifyOfConfirm (line 879) | [LoggerMessage( method LogErrorInternalErrorNotifyOfConfirmWrongCommitType (line 885) | [LoggerMessage( method LogTraceNotifyOfCancel (line 891) | [LoggerMessage( method LogWarningExceptionInTransactionQueue (line 897) | [LoggerMessage( method LogDebugLoad (line 903) | [LoggerMessage( method LogDebugRecoverTwoPhaseCommit (line 909) | [LoggerMessage( method LogDebugRecoverCommitConfirmation (line 915) | [LoggerMessage( type CommitQueueLogRecord (line 921) | private readonly struct CommitQueueLogRecord(CommitQueue state... method ToString (line 923) | public override string ToString() => state.Count > committableEntrie... method LogDebugBatchCommit (line 926) | [LoggerMessage( method LogWarningStorePreConditionsNotMet (line 932) | [LoggerMessage( method LogWarningReloadFromStorageTriggeredByETagMismatch (line 938) | [LoggerMessage( method LogWarningStorageExceptionInStorageWorker (line 945) | [LoggerMessage( method LogTraceStableStateVersion (line 951) | [LoggerMessage( method LogWarningExceptionInStorageWorker (line 957) | [LoggerMessage( method LogDebugStorageWorkerTriggeringGrainDeactivation (line 964) | [LoggerMessage( method LogTraceCommitQueueSize (line 970) | [LoggerMessage( method LogTraceSentPrepared (line 976) | [LoggerMessage( method LogTraceSentPing (line 982) | [LoggerMessage( method LogTraceCommitting (line 988) | [LoggerMessage( method LogTraceConfirmedRemoteCommit (line 994) | [LoggerMessage( method LogTraceLocallyCommitted (line 1000) | [LoggerMessage( method LogTraceAddingConfirmationToWorker (line 1006) | [LoggerMessage( FILE: src/Orleans.Transactions/State/TransactionalResource.cs class TransactionalResource (line 7) | internal class TransactionalResource : ITransactionalResource method TransactionalResource (line 12) | public TransactionalResource(TransactionQueue queue) method CommitReadOnly (line 17) | public async Task CommitReadOnly(Guid transaction... method Abort (line 40) | public async Task Abort(Guid transactionId) method Cancel (line 49) | public async Task Cancel(Guid transactionId, DateTime timeStamp, Trans... method Confirm (line 55) | public async Task Confirm(Guid transactionId, DateTime timeStamp) method Prepare (line 61) | public async Task Prepare(Guid transactionId, AccessCounter accessCoun... FILE: src/Orleans.Transactions/State/TransactionalState.cs class TransactionalState (line 19) | public partial class TransactionalState : ITransactionalState PerformRead(Func operat... method PerformUpdate (line 110) | public Task PerformUpdate(Func upda... method Participate (line 176) | public void Participate(IGrainLifecycle lifecycle) method SetupResourceFactory (line 181) | private static void SetupResourceFactory(IGrainContext context, string... method OnSetupState (line 190) | internal async Task OnSetupState(Action(TResult result) method LogTraceStartRead (line 227) | [LoggerMessage( type DateTimeLogRecord (line 233) | private readonly struct DateTimeLogRecord(DateTime ts) method ToString (line 235) | public override string ToString() => ts.ToString("o"); method LogDebugUpdateLockRead (line 238) | [LoggerMessage( method LogTraceEndRead (line 244) | [LoggerMessage( method LogTraceStartWrite (line 250) | [LoggerMessage( method LogDebugUpdateLockWrite (line 256) | [LoggerMessage( method LogTraceEndWrite (line 262) | [LoggerMessage( FILE: src/Orleans.Transactions/State/TransactionalStateFactory.cs class TransactionalStateFactory (line 10) | public class TransactionalStateFactory : ITransactionalStateFactory method TransactionalStateFactory (line 13) | public TransactionalStateFactory(IGrainContextAccessor contextAccessor) method Create (line 18) | public ITransactionalState Create(TransactionalStateCo... method GetJsonSerializerSettings (line 26) | public static JsonSerializerSettings GetJsonSerializerSettings(IServic... FILE: src/Orleans.Transactions/State/TransactionalStateOptions.cs class TransactionalStateOptions (line 5) | public class TransactionalStateOptions FILE: src/Orleans.Transactions/State/TransactionalStateStorageProviderWrapper.cs class TransactionalStateStorageProviderWrapper (line 13) | internal sealed class TransactionalStateStorageProviderWrapper :... method TransactionalStateStorageProviderWrapper (line 24) | public TransactionalStateStorageProviderWrapper(IGrainStorage grainSto... method Load (line 31) | public async Task> Load() method Store (line 38) | public async Task Store(string expectedETag, TransactionalStat... method GetStateStorage (line 99) | private StateStorageBridge> GetStateS... class TransactionalStateRecord (line 105) | [Serializable] FILE: src/Orleans.Transactions/TOC/TocTransactionQueue.cs class TocTransactionQueue (line 11) | internal class TocTransactionQueue : TransactionQueue : ITransactionCommit... method TransactionCommitter (line 30) | public TransactionCommitter( method OnCommit (line 46) | public Task OnCommit(ITransactionCommitOperation operation) method Participate (line 112) | public void Participate(IGrainLifecycle lifecycle) method OnSetupState (line 117) | private async Task OnSetupState(CancellationToken ct) class OperationState (line 141) | [Serializable] method LogTraceStartWrite (line 149) | [LoggerMessage( type DateTimeLogRecord (line 155) | private readonly struct DateTimeLogRecord(DateTime ts) method ToString (line 157) | public override string ToString() => ts.ToString("o"); method LogDebugUpdateLockWrite (line 160) | [LoggerMessage( method LogTraceEndWrite (line 166) | [LoggerMessage( FILE: src/Orleans.Transactions/TOC/TransactionCommitterFactory.cs class TransactionCommitterFactory (line 8) | public class TransactionCommitterFactory : ITransactionCommitterFactory method TransactionCommitterFactory (line 12) | public TransactionCommitterFactory(IGrainContextAccessor contextAccessor) method Create (line 17) | public ITransactionCommitter Create(ITransactionCo... FILE: src/Orleans.Transactions/TransactionAttribute.cs class TransactionAttribute (line 17) | [InvokableCustomInitializer("SetTransactionOptions")] method TransactionAttribute (line 25) | public TransactionAttribute(TransactionOption requirement) method TransactionAttribute (line 30) | public TransactionAttribute(TransactionOptionAlias alias) type TransactionOption (line 41) | public enum TransactionOption type TransactionOptionAlias (line 51) | public enum TransactionOptionAlias class TransactionRequestBase (line 60) | [GenerateSerializer] method TransactionRequestBase (line 77) | [GeneratedActivatorConstructor] method SetTransactionOptions (line 101) | protected void SetTransactionOptions(TransactionOptionAlias txOption) ... method SetTransactionOptions (line 103) | protected void SetTransactionOptions(TransactionOption txOption) method Invoke (line 108) | async Task IOutgoingGrainCallFilter.Invoke(IOutgoingGrainCallContext c... method SetTransactionInfo (line 134) | private TransactionInfo SetTransactionInfo() method Invoke (line 170) | public override async ValueTask Invoke() method BaseInvoke (line 241) | protected abstract ValueTask BaseInvoke(); method Dispose (line 243) | public override void Dispose() method OnDeserialized (line 248) | void IOnDeserialized.OnDeserialized(DeserializationContext context) class TransactionResponse (line 255) | [GenerateSerializer] method Create (line 264) | public static TransactionResponse Create(Response response, Transactio... method GetException (line 303) | public Exception GetException() => _response.Exception; method Dispose (line 305) | public override void Dispose() method GetResult (line 311) | public override T GetResult() => _response.GetResult(); class TransactionRequest (line 314) | [SerializerTransparent] method TransactionRequest (line 317) | protected TransactionRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 340) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 354) | protected abstract ValueTask InvokeInner(); method TransactionRequest (line 360) | protected TransactionRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 382) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 396) | protected abstract ValueTask InvokeInner(); class TransactionRequest (line 357) | [SerializerTransparent] method TransactionRequest (line 317) | protected TransactionRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 340) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 354) | protected abstract ValueTask InvokeInner(); method TransactionRequest (line 360) | protected TransactionRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 382) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 396) | protected abstract ValueTask InvokeInner(); class TransactionTaskRequest (line 399) | [SerializerTransparent] method TransactionTaskRequest (line 402) | protected TransactionTaskRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 425) | private static async ValueTask CompleteInvokeAsync(Task InvokeInner(); method TransactionTaskRequest (line 445) | protected TransactionTaskRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 469) | private static async ValueTask CompleteInvokeAsync(Task resu... method InvokeInner (line 483) | protected abstract Task InvokeInner(); class TransactionTaskRequest (line 442) | [SerializerTransparent] method TransactionTaskRequest (line 402) | protected TransactionTaskRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 425) | private static async ValueTask CompleteInvokeAsync(Task InvokeInner(); method TransactionTaskRequest (line 445) | protected TransactionTaskRequest(Serializer BaseInvoke() method CompleteInvokeAsync (line 469) | private static async ValueTask CompleteInvokeAsync(Task resu... method InvokeInner (line 483) | protected abstract Task InvokeInner(); FILE: src/Orleans.Transactions/TransactionContext.cs class TransactionContext (line 5) | public static class TransactionContext method GetTransactionInfo (line 9) | public static TransactionInfo GetTransactionInfo() => CurrentContext.V... method GetRequiredTransactionInfo (line 13) | public static TransactionInfo GetRequiredTransactionInfo() => GetTrans... method SetTransactionInfo (line 15) | internal static void SetTransactionInfo(TransactionInfo info) method Clear (line 23) | internal static void Clear() => CurrentContext.Value = null; FILE: src/Orleans.Transactions/TransactionalStatus.cs type TransactionalStatus (line 11) | public enum TransactionalStatus class TransactionalStatusExtensions (line 31) | public static class TransactionalStatusExtensions method DefinitelyAborted (line 33) | public static bool DefinitelyAborted(this TransactionalStatus status) method ConvertToUserException (line 50) | public static OrleansTransactionException ConvertToUserException(this ... FILE: src/Orleans.Transactions/Utilities/CausalClock.cs class CausalClock (line 7) | public class CausalClock method CausalClock (line 17) | public CausalClock(IClock clock) method UtcNow (line 22) | public DateTime UtcNow() method Merge (line 31) | public DateTime Merge(DateTime timestamp) method MergeUtcNow (line 40) | public DateTime MergeUtcNow(DateTime timestamp) FILE: src/Orleans.Transactions/Utilities/Clock.cs class Clock (line 5) | public class Clock : IClock method UtcNow (line 7) | public DateTime UtcNow() FILE: src/Orleans.Transactions/Utilities/CommitQueue.cs type CommitQueue (line 10) | internal struct CommitQueue method Add (line 46) | public void Add(TransactionRecord entry) method Clear (line 70) | public void Clear() method RemoveFromFront (line 78) | public void RemoveFromFront(int howMany) method RemoveFromBack (line 99) | public void RemoveFromBack(int howMany) method Find (line 111) | public readonly int Find(Guid TransactionId, DateTime key) FILE: src/Orleans.Transactions/Utilities/IClock.cs type IClock (line 8) | public interface IClock method UtcNow (line 14) | DateTime UtcNow(); FILE: src/Orleans.Transactions/Utilities/PeriodicAction.cs class PeriodicAction (line 5) | internal class PeriodicAction method PeriodicAction (line 11) | public PeriodicAction(TimeSpan period, Action action, DateTime? start ... method TryAction (line 18) | public bool TryAction(DateTime nowUtc) FILE: src/Redis/Orleans.Clustering.Redis/Hosting/HostingExtensions.ICientBuilder.cs class RedisClusteringIClientBuilderExtensions (line 13) | public static class RedisClusteringIClientBuilderExtensions method UseRedisClustering (line 18) | public static IClientBuilder UseRedisClustering(this IClientBuilder bu... method UseRedisClustering (line 36) | public static IClientBuilder UseRedisClustering(this IClientBuilder bu... FILE: src/Redis/Orleans.Clustering.Redis/Hosting/HostingExtensions.ISiloBuilder.cs class RedisClusteringISiloBuilderExtensions (line 13) | public static class RedisClusteringISiloBuilderExtensions method UseRedisClustering (line 18) | public static ISiloBuilder UseRedisClustering(this ISiloBuilder builde... method UseRedisClustering (line 34) | public static ISiloBuilder UseRedisClustering(this ISiloBuilder builde... method AddRedisClustering (line 44) | internal static IServiceCollection AddRedisClustering(this IServiceCol... FILE: src/Redis/Orleans.Clustering.Redis/Hosting/RedisClusteringProviderBuilder.cs class RedisClusteringProviderBuilder (line 20) | internal sealed class RedisClusteringProviderBuilder : IProviderBuilder<... method Configure (line 22) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... method Configure (line 55) | public void Configure(IClientBuilder builder, string name, IConfigurat... FILE: src/Redis/Orleans.Clustering.Redis/Providers/RedisClusteringOptions.cs class RedisClusteringOptions (line 14) | public class RedisClusteringOptions method DefaultCreateMultiplexer (line 41) | public static async Task DefaultCreateMultiple... method DefaultCreateRedisKey (line 50) | public static RedisKey DefaultCreateRedisKey(ClusterOptions clusterOpt... class RedactRedisConfigurationOptions (line 56) | internal class RedactRedisConfigurationOptions : RedactAttribute method Redact (line 58) | public override string Redact(object value) => value is ConfigurationO... class RedisClusteringOptionsValidator (line 64) | public class RedisClusteringOptionsValidator : IConfigurationValidator method RedisClusteringOptionsValidator (line 68) | public RedisClusteringOptionsValidator(IOptions> GetGateways() method InitializeGatewayListProvider (line 39) | public async Task InitializeGatewayListProvider() FILE: src/Redis/Orleans.Clustering.Redis/Storage/JsonSettings.cs class JsonSettings (line 10) | internal static class JsonSettings class IPAddressConverter (line 27) | private class IPAddressConverter : JsonConverter method CanConvert (line 29) | public override bool CanConvert(Type objectType) method WriteJson (line 34) | public override void WriteJson(JsonWriter writer, object value, Json... method ReadJson (line 40) | public override object ReadJson(JsonReader reader, Type objectType, ... class IPEndPointConverter (line 47) | private class IPEndPointConverter : JsonConverter method CanConvert (line 49) | public override bool CanConvert(Type objectType) method WriteJson (line 54) | public override void WriteJson(JsonWriter writer, object value, Json... method ReadJson (line 65) | public override object ReadJson(JsonReader reader, Type objectType, ... class SiloAddressConverter (line 74) | private class SiloAddressConverter : JsonConverter method CanConvert (line 76) | public override bool CanConvert(Type objectType) method WriteJson (line 81) | public override void WriteJson(JsonWriter writer, object value, Json... method ReadJson (line 90) | public override object ReadJson(JsonReader reader, Type objectType, ... FILE: src/Redis/Orleans.Clustering.Redis/Storage/RedisClusteringException.cs class RedisClusteringException (line 9) | [Serializable] method RedisClusteringException (line 13) | public RedisClusteringException() : base() { } method RedisClusteringException (line 16) | public RedisClusteringException(string message) : base(message) { } method RedisClusteringException (line 19) | public RedisClusteringException(string message, Exception innerExcepti... method RedisClusteringException (line 22) | [Obsolete] FILE: src/Redis/Orleans.Clustering.Redis/Storage/RedisMembershipTable.cs class RedisMembershipTable (line 15) | internal class RedisMembershipTable : IMembershipTable, IDisposable method RedisMembershipTable (line 26) | public RedisMembershipTable(IOptions redisOpti... method DeleteMembershipTableEntries (line 36) | public async Task DeleteMembershipTableEntries(string clusterId) method InitializeMembershipTable (line 41) | public async Task InitializeMembershipTable(bool tryInitTableVersion) method InsertRow (line 59) | public async Task InsertRow(MembershipEntry entry, TableVersion ... method UpsertRowInternal (line 64) | private async Task UpsertRowInternal(MembershipEntry ent... method ReadAll (line 108) | public async Task ReadAll() method GetTableVersionFromRow (line 120) | private static TableVersion GetTableVersionFromRow(RedisValue tableVer... method TryGetValueString (line 130) | private static bool TryGetValueString(RedisValue key, [NotNullWhen(tru... method ReadRow (line 142) | public async Task ReadRow(SiloAddress key) method UpdateIAmAlive (line 165) | public async Task UpdateIAmAlive(MembershipEntry entry) method UpdateRow (line 199) | public async Task UpdateRow(MembershipEntry entry, string etag, ... method CleanupDefunctSiloEntries (line 204) | public async Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method Dispose (line 217) | public void Dispose() type UpsertResult (line 222) | private enum UpsertResult method SerializeVersion (line 229) | private static string SerializeVersion(TableVersion tableVersion) => t... method DeserializeVersion (line 231) | private static TableVersion DeserializeVersion(string versionString) method Predeccessor (line 242) | private static TableVersion Predeccessor(TableVersion tableVersion) =>... method Serialize (line 245) | private string Serialize(MembershipEntry value) method Deserialize (line 250) | private MembershipEntry Deserialize(string json) FILE: src/Redis/Orleans.GrainDirectory.Redis/Hosting/RedisGrainDirectoryExtensions.cs class RedisGrainDirectoryExtensions (line 15) | public static class RedisGrainDirectoryExtensions method UseRedisGrainDirectoryAsDefault (line 20) | public static ISiloBuilder UseRedisGrainDirectoryAsDefault( method UseRedisGrainDirectoryAsDefault (line 30) | public static ISiloBuilder UseRedisGrainDirectoryAsDefault( method AddRedisGrainDirectory (line 40) | public static ISiloBuilder AddRedisGrainDirectory( method AddRedisGrainDirectory (line 51) | public static ISiloBuilder AddRedisGrainDirectory( method AddRedisGrainDirectory (line 59) | private static IServiceCollection AddRedisGrainDirectory( FILE: src/Redis/Orleans.GrainDirectory.Redis/Hosting/RedisGrainDirectoryProviderBuilder.cs class RedisGrainDirectoryProviderBuilder (line 17) | internal sealed class RedisGrainDirectoryProviderBuilder : IProviderBuil... method Configure (line 19) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/Redis/Orleans.GrainDirectory.Redis/Options/RedisGrainDirectoryOptions.cs class RedisGrainDirectoryOptions (line 12) | public class RedisGrainDirectoryOptions method DefaultCreateMultiplexer (line 34) | public static async Task DefaultCreateMultiple... class RedactRedisConfigurationOptions (line 37) | internal class RedactRedisConfigurationOptions : RedactAttribute method Redact (line 39) | public override string Redact(object value) => value is ConfigurationO... class RedisGrainDirectoryOptionsValidator (line 45) | public class RedisGrainDirectoryOptionsValidator : IConfigurationValidator method RedisGrainDirectoryOptionsValidator (line 50) | public RedisGrainDirectoryOptionsValidator(RedisGrainDirectoryOptions ... method ValidateConfiguration (line 57) | public void ValidateConfiguration() FILE: src/Redis/Orleans.GrainDirectory.Redis/RedisGrainDirectory.cs class RedisGrainDirectory (line 18) | public partial class RedisGrainDirectory : IGrainDirectory, ILifecyclePa... method RedisGrainDirectory (line 32) | public RedisGrainDirectory( method Lookup (line 44) | public async Task Lookup(GrainId grainId) method Register (line 68) | public Task Register(GrainAddress address) => Register(... method Register (line 70) | public async Task Register(GrainAddress address, GrainA... method Unregister (line 132) | public async Task Unregister(GrainAddress address) method UnregisterSilos (line 169) | public Task UnregisterSilos(List siloAddresses) method Participate (line 174) | public void Participate(ISiloLifecycle lifecycle) method Initialize (line 179) | public async Task Initialize(CancellationToken ct = default) method Uninitialize (line 192) | private async Task Uninitialize(CancellationToken arg) method GetKey (line 205) | private RedisKey GetKey(GrainId grainId) => _keyPrefix.Append(grainId.... method LogConnectionRestored (line 208) | private void LogConnectionRestored(object? sender, ConnectionFailedEve... method LogConnectionFailed (line 211) | private void LogConnectionFailed(object? sender, ConnectionFailedEvent... method LogErrorMessage (line 214) | private void LogErrorMessage(object? sender, RedisErrorEventArgs e) method LogInternalError (line 217) | private void LogInternalError(object? sender, InternalErrorEventArgs e) method LogDebugLookup (line 220) | [LoggerMessage( method LogErrorLookupFailed (line 226) | [LoggerMessage( method LogDebugRegistered (line 232) | [LoggerMessage( method LogDebugRegisterFailed (line 238) | [LoggerMessage( method LogErrorRegisterFailed (line 244) | [LoggerMessage( type GrainAddressLogRecord (line 250) | private readonly struct GrainAddressLogRecord(GrainAddress address) method ToString (line 252) | public override string ToString() => JsonSerializer.Serialize(address); method LogDebugUnregister (line 255) | [LoggerMessage( method LogErrorUnregisterFailed (line 261) | [LoggerMessage( method LogInfoConnectionRestored (line 267) | [LoggerMessage( method LogErrorConnectionFailed (line 273) | [LoggerMessage( method LogErrorRedisMessage (line 279) | [LoggerMessage( method LogErrorInternalError (line 285) | [LoggerMessage( method IsRedisException (line 293) | private static bool IsRedisException(Exception ex) => ex is RedisExcep... FILE: src/Redis/Orleans.Persistence.Redis/Hosting/RedisGrainStorageProviderBuilder.cs class RedisGrainStorageProviderBuilder (line 18) | internal sealed class RedisGrainStorageProviderBuilder : IProviderBuilde... method Configure (line 20) | public void Configure(ISiloBuilder builder, string name, IConfiguratio... FILE: src/Redis/Orleans.Persistence.Redis/Hosting/RedisGrainStorageServiceCollectionExtensions.cs class RedisGrainStorageServiceCollectionExtensions (line 18) | public static class RedisGrainStorageServiceCollectionExtensions method AddRedisGrainStorageAsDefault (line 23) | public static IServiceCollection AddRedisGrainStorageAsDefault(this IS... method AddRedisGrainStorage (line 31) | public static IServiceCollection AddRedisGrainStorage(this IServiceCol... method AddRedisGrainStorageAsDefault (line 39) | public static IServiceCollection AddRedisGrainStorageAsDefault(this IS... method AddRedisGrainStorage (line 47) | public static IServiceCollection AddRedisGrainStorage(this IServiceCol... FILE: src/Redis/Orleans.Persistence.Redis/Hosting/RedisSiloBuilderExtensions.cs class RedisSiloBuilderExtensions (line 11) | public static class RedisSiloBuilderExtensions method AddRedisGrainStorageAsDefault (line 16) | public static ISiloBuilder AddRedisGrainStorageAsDefault(this ISiloBui... method AddRedisGrainStorage (line 24) | public static ISiloBuilder AddRedisGrainStorage(this ISiloBuilder buil... method AddRedisGrainStorageAsDefault (line 32) | public static ISiloBuilder AddRedisGrainStorageAsDefault(this ISiloBui... method AddRedisGrainStorageAsDefault (line 38) | public static ISiloBuilder AddRedisGrainStorageAsDefault(this ISiloBui... method AddRedisGrainStorage (line 46) | public static ISiloBuilder AddRedisGrainStorage(this ISiloBuilder buil... method AddRedisGrainStorage (line 52) | public static ISiloBuilder AddRedisGrainStorage(this ISiloBuilder buil... FILE: src/Redis/Orleans.Persistence.Redis/Providers/RedisStorageOptions.cs class RedisStorageOptions (line 16) | public class RedisStorageOptions : IStorageProviderSerializerOptions method DefaultCreateMultiplexer (line 56) | public static async Task DefaultCreateMultiple... class RedisStorageOptionsExtensions (line 62) | public static class RedisStorageOptionsExtensions method UseGetRedisKeyIgnoringGrainType (line 71) | public static void UseGetRedisKeyIgnoringGrainType(this OptionsBuilder... class RedactRedisConfigurationOptions (line 81) | internal class RedactRedisConfigurationOptions : RedactAttribute method Redact (line 83) | public override string Redact(object value) => value is ConfigurationO... FILE: src/Redis/Orleans.Persistence.Redis/Providers/RedisStorageOptionsValidator.cs class RedisStorageOptionsValidator (line 5) | internal class RedisStorageOptionsValidator : IConfigurationValidator method RedisStorageOptionsValidator (line 10) | public RedisStorageOptionsValidator(RedisStorageOptions options, strin... method ValidateConfiguration (line 16) | public void ValidateConfiguration() FILE: src/Redis/Orleans.Persistence.Redis/Storage/RedisGrainStorage.cs class RedisGrainStorage (line 23) | public partial class RedisGrainStorage : IGrainStorage, ILifecyclePartic... method RedisGrainStorage (line 40) | public RedisGrainStorage( method Participate (line 60) | public void Participate(ISiloLifecycle lifecycle) method Init (line 66) | private async Task Init(CancellationToken cancellationToken) method ReadStateAsync (line 89) | public async Task ReadStateAsync(string grainType, GrainId grainId,... method WriteStateAsync (line 128) | public async Task WriteStateAsync(string grainType, GrainId grainId... method DefaultGetStorageKey (line 174) | private RedisKey DefaultGetStorageKey(string grainType, GrainId grainId) method ClearStateAsync (line 200) | public async Task ClearStateAsync(string grainType, GrainId grainId... method Close (line 254) | private async Task Close(CancellationToken cancellationToken) method CreateInstance (line 262) | private T CreateInstance() => _activatorProvider.GetActivator().... method LogDebugInitializing (line 264) | [LoggerMessage( method LogDebugInitialized (line 270) | [LoggerMessage( method LogErrorInitFailed (line 276) | [LoggerMessage( method LogErrorReadStateFailed (line 282) | [LoggerMessage( method LogErrorWriteStateFailed (line 288) | [LoggerMessage( FILE: src/Redis/Orleans.Persistence.Redis/Storage/RedisGrainStorageFactory.cs class RedisGrainStorageFactory (line 11) | public static class RedisGrainStorageFactory method Create (line 16) | public static RedisGrainStorage Create(IServiceProvider services, stri... FILE: src/Redis/Orleans.Persistence.Redis/Storage/RedisStorageException.cs class RedisStorageException (line 9) | [GenerateSerializer] method RedisStorageException (line 15) | public RedisStorageException() method RedisStorageException (line 23) | public RedisStorageException(string message) : base(message) method RedisStorageException (line 32) | public RedisStorageException(string message, Exception inner) : base(m... method RedisStorageException (line 37) | [Obsolete] FILE: src/Redis/Orleans.Reminders.Redis/Hosting/RedisRemindersProviderBuilder.cs class RedisRemindersProviderBuilder (line 16) | internal sealed class RedisRemindersProviderBuilder : IProviderBuilder DefaultCreateMultiple... class RedactRedisConfigurationOptions (line 38) | internal class RedactRedisConfigurationOptions : RedactAttribute method Redact (line 40) | public override string Redact(object value) => value is ConfigurationO... class RedisReminderTableOptionsValidator (line 46) | public class RedisReminderTableOptionsValidator : IConfigurationValidator method RedisReminderTableOptionsValidator (line 50) | public RedisReminderTableOptionsValidator(IOptions ReadRow(GrainId grainId, string remin... method ReadRows (line 89) | public async Task ReadRows(GrainId grainId) method ReadRows (line 104) | public async Task ReadRows(uint begin, uint end) method RemoveRow (line 133) | public async Task RemoveRow(GrainId grainId, string reminderName... method TestOnlyClearTable (line 147) | public async Task TestOnlyClearTable() method UpsertRow (line 159) | public async Task UpsertRow(ReminderEntry entry) method ConvertToEntry (line 191) | private static ReminderEntry ConvertToEntry(string reminderValue) method GetFilter (line 205) | private (RedisValue from, RedisValue to) GetFilter(uint grainHash) method GetFilter (line 210) | private (RedisValue from, RedisValue to) GetFilter(GrainId grainId) method GetFilter (line 215) | private (RedisValue from, RedisValue to) GetFilter(GrainId grainId, st... method GetFilter (line 220) | private (RedisValue from, RedisValue to) GetFilter(GrainId grainId, st... method GetFilter (line 225) | private (RedisValue from, RedisValue to) GetFilter(params string[] seg... method ConvertFromEntry (line 231) | private (RedisValue eTag, RedisValue value) ConvertFromEntry(ReminderE... type ReminderEntryLogValue (line 248) | private readonly struct ReminderEntryLogValue(ReminderEntry entry) method ToString (line 250) | public override string ToString() => entry.ToString(); method LogDebugUpsertRow (line 253) | [LoggerMessage( FILE: src/Redis/Orleans.Reminders.Redis/Storage/RedisRemindersException.cs class RedisRemindersException (line 9) | [GenerateSerializer] method RedisRemindersException (line 15) | public RedisRemindersException() method RedisRemindersException (line 23) | public RedisRemindersException(string message) : base(message) method RedisRemindersException (line 32) | public RedisRemindersException(string message, Exception inner) : base... method RedisRemindersException (line 37) | [Obsolete] FILE: src/Serializers/Orleans.Serialization.Protobuf/ByteStringCodec.cs class ByteStringCodec (line 12) | [RegisterSerializer] method ReadValue (line 16) | ByteString IFieldCodec.ReadValue(ref Reader.WriteField(ref Writer(ref Writer writer... method ReadValue (line 65) | public MapField ReadValue(ref Reader rea... method CreateInstance (line 124) | private static MapField CreateInstance(SerializerSession... method ThrowInvalidSizeException (line 131) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 134) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... FILE: src/Serializers/Orleans.Serialization.Protobuf/MapFieldCopier.cs class MapFieldCopier (line 11) | [RegisterCopier] method MapFieldCopier (line 22) | public MapFieldCopier(IDeepCopier keyCopier, IDeepCopier... method DeepCopy (line 29) | public MapField DeepCopy(MapField input, C... method DeepCopy (line 52) | public void DeepCopy(MapField input, MapField(ref Reader reader, Field ... method ThrowTypeFieldMissing (line 213) | private static void ThrowTypeFieldMissing() => throw new RequiredField... method WriteField (line 216) | void IFieldCodec.WriteField(ref Writer w... FILE: src/Serializers/Orleans.Serialization.Protobuf/RepeatedFieldCodec.cs class RepeatedFieldCodec (line 16) | [RegisterSerializer] method RepeatedFieldCodec (line 27) | public RepeatedFieldCodec(IFieldCodec fieldCodec) method WriteField (line 33) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method ReadValue (line 58) | public RepeatedField ReadValue(ref Reader reader, F... method ThrowInvalidSizeException (line 114) | private static void ThrowInvalidSizeException(int length) => throw new... method ThrowLengthFieldMissing (line 117) | private static void ThrowLengthFieldMissing() => throw new RequiredFie... FILE: src/Serializers/Orleans.Serialization.Protobuf/RepeatedFieldCopier.cs class RepeatedFieldCopier (line 10) | [RegisterCopier] method RepeatedFieldCopier (line 19) | public RepeatedFieldCopier(IDeepCopier valueCopier) method DeepCopy (line 25) | public RepeatedField DeepCopy(RepeatedField input, CopyContext c... method DeepCopy (line 48) | public void DeepCopy(RepeatedField input, RepeatedField output, ... FILE: src/Serializers/Orleans.Serialization.Protobuf/SerializationHostingExtensions.cs class SerializationHostingExtensions (line 13) | public static class SerializationHostingExtensions method AddProtobufSerializer (line 21) | public static ISerializerBuilder AddProtobufSerializer( method AddProtobufSerializer (line 33) | public static ISerializerBuilder AddProtobufSerializer( FILE: src/api/AWS/Orleans.Clustering.DynamoDB/Orleans.Clustering.DynamoDB.cs class DynamoDBClientOptions (line 11) | public partial class DynamoDBClientOptions class DynamoDBGatewayListProviderHelper (line 26) | public partial class DynamoDBGatewayListProviderHelper class DynamoDBMembershipHelper (line 30) | public partial class DynamoDBMembershipHelper method ParseDataConnectionString (line 32) | public static void ParseDataConnectionString(string dataConnectionStri... class DynamoDBClusteringOptions (line 38) | public partial class DynamoDBClusteringOptions : Clustering.DynamoDB.Dyn... class DynamoDBClusteringSiloOptions (line 53) | public partial class DynamoDBClusteringSiloOptions class DynamoDBGatewayOptions (line 59) | public partial class DynamoDBGatewayOptions : Clustering.DynamoDB.Dynamo... class AwsUtilsHostingExtensions (line 77) | public static partial class AwsUtilsHostingExtensions method UseDynamoDBClustering (line 79) | public static IClientBuilder UseDynamoDBClustering(this IClientBuilder... method UseDynamoDBClustering (line 81) | public static IClientBuilder UseDynamoDBClustering(this IClientBuilder... method UseDynamoDBClustering (line 83) | public static ISiloBuilder UseDynamoDBClustering(this ISiloBuilder bui... method UseDynamoDBClustering (line 85) | public static ISiloBuilder UseDynamoDBClustering(this ISiloBuilder bui... FILE: src/api/AWS/Orleans.Persistence.DynamoDB/Orleans.Persistence.DynamoDB.cs class DynamoDBGrainStorageOptionsValidator (line 11) | public partial class DynamoDBGrainStorageOptionsValidator : IConfigurati... method DynamoDBGrainStorageOptionsValidator (line 13) | public DynamoDBGrainStorageOptionsValidator(DynamoDBStorageOptions opt... method ValidateConfiguration (line 15) | public void ValidateConfiguration() { } class DynamoDBStorageOptions (line 18) | public partial class DynamoDBStorageOptions : Persistence.DynamoDB.Dynam... class DynamoDBGrainStorageServiceCollectionExtensions (line 47) | public static partial class DynamoDBGrainStorageServiceCollectionExtensions method AddDynamoDBGrainStorage (line 49) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddDynamoDBGrainStorage (line 51) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddDynamoDBGrainStorageAsDefault (line 53) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddDynamoDBGrainStorageAsDefault (line 55) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class DynamoDBGrainStorageSiloBuilderExtensions (line 58) | public static partial class DynamoDBGrainStorageSiloBuilderExtensions method AddDynamoDBGrainStorage (line 60) | public static ISiloBuilder AddDynamoDBGrainStorage(this ISiloBuilder b... method AddDynamoDBGrainStorage (line 62) | public static ISiloBuilder AddDynamoDBGrainStorage(this ISiloBuilder b... method AddDynamoDBGrainStorageAsDefault (line 64) | public static ISiloBuilder AddDynamoDBGrainStorageAsDefault(this ISilo... method AddDynamoDBGrainStorageAsDefault (line 66) | public static ISiloBuilder AddDynamoDBGrainStorageAsDefault(this ISilo... class DynamoDBClientOptions (line 72) | public partial class DynamoDBClientOptions class DynamoDBGrainStorage (line 90) | public partial class DynamoDBGrainStorage : IGrainStorage, ILifecyclePar... method DynamoDBGrainStorage (line 92) | public DynamoDBGrainStorage(string name, Configuration.DynamoDBStorage... method ClearStateAsync (line 94) | public System.Threading.Tasks.Task ClearStateAsync(string grainType... method Close (line 96) | public System.Threading.Tasks.Task Close(System.Threading.Cancellation... method Init (line 98) | public System.Threading.Tasks.Task Init(System.Threading.CancellationT... method Participate (line 100) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method ReadStateAsync (line 102) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 104) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class DynamoDBGrainStorageFactory (line 107) | public static partial class DynamoDBGrainStorageFactory method Create (line 109) | public static DynamoDBGrainStorage Create(System.IServiceProvider serv... FILE: src/api/AWS/Orleans.Reminders.DynamoDB/Orleans.Reminders.DynamoDB.cs class DynamoDBReminderStorageOptions (line 11) | public partial class DynamoDBReminderStorageOptions : Reminders.DynamoDB... class DynamoDBReminderStorageOptionsExtensions (line 26) | public static partial class DynamoDBReminderStorageOptionsExtensions method ParseConnectionString (line 28) | public static void ParseConnectionString(this DynamoDBReminderStorageO... class DynamoDBReminderTableOptions (line 31) | public partial class DynamoDBReminderTableOptions class DynamoDBServiceCollectionReminderExtensions (line 40) | public static partial class DynamoDBServiceCollectionReminderExtensions method UseDynamoDBReminderService (line 42) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class DynamoDBSiloBuilderReminderExtensions (line 45) | public static partial class DynamoDBSiloBuilderReminderExtensions method UseDynamoDBReminderService (line 47) | public static ISiloBuilder UseDynamoDBReminderService(this ISiloBuilde... class DynamoDBClientOptions (line 53) | public partial class DynamoDBClientOptions FILE: src/api/AWS/Orleans.Streaming.SQS/Orleans.Streaming.SQS.cs class SqsOptions (line 11) | public partial class SqsOptions class ClientBuilderExtensions (line 20) | public static partial class ClientBuilderExtensions method AddSqsStreams (line 22) | public static IClientBuilder AddSqsStreams(this IClientBuilder builder... method AddSqsStreams (line 24) | public static IClientBuilder AddSqsStreams(this IClientBuilder builder... class ClusterClientSqsStreamConfigurator (line 27) | public partial class ClusterClientSqsStreamConfigurator : ClusterClientP... method ClusterClientSqsStreamConfigurator (line 29) | public ClusterClientSqsStreamConfigurator(string name, IClientBuilder ... method ConfigurePartitioning (line 31) | public ClusterClientSqsStreamConfigurator ConfigurePartitioning(int nu... method ConfigureSqs (line 33) | public ClusterClientSqsStreamConfigurator ConfigureSqs(System.Action InsertRow(MembershipEntry ent... method ReadAll (line 86) | public System.Threading.Tasks.Task ReadAll() { th... method ReadRow (line 88) | public System.Threading.Tasks.Task ReadRow(SiloAd... method UpdateIAmAlive (line 90) | public System.Threading.Tasks.Task UpdateIAmAlive(MembershipEntry entr... method UpdateRow (line 92) | public System.Threading.Tasks.Task UpdateRow(MembershipEntry ent... FILE: src/api/AdoNet/Orleans.GrainDirectory.AdoNet/Orleans.GrainDirectory.AdoNet.cs class AdoNetGrainDirectoryOptionsValidator (line 11) | public partial class AdoNetGrainDirectoryOptionsValidator : IConfigurati... method AdoNetGrainDirectoryOptionsValidator (line 13) | public AdoNetGrainDirectoryOptionsValidator(GrainDirectory.AdoNet.AdoN... method ValidateConfiguration (line 15) | public void ValidateConfiguration() { } class AdoNetGrainDirectoryOptions (line 21) | public partial class AdoNetGrainDirectoryOptions class AdoNetGrainDirectorySiloBuilderExtensions (line 34) | public static partial class AdoNetGrainDirectorySiloBuilderExtensions method AddAdoNetGrainDirectory (line 36) | public static ISiloBuilder AddAdoNetGrainDirectory(this ISiloBuilder b... method AddAdoNetGrainDirectory (line 38) | public static ISiloBuilder AddAdoNetGrainDirectory(this ISiloBuilder b... method UseAdoNetGrainDirectoryAsDefault (line 40) | public static ISiloBuilder UseAdoNetGrainDirectoryAsDefault(this ISilo... method UseAdoNetGrainDirectoryAsDefault (line 42) | public static ISiloBuilder UseAdoNetGrainDirectoryAsDefault(this ISilo... FILE: src/api/AdoNet/Orleans.Persistence.AdoNet/Orleans.Persistence.AdoNet.cs class AdoNetGrainStorageOptions (line 11) | public partial class AdoNetGrainStorageOptions : Storage.IStorageProvide... method UseOrleans3CompatibleHasher (line 26) | public void UseOrleans3CompatibleHasher() { } class AdoNetGrainStorageOptionsValidator (line 29) | public partial class AdoNetGrainStorageOptionsValidator : IConfiguration... method AdoNetGrainStorageOptionsValidator (line 31) | public AdoNetGrainStorageOptionsValidator(AdoNetGrainStorageOptions co... method ValidateConfiguration (line 33) | public void ValidateConfiguration() { } class DefaultAdoNetGrainStorageOptionsHashPickerConfigurator (line 36) | public partial class DefaultAdoNetGrainStorageOptionsHashPickerConfigura... method PostConfigure (line 38) | public void PostConfigure(string name, AdoNetGrainStorageOptions optio... class AdoNetGrainStorageServiceCollectionExtensions (line 44) | public static partial class AdoNetGrainStorageServiceCollectionExtensions method AddAdoNetGrainStorage (line 46) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddAdoNetGrainStorage (line 48) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddAdoNetGrainStorage (line 50) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddAdoNetGrainStorageAsDefault (line 52) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class AdoNetGrainStorageSiloBuilderExtensions (line 55) | public static partial class AdoNetGrainStorageSiloBuilderExtensions method AddAdoNetGrainStorage (line 57) | public static ISiloBuilder AddAdoNetGrainStorage(this ISiloBuilder bui... method AddAdoNetGrainStorage (line 59) | public static ISiloBuilder AddAdoNetGrainStorage(this ISiloBuilder bui... method AddAdoNetGrainStorageAsDefault (line 61) | public static ISiloBuilder AddAdoNetGrainStorageAsDefault(this ISiloBu... method AddAdoNetGrainStorageAsDefault (line 63) | public static ISiloBuilder AddAdoNetGrainStorageAsDefault(this ISiloBu... class AdoNetGrainStorage (line 69) | [System.Diagnostics.DebuggerDisplay("Name = {Name}, ConnectionString = {... method AdoNetGrainStorage (line 76) | public AdoNetGrainStorage(Serialization.Serializers.IActivatorProvider... method ClearStateAsync (line 84) | public System.Threading.Tasks.Task ClearStateAsync(string grainType... method Participate (line 86) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method ReadStateAsync (line 88) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 90) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class AdoNetGrainStorageFactory (line 93) | public static partial class AdoNetGrainStorageFactory method Create (line 95) | public static AdoNetGrainStorage Create(System.IServiceProvider servic... type IHasher (line 98) | public partial interface IHasher method Hash (line 102) | int Hash(byte[] data); type IStorageHasherPicker (line 105) | public partial interface IStorageHasherPicker method PickHasher (line 109) | IHasher PickHasher(string serviceId, string storageProviderInstance... class Orleans3CompatibleStorageHashPicker (line 112) | public partial class Orleans3CompatibleStorageHashPicker : IStorageHashe... method PickHasher (line 116) | public IHasher PickHasher(string serviceId, string storageProviderI... class OrleansDefaultHasher (line 119) | public sealed partial class OrleansDefaultHasher : IHasher method Hash (line 123) | public int Hash(byte[] data) { throw null; } class RelationalStorageProviderQueries (line 126) | public partial class RelationalStorageProviderQueries method RelationalStorageProviderQueries (line 128) | public RelationalStorageProviderQueries(string writeToStorage, string ... class StorageHasherPicker (line 137) | public partial class StorageHasherPicker : IStorageHasherPicker method StorageHasherPicker (line 139) | public StorageHasherPicker(System.Collections.Generic.IEnumerable(string serviceId, string storageProviderI... FILE: src/api/AdoNet/Orleans.Reminders.AdoNet/Orleans.Reminders.AdoNet.cs class AdoNetReminderTableOptions (line 11) | public partial class AdoNetReminderTableOptions class AdoNetReminderTableOptionsValidator (line 19) | public partial class AdoNetReminderTableOptionsValidator : IConfiguratio... method AdoNetReminderTableOptionsValidator (line 21) | public AdoNetReminderTableOptionsValidator(Microsoft.Extensions.Option... method ValidateConfiguration (line 23) | public void ValidateConfiguration() { } class SiloBuilderReminderExtensions (line 29) | public static partial class SiloBuilderReminderExtensions method UseAdoNetReminderService (line 31) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseAdoNetReminderService (line 33) | public static ISiloBuilder UseAdoNetReminderService(this ISiloBuilder ... method UseAdoNetReminderService (line 35) | public static ISiloBuilder UseAdoNetReminderService(this ISiloBuilder ... FILE: src/api/AdoNet/Orleans.Streaming.AdoNet/Orleans.Streaming.AdoNet.cs class AdoNetStreamOptions (line 11) | public partial class AdoNetStreamOptions class AdoNetStreamOptionsValidator (line 33) | public partial class AdoNetStreamOptionsValidator : IConfigurationValidator method AdoNetStreamOptionsValidator (line 35) | public AdoNetStreamOptionsValidator(AdoNetStreamOptions options, strin... method ValidateConfiguration (line 37) | public void ValidateConfiguration() { } class ClusterClientAdoNetStreamConfigurator (line 43) | public partial class ClusterClientAdoNetStreamConfigurator : ClusterClie... method ClusterClientAdoNetStreamConfigurator (line 45) | public ClusterClientAdoNetStreamConfigurator(string name, IClientBuild... method ConfigureAdoNet (line 47) | public ClusterClientAdoNetStreamConfigurator ConfigureAdoNet(System.Ac... method ConfigureCache (line 49) | public ClusterClientAdoNetStreamConfigurator ConfigureCache(int cacheS... method ConfigurePartitioning (line 51) | public ClusterClientAdoNetStreamConfigurator ConfigurePartitioning(int... class ClusterClientAdoNetStreamExtensions (line 54) | public static partial class ClusterClientAdoNetStreamExtensions method AddAdoNetStreams (line 56) | public static IClientBuilder AddAdoNetStreams(this IClientBuilder buil... method AddAdoNetStreams (line 58) | public static IClientBuilder AddAdoNetStreams(this IClientBuilder buil... class SiloAdoNetStreamConfigurator (line 61) | public partial class SiloAdoNetStreamConfigurator : SiloPersistentStream... method SiloAdoNetStreamConfigurator (line 63) | public SiloAdoNetStreamConfigurator(string name, System.Action : I... method AzureStorageOperationOptionsValidator (line 63) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 69) | public virtual void ValidateConfiguration() { } class AzureStoragePolicyOptions (line 72) | public partial class AzureStoragePolicyOptions class AzureTableClusteringExtensions (line 92) | public static partial class AzureTableClusteringExtensions method UseAzureStorageClustering (line 94) | public static IClientBuilder UseAzureStorageClustering(this IClientBui... method UseAzureStorageClustering (line 96) | public static IClientBuilder UseAzureStorageClustering(this IClientBui... method UseAzureStorageClustering (line 98) | public static ISiloBuilder UseAzureStorageClustering(this ISiloBuilder... method UseAzureStorageClustering (line 100) | public static ISiloBuilder UseAzureStorageClustering(this ISiloBuilder... FILE: src/api/Azure/Orleans.Clustering.Cosmos/Orleans.Clustering.Cosmos.cs class CosmosClusteringOptions (line 11) | public partial class CosmosClusteringOptions : CosmosOptions class CosmosClusteringOptionsValidator (line 15) | public partial class CosmosClusteringOptionsValidator : CosmosOptionsVal... method CosmosClusteringOptionsValidator (line 17) | public CosmosClusteringOptionsValidator(CosmosClusteringOptions option... class CosmosOptions (line 20) | public abstract partial class CosmosOptions method ConfigureCosmosClient (line 38) | public void ConfigureCosmosClient(System.Func : IConfigurationVa... method CosmosOptionsValidator (line 51) | public CosmosOptionsValidator(TOptions options, string name) { } method ValidateConfiguration (line 53) | public void ValidateConfiguration() { } type ICosmosOperationExecutor (line 56) | public partial interface ICosmosOperationExecutor method ExecuteOperation (line 58) | System.Threading.Tasks.Task ExecuteOperation(S... class HostingExtensions (line 64) | public static partial class HostingExtensions method UseCosmosClustering (line 66) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseCosmosClustering (line 68) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseCosmosClustering (line 70) | public static ISiloBuilder UseCosmosClustering(this ISiloBuilder build... method UseCosmosClustering (line 72) | public static ISiloBuilder UseCosmosClustering(this ISiloBuilder build... method UseCosmosClustering (line 74) | public static ISiloBuilder UseCosmosClustering(this ISiloBuilder build... method UseCosmosGatewayListProvider (line 76) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseCosmosGatewayListProvider (line 78) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseCosmosGatewayListProvider (line 80) | public static IClientBuilder UseCosmosGatewayListProvider(this IClient... method UseCosmosGatewayListProvider (line 82) | public static IClientBuilder UseCosmosGatewayListProvider(this IClient... method UseCosmosGatewayListProvider (line 84) | public static IClientBuilder UseCosmosGatewayListProvider(this IClient... FILE: src/api/Azure/Orleans.GrainDirectory.AzureStorage/Orleans.GrainDirectory.AzureStorage.cs class AzureTableGrainDirectoryOptions (line 11) | public partial class AzureTableGrainDirectoryOptions : GrainDirectory.Az... class AzureTableGrainDirectoryOptionsValidator (line 17) | public partial class AzureTableGrainDirectoryOptionsValidator : GrainDir... method AzureTableGrainDirectoryOptionsValidator (line 19) | public AzureTableGrainDirectoryOptionsValidator(AzureTableGrainDirecto... class AzureStorageOperationOptions (line 25) | public partial class AzureStorageOperationOptions method ConfigureTableServiceClient (line 35) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 38) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 41) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 44) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 47) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 50) | [System.Obsolete("Set the TableServiceClient property directly.")] class AzureStorageOperationOptionsValidator (line 54) | public partial class AzureStorageOperationOptionsValidator : I... method AzureStorageOperationOptionsValidator (line 56) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 62) | public virtual void ValidateConfiguration() { } class AzureStoragePolicyOptions (line 65) | public partial class AzureStoragePolicyOptions class AzureTableGrainDirectory (line 82) | public partial class AzureTableGrainDirectory : IGrainDirectory, ILifecy... method AzureTableGrainDirectory (line 84) | public AzureTableGrainDirectory(Configuration.AzureTableGrainDirectory... method InitializeIfNeeded (line 86) | public System.Threading.Tasks.Task InitializeIfNeeded(System.Threading... method Lookup (line 88) | public System.Threading.Tasks.Task Lookup(Runti... method Participate (line 90) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method Register (line 92) | public System.Threading.Tasks.Task Register(Run... method Register (line 94) | public System.Threading.Tasks.Task Register(Run... method Unregister (line 96) | public System.Threading.Tasks.Task Unregister(Runtime.GrainAddress add... method UnregisterMany (line 98) | public System.Threading.Tasks.Task UnregisterMany(System.Collections.G... method UnregisterSilos (line 100) | public System.Threading.Tasks.Task UnregisterSilos(System.Collections.... class AzureTableGrainDirectoryServiceCollectionExtensions (line 106) | public static partial class AzureTableGrainDirectoryServiceCollectionExt... class AzureTableGrainDirectorySiloBuilderExtensions (line 110) | public static partial class AzureTableGrainDirectorySiloBuilderExtensions method AddAzureTableGrainDirectory (line 112) | public static ISiloBuilder AddAzureTableGrainDirectory(this ISiloBuild... method AddAzureTableGrainDirectory (line 114) | public static ISiloBuilder AddAzureTableGrainDirectory(this ISiloBuild... method UseAzureTableGrainDirectoryAsDefault (line 116) | public static ISiloBuilder UseAzureTableGrainDirectoryAsDefault(this I... method UseAzureTableGrainDirectoryAsDefault (line 118) | public static ISiloBuilder UseAzureTableGrainDirectoryAsDefault(this I... FILE: src/api/Azure/Orleans.Journaling.AzureStorage/Orleans.Journaling.AzureStorage.cs class AzureAppendBlobStateMachineStorageOptions (line 11) | public sealed partial class AzureAppendBlobStateMachineStorageOptions method ConfigureBlobServiceClient (line 27) | public void ConfigureBlobServiceClient(System.Func : I... method AzureStorageOperationOptionsValidator (line 145) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 151) | public virtual void ValidateConfiguration() { } class AzureStoragePolicyOptions (line 154) | public partial class AzureStoragePolicyOptions class AzureBlobGrainStorage (line 174) | public partial class AzureBlobGrainStorage : IGrainStorage, ILifecyclePa... method AzureBlobGrainStorage (line 176) | public AzureBlobGrainStorage(string name, Configuration.AzureBlobStora... method ClearStateAsync (line 178) | public System.Threading.Tasks.Task ClearStateAsync(string grainType... method Participate (line 180) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method ReadStateAsync (line 182) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 184) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class AzureBlobGrainStorageFactory (line 187) | public static partial class AzureBlobGrainStorageFactory method Create (line 189) | public static AzureBlobGrainStorage Create(System.IServiceProvider ser... class AzureTableGrainStorage (line 192) | public partial class AzureTableGrainStorage : IGrainStorage, IRestExcept... method AzureTableGrainStorage (line 194) | public AzureTableGrainStorage(string name, Configuration.AzureTableSto... method ClearStateAsync (line 196) | public System.Threading.Tasks.Task ClearStateAsync(string grainType... method DecodeException (line 198) | public bool DecodeException(System.Exception e, out System.Net.HttpSta... method Participate (line 200) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method ReadStateAsync (line 202) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 204) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class AzureTableGrainStorageFactory (line 207) | public static partial class AzureTableGrainStorageFactory method Create (line 209) | public static AzureTableGrainStorage Create(System.IServiceProvider se... type IBlobContainerFactory (line 212) | public partial interface IBlobContainerFactory method GetBlobContainerClient (line 214) | Azure.Storage.Blobs.BlobContainerClient GetBlobContainerClient(Runtime... method InitializeAsync (line 215) | System.Threading.Tasks.Task InitializeAsync(Azure.Storage.Blobs.BlobSe... class TableStorageUpdateConditionNotSatisfiedException (line 218) | [GenerateSerializer] method TableStorageUpdateConditionNotSatisfiedException (line 221) | public TableStorageUpdateConditionNotSatisfiedException() { } method TableStorageUpdateConditionNotSatisfiedException (line 223) | [System.Obsolete] method TableStorageUpdateConditionNotSatisfiedException (line 226) | public TableStorageUpdateConditionNotSatisfiedException(string msg, Sy... method TableStorageUpdateConditionNotSatisfiedException (line 228) | public TableStorageUpdateConditionNotSatisfiedException(string grainTy... method TableStorageUpdateConditionNotSatisfiedException (line 230) | public TableStorageUpdateConditionNotSatisfiedException(string errorMs... method TableStorageUpdateConditionNotSatisfiedException (line 232) | public TableStorageUpdateConditionNotSatisfiedException(string msg) { } method GetObjectData (line 243) | [System.Obsolete] class Codec_TableStorageUpdateConditionNotSatisfiedException (line 250) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TableStorageUpdateConditionNotSatisfiedException (line 255) | public Codec_TableStorageUpdateConditionNotSatisfiedException(global::... method Deserialize (line 257) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 259) | public global::Orleans.Storage.TableStorageUpdateConditionNotSatisfied... method Serialize (line 261) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 264) | public void WriteField(ref global::Orleans.Serializatio... class Copier_TableStorageUpdateConditionNotSatisfiedException (line 268) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_TableStorageUpdateConditionNotSatisfiedException (line 273) | public Copier_TableStorageUpdateConditionNotSatisfiedException(global:... method DeepCopy (line 275) | public override void DeepCopy(global::Orleans.Storage.TableStorageUpda... FILE: src/api/Azure/Orleans.Persistence.Cosmos/Orleans.Persistence.Cosmos.cs class HostingExtensions (line 11) | public static partial class HostingExtensions method AddCosmosGrainStorage (line 13) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddCosmosGrainStorage (line 15) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddCosmosGrainStorage (line 17) | public static ISiloBuilder AddCosmosGrainStorage(this ISiloBuilder bui... method AddCosmosGrainStorage (line 19) | public static ISiloBuilder AddCosmosGrainStorage(this ISiloBuilder bui... method AddCosmosGrainStorage (line 21) | public static ISiloBuilder AddCosmosGrainStorage(this ISiloBuilder bui... method AddCosmosGrainStorage (line 23) | public static ISiloBuilder AddCosmosGrainStorage(this ISiloBuilder bui... method AddCosmosGrainStorage (line 25) | public static ISiloBuilder AddCosmosGrainStorage(string grainType... method Participate (line 88) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method ReadStateAsync (line 90) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 92) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class CosmosGrainStorageOptions (line 95) | public partial class CosmosGrainStorageOptions : CosmosOptions class CosmosOptions (line 107) | public abstract partial class CosmosOptions method ConfigureCosmosClient (line 125) | public void ConfigureCosmosClient(System.Func : IConfigurationVa... method CosmosOptionsValidator (line 138) | public CosmosOptionsValidator(TOptions options, string name) { } method ValidateConfiguration (line 140) | public void ValidateConfiguration() { } class CosmosStorageFactory (line 143) | public static partial class CosmosStorageFactory method Create (line 145) | public static CosmosGrainStorage Create(System.IServiceProvider servic... type ICosmosOperationExecutor (line 148) | public partial interface ICosmosOperationExecutor method ExecuteOperation (line 150) | System.Threading.Tasks.Task ExecuteOperation(S... type IPartitionKeyProvider (line 153) | public partial interface IPartitionKeyProvider method GetPartitionKey (line 155) | System.Threading.Tasks.ValueTask GetPartitionKey(string grainT... class Codec_CosmosConditionNotSatisfiedException (line 161) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_CosmosConditionNotSatisfiedException (line 166) | public Codec_CosmosConditionNotSatisfiedException(global::Orleans.Seri... method Deserialize (line 168) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 170) | public global::Orleans.Persistence.Cosmos.CosmosConditionNotSatisfiedE... method Serialize (line 172) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 175) | public void WriteField(ref global::Orleans.Serializatio... class Copier_CosmosConditionNotSatisfiedException (line 179) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_CosmosConditionNotSatisfiedException (line 184) | public Copier_CosmosConditionNotSatisfiedException(global::Orleans.Ser... method DeepCopy (line 186) | public override void DeepCopy(global::Orleans.Persistence.Cosmos.Cosmo... FILE: src/api/Azure/Orleans.Reminders.AzureStorage/Orleans.Reminders.AzureStorage.cs class AzureStorageReminderServiceCollectionExtensions (line 11) | public static partial class AzureStorageReminderServiceCollectionExtensions method UseAzureTableReminderService (line 13) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseAzureTableReminderService (line 15) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseAzureTableReminderService (line 17) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class AzureStorageReminderSiloBuilderExtensions (line 20) | public static partial class AzureStorageReminderSiloBuilderExtensions method UseAzureTableReminderService (line 22) | public static ISiloBuilder UseAzureTableReminderService(this ISiloBuil... method UseAzureTableReminderService (line 24) | public static ISiloBuilder UseAzureTableReminderService(this ISiloBuil... method UseAzureTableReminderService (line 26) | public static ISiloBuilder UseAzureTableReminderService(this ISiloBuil... class AzureStorageOperationOptions (line 32) | public partial class AzureStorageOperationOptions method ConfigureTableServiceClient (line 42) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 45) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 48) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 51) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 54) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 57) | [System.Obsolete("Set the TableServiceClient property directly.")] class AzureStorageOperationOptionsValidator (line 61) | public partial class AzureStorageOperationOptionsValidator : I... method AzureStorageOperationOptionsValidator (line 63) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 69) | public virtual void ValidateConfiguration() { } class AzureStoragePolicyOptions (line 72) | public partial class AzureStoragePolicyOptions class AzureTableReminderStorageOptions (line 89) | public partial class AzureTableReminderStorageOptions : AzureStorageOper... class AzureTableReminderStorageOptionsValidator (line 95) | public partial class AzureTableReminderStorageOptionsValidator : AzureSt... method AzureTableReminderStorageOptionsValidator (line 97) | public AzureTableReminderStorageOptionsValidator(AzureTableReminderSto... class AzureBasedReminderTable (line 103) | public sealed partial class AzureBasedReminderTable : IReminderTable method AzureBasedReminderTable (line 105) | public AzureBasedReminderTable(Microsoft.Extensions.Logging.ILoggerFac... method ReadRow (line 107) | public System.Threading.Tasks.Task ReadRow(GrainId grai... method ReadRows (line 109) | public System.Threading.Tasks.Task ReadRows(GrainId... method ReadRows (line 111) | public System.Threading.Tasks.Task ReadRows(uint be... method RemoveRow (line 113) | public System.Threading.Tasks.Task RemoveRow(GrainId grainId, st... method StartAsync (line 115) | public System.Threading.Tasks.Task StartAsync(System.Threading.Cancell... method StopAsync (line 117) | public System.Threading.Tasks.Task StopAsync(System.Threading.Cancella... method TestOnlyClearTable (line 119) | public System.Threading.Tasks.Task TestOnlyClearTable() { throw null; } method UpsertRow (line 121) | public System.Threading.Tasks.Task UpsertRow(ReminderEntry ent... FILE: src/api/Azure/Orleans.Reminders.Cosmos/Orleans.Reminders.Cosmos.cs class HostingExtensions (line 11) | public static partial class HostingExtensions method UseCosmosReminderService (line 13) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseCosmosReminderService (line 15) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseCosmosReminderService (line 17) | public static ISiloBuilder UseCosmosReminderService(this ISiloBuilder ... method UseCosmosReminderService (line 19) | public static ISiloBuilder UseCosmosReminderService(this ISiloBuilder ... class CosmosOptions (line 25) | public abstract partial class CosmosOptions method ConfigureCosmosClient (line 43) | public void ConfigureCosmosClient(System.Func : IConfigurationVa... method CosmosOptionsValidator (line 56) | public CosmosOptionsValidator(TOptions options, string name) { } method ValidateConfiguration (line 58) | public void ValidateConfiguration() { } class CosmosReminderTableOptions (line 61) | public partial class CosmosReminderTableOptions : CosmosOptions type ICosmosOperationExecutor (line 65) | public partial interface ICosmosOperationExecutor method ExecuteOperation (line 67) | System.Threading.Tasks.Task ExecuteOperation(S... FILE: src/api/Azure/Orleans.Streaming.AzureStorage/Orleans.Streaming.AzureStorage.cs class AzureQueueDataManager (line 11) | public partial class AzureQueueDataManager method AzureQueueDataManager (line 13) | public AzureQueueDataManager(Microsoft.Extensions.Logging.ILoggerFacto... method AzureQueueDataManager (line 15) | public AzureQueueDataManager(Microsoft.Extensions.Logging.ILoggerFacto... method AddQueueMessage (line 19) | public System.Threading.Tasks.Task AddQueueMessage(string message) { t... method ClearQueue (line 21) | public System.Threading.Tasks.Task ClearQueue() { throw null; } method DeleteQueue (line 23) | public System.Threading.Tasks.Task DeleteQueue() { throw null; } method DeleteQueueMessage (line 25) | public System.Threading.Tasks.Task DeleteQueueMessage(Azure.Storage.Qu... method GetApproximateMessageCount (line 27) | public System.Threading.Tasks.Task GetApproximateMessageCount() {... method GetQueueMessage (line 29) | public System.Threading.Tasks.Task(this I... class AzureQueueStreamProviderBuilder (line 131) | public sealed partial class AzureQueueStreamProviderBuilder : Providers.... method Configure (line 133) | public void Configure(IClientBuilder builder, string name, Microsoft.E... method Configure (line 135) | public void Configure(ISiloBuilder builder, string name, Microsoft.Ext... class ClientBuilderExtensions (line 138) | public static partial class ClientBuilderExtensions method AddAzureQueueStreams (line 140) | public static IClientBuilder AddAzureQueueStreams(this IClientBuilder ... method AddAzureQueueStreams (line 142) | public static IClientBuilder AddAzureQueueStreams(this IClientBuilder ... class ClusterClientAzureQueueStreamConfigurator (line 145) | public partial class ClusterClientAzureQueueStreamConfigurator : Cluster... method ClusterClientAzureQueueStreamConfigurator (line 147) | public ClusterClientAzureQueueStreamConfigurator(string name, IClientB... type IAzureQueueStreamConfigurator (line 150) | public partial interface IAzureQueueStreamConfigurator : INamedServiceCo... type IClusterClientAzureQueueStreamConfigurator (line 154) | public partial interface IClusterClientAzureQueueStreamConfigurator : IA... type ISiloAzureQueueStreamConfigurator (line 158) | public partial interface ISiloAzureQueueStreamConfigurator : IAzureQueue... class SiloAzureQueueStreamConfigurator (line 162) | public partial class SiloAzureQueueStreamConfigurator : SiloPersistentSt... method SiloAzureQueueStreamConfigurator (line 164) | public SiloAzureQueueStreamConfigurator(string name, System.Action Acquire(strin... method Create (line 192) | public static ILeaseProvider Create(System.IServiceProvider services, ... method Release (line 194) | public System.Threading.Tasks.Task Release(string category, AcquiredLe... method Renew (line 196) | public System.Threading.Tasks.Task Renew(string ... class AzureQueueAdapterFactory (line 202) | public partial class AzureQueueAdapterFactory : Orleans.Streams.IQueueAd... method AzureQueueAdapterFactory (line 204) | public AzureQueueAdapterFactory(string name, Configuration.AzureQueueO... method Create (line 208) | public static AzureQueueAdapterFactory Create(System.IServiceProvider ... method CreateAdapter (line 210) | public virtual System.Threading.Tasks.Task(Runtime.StreamId streamId, System.Coll... class AzureQueueDataAdapterV2 (line 233) | [SerializationCallbacks(typeof(Runtime.OnDeserializedCallbacks))] method AzureQueueDataAdapterV2 (line 236) | public AzureQueueDataAdapterV2(Serialization.Serializer serializer) { } method FromQueueMessage (line 238) | public Orleans.Streams.IBatchContainer FromQueueMessage(string cloudMs... method OnDeserialized (line 240) | void Serialization.IOnDeserialized.OnDeserialized(Serialization.Deseri... method ToQueueMessage (line 242) | public string ToQueueMessage(Runtime.StreamId streamId, System.Coll... class AzureQueueStreamProviderUtils (line 245) | public partial class AzureQueueStreamProviderUtils method ClearAllUsedAzureQueues (line 247) | public static System.Threading.Tasks.Task ClearAllUsedAzureQueues(Micr... method ClearAllUsedAzureQueues (line 249) | public static System.Threading.Tasks.Task ClearAllUsedAzureQueues(Micr... method DeleteAllUsedAzureQueues (line 251) | public static System.Threading.Tasks.Task DeleteAllUsedAzureQueues(Mic... method DeleteAllUsedAzureQueues (line 253) | public static System.Threading.Tasks.Task DeleteAllUsedAzureQueues(Mic... method GenerateDefaultAzureQueueNames (line 255) | public static System.Collections.Generic.List GenerateDefaultA... class AzureTableStorageStreamFailureHandler (line 261) | public partial class AzureTableStorageStreamFailureHandler : Or... method AzureTableStorageStreamFailureHandler (line 263) | public AzureTableStorageStreamFailureHandler(Serialization.Serializer<... method InitAsync (line 267) | public System.Threading.Tasks.Task InitAsync() { throw null; } method OnDeliveryFailure (line 269) | public System.Threading.Tasks.Task OnDeliveryFailure(Runtime.GuidId su... method OnSubscriptionFailure (line 271) | public System.Threading.Tasks.Task OnSubscriptionFailure(Runtime.GuidI... class StreamDeliveryFailureEntity (line 274) | public partial class StreamDeliveryFailureEntity : Azure.Data.Tables.ITa... method GetSequenceToken (line 294) | public virtual Orleans.Streams.StreamSequenceToken GetSequenceToken(Se... method MakeDefaultPartitionKey (line 296) | public static string MakeDefaultPartitionKey(string streamProviderName... method ReverseOrderTimestampTicks (line 298) | protected static long ReverseOrderTimestampTicks() { throw null; } method SetPartitionKey (line 300) | public virtual void SetPartitionKey(string deploymentId) { } method SetRowkey (line 302) | public virtual void SetRowkey() { } method SetSequenceToken (line 304) | public virtual void SetSequenceToken(Serialization.Serializer : I... method AzureStorageOperationOptionsValidator (line 341) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 347) | public virtual void ValidateConfiguration() { } class AzureStoragePolicyOptions (line 350) | public partial class AzureStoragePolicyOptions FILE: src/api/Azure/Orleans.Streaming.EventHubs/Orleans.Streaming.EventHubs.cs class AzureTableStreamCheckpointerOptions (line 11) | public partial class AzureTableStreamCheckpointerOptions : Streaming.Eve... class AzureTableStreamCheckpointerOptionsValidator (line 20) | public partial class AzureTableStreamCheckpointerOptionsValidator : Stre... method AzureTableStreamCheckpointerOptionsValidator (line 22) | public AzureTableStreamCheckpointerOptionsValidator(AzureTableStreamCh... class EventDataGeneratorStreamOptions (line 25) | public partial class EventDataGeneratorStreamOptions class EventHubOptions (line 31) | public partial class EventHubOptions method ConfigureEventHubConnection (line 35) | public void ConfigureEventHubConnection(Azure.Messaging.EventHubs.Even... method ConfigureEventHubConnection (line 37) | public void ConfigureEventHubConnection(CreateConnectionDelegate creat... method ConfigureEventHubConnection (line 39) | public void ConfigureEventHubConnection(string fullyQualifiedNamespace... method ConfigureEventHubConnection (line 41) | public void ConfigureEventHubConnection(string fullyQualifiedNamespace... method ConfigureEventHubConnection (line 43) | public void ConfigureEventHubConnection(string fullyQualifiedNamespace... method ConfigureEventHubConnection (line 45) | public void ConfigureEventHubConnection(string connectionString, strin... class EventHubOptionsValidator (line 50) | public partial class EventHubOptionsValidator : IConfigurationValidator method EventHubOptionsValidator (line 52) | public EventHubOptionsValidator(EventHubOptions options, string name) { } method ValidateConfiguration (line 54) | public void ValidateConfiguration() { } class EventHubReceiverOptions (line 57) | public partial class EventHubReceiverOptions class EventHubStreamCachePressureOptions (line 64) | public partial class EventHubStreamCachePressureOptions class StreamCheckpointerConfigurationValidator (line 73) | public partial class StreamCheckpointerConfigurationValidator : IConfigu... method StreamCheckpointerConfigurationValidator (line 75) | public StreamCheckpointerConfigurationValidator(System.IServiceProvide... method ValidateConfiguration (line 77) | public void ValidateConfiguration() { } class ClientBuilderExtensions (line 83) | public static partial class ClientBuilderExtensions method AddEventHubStreams (line 85) | public static IClientBuilder AddEventHubStreams(this IClientBuilder bu... method AddEventHubStreams (line 87) | public static IClientBuilder AddEventHubStreams(this IClientBuilder bu... class ClusterClientEventHubStreamConfigurator (line 90) | public partial class ClusterClientEventHubStreamConfigurator : ClusterCl... method ClusterClientEventHubStreamConfigurator (line 92) | public ClusterClientEventHubStreamConfigurator(string name, IClientBui... class EventHubStreamConfiguratorExtensions (line 95) | public static partial class EventHubStreamConfiguratorExtensions method ConfigureEventHub (line 97) | public static void ConfigureEventHub(this IEventHubStreamConfigurator ... method UseDataAdapter (line 99) | public static void UseDataAdapter(this IEventHubStreamConfigurator con... type IClusterClientEventHubStreamConfigurator (line 102) | public partial interface IClusterClientEventHubStreamConfigurator : IEve... type IEventHubStreamConfigurator (line 106) | public partial interface IEventHubStreamConfigurator : INamedServiceConf... type ISiloEventHubStreamConfigurator (line 110) | public partial interface ISiloEventHubStreamConfigurator : IEventHubStre... class SiloBuilderExtensions (line 114) | public static partial class SiloBuilderExtensions method AddEventHubStreams (line 116) | public static ISiloBuilder AddEventHubStreams(this ISiloBuilder builde... method AddEventHubStreams (line 118) | public static ISiloBuilder AddEventHubStreams(this ISiloBuilder builde... method AddEventDataGeneratorStreams (line 159) | public static ISiloBuilder AddEventDataGeneratorStreams(this ISiloBuil... class SiloEventHubStreamConfigurator (line 121) | public partial class SiloEventHubStreamConfigurator : SiloRecoverableStr... method SiloEventHubStreamConfigurator (line 123) | public SiloEventHubStreamConfigurator(string name, System.Action(this ISiloEventHubS... method ConfigurePartitionReceiver (line 133) | public static void ConfigurePartitionReceiver(this ISiloEventHubStream... method UseAzureTableCheckpointer (line 135) | public static void UseAzureTableCheckpointer(this ISiloEventHubStreamC... class EventDataGeneratorConfiguratorExtensions (line 141) | public static partial class EventDataGeneratorConfiguratorExtensions method ConfigureCachePressuring (line 143) | public static void ConfigureCachePressuring(this IEventDataGeneratorSt... method UseDataAdapter (line 145) | public static void UseDataAdapter(this IEventDataGeneratorStreamConfig... class EventDataGeneratorStreamConfigurator (line 148) | public partial class EventDataGeneratorStreamConfigurator : SiloRecovera... method EventDataGeneratorStreamConfigurator (line 150) | public EventDataGeneratorStreamConfigurator(string name, System.Action... type IEventDataGeneratorStreamConfigurator (line 153) | public partial interface IEventDataGeneratorStreamConfigurator : ISiloRe... class SiloBuilderExtensions (line 157) | public static partial class SiloBuilderExtensions method AddEventHubStreams (line 116) | public static ISiloBuilder AddEventHubStreams(this ISiloBuilder builde... method AddEventHubStreams (line 118) | public static ISiloBuilder AddEventHubStreams(this ISiloBuilder builde... method AddEventDataGeneratorStreams (line 159) | public static ISiloBuilder AddEventDataGeneratorStreams(this ISiloBuil... class AggregatedCachePressureMonitor (line 165) | public partial class AggregatedCachePressureMonitor : System.Collections... method AggregatedCachePressureMonitor (line 167) | public AggregatedCachePressureMonitor(Microsoft.Extensions.Logging.ILo... method AddCachePressureMonitor (line 171) | public void AddCachePressureMonitor(ICachePressureMonitor monitor) { } method IsUnderPressure (line 173) | public bool IsUnderPressure(System.DateTime utcNow) { throw null; } method RecordCachePressureContribution (line 175) | public void RecordCachePressureContribution(double cachePressureContri... class AveragingCachePressureMonitor (line 178) | public partial class AveragingCachePressureMonitor : ICachePressureMonitor method AveragingCachePressureMonitor (line 180) | public AveragingCachePressureMonitor(Microsoft.Extensions.Logging.ILog... method AveragingCachePressureMonitor (line 182) | public AveragingCachePressureMonitor(double flowControlThreshold, Micr... method IsUnderPressure (line 186) | public bool IsUnderPressure(System.DateTime utcNow) { throw null; } method RecordCachePressureContribution (line 188) | public void RecordCachePressureContribution(double cachePressureContri... class AzureStorageOperationOptions (line 191) | public partial class AzureStorageOperationOptions method ConfigureTableServiceClient (line 201) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 204) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 207) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 210) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 213) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 216) | [System.Obsolete("Set the TableServiceClient property directly.")] class AzureStorageOperationOptionsValidator (line 220) | public partial class AzureStorageOperationOptionsValidator : I... method AzureStorageOperationOptionsValidator (line 222) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 228) | public virtual void ValidateConfiguration() { } class AzureStoragePolicyOptions (line 231) | public partial class AzureStoragePolicyOptions class DefaultEventHubReceiverMonitor (line 248) | public partial class DefaultEventHubReceiverMonitor : Providers.Streams.... method DefaultEventHubReceiverMonitor (line 250) | public DefaultEventHubReceiverMonitor(EventHubReceiverMonitorDimension... class EventDataExtensions (line 253) | public static partial class EventDataExtensions method DeserializeProperties (line 255) | public static System.Collections.Generic.IDictionary D... method GetStreamNamespaceProperty (line 257) | public static string GetStreamNamespaceProperty(this Azure.Messaging.E... method SerializeProperties (line 259) | public static byte[] SerializeProperties(this Azure.Messaging.EventHub... method SetStreamNamespaceProperty (line 261) | public static void SetStreamNamespaceProperty(this Azure.Messaging.Eve... class EventHubAdapterFactory (line 264) | public partial class EventHubAdapterFactory : Streams.IQueueAdapterFacto... method EventHubAdapterFactory (line 270) | public EventHubAdapterFactory(string name, Configuration.EventHubOptio... method Create (line 286) | public static EventHubAdapterFactory Create(System.IServiceProvider se... method CreateAdapter (line 288) | public System.Threading.Tasks.Task CreateAdapte... method CreateCacheFactory (line 290) | protected virtual IEventHubQueueCacheFactory CreateCacheFactory(Config... method CreateQueueCache (line 292) | public Streams.IQueueCache CreateQueueCache(Streams.QueueId queueId) {... method CreateReceiver (line 294) | public Streams.IQueueAdapterReceiver CreateReceiver(Streams.QueueId qu... method GetDeliveryFailureHandler (line 296) | public System.Threading.Tasks.Task GetD... method GetPartitionIdsAsync (line 298) | protected virtual System.Threading.Tasks.Task GetPartitionId... method GetQueueAdapterCache (line 300) | public Streams.IQueueAdapterCache GetQueueAdapterCache() { throw null; } method GetStreamQueueMapper (line 302) | public Streams.IStreamQueueMapper GetStreamQueueMapper() { throw null; } method Init (line 304) | public virtual void Init() { } method InitEventHubClient (line 306) | protected virtual void InitEventHubClient() { } method QueueMessageBatchAsync (line 308) | public virtual System.Threading.Tasks.Task QueueMessageBatchAsync(R... class EventHubBatchContainer (line 311) | [GenerateSerializer] method EventHubBatchContainer (line 314) | public EventHubBatchContainer(EventHubMessage eventHubMessage, Seriali... method GetEvents (line 320) | public System.Collections.Generic.IEnumerable(Seria... method UpdateEventData (line 326) | public static void UpdateEventData(Azure.Messaging.EventHubs.EventD... class EventHubBlockPoolMonitorDimensions (line 329) | public partial class EventHubBlockPoolMonitorDimensions : EventHubMonito... method EventHubBlockPoolMonitorDimensions (line 331) | public EventHubBlockPoolMonitorDimensions() { } method EventHubBlockPoolMonitorDimensions (line 333) | public EventHubBlockPoolMonitorDimensions(EventHubMonitorAggregationDi... class EventHubCacheMonitorDimensions (line 338) | public partial class EventHubCacheMonitorDimensions : EventHubReceiverMo... method EventHubCacheMonitorDimensions (line 340) | public EventHubCacheMonitorDimensions() { } method EventHubCacheMonitorDimensions (line 342) | public EventHubCacheMonitorDimensions(EventHubMonitorAggregationDimens... class EventHubCheckpointer (line 347) | public partial class EventHubCheckpointer : Streams.IStreamQueueCheckpoi... method EventHubCheckpointer (line 349) | internal EventHubCheckpointer() { } method Create (line 353) | public static System.Threading.Tasks.Task Load() { throw null; } method Update (line 357) | public void Update(string offset, System.DateTime utcNow) { } class EventHubCheckpointerFactory (line 360) | public partial class EventHubCheckpointerFactory : Streams.IStreamQueueC... method EventHubCheckpointerFactory (line 362) | public EventHubCheckpointerFactory(string providerName, Configuration.... method Create (line 364) | public System.Threading.Tasks.Task EncodeMessageIntoSegment(A... method FromQueueMessage (line 375) | public virtual Providers.Streams.Common.CachedMessage FromQueueMessage... method GetBatchContainer (line 377) | public virtual Streams.IBatchContainer GetBatchContainer(ref Providers... method GetBatchContainer (line 379) | protected virtual Streams.IBatchContainer GetBatchContainer(EventHubMe... method GetOffset (line 381) | public virtual string GetOffset(Providers.Streams.Common.CachedMessage... method GetPartitionKey (line 383) | public virtual string GetPartitionKey(Runtime.StreamId streamId) { thr... method GetSequenceToken (line 385) | public virtual Streams.StreamSequenceToken GetSequenceToken(ref Provid... method GetStreamIdentity (line 387) | public virtual Runtime.StreamId GetStreamIdentity(Azure.Messaging.Even... method GetStreamPosition (line 389) | public virtual Streams.StreamPosition GetStreamPosition(string partiti... method ToQueueMessage (line 391) | public virtual Azure.Messaging.EventHubs.EventData ToQueueMessage(R... class EventHubMessage (line 394) | [GenerateSerializer] method EventHubMessage (line 397) | public EventHubMessage(Providers.Streams.Common.CachedMessage cachedMe... method EventHubMessage (line 399) | public EventHubMessage(Runtime.StreamId streamId, string partitionKey,... class EventHubMonitorAggregationDimensions (line 426) | public partial class EventHubMonitorAggregationDimensions method EventHubMonitorAggregationDimensions (line 428) | public EventHubMonitorAggregationDimensions() { } method EventHubMonitorAggregationDimensions (line 430) | public EventHubMonitorAggregationDimensions(EventHubMonitorAggregation... method EventHubMonitorAggregationDimensions (line 432) | public EventHubMonitorAggregationDimensions(string ehHubPath) { } class EventHubPartitionSettings (line 437) | public partial class EventHubPartitionSettings class EventHubQueueCache (line 446) | public partial class EventHubQueueCache : IEventHubQueueCache, Streams.I... method EventHubQueueCache (line 449) | public EventHubQueueCache(string partition, int defaultMaxAddCount, Pr... method Add (line 453) | public System.Collections.Generic.List Add(Sys... method AddCachePressureMonitor (line 455) | public void AddCachePressureMonitor(ICachePressureMonitor monitor) { } method Dispose (line 457) | public void Dispose() { } method GetCursor (line 459) | public object GetCursor(Runtime.StreamId streamId, Streams.StreamSeque... method GetMaxAddCount (line 461) | public int GetMaxAddCount() { throw null; } method SignalPurge (line 463) | public void SignalPurge() { } method TryGetNextMessage (line 465) | public bool TryGetNextMessage(object cursorObj, out Streams.IBatchCont... class EventHubQueueCacheFactory (line 468) | public partial class EventHubQueueCacheFactory : IEventHubQueueCacheFactory method EventHubQueueCacheFactory (line 470) | public EventHubQueueCacheFactory(Configuration.EventHubStreamCachePres... method AddCachePressureMonitors (line 476) | protected virtual void AddCachePressureMonitors(IEventHubQueueCache ca... method CreateBufferPool (line 478) | protected virtual Providers.Streams.Common.IObjectPool Add(System.Col... method AddCachePressureMonitor (line 543) | void AddCachePressureMonitor(ICachePressureMonitor monitor); method GetCursor (line 544) | object GetCursor(Runtime.StreamId streamId, Streams.StreamSequenceToke... method SignalPurge (line 545) | void SignalPurge(); method TryGetNextMessage (line 546) | bool TryGetNextMessage(object cursorObj, out Streams.IBatchContainer m... type IEventHubQueueCacheFactory (line 549) | public partial interface IEventHubQueueCacheFactory method CreateCache (line 551) | IEventHubQueueCache CreateCache(string partition, Streams.IStreamQueue... type IEventHubReceiver (line 554) | public partial interface IEventHubReceiver method CloseAsync (line 556) | System.Threading.Tasks.Task CloseAsync(); method ReceiveAsync (line 557) | System.Threading.Tasks.Task ExecuteCommand(int ... method GenerateEventHubPartitions (line 607) | public static string[] GenerateEventHubPartitions(int partitionCount) ... method GetPartitionIdsAsync (line 609) | protected override System.Threading.Tasks.Task GetPartitionI... method Init (line 611) | public override void Init() { } method InitEventHubClient (line 613) | protected override void InitEventHubClient() { } type Commands (line 615) | public enum Commands class StreamRandomPlacementArg (line 621) | [GenerateSerializer] method StreamRandomPlacementArg (line 624) | public StreamRandomPlacementArg(Runtime.StreamId streamId, int rando... class EventHubPartitionDataGenerator (line 634) | public partial class EventHubPartitionDataGenerator : IDataGenerator method TryReadEvents (line 660) | bool TryReadEvents(int maxCount, out System.Collections.Generic.IEnume... type IIntCounter (line 663) | public partial interface IIntCounter method Increment (line 667) | void Increment(); type IStreamDataGeneratingController (line 670) | public partial interface IStreamDataGeneratingController method AddDataGeneratorForStream (line 672) | void AddDataGeneratorForStream(Runtime.StreamId streamId); method StopProducingOnStream (line 673) | void StopProducingOnStream(Runtime.StreamId streamId); type IStreamDataGenerator (line 676) | public partial interface IStreamDataGenerator : IDataGenerator class NoOpCheckpointer (line 685) | public partial class NoOpCheckpointer : Streams.IStreamQueueCheckpointer... method Load (line 690) | public System.Threading.Tasks.Task Load() { throw null; } method Update (line 692) | public void Update(string offset, System.DateTime utcNow) { } class NoOpCheckpointerFactory (line 695) | public partial class NoOpCheckpointerFactory : Streams.IStreamQueueCheck... method Create (line 698) | public System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 728) | public global::Orleans.Streaming.EventHubs.EventHubBatchContainer Read... method Serialize (line 730) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 733) | public void WriteField(ref global::Orleans.Serializatio... class Codec_EventHubMessage (line 737) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_EventHubMessage (line 742) | public Codec_EventHubMessage(global::Orleans.Serialization.Activators.... method Deserialize (line 744) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 746) | public global::Orleans.Streaming.EventHubs.EventHubMessage ReadValue(ref global::Orleans.Serialization... method WriteField (line 751) | public void WriteField(ref global::Orleans.Serializatio... class Codec_EventHubSequenceToken (line 755) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_EventHubSequenceToken (line 760) | public Codec_EventHubSequenceToken(global::Orleans.Serialization.Seria... method Deserialize (line 762) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 764) | public global::Orleans.Streaming.EventHubs.EventHubSequenceToken ReadV... method Serialize (line 766) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 769) | public void WriteField(ref global::Orleans.Serializatio... class Codec_EventHubSequenceTokenV2 (line 773) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_EventHubSequenceTokenV2 (line 778) | public Codec_EventHubSequenceTokenV2(global::Orleans.Serialization.Ser... method Deserialize (line 780) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 782) | public global::Orleans.Streaming.EventHubs.EventHubSequenceTokenV2 Rea... method Serialize (line 784) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 787) | public void WriteField(ref global::Orleans.Serializatio... class Copier_EventHubBatchContainer (line 791) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_EventHubBatchContainer (line 796) | public Copier_EventHubBatchContainer(global::Orleans.Serialization.Act... method DeepCopy (line 798) | public global::Orleans.Streaming.EventHubs.EventHubBatchContainer Deep... method DeepCopy (line 800) | public void DeepCopy(global::Orleans.Streaming.EventHubs.EventHubBatch... class Copier_EventHubMessage (line 803) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_EventHubMessage (line 808) | public Copier_EventHubMessage(global::Orleans.Serialization.Activators... method DeepCopy (line 810) | public global::Orleans.Streaming.EventHubs.EventHubMessage DeepCopy(gl... method DeepCopy (line 812) | public void DeepCopy(global::Orleans.Streaming.EventHubs.EventHubMessa... class Copier_EventHubSequenceToken (line 815) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_EventHubSequenceToken (line 820) | public Copier_EventHubSequenceToken(global::Orleans.Serialization.Seri... method DeepCopy (line 822) | public global::Orleans.Streaming.EventHubs.EventHubSequenceToken DeepC... method DeepCopy (line 824) | public void DeepCopy(global::Orleans.Streaming.EventHubs.EventHubSeque... class Copier_EventHubSequenceTokenV2 (line 827) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_EventHubSequenceTokenV2 (line 832) | public Copier_EventHubSequenceTokenV2(global::Orleans.Serialization.Se... method DeepCopy (line 834) | public global::Orleans.Streaming.EventHubs.EventHubSequenceTokenV2 Dee... method DeepCopy (line 836) | public void DeepCopy(global::Orleans.Streaming.EventHubs.EventHubSeque... class Codec_StreamRandomPlacementArg (line 842) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_StreamRandomPlacementArg (line 847) | public Codec_StreamRandomPlacementArg(global::Orleans.Serialization.Ac... method Deserialize (line 849) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 851) | public global::Orleans.Streaming.EventHubs.Testing.EventDataGeneratorA... method Serialize (line 853) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 856) | public void WriteField(ref global::Orleans.Serializatio... class Copier_StreamRandomPlacementArg (line 860) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_StreamRandomPlacementArg (line 865) | public Copier_StreamRandomPlacementArg(global::Orleans.Serialization.A... method DeepCopy (line 867) | public global::Orleans.Streaming.EventHubs.Testing.EventDataGeneratorA... method DeepCopy (line 869) | public void DeepCopy(global::Orleans.Streaming.EventHubs.Testing.Event... FILE: src/api/Azure/Orleans.Transactions.AzureStorage/Orleans.Transactions.AzureStorage.cs class AzureTableTransactionalStateOptions (line 11) | public partial class AzureTableTransactionalStateOptions : Transactions.... class AzureTableTransactionalStateOptionsValidator (line 19) | public partial class AzureTableTransactionalStateOptionsValidator : Tran... method AzureTableTransactionalStateOptionsValidator (line 21) | public AzureTableTransactionalStateOptionsValidator(AzureTableTransact... class AzureTableTransactionServicecollectionExtensions (line 27) | public static partial class AzureTableTransactionServicecollectionExtens... class AzureTableTransactionSiloBuilderExtensions (line 31) | public static partial class AzureTableTransactionSiloBuilderExtensions method AddAzureTableTransactionalStateStorage (line 33) | public static ISiloBuilder AddAzureTableTransactionalStateStorage(this... method AddAzureTableTransactionalStateStorage (line 35) | public static ISiloBuilder AddAzureTableTransactionalStateStorage(this... method AddAzureTableTransactionalStateStorageAsDefault (line 37) | public static ISiloBuilder AddAzureTableTransactionalStateStorageAsDef... method AddAzureTableTransactionalStateStorageAsDefault (line 39) | public static ISiloBuilder AddAzureTableTransactionalStateStorageAsDef... class AzureStorageOperationOptions (line 45) | public partial class AzureStorageOperationOptions method ConfigureTableServiceClient (line 55) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 58) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 61) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 64) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 67) | [System.Obsolete("Set the TableServiceClient property directly.")] method ConfigureTableServiceClient (line 70) | [System.Obsolete("Set the TableServiceClient property directly.")] class AzureStorageOperationOptionsValidator (line 74) | public partial class AzureStorageOperationOptionsValidator : I... method AzureStorageOperationOptionsValidator (line 76) | public AzureStorageOperationOptionsValidator(TOptions options, string ... method ValidateConfiguration (line 82) | public virtual void ValidateConfiguration() { } class AzureStoragePolicyOptions (line 85) | public partial class AzureStoragePolicyOptions class AzureTableTransactionalStateStorageFactory (line 102) | public partial class AzureTableTransactionalStateStorageFactory : Abstra... method AzureTableTransactionalStateStorageFactory (line 104) | public AzureTableTransactionalStateStorageFactory(string name, Configu... method Create (line 106) | public static Abstractions.ITransactionalStateStorageFactory Create(Sy... method Create (line 108) | public Abstractions.ITransactionalStateStorage Create(... method Participate (line 111) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } class AzureTableTransactionalStateStorage (line 114) | public partial class AzureTableTransactionalStateStorage : Abstr... method AzureTableTransactionalStateStorage (line 116) | public AzureTableTransactionalStateStorage(Azure.Data.Tables.TableClie... method Load (line 118) | public System.Threading.Tasks.Task Store(string expectedETag, ... FILE: src/api/Cassandra/Orleans.Clustering.Cassandra/Orleans.Clustering.Cassandra.cs class CassandraClusteringOptions (line 11) | public partial class CassandraClusteringOptions method ConfigureClient (line 17) | public void ConfigureClient(System.Func ns, System.Re... method Create (line 59) | public static ChannelId Create(string ns, System.Guid key) { throw nul... method Create (line 61) | public static ChannelId Create(string ns, string key) { throw null; } method Equals (line 63) | public readonly bool Equals(ChannelId other) { throw null; } method Equals (line 65) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 67) | public override readonly int GetHashCode() { throw null; } method GetKeyAsString (line 69) | public readonly string GetKeyAsString() { throw null; } method GetNamespace (line 71) | public readonly string? GetNamespace() { throw null; } method GetObjectData (line 73) | public readonly void GetObjectData(System.Runtime.Serialization.Serial... method ToString (line 79) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 81) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToString (line 83) | public override readonly string ToString() { throw null; } class ConstructorChannelNamespacePredicateProvider (line 86) | public partial class ConstructorChannelNamespacePredicateProvider : ICha... method FormatPattern (line 89) | public static string FormatPattern(System.Type predicateType, string c... method TryGetPredicate (line 91) | public bool TryGetPredicate(string predicatePattern, out IChannelNames... class DefaultChannelIdMapper (line 94) | public sealed partial class DefaultChannelIdMapper : IChannelIdMapper method GetGrainKeyId (line 97) | public Runtime.IdSpan GetGrainKeyId(Metadata.GrainBindings grainBindin... class DefaultChannelNamespacePredicateProvider (line 100) | public partial class DefaultChannelNamespacePredicateProvider : IChannel... method TryGetPredicate (line 102) | public bool TryGetPredicate(string predicatePattern, out IChannelNames... type IBroadcastChannelProvider (line 105) | public partial interface IBroadcastChannelProvider method GetChannelWriter (line 107) | IBroadcastChannelWriter GetChannelWriter(ChannelId streamId); type IBroadcastChannelSubscription (line 110) | public partial interface IBroadcastChannelSubscription method Attach (line 116) | System.Threading.Tasks.Task Attach(System.Func method Publish (line 121) | System.Threading.Tasks.Task Publish(T item); type IChannelIdMapper (line 124) | public partial interface IChannelIdMapper method GetGrainKeyId (line 126) | Runtime.IdSpan GetGrainKeyId(Metadata.GrainBindings grainBindings, Cha... type IChannelNamespacePredicate (line 129) | public partial interface IChannelNamespacePredicate method IsMatch (line 133) | bool IsMatch(string streamNamespace); type IChannelNamespacePredicateProvider (line 136) | public partial interface IChannelNamespacePredicateProvider method TryGetPredicate (line 138) | bool TryGetPredicate(string predicatePattern, out IChannelNamespacePre... type IOnBroadcastChannelSubscribed (line 141) | public partial interface IOnBroadcastChannelSubscribed method OnSubscribed (line 143) | System.Threading.Tasks.Task OnSubscribed(IBroadcastChannelSubscription... class RegexChannelNamespacePredicate (line 146) | public partial class RegexChannelNamespacePredicate : IChannelNamespaceP... method RegexChannelNamespacePredicate (line 148) | public RegexChannelNamespacePredicate(string regex) { } method IsMatch (line 152) | public bool IsMatch(string streamNameSpace) { throw null; } class ChannelHostingExtensions (line 158) | public static partial class ChannelHostingExtensions method AddBroadcastChannel (line 160) | public static IClientBuilder AddBroadcastChannel(this IClientBuilder @... method AddBroadcastChannel (line 162) | public static IClientBuilder AddBroadcastChannel(this IClientBuilder @... method AddBroadcastChannel (line 164) | public static ISiloBuilder AddBroadcastChannel(this ISiloBuilder @this... method AddBroadcastChannel (line 166) | public static ISiloBuilder AddBroadcastChannel(this ISiloBuilder @this... method GetBroadcastChannelProvider (line 168) | public static BroadcastChannel.IBroadcastChannelProvider GetBroadcastC... class Codec_ChannelId (line 174) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 179) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 181) | public global::Orleans.BroadcastChannel.ChannelId ReadValue(ref global::Orleans.Serialization... method WriteField (line 186) | public void WriteField(ref global::Orleans.Serializatio... FILE: src/api/Orleans.Clustering.Consul/Orleans.Clustering.Consul.cs class ConsulClusteringOptions (line 11) | public partial class ConsulClusteringOptions method ConfigureConsulClient (line 17) | public void ConfigureConsulClient(System.Func cr... method ConfigureConsulClient (line 19) | public void ConfigureConsulClient(System.Uri address, string aclClient... class ConsulClusteringOptionsValidator (line 22) | public partial class ConsulClusteringOptionsValidator : IConfi... method ConsulClusteringOptionsValidator (line 24) | public ConsulClusteringOptionsValidator(TOptions options, string name ... method ValidateConfiguration (line 30) | public virtual void ValidateConfiguration() { } class ConsulUtilsHostingExtensions (line 36) | public static partial class ConsulUtilsHostingExtensions method UseConsulClientClustering (line 38) | public static IClientBuilder UseConsulClientClustering(this IClientBui... method UseConsulClientClustering (line 40) | public static IClientBuilder UseConsulClientClustering(this IClientBui... method UseConsulSiloClustering (line 42) | public static ISiloBuilder UseConsulSiloClustering(this ISiloBuilder b... method UseConsulSiloClustering (line 44) | public static ISiloBuilder UseConsulSiloClustering(this ISiloBuilder b... class ConsulSiloRegistration (line 50) | [Newtonsoft.Json.JsonObject] method ConsulSiloRegistration (line 53) | internal ConsulSiloRegistration() { } class SuspectingSilo (line 74) | [Newtonsoft.Json.JsonObject] class ConsulBasedMembershipTable (line 87) | public partial class ConsulBasedMembershipTable : IMembershipTable method ConsulBasedMembershipTable (line 89) | public ConsulBasedMembershipTable(Microsoft.Extensions.Logging.ILogger... method CleanupDefunctSiloEntries (line 91) | public System.Threading.Tasks.Task CleanupDefunctSiloEntries(System.Da... method DeleteMembershipTableEntries (line 93) | public System.Threading.Tasks.Task DeleteMembershipTableEntries(string... method InitializeMembershipTable (line 95) | public System.Threading.Tasks.Task InitializeMembershipTable(bool tryI... method InsertRow (line 97) | public System.Threading.Tasks.Task InsertRow(MembershipEntry ent... method ReadAll (line 99) | public System.Threading.Tasks.Task ReadAll() { th... method ReadAll (line 101) | public static System.Threading.Tasks.Task ReadAll... method ReadRow (line 103) | public System.Threading.Tasks.Task ReadRow(SiloAd... method UpdateIAmAlive (line 105) | public System.Threading.Tasks.Task UpdateIAmAlive(MembershipEntry entr... method UpdateRow (line 107) | public System.Threading.Tasks.Task UpdateRow(MembershipEntry ent... class ConsulGatewayListProvider (line 110) | public partial class ConsulGatewayListProvider : Orleans.Messaging.IGate... method ConsulGatewayListProvider (line 112) | public ConsulGatewayListProvider(Microsoft.Extensions.Logging.ILogger<... method GetGateways (line 118) | public System.Threading.Tasks.Task InsertRow(MembershipEntry ent... method ReadAll (line 52) | public System.Threading.Tasks.Task ReadAll() { th... method ReadRow (line 54) | public System.Threading.Tasks.Task ReadRow(SiloAd... method UpdateIAmAlive (line 56) | public System.Threading.Tasks.Task UpdateIAmAlive(MembershipEntry entr... method UpdateRow (line 58) | public System.Threading.Tasks.Task UpdateRow(MembershipEntry ent... class ZooKeeperGatewayListProvider (line 61) | public partial class ZooKeeperGatewayListProvider : Orleans.Messaging.IG... method ZooKeeperGatewayListProvider (line 63) | public ZooKeeperGatewayListProvider(Microsoft.Extensions.Logging.ILogg... method GetGateways (line 69) | public System.Threading.Tasks.Task storage) { } method ClearStateAsync (line 1180) | protected virtual System.Threading.Tasks.Task ClearStateAsync() { thro... method ReadStateAsync (line 1182) | protected virtual System.Threading.Tasks.Task ReadStateAsync() { throw... method WriteStateAsync (line 1184) | protected virtual System.Threading.Tasks.Task WriteStateAsync() { thro... class GrainBaseExtensions (line 1088) | public static partial class GrainBaseExtensions method DeactivateOnIdle (line 1090) | public static void DeactivateOnIdle(this IGrainBase grain) { } method MigrateOnIdle (line 1092) | public static void MigrateOnIdle(this IGrainBase grain) { } method RegisterGrainTimer (line 1094) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGrainBase g... method RegisterGrainTimer (line 1096) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGrainBase g... method RegisterGrainTimer (line 1098) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGrainBase g... method RegisterGrainTimer (line 1100) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGrainBase g... method RegisterGrainTimer (line 1102) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGra... method RegisterGrainTimer (line 1104) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGra... method RegisterGrainTimer (line 1106) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGra... method RegisterGrainTimer (line 1108) | public static Runtime.IGrainTimer RegisterGrainTimer(this IGra... class GrainCancellationToken (line 1112) | [Immutable] method GrainCancellationToken (line 1115) | internal GrainCancellationToken() { } method Dispose (line 1119) | public void Dispose() { } class GrainCancellationTokenSource (line 1122) | public sealed partial class GrainCancellationTokenSource : System.IDispo... method Cancel (line 1128) | public System.Threading.Tasks.Task Cancel() { throw null; } method Dispose (line 1130) | public void Dispose() { } class GrainContextComponentExtensions (line 1133) | public static partial class GrainContextComponentExtensions method GetGrainExtension (line 1135) | public static TComponent GetGrainExtension(this Runtime.IG... class GrainExtensions (line 1139) | public static partial class GrainExtensions method AsReference (line 1141) | public static object AsReference(this Runtime.IAddressable grain, Syst... method AsReference (line 1143) | public static TGrainInterface AsReference(this Runtim... method Cast (line 1145) | public static object Cast(this Runtime.IAddressable grain, System.Type... method Cast (line 1147) | public static TGrainInterface Cast(this Runtime.IAddr... method GetGrainId (line 1149) | public static Runtime.GrainId GetGrainId(this Runtime.IAddressable gra... method GetPrimaryKey (line 1151) | public static System.Guid GetPrimaryKey(this Runtime.IAddressable grai... method GetPrimaryKey (line 1153) | public static System.Guid GetPrimaryKey(this Runtime.IAddressable grai... method GetPrimaryKeyLong (line 1155) | public static long GetPrimaryKeyLong(this Runtime.IAddressable grain, ... method GetPrimaryKeyLong (line 1157) | public static long GetPrimaryKeyLong(this Runtime.IAddressable grain) ... method GetPrimaryKeyString (line 1159) | public static string GetPrimaryKeyString(this Runtime.IAddressable gra... method IsPrimaryKeyBasedOnLong (line 1161) | public static bool IsPrimaryKeyBasedOnLong(this Runtime.IAddressable g... class GrainTypeAttribute (line 1164) | [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = fa... method GrainTypeAttribute (line 1167) | public GrainTypeAttribute(string grainType) { } method GetGrainType (line 1169) | public Runtime.GrainType GetGrainType(System.IServiceProvider services... class Grain (line 1172) | public partial class Grain : Grain method Grain (line 1058) | protected Grain() { } method Grain (line 1060) | protected Grain(Runtime.IGrainContext grainContext, Runtime.IGrainRunt... method DeactivateOnIdle (line 1074) | protected void DeactivateOnIdle() { } method DelayDeactivation (line 1076) | protected void DelayDeactivation(System.TimeSpan timeSpan) { } method MigrateOnIdle (line 1078) | protected void MigrateOnIdle() { } method OnActivateAsync (line 1080) | public virtual System.Threading.Tasks.Task OnActivateAsync(System.Thre... method OnDeactivateAsync (line 1082) | public virtual System.Threading.Tasks.Task OnDeactivateAsync(Deactivat... method RegisterTimer (line 1084) | [System.Obsolete("Use 'this.RegisterGrainTimer(callback, state, new() ... method Grain (line 1174) | protected Grain() { } method Grain (line 1176) | protected Grain(Core.IStorage storage) { } method ClearStateAsync (line 1180) | protected virtual System.Threading.Tasks.Task ClearStateAsync() { thro... method ReadStateAsync (line 1182) | protected virtual System.Threading.Tasks.Task ReadStateAsync() { throw... method WriteStateAsync (line 1184) | protected virtual System.Threading.Tasks.Task WriteStateAsync() { thro... type IConfigurationValidator (line 1187) | public partial interface IConfigurationValidator method ValidateConfiguration (line 1189) | void ValidateConfiguration(); type IGrain (line 1192) | public partial interface IGrain : Runtime.IAddressable type IGrainBase (line 1196) | public partial interface IGrainBase method OnActivateAsync (line 1200) | System.Threading.Tasks.Task OnActivateAsync(System.Threading.Cancellat... method OnDeactivateAsync (line 1201) | System.Threading.Tasks.Task OnDeactivateAsync(DeactivationReason reaso... type IGrainCallContext (line 1204) | public partial interface IGrainCallContext method Invoke (line 1226) | System.Threading.Tasks.Task Invoke(); type IGrainFactory (line 1229) | public partial interface IGrainFactory method CreateObjectReference (line 1231) | TGrainObserverInterface CreateObjectReference... method DeleteObjectReference (line 1233) | void DeleteObjectReference(IGrainObserver obj) method GetGrain (line 1235) | Runtime.IAddressable GetGrain(Runtime.GrainId grainId, Runtime.GrainIn... method GetGrain (line 1236) | Runtime.IAddressable GetGrain(Runtime.GrainId grainId); method GetGrain (line 1237) | IGrain GetGrain(System.Type grainInterfaceType, System.Guid grainPrima... method GetGrain (line 1238) | IGrain GetGrain(System.Type grainInterfaceType, System.Guid grainPrima... method GetGrain (line 1239) | IGrain GetGrain(System.Type grainInterfaceType, long grainPrimaryKey, ... method GetGrain (line 1240) | IGrain GetGrain(System.Type grainInterfaceType, long grainPrimaryKey); method GetGrain (line 1241) | IGrain GetGrain(System.Type grainInterfaceType, string grainPrimaryKey); method GetGrain (line 1242) | TGrainInterface GetGrain(Runtime.GrainId grainId) method GetGrain (line 1244) | TGrainInterface GetGrain(System.Guid primaryKey, stri... method GetGrain (line 1246) | TGrainInterface GetGrain(System.Guid primaryKey, stri... method GetGrain (line 1248) | TGrainInterface GetGrain(long primaryKey, string keyE... method GetGrain (line 1250) | TGrainInterface GetGrain(long primaryKey, string? gra... method GetGrain (line 1252) | TGrainInterface GetGrain(string primaryKey, string? g... type IGrainObserver (line 1256) | public partial interface IGrainObserver : Runtime.IAddressable type IGrainWithGuidCompoundKey (line 1260) | public partial interface IGrainWithGuidCompoundKey : IGrain, Runtime.IAd... type IGrainWithGuidKey (line 1264) | public partial interface IGrainWithGuidKey : IGrain, Runtime.IAddressable type IGrainWithIntegerCompoundKey (line 1268) | public partial interface IGrainWithIntegerCompoundKey : IGrain, Runtime.... type IGrainWithIntegerKey (line 1272) | public partial interface IGrainWithIntegerKey : IGrain, Runtime.IAddress... type IGrainWithStringKey (line 1276) | public partial interface IGrainWithStringKey : IGrain, Runtime.IAddressable type IIncomingGrainCallContext (line 1280) | public partial interface IIncomingGrainCallContext : IGrainCallContext type IIncomingGrainCallFilter (line 1287) | public partial interface IIncomingGrainCallFilter method Invoke (line 1289) | System.Threading.Tasks.Task Invoke(IIncomingGrainCallContext context); type ILifecycleObservable (line 1292) | public partial interface ILifecycleObservable method Subscribe (line 1294) | System.IDisposable Subscribe(string observerName, int stage, ILifecycl... type ILifecycleObserver (line 1297) | public partial interface ILifecycleObserver method OnStart (line 1299) | System.Threading.Tasks.Task OnStart(System.Threading.CancellationToken... method OnStop (line 1300) | System.Threading.Tasks.Task OnStop(System.Threading.CancellationToken ... type ILifecycleParticipant (line 1303) | public partial interface ILifecycleParticipant method Participate (line 1306) | void Participate(TLifecycleObservable lifecycle); type ILifecycleSubject (line 1309) | public partial interface ILifecycleSubject : ILifecycleObservable, ILife... type IOutgoingGrainCallContext (line 1314) | public partial interface IOutgoingGrainCallContext : IGrainCallContext type IOutgoingGrainCallFilter (line 1319) | public partial interface IOutgoingGrainCallFilter method Invoke (line 1321) | System.Threading.Tasks.Task Invoke(IOutgoingGrainCallContext context); type ISystemTarget (line 1324) | public partial interface ISystemTarget : Runtime.IAddressable type IVersionManager (line 1328) | public partial interface IVersionManager method SetCompatibilityStrategy (line 1330) | System.Threading.Tasks.Task SetCompatibilityStrategy(Runtime.GrainInte... method SetCompatibilityStrategy (line 1331) | System.Threading.Tasks.Task SetCompatibilityStrategy(Versions.Compatib... method SetSelectorStrategy (line 1332) | System.Threading.Tasks.Task SetSelectorStrategy(Runtime.GrainInterface... method SetSelectorStrategy (line 1333) | System.Threading.Tasks.Task SetSelectorStrategy(Versions.Selector.Vers... class LifecycleExtensions (line 1336) | public static partial class LifecycleExtensions method Subscribe (line 1338) | public static System.IDisposable Subscribe(this ILifecycleObservable o... method Subscribe (line 1340) | public static System.IDisposable Subscribe(this ILifecycleObservable o... method Subscribe (line 1342) | public static System.IDisposable Subscribe(this ILifecycleObservable o... method Subscribe (line 1344) | public static System.IDisposable Subscribe(this ILifecycleO... method Subscribe (line 1346) | public static System.IDisposable Subscribe(this ILifecycleO... method Subscribe (line 1348) | public static System.IDisposable Subscribe(this ILifecycleO... class PublicOrleansTaskExtensions (line 1352) | public static partial class PublicOrleansTaskExtensions method Ignore (line 1354) | public static void Ignore(this System.Threading.Tasks.Task task) { } class StableHash (line 1357) | public static partial class StableHash method ComputeHash (line 1359) | public static uint ComputeHash(System.ReadOnlySpan data) { throw... method ComputeHash (line 1361) | public static uint ComputeHash(string data) { throw null; } type InvokeMethodOptions (line 1367) | [System.Flags] class VersionAttribute (line 1378) | [System.AttributeUsage(System.AttributeTargets.Interface)] method VersionAttribute (line 1381) | public VersionAttribute(ushort version) { } method Populate (line 1385) | void Metadata.IGrainInterfacePropertiesProviderAttribute.Populate(Syst... class AlwaysInterleaveAttribute (line 1391) | [InvokableCustomInitializer("AddInvokeMethodOptions", CodeGeneration.Inv... class ImmutableExtensions (line 1397) | public static partial class ImmutableExtensions method AsImmutable (line 1399) | public static Immutable AsImmutable(this T value) { throw null; } type Immutable (line 1402) | [GenerateSerializer] method Immutable (line 1408) | public Immutable(T value) { } class MayInterleaveAttribute (line 1411) | [System.AttributeUsage(System.AttributeTargets.Class)] method MayInterleaveAttribute (line 1414) | public MayInterleaveAttribute(string callbackMethodName) { } method Populate (line 1416) | public void Populate(System.IServiceProvider services, System.Type gra... class OneWayAttribute (line 1419) | [InvokableCustomInitializer("AddInvokeMethodOptions", CodeGeneration.Inv... class ReadOnlyAttribute (line 1425) | [InvokableCustomInitializer("AddInvokeMethodOptions", CodeGeneration.Inv... class ReentrantAttribute (line 1431) | [System.AttributeUsage(System.AttributeTargets.Class)] method Populate (line 1434) | public void Populate(System.IServiceProvider services, System.Type gra... class StatelessWorkerAttribute (line 1437) | [System.AttributeUsage(System.AttributeTargets.Class)] method StatelessWorkerAttribute (line 1440) | public StatelessWorkerAttribute() : base(default!) { } method StatelessWorkerAttribute (line 1442) | public StatelessWorkerAttribute(int maxLocalWorkers, bool removeIdleWo... method StatelessWorkerAttribute (line 1444) | public StatelessWorkerAttribute(int maxLocalWorkers) : base(default!) { } method Populate (line 1446) | public override void Populate(System.IServiceProvider services, System... class UnorderedAttribute (line 1449) | [System.AttributeUsage(System.AttributeTargets.Interface)] type IStorage (line 1457) | public partial interface IStorage method ClearStateAsync (line 1463) | System.Threading.Tasks.Task ClearStateAsync(); method ClearStateAsync (line 1464) | System.Threading.Tasks.Task ClearStateAsync(System.Threading.Cancellat... method ReadStateAsync (line 1465) | System.Threading.Tasks.Task ReadStateAsync(); method ReadStateAsync (line 1466) | System.Threading.Tasks.Task ReadStateAsync(System.Threading.Cancellati... method WriteStateAsync (line 1467) | System.Threading.Tasks.Task WriteStateAsync(); method WriteStateAsync (line 1468) | System.Threading.Tasks.Task WriteStateAsync(System.Threading.Cancellat... type IStorage (line 1471) | public partial interface IStorage : IStorage method ClearStateAsync (line 1463) | System.Threading.Tasks.Task ClearStateAsync(); method ClearStateAsync (line 1464) | System.Threading.Tasks.Task ClearStateAsync(System.Threading.Cancellat... method ReadStateAsync (line 1465) | System.Threading.Tasks.Task ReadStateAsync(); method ReadStateAsync (line 1466) | System.Threading.Tasks.Task ReadStateAsync(System.Threading.Cancellati... method WriteStateAsync (line 1467) | System.Threading.Tasks.Task WriteStateAsync(); method WriteStateAsync (line 1468) | System.Threading.Tasks.Task WriteStateAsync(System.Threading.Cancellat... type ICallChainReentrantGrainContext (line 1479) | public partial interface ICallChainReentrantGrainContext method OnEnterReentrantSection (line 1481) | void OnEnterReentrantSection(System.Guid reentrancyId); method OnExitReentrantSection (line 1482) | void OnExitReentrantSection(System.Guid reentrancyId); type IGrainManagementExtension (line 1485) | public partial interface IGrainManagementExtension : Runtime.IGrainExten... method DeactivateOnIdle (line 1487) | System.Threading.Tasks.ValueTask DeactivateOnIdle(); method MigrateOnIdle (line 1488) | System.Threading.Tasks.ValueTask MigrateOnIdle(); class GrainDirectoryAttribute (line 1494) | [System.AttributeUsage(System.AttributeTargets.Class)] method GrainDirectoryAttribute (line 1498) | public GrainDirectoryAttribute() { } method GrainDirectoryAttribute (line 1500) | public GrainDirectoryAttribute(string grainDirectoryName) { } method Populate (line 1504) | public void Populate(System.IServiceProvider services, System.Type gra... type IGrainDirectory (line 1507) | public partial interface IGrainDirectory method Lookup (line 1509) | System.Threading.Tasks.Task Lookup(Runtime.Grai... method Register (line 1510) | System.Threading.Tasks.Task Register(Runtime.Gr... method Register (line 1511) | System.Threading.Tasks.Task Register(Runtime.Gr... method Unregister (line 1512) | System.Threading.Tasks.Task Unregister(Runtime.GrainAddress address); method UnregisterSilos (line 1513) | System.Threading.Tasks.Task UnregisterSilos(System.Collections.Generic... class AttributeGrainBindingsProvider (line 1519) | public sealed partial class AttributeGrainBindingsProvider : IGrainPrope... method AttributeGrainBindingsProvider (line 1521) | public AttributeGrainBindingsProvider(System.IServiceProvider serviceP... method Populate (line 1523) | public void Populate(System.Type grainClass, Runtime.GrainType grainTy... class AttributeGrainPropertiesProvider (line 1526) | public sealed partial class AttributeGrainPropertiesProvider : IGrainPro... method AttributeGrainPropertiesProvider (line 1528) | public AttributeGrainPropertiesProvider(System.IServiceProvider servic... method Populate (line 1530) | public void Populate(System.Type grainClass, Runtime.GrainType grainTy... class AttributeGrainTypeProvider (line 1533) | public partial class AttributeGrainTypeProvider : IGrainTypeProvider method AttributeGrainTypeProvider (line 1535) | public AttributeGrainTypeProvider(System.IServiceProvider serviceProvi... method TryGetGrainType (line 1537) | public bool TryGetGrainType(System.Type grainClass, out Runtime.GrainT... class ClusterManifest (line 1540) | [GenerateSerializer] method ClusterManifest (line 1544) | public ClusterManifest(MajorMinorVersion version, System.Collections.I... class DefaultGrainTypeAttribute (line 1556) | [System.AttributeUsage(System.AttributeTargets.Interface, AllowMultiple ... method DefaultGrainTypeAttribute (line 1559) | public DefaultGrainTypeAttribute(string grainType) { } method Populate (line 1561) | void IGrainInterfacePropertiesProviderAttribute.Populate(System.IServi... class GrainInterfaceProperties (line 1564) | [GenerateSerializer] method GrainInterfaceProperties (line 1568) | public GrainInterfaceProperties(System.Collections.Immutable.Immutable... method ToDetailedString (line 1573) | public string ToDetailedString() { throw null; } class GrainManifest (line 1576) | [GenerateSerializer] method GrainManifest (line 1580) | public GrainManifest(System.Collections.Immutable.ImmutableDictionary<... class GrainProperties (line 1589) | [GenerateSerializer] method GrainProperties (line 1593) | public GrainProperties(System.Collections.Immutable.ImmutableDictionar... method ToDetailedString (line 1598) | public string ToDetailedString() { throw null; } type IGrainBindingsProviderAttribute (line 1601) | public partial interface IGrainBindingsProviderAttribute method GetBindings (line 1603) | System.Collections.Generic.IEnumerable method Configure (line 1810) | void Configure(TBuilder builder, string? name, Microsoft.Extensions.Co... class LogConsistencyProviderAttribute (line 1813) | [System.AttributeUsage(System.AttributeTargets.Class)] class ProviderConstants (line 1819) | public static partial class ProviderConstants class StorageProviderAttribute (line 1826) | [System.AttributeUsage(System.AttributeTargets.Class)] class ActivationCountBasedPlacement (line 1835) | [GenerateSerializer] type ActivationId (line 1842) | [GenerateSerializer] method ActivationId (line 1848) | public ActivationId(System.Guid key) { } method Equals (line 1852) | public readonly bool Equals(ActivationId other) { throw null; } method Equals (line 1854) | public override readonly bool Equals(object? obj) { throw null; } method FromParsableString (line 1856) | public static ActivationId FromParsableString(string activationId) { t... method GetDeterministic (line 1858) | public static ActivationId GetDeterministic(GrainId grain) { throw nul... method GetHashCode (line 1860) | public override readonly int GetHashCode() { throw null; } method NewId (line 1862) | public static ActivationId NewId() { throw null; } method ToString (line 1868) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 1870) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToParsableString (line 1872) | public readonly string ToParsableString() { throw null; } method ToString (line 1874) | public override readonly string ToString() { throw null; } class ActivationIdConverter (line 1877) | public sealed partial class ActivationIdConverter : System.Text.Json.Ser... method Read (line 1879) | public override ActivationId Read(ref System.Text.Json.Utf8JsonReader ... method Write (line 1881) | public override void Write(System.Text.Json.Utf8JsonWriter writer, Act... class AsyncEnumerableExtensions (line 1884) | public static partial class AsyncEnumerableExtensions method WithBatchSize (line 1886) | public static System.Collections.Generic.IAsyncEnumerable WithBatch... class AsyncEnumerableRequest (line 1889) | [GenerateSerializer] method GetAsyncEnumerator (line 1897) | public System.Collections.Generic.IAsyncEnumerator GetAsyncEnumerat... method InitializeRequest (line 1899) | public System.Collections.Generic.IAsyncEnumerable InitializeReques... method Invoke (line 1901) | public override System.Threading.Tasks.ValueTask InvokeImplementa... method InvokeInner (line 1905) | protected abstract System.Collections.Generic.IAsyncEnumerable Invo... class AttributeGrainInterfaceTypeProvider (line 1908) | public partial class AttributeGrainInterfaceTypeProvider : IGrainInterfa... method AttributeGrainInterfaceTypeProvider (line 1910) | public AttributeGrainInterfaceTypeProvider(System.IServiceProvider ser... method TryGetGrainInterfaceType (line 1912) | public bool TryGetGrainInterfaceType(System.Type type, out GrainInterf... class ClientNotAvailableException (line 1915) | [GenerateSerializer] method ClientNotAvailableException (line 1918) | internal ClientNotAvailableException() { } class EnumerationAbortedException (line 1921) | [GenerateSerializer] method EnumerationAbortedException (line 1924) | public EnumerationAbortedException() { } method EnumerationAbortedException (line 1926) | [System.Obsolete] method EnumerationAbortedException (line 1929) | public EnumerationAbortedException(string message, System.Exception in... method EnumerationAbortedException (line 1931) | public EnumerationAbortedException(string message) { } type EnumerationResult (line 1934) | [GenerateSerializer] class GatewayTooBusyException (line 1948) | [GenerateSerializer] method GatewayTooBusyException (line 1951) | public GatewayTooBusyException() { } method GatewayTooBusyException (line 1953) | public GatewayTooBusyException(string message, System.Exception innerE... method GatewayTooBusyException (line 1955) | public GatewayTooBusyException(string message) { } class GrainAddress (line 1958) | [GenerateSerializer] method Equals (line 1975) | public bool Equals(GrainAddress? other) { throw null; } method Equals (line 1977) | public override bool Equals(object? obj) { throw null; } method GetHashCode (line 1979) | public override int GetHashCode() { throw null; } method Matches (line 1981) | public bool Matches(GrainAddress? other) { throw null; } method ToString (line 1983) | string System.IFormattable.ToString(string? format, System.IFormatProv... method TryFormat (line 1985) | bool System.ISpanFormattable.TryFormat(System.Span destination, ... method ToFullString (line 1987) | public string ToFullString() { throw null; } method ToString (line 1989) | public override string ToString() { throw null; } class GrainAddressCacheUpdate (line 1992) | [GenerateSerializer] method GrainAddressCacheUpdate (line 1996) | public GrainAddressCacheUpdate(GrainAddress invalidAddress, GrainAddre... method ToString (line 2008) | string System.IFormattable.ToString(string? format, System.IFormatProv... method TryFormat (line 2010) | bool System.ISpanFormattable.TryFormat(System.Span destination, ... method ToFullString (line 2012) | public string ToFullString() { throw null; } method ToString (line 2014) | public override string ToString() { throw null; } class GrainContextExtensions (line 2017) | public static partial class GrainContextExtensions method DeactivateAsync (line 2019) | [System.Obsolete("This method is error-prone: waiting deactivation to ... class GrainExtensionNotInstalledException (line 2023) | [GenerateSerializer] method GrainExtensionNotInstalledException (line 2026) | public GrainExtensionNotInstalledException() { } method GrainExtensionNotInstalledException (line 2028) | public GrainExtensionNotInstalledException(string message, System.Exce... method GrainExtensionNotInstalledException (line 2030) | public GrainExtensionNotInstalledException(string message) { } type GrainId (line 2033) | [GenerateSerializer] method GrainId (line 2038) | public GrainId(GrainType type, IdSpan key) { } method CompareTo (line 2046) | public readonly int CompareTo(GrainId other) { throw null; } method Create (line 2048) | public static GrainId Create(GrainType type, IdSpan key) { throw null; } method Create (line 2050) | public static GrainId Create(GrainType type, string key) { throw null; } method Create (line 2052) | public static GrainId Create(string type, string key) { throw null; } method Equals (line 2054) | public readonly bool Equals(GrainId other) { throw null; } method Equals (line 2056) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 2058) | public override readonly int GetHashCode() { throw null; } method GetObjectData (line 2060) | public readonly void GetObjectData(System.Runtime.Serialization.Serial... method GetUniformHashCode (line 2062) | public readonly uint GetUniformHashCode() { throw null; } method Parse (line 2068) | static GrainId System.ISpanParsable.Parse(System.ReadOnlySpan... method Parse (line 2070) | static GrainId System.IParsable.Parse(string value, System.IF... method Parse (line 2072) | public static GrainId Parse(string value) { throw null; } method ToString (line 2074) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 2076) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToString (line 2078) | public override readonly string ToString() { throw null; } method TryParse (line 2080) | static bool System.ISpanParsable.TryParse(System.ReadOnlySpan... method TryParse (line 2082) | public static bool TryParse(string? value, out GrainId result) { throw... method TryParse (line 2084) | static bool System.IParsable.TryParse(string? value, System.I... class GrainIdJsonConverter (line 2087) | public sealed partial class GrainIdJsonConverter : System.Text.Json.Seri... method Read (line 2089) | public override GrainId Read(ref System.Text.Json.Utf8JsonReader reade... method ReadAsPropertyName (line 2091) | public override GrainId ReadAsPropertyName(ref System.Text.Json.Utf8Js... method Write (line 2093) | public override void Write(System.Text.Json.Utf8JsonWriter writer, Gra... method WriteAsPropertyName (line 2095) | public override void WriteAsPropertyName(System.Text.Json.Utf8JsonWrit... class GrainIdKeyExtensions (line 2098) | public static partial class GrainIdKeyExtensions method CreateGuidKey (line 2100) | public static IdSpan CreateGuidKey(System.Guid key, System.ReadOnlySpa... method CreateGuidKey (line 2102) | public static IdSpan CreateGuidKey(System.Guid key, string? keyExtensi... method CreateGuidKey (line 2104) | public static IdSpan CreateGuidKey(System.Guid key) { throw null; } method CreateIntegerKey (line 2106) | public static IdSpan CreateIntegerKey(long key, System.ReadOnlySpan dest... method ToString (line 2153) | public override readonly string ToString() { throw null; } class GrainInterfaceTypeAttribute (line 2156) | [System.AttributeUsage(System.AttributeTargets.Interface, AllowMultiple ... method GrainInterfaceTypeAttribute (line 2159) | public GrainInterfaceTypeAttribute(string value) { } method GetGrainInterfaceType (line 2161) | public GrainInterfaceType GetGrainInterfaceType(System.IServiceProvide... class GrainLifecycleStage (line 2164) | public static partial class GrainLifecycleStage class GrainReference (line 2172) | [Alias("GrainRef")] method GrainReference (line 2181) | protected GrainReference(GrainReferenceShared shared, IdSpan key) { } method Cast (line 2195) | public virtual TGrainInterface Cast() method Equals (line 2198) | public bool Equals(GrainReference? other) { throw null; } method Equals (line 2200) | public override bool Equals(object? obj) { throw null; } method GetHashCode (line 2202) | public override int GetHashCode() { throw null; } method GetInvokable (line 2204) | protected TInvokable GetInvokable() { throw null; } method GetUniformHashCode (line 2206) | public uint GetUniformHashCode() { throw null; } method Invoke (line 2208) | protected void Invoke(IRequest methodDescription) { } method InvokeAsync (line 2210) | protected System.Threading.Tasks.ValueTask InvokeAsync(IRequest method... method InvokeAsync (line 2212) | protected System.Threading.Tasks.ValueTask InvokeAsync(IRequest ... method ToString (line 2218) | string System.IFormattable.ToString(string? format, System.IFormatProv... method TryFormat (line 2220) | bool System.ISpanFormattable.TryFormat(System.Span destination, ... method ToString (line 2222) | public sealed override string ToString() { throw null; } class GrainReferenceNotBoundException (line 2225) | [GenerateSerializer] method GrainReferenceNotBoundException (line 2228) | internal GrainReferenceNotBoundException() { } class GrainReferenceShared (line 2231) | public partial class GrainReferenceShared method GrainReferenceShared (line 2233) | public GrainReferenceShared(GrainType grainType, GrainInterfaceType gr... type GrainTimerCreationOptions (line 2252) | public readonly partial struct GrainTimerCreationOptions method GrainTimerCreationOptions (line 2255) | public GrainTimerCreationOptions() { } method GrainTimerCreationOptions (line 2257) | [System.Diagnostics.CodeAnalysis.SetsRequiredMembers] type GrainType (line 2269) | [GenerateSerializer] method GrainType (line 2273) | public GrainType(IdSpan id) { } method GrainType (line 2275) | public GrainType(byte[] value) { } method AsSpan (line 2281) | public readonly System.ReadOnlySpan AsSpan() { throw null; } method CompareTo (line 2283) | public readonly int CompareTo(GrainType other) { throw null; } method Create (line 2285) | public static GrainType Create(string value) { throw null; } method Equals (line 2287) | public readonly bool Equals(GrainType obj) { throw null; } method Equals (line 2289) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 2291) | public override readonly int GetHashCode() { throw null; } method GetObjectData (line 2293) | public readonly void GetObjectData(System.Runtime.Serialization.Serial... method GetUniformHashCode (line 2295) | public readonly uint GetUniformHashCode() { throw null; } method ToString (line 2305) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 2307) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToString (line 2309) | public override readonly string? ToString() { throw null; } method UnsafeGetArray (line 2311) | public static byte[]? UnsafeGetArray(GrainType id) { throw null; } class GrainTypePrefix (line 2314) | public static partial class GrainTypePrefix method IsClient (line 2326) | public static bool IsClient(this in GrainId id) { throw null; } method IsClient (line 2328) | public static bool IsClient(this in GrainType type) { throw null; } method IsGrainService (line 2330) | public static bool IsGrainService(this in GrainType type) { throw null; } method IsLegacyGrain (line 2332) | public static bool IsLegacyGrain(this in GrainType type) { throw null; } method IsSystemTarget (line 2334) | public static bool IsSystemTarget(this in GrainId id) { throw null; } method IsSystemTarget (line 2336) | public static bool IsSystemTarget(this in GrainType type) { throw null; } class GuidId (line 2339) | [Immutable] method GuidId (line 2343) | internal GuidId() { } method CompareTo (line 2347) | public int CompareTo(GuidId? other) { throw null; } method Equals (line 2349) | public bool Equals(GuidId? other) { throw null; } method Equals (line 2351) | public override bool Equals(object? obj) { throw null; } method GetGuidId (line 2353) | public static GuidId GetGuidId(System.Guid guid) { throw null; } method GetHashCode (line 2355) | public override int GetHashCode() { throw null; } method GetNewGuidId (line 2357) | public static GuidId GetNewGuidId() { throw null; } method GetObjectData (line 2359) | public void GetObjectData(System.Runtime.Serialization.SerializationIn... method ToString (line 2365) | public override string ToString() { throw null; } class HashBasedPlacement (line 2368) | [GenerateSerializer] type IAddressable (line 2375) | [GenerateMethodSerializers(typeof(GrainReference), false)] type IAsyncEnumerableGrainExtension (line 2380) | public partial interface IAsyncEnumerableGrainExtension : IGrainExtensio... method DisposeAsync (line 2382) | [Concurrency.AlwaysInterleave] method MoveNext (line 2384) | [Concurrency.AlwaysInterleave] method StartEnumeration (line 2386) | [Concurrency.AlwaysInterleave] type IAsyncEnumerableRequest (line 2390) | public partial interface IAsyncEnumerableRequest : IRequest, Orleans.... method InvokeImplementation (line 2394) | System.Collections.Generic.IAsyncEnumerable InvokeImplementation(); type IDehydrationContext (line 2397) | public partial interface IDehydrationContext method AddBytes (line 2401) | void AddBytes(string key, System.ReadOnlySpan value); method AddBytes (line 2402) | void AddBytes(string key, System.Action(string key, T? value); type IdSpan (line 2406) | [GenerateSerializer] method IdSpan (line 2412) | public IdSpan(byte[] value) { } method AsSpan (line 2418) | public readonly System.ReadOnlySpan AsSpan() { throw null; } method CompareTo (line 2420) | public readonly int CompareTo(IdSpan other) { throw null; } method Create (line 2422) | public static IdSpan Create(string id) { throw null; } method Equals (line 2424) | public readonly bool Equals(IdSpan obj) { throw null; } method Equals (line 2426) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 2428) | public override readonly int GetHashCode() { throw null; } method GetObjectData (line 2430) | public readonly void GetObjectData(System.Runtime.Serialization.Serial... method GetUniformHashCode (line 2432) | public readonly uint GetUniformHashCode() { throw null; } method ToString (line 2438) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 2440) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToString (line 2442) | public override readonly string ToString() { throw null; } method TryFormat (line 2444) | public readonly bool TryFormat(System.Span destination, out int ... method UnsafeCreate (line 2446) | public static IdSpan UnsafeCreate(byte[]? value, int hashCode) { throw... method UnsafeGetArray (line 2448) | public static byte[]? UnsafeGetArray(IdSpan id) { throw null; } class IdSpanCodec (line 2451) | [RegisterSerializer] method ReadRaw (line 2454) | public static IdSpan ReadRaw(ref Orleans.Serialization.Buffers... method ReadValue (line 2456) | public IdSpan ReadValue(ref Orleans.Serialization.Buffers.Read... method WriteField (line 2458) | public void WriteField(ref Orleans.Serialization.Buffer... method WriteRaw (line 2461) | public static void WriteRaw(ref Orleans.Serialization.B... type IGrainContext (line 2465) | public partial interface IGrainContext : Orleans.Serialization.Invocatio... method Activate (line 2485) | void Activate(System.Collections.Generic.Dictionary? r... method Deactivate (line 2486) | void Deactivate(DeactivationReason deactivationReason, System.Threadin... method Migrate (line 2487) | void Migrate(System.Collections.Generic.Dictionary? re... method ReceiveMessage (line 2488) | void ReceiveMessage(object message); method Rehydrate (line 2489) | void Rehydrate(IRehydrationContext context); method SetComponent (line 2490) | void SetComponent(TComponent? value) type IGrainContextAccessor (line 2494) | public partial interface IGrainContextAccessor type IGrainExtension (line 2499) | [GenerateMethodSerializers(typeof(GrainReference), true)] type IGrainExtensionBinder (line 2504) | public partial interface IGrainExtensionBinder method GetExtension (line 2506) | TExtensionInterface GetExtension() method GetOrSetExtension (line 2508) | (TExtension, TExtensionInterface) GetOrSetExtension InvokeMethodAsync(GrainReferenc... type IGrainRuntime (line 2542) | public partial interface IGrainRuntime method DeactivateOnIdle (line 2556) | void DeactivateOnIdle(IGrainContext grainContext); method DelayDeactivation (line 2557) | void DelayDeactivation(IGrainContext grainContext, System.TimeSpan tim... method GetStorage (line 2558) | Core.IStorage GetStorage(IGrainContext grain... type IGrainTimer (line 2561) | public partial interface IGrainTimer : System.IDisposable method Change (line 2563) | void Change(System.TimeSpan dueTime, System.TimeSpan period); type IRehydrationContext (line 2566) | public partial interface IRehydrationContext method TryGetBytes (line 2570) | bool TryGetBytes(string key, out System.Buffers.ReadOnlySequence... method TryGetValue (line 2571) | bool TryGetValue(string key, out T? value); type IRequest (line 2574) | public partial interface IRequest : Orleans.Serialization.Invocation.IIn... method AddInvokeMethodOptions (line 2578) | void AddInvokeMethodOptions(CodeGeneration.InvokeMethodOptions options); method ToMethodCallString (line 2579) | string ToMethodCallString(IRequest request); method ToString (line 2580) | string ToString(IRequest request); type IWorkItemScheduler (line 2583) | public partial interface IWorkItemScheduler method QueueAction (line 2585) | void QueueAction(System.Action action); method QueueAction (line 2586) | void QueueAction(System.Action action, object state); method QueueTask (line 2587) | void QueueTask(System.Threading.Tasks.Task task); class LegacyGrainId (line 2590) | [GenerateSerializer] method LegacyGrainId (line 2594) | internal LegacyGrainId() { } method CompareTo (line 2616) | public int CompareTo(LegacyGrainId? other) { throw null; } method CreateGrainTypeForGrain (line 2618) | public static GrainType CreateGrainTypeForGrain(int typeCode) { throw ... method CreateGrainTypeForSystemTarget (line 2620) | public static GrainType CreateGrainTypeForSystemTarget(int typeCode) {... method Equals (line 2622) | public bool Equals(LegacyGrainId? other) { throw null; } method Equals (line 2624) | public override bool Equals(object? obj) { throw null; } method FromGrainId (line 2626) | public static LegacyGrainId FromGrainId(GrainId id) { throw null; } method GetHashCode (line 2628) | public override int GetHashCode() { throw null; } method GetHashCode_Modulo (line 2630) | public uint GetHashCode_Modulo(uint umod) { throw null; } method GetPrimaryKey (line 2632) | public System.Guid GetPrimaryKey(out string? keyExt) { throw null; } method GetPrimaryKeyLong (line 2634) | public long GetPrimaryKeyLong(out string? keyExt) { throw null; } method GetUniformHashCode (line 2636) | public uint GetUniformHashCode() { throw null; } method IsLegacyGrainType (line 2638) | public static bool IsLegacyGrainType(System.Type type) { throw null; } method IsLegacyKeyExtGrainType (line 2640) | public static bool IsLegacyKeyExtGrainType(System.Type type) { throw n... method NewClientId (line 2642) | public static LegacyGrainId NewClientId() { throw null; } method NewId (line 2644) | public static LegacyGrainId NewId() { throw null; } method ToGrainId (line 2648) | public GrainId ToGrainId() { throw null; } method ToString (line 2650) | public override string ToString() { throw null; } method TryConvertFromGrainId (line 2652) | public static bool TryConvertFromGrainId(GrainId id, out LegacyGrainId... class LimitExceededException (line 2655) | [GenerateSerializer] method LimitExceededException (line 2658) | public LimitExceededException() { } method LimitExceededException (line 2660) | public LimitExceededException(string message, System.Exception innerEx... method LimitExceededException (line 2662) | public LimitExceededException(string limitName, int current, int thres... method LimitExceededException (line 2664) | public LimitExceededException(string message) { } class LogFormatter (line 2667) | public static partial class LogFormatter method ParseDate (line 2670) | public static System.DateTime ParseDate(string dateStr) { throw null; } method PrintDate (line 2672) | public static string PrintDate(System.DateTime date) { throw null; } method PrintException (line 2674) | public static string PrintException(System.Exception exception) { thro... method PrintTime (line 2676) | public static string PrintTime(System.DateTime date) { throw null; } method SetExceptionDecoder (line 2678) | public static void SetExceptionDecoder(System.Type exceptionType, Syst... type MembershipVersion (line 2681) | [GenerateSerializer] method MembershipVersion (line 2687) | public MembershipVersion(long version) { } method CompareTo (line 2694) | public readonly int CompareTo(MembershipVersion other) { throw null; } method Equals (line 2696) | public readonly bool Equals(MembershipVersion other) { throw null; } method Equals (line 2698) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 2700) | public override readonly int GetHashCode() { throw null; } method ToString (line 2714) | public override readonly string ToString() { throw null; } class MembershipVersionConverter (line 2717) | public sealed partial class MembershipVersionConverter : System.Text.Jso... method Read (line 2719) | public override MembershipVersion Read(ref System.Text.Json.Utf8JsonRe... method Write (line 2721) | public override void Write(System.Text.Json.Utf8JsonWriter writer, Mem... class OrleansConfigurationException (line 2724) | [GenerateSerializer] method OrleansConfigurationException (line 2727) | public OrleansConfigurationException(string message, System.Exception ... method OrleansConfigurationException (line 2729) | public OrleansConfigurationException(string message) { } class OrleansException (line 2732) | [GenerateSerializer] method OrleansException (line 2735) | public OrleansException() { } method OrleansException (line 2737) | [System.Obsolete] method OrleansException (line 2740) | public OrleansException(string message, System.Exception innerExceptio... method OrleansException (line 2742) | public OrleansException(string message) { } class OrleansLifecycleCanceledException (line 2745) | [GenerateSerializer] method OrleansLifecycleCanceledException (line 2748) | internal OrleansLifecycleCanceledException() { } class OrleansMessageRejectionException (line 2751) | [GenerateSerializer] method OrleansMessageRejectionException (line 2754) | [System.Obsolete] class PlacementStrategy (line 2758) | [SerializerTransparent] method Initialize (line 2763) | public virtual void Initialize(Metadata.GrainProperties properties) { } method PopulateGrainProperties (line 2765) | public virtual void PopulateGrainProperties(System.IServiceProvider se... class PreferLocalPlacement (line 2768) | [GenerateSerializer] class RandomPlacement (line 2775) | [GenerateSerializer] class Request (line 2782) | [SerializerTransparent] method Invoke (line 2785) | public sealed override System.Threading.Tasks.ValueTask InvokeInn... class RequestBase (line 2790) | [SuppressReferenceTracking] method AddInvokeMethodOptions (line 2796) | public void AddInvokeMethodOptions(CodeGeneration.InvokeMethodOptions ... method Dispose (line 2798) | public abstract void Dispose(); method GetActivityName (line 2799) | public abstract string GetActivityName(); method GetArgument (line 2800) | public virtual object GetArgument(int index) { throw null; } method GetArgumentCount (line 2802) | public virtual int GetArgumentCount() { throw null; } method GetCancellationToken (line 2804) | public virtual System.Threading.CancellationToken GetCancellationToken... method GetDefaultResponseTimeout (line 2806) | public virtual System.TimeSpan? GetDefaultResponseTimeout() { throw nu... method GetInterfaceName (line 2808) | public abstract string GetInterfaceName(); method GetInterfaceType (line 2809) | public abstract System.Type GetInterfaceType(); method GetMethod (line 2810) | public abstract System.Reflection.MethodInfo GetMethod(); method GetMethodName (line 2811) | public abstract string GetMethodName(); method GetTarget (line 2812) | public abstract object GetTarget(); method Invoke (line 2813) | public abstract System.Threading.Tasks.ValueTask InvokeInn... class ResourceOptimizedPlacement (line 2859) | [GenerateSerializer] class SiloAddress (line 2866) | [Immutable] method SiloAddress (line 2872) | internal SiloAddress() { } method AllocateNewGeneration (line 2884) | public static int AllocateNewGeneration() { throw null; } method CompareTo (line 2886) | public int CompareTo(SiloAddress? other) { throw null; } method Equals (line 2888) | public bool Equals(SiloAddress? other) { throw null; } method Equals (line 2890) | public override bool Equals(object? obj) { throw null; } method FromParsableString (line 2892) | public static SiloAddress FromParsableString(string addr) { throw null; } method FromUtf8String (line 2894) | public static SiloAddress FromUtf8String(System.ReadOnlySpan add... method GetConsistentHashCode (line 2896) | public int GetConsistentHashCode() { throw null; } method GetHashCode (line 2898) | public override int GetHashCode() { throw null; } method GetUniformHashCodes (line 2900) | public uint[] GetUniformHashCodes(int numHashes) { throw null; } method IsPredecessorOf (line 2902) | public bool IsPredecessorOf(SiloAddress other) { throw null; } method IsSuccessorOf (line 2904) | public bool IsSuccessorOf(SiloAddress other) { throw null; } method New (line 2906) | public static SiloAddress New(System.Net.IPAddress address, int port, ... method New (line 2908) | public static SiloAddress New(System.Net.IPEndPoint ep, int gen) { thr... method ToString (line 2910) | string System.IFormattable.ToString(string? format, System.IFormatProv... method TryFormat (line 2912) | bool System.ISpanFormattable.TryFormat(System.Span destination, ... method ToParsableString (line 2914) | public string ToParsableString() { throw null; } method ToString (line 2916) | public override string ToString() { throw null; } method ToStringWithHashCode (line 2918) | public string ToStringWithHashCode() { throw null; } class SiloAddressConverter (line 2921) | public sealed partial class SiloAddressConverter : System.Text.Json.Seri... method Read (line 2923) | public override SiloAddress? Read(ref System.Text.Json.Utf8JsonReader ... method Write (line 2925) | public override void Write(System.Text.Json.Utf8JsonWriter writer, Sil... class SiloRoleBasedPlacement (line 2928) | [GenerateSerializer] class SiloUnavailableException (line 2935) | [GenerateSerializer] method SiloUnavailableException (line 2938) | public SiloUnavailableException() : base(default!, default) { } method SiloUnavailableException (line 2940) | public SiloUnavailableException(string message, System.Exception inner... method SiloUnavailableException (line 2942) | public SiloUnavailableException(string msg) : base(default!, default) { } type SystemTargetGrainId (line 2945) | [Immutable] method CompareTo (line 2950) | public readonly int CompareTo(SystemTargetGrainId other) { throw null; } method Create (line 2952) | public static SystemTargetGrainId Create(GrainType kind, SiloAddress a... method Create (line 2954) | public static SystemTargetGrainId Create(GrainType kind, SiloAddress a... method CreateGrainServiceGrainId (line 2956) | public static GrainId CreateGrainServiceGrainId(int typeCode, string g... method CreateGrainType (line 2958) | public static GrainType CreateGrainType(string name) { throw null; } method Equals (line 2960) | public readonly bool Equals(SystemTargetGrainId other) { throw null; } method Equals (line 2962) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 2964) | public override readonly int GetHashCode() { throw null; } method GetSiloAddress (line 2966) | public readonly SiloAddress GetSiloAddress() { throw null; } method IsSystemTargetGrainId (line 2968) | public static bool IsSystemTargetGrainId(in GrainId id) { throw null; } method ToString (line 2982) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 2984) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToString (line 2986) | public override readonly string ToString() { throw null; } method TryParse (line 2988) | public static bool TryParse(GrainId grainId, out SystemTargetGrainId s... method WithSiloAddress (line 2990) | public readonly SystemTargetGrainId WithSiloAddress(SiloAddress siloAd... class SystemTargetPlacementStrategy (line 2993) | [GenerateSerializer] class TaskRequest (line 3003) | [SerializerTransparent] method Invoke (line 3006) | public sealed override System.Threading.Tasks.ValueTask InvokeInner(); class TaskRequest (line 3011) | [SerializerTransparent] method Invoke (line 3006) | public sealed override System.Threading.Tasks.ValueTask InvokeInner(); class UniqueKey (line 3019) | [GenerateSerializer] method CompareTo (line 3046) | public int CompareTo(UniqueKey? other) { throw null; } method Equals (line 3048) | public bool Equals(UniqueKey? other) { throw null; } method Equals (line 3050) | public override bool Equals(object? o) { throw null; } method GetHashCode (line 3052) | public override int GetHashCode() { throw null; } method NewGrainServiceKey (line 3054) | public static UniqueKey NewGrainServiceKey(short key, long typeData) {... method NewGrainServiceKey (line 3056) | public static UniqueKey NewGrainServiceKey(string key, long typeData) ... method NewKey (line 3058) | public static UniqueKey NewKey() { throw null; } method NewSystemTargetKey (line 3060) | public static UniqueKey NewSystemTargetKey(System.Guid guid, long type... method NewSystemTargetKey (line 3062) | public static UniqueKey NewSystemTargetKey(short systemId) { throw nul... method PrimaryKeyToGuid (line 3064) | public System.Guid PrimaryKeyToGuid() { throw null; } method PrimaryKeyToGuid (line 3066) | public System.Guid PrimaryKeyToGuid(out string? extendedKey) { throw n... method PrimaryKeyToLong (line 3068) | public long PrimaryKeyToLong() { throw null; } method PrimaryKeyToLong (line 3070) | public long PrimaryKeyToLong(out string? extendedKey) { throw null; } method ToString (line 3072) | public override string ToString() { throw null; } type Category (line 3074) | public enum Category : byte class Utils (line 3086) | public static partial class Utils method AverageTicksToMilliSeconds (line 3088) | public static float AverageTicksToMilliSeconds(float ticks) { throw nu... method BatchIEnumerable (line 3090) | public static System.Collections.Generic.IEnumerable(System.Collections.Gen... method EnumerableToString (line 3094) | public static string EnumerableToString(System.Collections.Generic.... method GetStackTrace (line 3096) | public static string GetStackTrace(int skipFrames = 0) { throw null; } method SafeExecute (line 3098) | public static void SafeExecute(System.Action action, Microsoft.Extensi... method SafeExecute (line 3100) | public static void SafeExecute(System.Action action) { } method SafeExecuteAsync (line 3102) | public static System.Threading.Tasks.Task SafeExecuteAsync(System.Thre... method TicksToMilliSeconds (line 3104) | public static long TicksToMilliSeconds(long ticks) { throw null; } method TimeSpanToString (line 3106) | public static string TimeSpanToString(System.TimeSpan timeSpan) { thro... method ToGatewayAddress (line 3108) | public static SiloAddress? ToGatewayAddress(this System.Uri uri) { thr... method ToGatewayUri (line 3110) | public static System.Uri ToGatewayUri(this SiloAddress address) { thro... method ToGatewayUri (line 3112) | public static System.Uri ToGatewayUri(this System.Net.IPEndPoint ep) {... method ToIPEndPoint (line 3114) | public static System.Net.IPEndPoint? ToIPEndPoint(this System.Uri uri)... class VoidRequest (line 3117) | [SerializerTransparent] method Invoke (line 3120) | public sealed override System.Threading.Tasks.ValueTask(ref Orleans.Serialization.B... method WriteField (line 3153) | public void WriteField(ref Orleans.Serialization.Buffer... class DeserializationContext (line 3160) | public abstract partial class DeserializationContext type IOnDeserialized (line 3166) | public partial interface IOnDeserialized method OnDeserialized (line 3168) | void OnDeserialized(DeserializationContext context); type IGrainService (line 3174) | public partial interface IGrainService : ISystemTarget, Runtime.IAddress... type IGrainServiceClient (line 3178) | public partial interface IGrainServiceClient type EnvironmentStatistics (line 3186) | [Immutable] method ToString (line 3218) | public override readonly string ToString() { throw null; } type IAppEnvironmentStatistics (line 3221) | [System.Obsolete("This functionality will be removed, use IEnvironmentSt... type IEnvironmentStatisticsProvider (line 3227) | public partial interface IEnvironmentStatisticsProvider method GetEnvironmentStatistics (line 3229) | EnvironmentStatistics GetEnvironmentStatistics(); type IHostEnvironmentStatistics (line 3232) | [System.Obsolete("This functionality will be removed, use IEnvironmentSt... type ITimerRegistry (line 3245) | public partial interface ITimerRegistry method RegisterGrainTimer (line 3247) | Runtime.IGrainTimer RegisterGrainTimer(Runtime.IGrainContext g... method RegisterTimer (line 3248) | [System.Obsolete("Use 'RegisterGrainTimer(grainContext, callback, stat... type IVersionStore (line 3255) | public partial interface IVersionStore : IVersionManager method GetCompatibilityStrategies (line 3259) | System.Threading.Tasks.Task GetCo... method GetSelectorStrategies (line 3261) | System.Threading.Tasks.Task GetSelec... class AllVersionsCompatible (line 3268) | [GenerateSerializer] class BackwardCompatible (line 3276) | [GenerateSerializer] class CompatibilityStrategy (line 3284) | [SerializerTransparent] type ICompatibilityDirector (line 3289) | public partial interface ICompatibilityDirector method IsCompatible (line 3291) | bool IsCompatible(ushort requestedVersion, ushort currentVersion); class StrictVersionCompatible (line 3294) | [GenerateSerializer] class AllCompatibleVersions (line 3305) | [GenerateSerializer] type IVersionSelector (line 3313) | public partial interface IVersionSelector method GetSuitableVersion (line 3315) | ushort[] GetSuitableVersion(ushort requestedVersion, ushort[] availabl... class LatestVersion (line 3318) | [GenerateSerializer] class MinimumVersion (line 3326) | [GenerateSerializer] class VersionSelectorStrategy (line 3334) | [SerializerTransparent] class Codec_DeactivationReasonCode (line 3342) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 3347) | public global::Orleans.DeactivationReasonCode ReadValue(... method WriteField (line 3349) | public void WriteField(ref global::Orleans.Serializatio... class Codec_InvokeMethodOptions (line 3356) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 3361) | public global::Orleans.CodeGeneration.InvokeMethodOptions ReadValue(ref global::Orleans.Serializatio... class Codec_Immutable (line 3370) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Immutable (line 3375) | public Codec_Immutable(global::Orleans.Serialization.Serializers.ICode... method Deserialize (line 3377) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3379) | public global::Orleans.Concurrency.Immutable ReadValue(ref global::Orleans.Serialization... method WriteField (line 3384) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Immutable (line 3388) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] class Codec_Invokable_IGrainManagementExtension_GrainReference_Ext_1B9614D1 (line 3398) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3403) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3405) | public Invokable_IGrainManagementExtension_GrainReference_Ext_1B9614D1... method Serialize (line 3407) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3410) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IGrainManagementExtension_GrainReference_Ext_4CC93B45 (line 3414) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3419) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3421) | public Invokable_IGrainManagementExtension_GrainReference_Ext_4CC93B45... method Serialize (line 3423) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3426) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Invokable_IGrainManagementExtension_GrainReference_Ext_1B9614D1 (line 3430) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3435) | public Invokable_IGrainManagementExtension_GrainReference_Ext_1B9614D1... class Copier_Invokable_IGrainManagementExtension_GrainReference_Ext_4CC93B45 (line 3438) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3443) | public Invokable_IGrainManagementExtension_GrainReference_Ext_4CC93B45... class Invokable_IGrainManagementExtension_GrainReference_Ext_1B9614D1 (line 3446) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 3452) | public override void Dispose() { } method GetActivityName (line 3454) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 3456) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3458) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3460) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3462) | public override string GetMethodName() { throw null; } method GetTarget (line 3464) | public override object GetTarget() { throw null; } method InvokeInner (line 3466) | protected override System.Threading.Tasks.ValueTask InvokeInner() { th... method SetTarget (line 3468) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IGrainManagementExtension_GrainReference_Ext_4CC93B45 (line 3471) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 3477) | public override void Dispose() { } method GetActivityName (line 3479) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 3481) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3483) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3485) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3487) | public override string GetMethodName() { throw null; } method GetTarget (line 3489) | public override object GetTarget() { throw null; } method InvokeInner (line 3491) | protected override System.Threading.Tasks.ValueTask InvokeInner() { th... method SetTarget (line 3493) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Codec_ClusterManifest (line 3499) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ClusterManifest (line 3504) | public Codec_ClusterManifest(global::Orleans.Serialization.Activators.... method Deserialize (line 3506) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3508) | public global::Orleans.Metadata.ClusterManifest ReadValue(ref global::Orleans.Serialization... method WriteField (line 3513) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainInterfaceProperties (line 3517) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainInterfaceProperties (line 3522) | public Codec_GrainInterfaceProperties(global::Orleans.Serialization.Ac... method Deserialize (line 3524) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3526) | public global::Orleans.Metadata.GrainInterfaceProperties ReadValue(ref global::Orleans.Serialization... method WriteField (line 3531) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainManifest (line 3535) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainManifest (line 3540) | public Codec_GrainManifest(global::Orleans.Serialization.Activators.IA... method Deserialize (line 3542) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3544) | public global::Orleans.Metadata.GrainManifest ReadValue(... method Serialize (line 3546) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3549) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainProperties (line 3553) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainProperties (line 3558) | public Codec_GrainProperties(global::Orleans.Serialization.Activators.... method Deserialize (line 3560) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3562) | public global::Orleans.Metadata.GrainProperties ReadValue(ref global::Orleans.Serialization... method WriteField (line 3567) | public void WriteField(ref global::Orleans.Serializatio... class Codec_MajorMinorVersion (line 3571) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3576) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3578) | public global::Orleans.Metadata.MajorMinorVersion ReadValue(ref global::Orleans.Serialization... method WriteField (line 3583) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ActivationCountBasedPlacement (line 3590) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3595) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3597) | public global::Orleans.Runtime.ActivationCountBasedPlacement ReadValue... method Serialize (line 3599) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3602) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ActivationId (line 3606) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3611) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3613) | public global::Orleans.Runtime.ActivationId ReadValue(re... method Serialize (line 3615) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3618) | public void WriteField(ref global::Orleans.Serializatio... class Codec_AsyncEnumerableRequest (line 3622) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3627) | public override void Deserialize(ref global::Orleans.Ser... method Serialize (line 3629) | public override void Serialize(ref global::Orleans.Seri... class Codec_ClientNotAvailableException (line 3632) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ClientNotAvailableException (line 3637) | public Codec_ClientNotAvailableException(global::Orleans.Serialization... method Deserialize (line 3639) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3641) | public global::Orleans.Runtime.ClientNotAvailableException ReadValue(ref global::Orleans.Serialization... method WriteField (line 3646) | public void WriteField(ref global::Orleans.Serializatio... class Codec_EnumerationAbortedException (line 3650) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_EnumerationAbortedException (line 3655) | public Codec_EnumerationAbortedException(global::Orleans.Serialization... method Deserialize (line 3657) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3659) | public global::Orleans.Runtime.EnumerationAbortedException ReadValue(ref global::Orleans.Serialization... method WriteField (line 3664) | public void WriteField(ref global::Orleans.Serializatio... class Codec_EnumerationResult (line 3668) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 3673) | public global::Orleans.Runtime.EnumerationResult ReadValue(ref global::Orleans.Serializatio... class Codec_GatewayTooBusyException (line 3679) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GatewayTooBusyException (line 3684) | public Codec_GatewayTooBusyException(global::Orleans.Serialization.Ser... method Deserialize (line 3686) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3688) | public global::Orleans.Runtime.GatewayTooBusyException ReadValue(ref global::Orleans.Serialization... method WriteField (line 3693) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainAddress (line 3697) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainAddress (line 3702) | public Codec_GrainAddress(global::Orleans.Serialization.Serializers.IC... method Deserialize (line 3704) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3706) | public global::Orleans.Runtime.GrainAddress ReadValue(re... method Serialize (line 3708) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3711) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainAddressCacheUpdate (line 3715) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainAddressCacheUpdate (line 3720) | public Codec_GrainAddressCacheUpdate(global::Orleans.Serialization.Act... method Deserialize (line 3722) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3724) | public global::Orleans.Runtime.GrainAddressCacheUpdate ReadValue(ref global::Orleans.Serialization... method WriteField (line 3729) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainExtensionNotInstalledException (line 3733) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainExtensionNotInstalledException (line 3738) | public Codec_GrainExtensionNotInstalledException(global::Orleans.Seria... method Deserialize (line 3740) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3742) | public global::Orleans.Runtime.GrainExtensionNotInstalledException Rea... method Serialize (line 3744) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3747) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainId (line 3751) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainId (line 3756) | public Codec_GrainId(global::Orleans.Serialization.Serializers.ICodecP... method Deserialize (line 3758) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3760) | public global::Orleans.Runtime.GrainId ReadValue(ref glo... method Serialize (line 3762) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3765) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainInterfaceType (line 3769) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainInterfaceType (line 3774) | public Codec_GrainInterfaceType(global::Orleans.Serialization.Serializ... method Deserialize (line 3776) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3778) | public global::Orleans.Runtime.GrainInterfaceType ReadValue(ref global::Orleans.Serialization... method WriteField (line 3783) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainReferenceNotBoundException (line 3787) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainReferenceNotBoundException (line 3792) | public Codec_GrainReferenceNotBoundException(global::Orleans.Serializa... method Deserialize (line 3794) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3796) | public global::Orleans.Runtime.GrainReferenceNotBoundException ReadVal... method Serialize (line 3798) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3801) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainType (line 3805) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainType (line 3810) | public Codec_GrainType(global::Orleans.Serialization.Serializers.ICode... method Deserialize (line 3812) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3814) | public global::Orleans.Runtime.GrainType ReadValue(ref g... method Serialize (line 3816) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3819) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GuidId (line 3823) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GuidId (line 3828) | public Codec_GuidId(global::Orleans.Serialization.Activators.IActivato... method Deserialize (line 3830) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3832) | public global::Orleans.Runtime.GuidId ReadValue(ref glob... method Serialize (line 3834) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3837) | public void WriteField(ref global::Orleans.Serializatio... class Codec_HashBasedPlacement (line 3841) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3846) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3848) | public global::Orleans.Runtime.HashBasedPlacement ReadValue(ref global::Orleans.Serialization... method WriteField (line 3853) | public void WriteField(ref global::Orleans.Serializatio... class Codec_IdSpan (line 3857) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3862) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3864) | public global::Orleans.Runtime.IdSpan ReadValue(ref glob... method Serialize (line 3866) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3869) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_370CD5AB_1 (line 3873) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_370CD5AB_1 (line 3878) | public Codec_Invokable_IAsyncEnumerableGrainExtension_GrainReference_E... method Deserialize (line 3880) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3882) | public Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_370... method Serialize (line 3884) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3887) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_3C6D7209 (line 3891) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3896) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3898) | public Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_3C6... method Serialize (line 3900) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3903) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_A7FA7E30_1 (line 3907) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3912) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3914) | public Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_A7F... method Serialize (line 3916) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3919) | public void WriteField(ref global::Orleans.Serializatio... class Codec_LegacyGrainId (line 3923) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_LegacyGrainId (line 3928) | public Codec_LegacyGrainId(global::Orleans.Serialization.Activators.IA... method Deserialize (line 3930) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3932) | public global::Orleans.Runtime.LegacyGrainId ReadValue(r... method Serialize (line 3934) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3937) | public void WriteField(ref global::Orleans.Serializatio... class Codec_LimitExceededException (line 3941) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_LimitExceededException (line 3946) | public Codec_LimitExceededException(global::Orleans.Serialization.Seri... method Deserialize (line 3948) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3950) | public global::Orleans.Runtime.LimitExceededException ReadValue(ref global::Orleans.Serialization... method WriteField (line 3955) | public void WriteField(ref global::Orleans.Serializatio... class Codec_MembershipVersion (line 3959) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3964) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3966) | public global::Orleans.Runtime.MembershipVersion ReadValue(ref global::Orleans.Serialization... method WriteField (line 3971) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansConfigurationException (line 3975) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansConfigurationException (line 3980) | public Codec_OrleansConfigurationException(global::Orleans.Serializati... method Deserialize (line 3982) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3984) | public global::Orleans.Runtime.OrleansConfigurationException ReadValue... method Serialize (line 3986) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3989) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansException (line 3993) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansException (line 3998) | public Codec_OrleansException(global::Orleans.Serialization.Serializer... method Deserialize (line 4000) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4002) | public global::Orleans.Runtime.OrleansException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4007) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansLifecycleCanceledException (line 4011) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansLifecycleCanceledException (line 4016) | public Codec_OrleansLifecycleCanceledException(global::Orleans.Seriali... method Deserialize (line 4018) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4020) | public global::Orleans.Runtime.OrleansLifecycleCanceledException ReadV... method Serialize (line 4022) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4025) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansMessageRejectionException (line 4029) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansMessageRejectionException (line 4034) | public Codec_OrleansMessageRejectionException(global::Orleans.Serializ... method Deserialize (line 4036) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4038) | public global::Orleans.Runtime.OrleansMessageRejectionException ReadVa... method Serialize (line 4040) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4043) | public void WriteField(ref global::Orleans.Serializatio... class Codec_PreferLocalPlacement (line 4047) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4052) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4054) | public global::Orleans.Runtime.PreferLocalPlacement ReadValue(ref global::Orleans.Serialization... method WriteField (line 4059) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RandomPlacement (line 4063) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4068) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4070) | public global::Orleans.Runtime.RandomPlacement ReadValue... method Serialize (line 4072) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4075) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ResourceOptimizedPlacement (line 4079) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4084) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4086) | public global::Orleans.Runtime.ResourceOptimizedPlacement ReadValue(ref global::Orleans.Serialization... method WriteField (line 4091) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SiloRoleBasedPlacement (line 4095) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4100) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4102) | public global::Orleans.Runtime.SiloRoleBasedPlacement ReadValue(ref global::Orleans.Serialization... method WriteField (line 4107) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SiloUnavailableException (line 4111) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SiloUnavailableException (line 4116) | public Codec_SiloUnavailableException(global::Orleans.Serialization.Se... method Deserialize (line 4118) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4120) | public global::Orleans.Runtime.SiloUnavailableException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4125) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SystemTargetPlacementStrategy (line 4129) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4134) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4136) | public global::Orleans.Runtime.SystemTargetPlacementStrategy ReadValue... method Serialize (line 4138) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4141) | public void WriteField(ref global::Orleans.Serializatio... class Codec_UniqueKey (line 4145) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4150) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4152) | public global::Orleans.Runtime.UniqueKey ReadValue(ref g... method Serialize (line 4154) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4157) | public void WriteField(ref global::Orleans.Serializatio... class Codec_WrappedException (line 4161) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_WrappedException (line 4166) | public Codec_WrappedException(global::Orleans.Serialization.Serializer... method Deserialize (line 4168) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4170) | public global::Orleans.Runtime.WrappedException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4175) | public void WriteField(ref global::Orleans.Serializatio... class Copier_AsyncEnumerableRequest (line 4179) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 4184) | public void DeepCopy(global::Orleans.Runtime.AsyncEnumerableRequest... method DeepCopy (line 4186) | public global::Orleans.Runtime.AsyncEnumerableRequest DeepCopy(glob... class Copier_ClientNotAvailableException (line 4189) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ClientNotAvailableException (line 4194) | public Copier_ClientNotAvailableException(global::Orleans.Serializatio... class Copier_EnumerationAbortedException (line 4197) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_EnumerationAbortedException (line 4202) | public Copier_EnumerationAbortedException(global::Orleans.Serializatio... class Copier_GatewayTooBusyException (line 4205) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GatewayTooBusyException (line 4210) | public Copier_GatewayTooBusyException(global::Orleans.Serialization.Se... class Copier_GrainExtensionNotInstalledException (line 4213) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GrainExtensionNotInstalledException (line 4218) | public Copier_GrainExtensionNotInstalledException(global::Orleans.Seri... class Copier_GrainReferenceNotBoundException (line 4221) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GrainReferenceNotBoundException (line 4226) | public Copier_GrainReferenceNotBoundException(global::Orleans.Serializ... class Copier_Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_370CD5AB_1 (line 4229) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 4234) | public Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_370... class Copier_Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_3C6D7209 (line 4237) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 4242) | public Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_3C6... class Copier_Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_A7FA7E30_1 (line 4245) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 4250) | public Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_A7F... class Copier_LimitExceededException (line 4253) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_LimitExceededException (line 4258) | public Copier_LimitExceededException(global::Orleans.Serialization.Ser... class Copier_OrleansConfigurationException (line 4261) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansConfigurationException (line 4266) | public Copier_OrleansConfigurationException(global::Orleans.Serializat... class Copier_OrleansException (line 4269) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansException (line 4274) | public Copier_OrleansException(global::Orleans.Serialization.Serialize... class Copier_OrleansLifecycleCanceledException (line 4277) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansLifecycleCanceledException (line 4282) | public Copier_OrleansLifecycleCanceledException(global::Orleans.Serial... class Copier_OrleansMessageRejectionException (line 4285) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansMessageRejectionException (line 4290) | public Copier_OrleansMessageRejectionException(global::Orleans.Seriali... class Copier_SiloRoleBasedPlacement (line 4293) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 4298) | public void DeepCopy(global::Orleans.Runtime.SiloRoleBasedPlacement in... method DeepCopy (line 4300) | public global::Orleans.Runtime.SiloRoleBasedPlacement DeepCopy(global:... class Copier_SiloUnavailableException (line 4303) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SiloUnavailableException (line 4308) | public Copier_SiloUnavailableException(global::Orleans.Serialization.S... class Copier_WrappedException (line 4311) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_WrappedException (line 4316) | public Copier_WrappedException(global::Orleans.Serialization.Serialize... method DeepCopy (line 4318) | public override void DeepCopy(global::Orleans.Runtime.WrappedException... class Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_370CD5AB_1 (line 4321) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4329) | public override void Dispose() { } method GetActivityName (line 4331) | public override string GetActivityName() { throw null; } method GetArgument (line 4333) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4335) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4337) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4339) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4341) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4343) | public override string GetMethodName() { throw null; } method GetTarget (line 4345) | public override object GetTarget() { throw null; } method InvokeInner (line 4347) | protected override System.Threading.Tasks.ValueTask<(global::Orleans.R... method SetArgument (line 4349) | public override void SetArgument(int index, object value) { } method SetTarget (line 4351) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_3C6D7209 (line 4354) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4361) | public override void Dispose() { } method GetActivityName (line 4363) | public override string GetActivityName() { throw null; } method GetArgument (line 4365) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4367) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4369) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4371) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4373) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4375) | public override string GetMethodName() { throw null; } method GetTarget (line 4377) | public override object GetTarget() { throw null; } method InvokeInner (line 4379) | protected override System.Threading.Tasks.ValueTask InvokeInner() { th... method SetArgument (line 4381) | public override void SetArgument(int index, object value) { } method SetTarget (line 4383) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IAsyncEnumerableGrainExtension_GrainReference_Ext_A7FA7E30_1 (line 4386) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4393) | public override void Dispose() { } method GetActivityName (line 4395) | public override string GetActivityName() { throw null; } method GetArgument (line 4397) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4399) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4401) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4403) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4405) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4407) | public override string GetMethodName() { throw null; } method GetTarget (line 4409) | public override object GetTarget() { throw null; } method InvokeInner (line 4411) | protected override System.Threading.Tasks.ValueTask<(global::Orleans.R... method SetArgument (line 4413) | public override void SetArgument(int index, object value) { } method SetTarget (line 4415) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Codec_EnvironmentStatistics (line 4421) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4426) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4428) | public global::Orleans.Statistics.EnvironmentStatistics ReadValue(ref global::Orleans.Serialization... method WriteField (line 4433) | public void WriteField(ref global::Orleans.Serializatio... class Codec_AllVersionsCompatible (line 4440) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4445) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4447) | public global::Orleans.Versions.Compatibility.AllVersionsCompatible Re... method Serialize (line 4449) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4452) | public void WriteField(ref global::Orleans.Serializatio... class Codec_BackwardCompatible (line 4456) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4461) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4463) | public global::Orleans.Versions.Compatibility.BackwardCompatible ReadV... method Serialize (line 4465) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4468) | public void WriteField(ref global::Orleans.Serializatio... class Codec_StrictVersionCompatible (line 4472) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4477) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4479) | public global::Orleans.Versions.Compatibility.StrictVersionCompatible ... method Serialize (line 4481) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4484) | public void WriteField(ref global::Orleans.Serializatio... class Codec_AllCompatibleVersions (line 4491) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4496) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4498) | public global::Orleans.Versions.Selector.AllCompatibleVersions ReadVal... method Serialize (line 4500) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4503) | public void WriteField(ref global::Orleans.Serializatio... class Codec_LatestVersion (line 4507) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4512) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4514) | public global::Orleans.Versions.Selector.LatestVersion ReadValue(ref global::Orleans.Serialization... method WriteField (line 4519) | public void WriteField(ref global::Orleans.Serializatio... class Codec_MinimumVersion (line 4523) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4528) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4530) | public global::Orleans.Versions.Selector.MinimumVersion ReadValue(ref global::Orleans.Serialization... method WriteField (line 4535) | public void WriteField(ref global::Orleans.Serializatio... FILE: src/api/Orleans.Core/Orleans.Core.cs class OrleansClientGenericHostExtensions (line 11) | public static partial class OrleansClientGenericHostExtensions method AddOrleansClient (line 13) | public static DependencyInjection.IServiceCollection AddOrleansClient(... method AddOrleansClient (line 15) | public static DependencyInjection.IServiceCollection AddOrleansClient(... method UseOrleansClient (line 17) | public static HostApplicationBuilder UseOrleansClient(this HostApplica... method UseOrleansClient (line 19) | public static HostApplicationBuilder UseOrleansClient(this HostApplica... method UseOrleansClient (line 21) | public static IHostApplicationBuilder UseOrleansClient(this IHostAppli... method UseOrleansClient (line 23) | public static IHostApplicationBuilder UseOrleansClient(this IHostAppli... method UseOrleansClient (line 25) | public static IHostBuilder UseOrleansClient(this IHostBuilder hostBuil... method UseOrleansClient (line 27) | public static IHostBuilder UseOrleansClient(this IHostBuilder hostBuil... method UseOrleansClient (line 29) | public static IHostBuilder UseOrleansClient(this IHostBuilder hostBuil... class AsyncSerialExecutor (line 35) | public partial class AsyncSerialExecutor method AddNext (line 37) | public System.Threading.Tasks.Task AddNext(System.Func AddNext(System.Func method AddNext (line 37) | public System.Threading.Tasks.Task AddNext(System.Func AddNext(System.Func ShouldRetryConnectionAttempt(System.... type IClusterClient (line 142) | public partial interface IClusterClient : IGrainFactory type IClusterClientLifecycle (line 147) | public partial interface IClusterClientLifecycle : ILifecycleObservable type IClusterConnectionStatusObserver (line 151) | public partial interface IClusterConnectionStatusObserver method NotifyClusterConnectionLost (line 153) | void NotifyClusterConnectionLost(); method NotifyGatewayCountChanged (line 154) | void NotifyGatewayCountChanged(int currentNumberOfGateways, int previo... type IGrainState (line 157) | public partial interface IGrainState type IMembershipTable (line 166) | public partial interface IMembershipTable method CleanupDefunctSiloEntries (line 168) | System.Threading.Tasks.Task CleanupDefunctSiloEntries(System.DateTimeO... method DeleteMembershipTableEntries (line 169) | System.Threading.Tasks.Task DeleteMembershipTableEntries(string cluste... method InitializeMembershipTable (line 170) | System.Threading.Tasks.Task InitializeMembershipTable(bool tryInitTabl... method InsertRow (line 171) | System.Threading.Tasks.Task InsertRow(MembershipEntry entry, Tab... method ReadAll (line 172) | System.Threading.Tasks.Task ReadAll(); method ReadRow (line 173) | System.Threading.Tasks.Task ReadRow(Runtime.SiloA... method UpdateIAmAlive (line 174) | System.Threading.Tasks.Task UpdateIAmAlive(MembershipEntry entry); method UpdateRow (line 175) | System.Threading.Tasks.Task UpdateRow(MembershipEntry entry, str... type IMembershipTableSystemTarget (line 178) | [Concurrency.Unordered] type IOptionFormatter (line 183) | public partial interface IOptionFormatter method Format (line 187) | System.Collections.Generic.IEnumerable Format(); type IOptionFormatterResolver (line 190) | public partial interface IOptionFormatterResolver method Resolve (line 192) | IOptionFormatter Resolve(string name); type IOptionFormatter (line 195) | public partial interface IOptionFormatter : IOptionFormatter method Format (line 187) | System.Collections.Generic.IEnumerable Format(); class KeepAliveAttribute (line 199) | [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = fa... method Populate (line 202) | public void Populate(System.IServiceProvider services, System.Type gra... class LifecycleSubject (line 205) | public abstract partial class LifecycleSubject : ILifecycleSubject, ILif... method LifecycleSubject (line 208) | protected LifecycleSubject(Microsoft.Extensions.Logging.ILogger logger... method CallObserverStopAsync (line 210) | protected virtual System.Threading.Tasks.Task CallObserverStopAsync(IL... method GetStageName (line 212) | protected virtual string GetStageName(int stage) { throw null; } method GetStageNames (line 214) | protected static System.Collections.Immutable.ImmutableDictionary tuple... method ToString (line 291) | public override string ToString() { throw null; } method TryGet (line 293) | public System.Tuple TryGet(Runtime.SiloAddres... method WithoutDuplicateDeads (line 295) | public MembershipTableData WithoutDuplicateDeads() { throw null; } class NamedOptionExtensions (line 298) | public static partial class NamedOptionExtensions method GetOptionsByName (line 300) | public static TOption GetOptionsByName(this System.IServicePr... class OptionFormattingUtilities (line 304) | public static partial class OptionFormattingUtilities method Format (line 306) | public static string Format(object key, object value, string formattin... method Name (line 308) | public static string Name(string name = null, string formatt... class OptionsLogger (line 311) | public abstract partial class OptionsLogger method OptionsLogger (line 313) | protected OptionsLogger(Microsoft.Extensions.Logging.ILogger logger, S... method LogOption (line 315) | public void LogOption(IOptionFormatter formatter) { } method LogOptions (line 317) | public void LogOptions() { } method LogOptions (line 319) | public void LogOptions(System.Collections.Generic.IEnumerable destination, ... method ToString (line 383) | public override string ToString() { throw null; } class ClientConnectionOptions (line 389) | public partial class ClientConnectionOptions method ConfigureConnection (line 391) | public void ConfigureConnection(System.Action(this Mic... method TryAddFromExisting (line 572) | public static void TryAddFromExisting(this ... class OptionsOverrides (line 579) | public static partial class OptionsOverrides method GetProviderClusterOptions (line 581) | public static Microsoft.Extensions.Options.IOptions Ge... type IGrainLocator (line 587) | public partial interface IGrainLocator method InvalidateCache (line 589) | void InvalidateCache(Runtime.GrainAddress address); method InvalidateCache (line 590) | void InvalidateCache(Runtime.GrainId grainId); method Lookup (line 591) | System.Threading.Tasks.ValueTask Lookup(Runtime... method Register (line 592) | System.Threading.Tasks.Task Register(Runtime.Gr... method TryLookupInCache (line 593) | bool TryLookupInCache(Runtime.GrainId grainId, out Runtime.GrainAddres... method Unregister (line 594) | System.Threading.Tasks.Task Unregister(Runtime.GrainAddress address, U... method UpdateCache (line 595) | void UpdateCache(Runtime.GrainId grainId, Runtime.SiloAddress siloAddr... type UnregistrationCause (line 598) | public enum UnregistrationCause : byte class GrainReferenceActivator (line 607) | public sealed partial class GrainReferenceActivator method GrainReferenceActivator (line 609) | public GrainReferenceActivator(System.IServiceProvider serviceProvider... method CreateReference (line 611) | public Runtime.GrainReference CreateReference(Runtime.GrainId grainId,... type IGrainReferenceActivator (line 614) | public partial interface IGrainReferenceActivator method CreateReference (line 616) | Runtime.GrainReference CreateReference(Runtime.GrainId grainId); type IGrainReferenceActivatorProvider (line 619) | public partial interface IGrainReferenceActivatorProvider method TryGet (line 621) | bool TryGet(Runtime.GrainType grainType, Runtime.GrainInterfaceType in... class ClientBuilder (line 627) | public partial class ClientBuilder : IClientBuilder method ClientBuilder (line 629) | public ClientBuilder(Microsoft.Extensions.DependencyInjection.IService... class ClientBuilderExtensions (line 636) | public static partial class ClientBuilderExtensions method AddActivityPropagation (line 638) | public static IClientBuilder AddActivityPropagation(this IClientBuilde... method AddClusterConnectionLostHandler (line 640) | public static IClientBuilder AddClusterConnectionLostHandler(this ICli... method AddClusterConnectionLostHandler (line 642) | public static IClientBuilder AddClusterConnectionLostHandler(this ICli... method AddClusterConnectionStatusObserver (line 644) | public static IClientBuilder AddClusterConnectionStatusObserver(this IClientBuilder b... method Configure (line 657) | public static IClientBuilder Configure(this IClientBuilder b... method ConfigureServices (line 660) | public static IClientBuilder ConfigureServices(this IClientBuilder bui... method UseConnectionRetryFilter (line 662) | public static IClientBuilder UseConnectionRetryFilter(this IClientBuil... method UseConnectionRetryFilter (line 664) | public static IClientBuilder UseConnectionRetryFilter(this IClientBuil... method UseConnectionRetryFilter (line 666) | public static IClientBuilder UseConnectionRetryFilter(this INamedServiceConfigurator ... method ConfigureComponent (line 738) | public static void ConfigureComponent(this INamedServiceCo... method ConfigureComponent (line 741) | public static void ConfigureComponent(this IName... method ConfigureLifecycle (line 745) | public static void ConfigureLifecycle(this INamedServiceConfigurato... class AsyncExecutorWithRetries (line 752) | public static partial class AsyncExecutorWithRetries method ExecuteWithRetries (line 755) | public static System.Threading.Tasks.Task ExecuteWithRetries(System.Fu... method ExecuteWithRetries (line 757) | public static System.Threading.Tasks.Task ExecuteWithRetries(Sys... method ExecuteWithRetries (line 759) | public static System.Threading.Tasks.Task ExecuteWithRetries(Sys... class FixedBackoff (line 762) | public partial class FixedBackoff : IBackoffProvider method FixedBackoff (line 764) | public FixedBackoff(System.TimeSpan delay) { } method Next (line 766) | public System.TimeSpan Next(int attempt) { throw null; } type IBackoffProvider (line 769) | public partial interface IBackoffProvider method Next (line 771) | System.TimeSpan Next(int attempt); class AcquiredLease (line 777) | [GenerateSerializer] method AcquiredLease (line 781) | public AcquiredLease(string resourceKey, System.TimeSpan duration, str... method AcquiredLease (line 783) | public AcquiredLease(string resourceKey) { } class AcquireLeaseResult (line 798) | [GenerateSerializer] method AcquireLeaseResult (line 802) | public AcquireLeaseResult(AcquiredLease acquiredLease, ResponseCode st... type ILeaseProvider (line 814) | public partial interface ILeaseProvider method Acquire (line 816) | System.Threading.Tasks.Task Acquire(string categ... method Release (line 817) | System.Threading.Tasks.Task Release(string category, AcquiredLease[] a... method Renew (line 818) | System.Threading.Tasks.Task Renew(string categor... class LeaseRequest (line 821) | [GenerateSerializer] method LeaseRequest (line 825) | public LeaseRequest(string resourceKey, System.TimeSpan duration) { } type ResponseCode (line 834) | [GenerateSerializer] type IGatewayListProvider (line 846) | public partial interface IGatewayListProvider method GetGateways (line 853) | System.Threading.Tasks.Task Filter(Pla... class PlacementFilterExtensions (line 953) | public static partial class PlacementFilterExtensions method AddPlacementFilter (line 955) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... type IActivationRebalancer (line 963) | public partial interface IActivationRebalancer method GetRebalancingReport (line 965) | System.Threading.Tasks.ValueTask GetRebalancingRepo... method ResumeRebalancing (line 966) | System.Threading.Tasks.Task ResumeRebalancing(); method SubscribeToReports (line 967) | void SubscribeToReports(IActivationRebalancerReportListener listener); method SuspendRebalancing (line 968) | System.Threading.Tasks.Task SuspendRebalancing(System.TimeSpan? durati... method UnsubscribeFromReports (line 969) | void UnsubscribeFromReports(IActivationRebalancerReportListener listen... type IActivationRebalancerReportListener (line 972) | public partial interface IActivationRebalancerReportListener method OnReport (line 974) | void OnReport(RebalancingReport report); type IFailedSessionBackoffProvider (line 977) | public partial interface IFailedSessionBackoffProvider : Internal.IBacko... type RebalancerStatus (line 981) | [GenerateSerializer] type RebalancingReport (line 988) | [GenerateSerializer] type RebalancingStatistics (line 1011) | [GenerateSerializer] type CandidateConnectedVertex (line 1034) | [GenerateSerializer] method CandidateConnectedVertex (line 1039) | public CandidateConnectedVertex(Runtime.GrainId id, long transferScore... method Equals (line 1047) | public readonly bool Equals(CandidateConnectedVertex other) { throw nu... method Equals (line 1049) | public override readonly bool Equals(object obj) { throw null; } method GetHashCode (line 1051) | public override readonly int GetHashCode() { throw null; } method ToString (line 1057) | public override readonly string ToString() { throw null; } type EdgeVertex (line 1060) | [GenerateSerializer] method EdgeVertex (line 1070) | public EdgeVertex(Runtime.GrainId id, Runtime.SiloAddress silo, bool i... method Equals (line 1072) | public readonly bool Equals(EdgeVertex other) { throw null; } method Equals (line 1074) | public override readonly bool Equals(object obj) { throw null; } method GetHashCode (line 1076) | public override readonly int GetHashCode() { throw null; } method ToString (line 1082) | public override readonly string ToString() { throw null; } type IImbalanceToleranceRule (line 1085) | public partial interface IImbalanceToleranceRule method IsSatisfiedBy (line 1087) | bool IsSatisfiedBy(uint imbalance); type IControllable (line 1093) | public partial interface IControllable method ExecuteCommand (line 1095) | System.Threading.Tasks.Task ExecuteCommand(int command, object... type IProviderRuntime (line 1098) | public partial interface IProviderRuntime method BindExtension (line 1104) | (TExtension Extension, TExtensionInterface ExtensionReference) BindExt... class ProviderInitializationException (line 1108) | [GenerateSerializer] method ProviderInitializationException (line 1111) | public ProviderInitializationException() { } method ProviderInitializationException (line 1113) | public ProviderInitializationException(string message, System.Exceptio... method ProviderInitializationException (line 1115) | public ProviderInitializationException(string message) { } class ProviderStateException (line 1118) | [GenerateSerializer] method ProviderStateException (line 1121) | public ProviderStateException() { } method ProviderStateException (line 1123) | public ProviderStateException(string message, System.Exception innerEx... method ProviderStateException (line 1125) | public ProviderStateException(string message) { } class ClientInstruments (line 1131) | public static partial class ClientInstruments class ClusterManifestUpdate (line 1135) | [GenerateSerializer] method ClusterManifestUpdate (line 1139) | public ClusterManifestUpdate(Metadata.MajorMinorVersion manifestVersio... class DetailedGrainStatistic (line 1151) | [GenerateSerializer] type GenericGrainInterfaceType (line 1165) | [Immutable] method Construct (line 1175) | public readonly GenericGrainInterfaceType Construct(Orleans.Serializat... method GetArguments (line 1177) | public readonly System.Type[] GetArguments(Orleans.Serialization.TypeS... method GetGenericGrainType (line 1179) | public readonly GenericGrainInterfaceType GetGenericGrainType() { thro... method ToString (line 1181) | public override readonly string ToString() { throw null; } method TryParse (line 1183) | public static bool TryParse(GrainInterfaceType grainType, out GenericG... type GenericGrainType (line 1186) | [Immutable] method Construct (line 1196) | public readonly GenericGrainType Construct(Orleans.Serialization.TypeS... method Equals (line 1198) | public readonly bool Equals(GenericGrainType other) { throw null; } method Equals (line 1200) | public override readonly bool Equals(object obj) { throw null; } method GetArguments (line 1202) | public readonly System.Type[] GetArguments(Orleans.Serialization.TypeS... method GetHashCode (line 1204) | public override readonly int GetHashCode() { throw null; } method GetUnconstructedGrainType (line 1206) | public readonly GenericGrainType GetUnconstructedGrainType() { throw n... method ToString (line 1208) | public override readonly string ToString() { throw null; } method TryParse (line 1210) | public static bool TryParse(GrainType grainType, out GenericGrainType ... type GrainCallFrequency (line 1213) | [GenerateSerializer] type IClusterManifestProvider (line 1236) | public partial interface IClusterManifestProvider type IHealthCheckable (line 1245) | public partial interface IHealthCheckable method CheckHealth (line 1247) | bool CheckHealth(System.DateTime lastCheckTime, out string reason); type ILocalSiloDetails (line 1250) | public partial interface ILocalSiloDetails type IManagementGrain (line 1263) | public partial interface IManagementGrain : IGrainWithIntegerKey, IGrain... method ForceActivationCollection (line 1265) | System.Threading.Tasks.Task ForceActivationCollection(SiloAddress[] ho... method ForceActivationCollection (line 1266) | System.Threading.Tasks.Task ForceActivationCollection(System.TimeSpan ... method ForceGarbageCollection (line 1267) | System.Threading.Tasks.Task ForceGarbageCollection(SiloAddress[] hosts... method ForceRuntimeStatisticsCollection (line 1268) | System.Threading.Tasks.Task ForceRuntimeStatisticsCollection(SiloAddre... method GetActivationAddress (line 1269) | System.Threading.Tasks.ValueTask GetActivationAddress(IAd... method GetActiveGrains (line 1270) | System.Threading.Tasks.ValueTask GetDetailedGrain... method GetDetailedHosts (line 1272) | System.Threading.Tasks.Task GetDetailedHosts(bool o... method GetGrainActivationCount (line 1273) | System.Threading.Tasks.Task GetGrainActivationCount(GrainReferenc... method GetGrainCallFrequencies (line 1274) | System.Threading.Tasks.Task GetRuntimeStatist... method GetSimpleGrainStatistics (line 1277) | System.Threading.Tasks.Task GetSimpleGrainStat... method GetSimpleGrainStatistics (line 1278) | System.Threading.Tasks.Task GetSimpleGrainStat... method GetTotalActivationCount (line 1279) | System.Threading.Tasks.Task GetTotalActivationCount(); method ResetGrainCallFrequencies (line 1280) | System.Threading.Tasks.ValueTask ResetGrainCallFrequencies(SiloAddress... method SendControlCommandToProvider (line 1281) | System.Threading.Tasks.Task SendControlCommandToProvider(... type IndirectProbeResponse (line 1285) | [GenerateSerializer] method ToString (line 1303) | public override readonly string ToString() { throw null; } class Instruments (line 1306) | public static partial class Instruments type IRingRange (line 1311) | public partial interface IRingRange method InRange (line 1313) | bool InRange(GrainId grainId); method InRange (line 1314) | bool InRange(uint value); type ISingleRange (line 1317) | public partial interface ISingleRange : IRingRange class LifecycleParticipantExtensions (line 1324) | public static partial class LifecycleParticipantExtensions method ParticipateIn (line 1326) | public static ILifecycleParticipant ParticipateIn Get... class RequestContextExtensions (line 1353) | public static partial class RequestContextExtensions method Export (line 1355) | public static System.Collections.Generic.Dictionary? E... method Import (line 1357) | public static void Import(System.Collections.Generic.Dictionary ... type IPlacementDirector (line 1514) | public partial interface IPlacementDirector method GetPlacementHint (line 1518) | SiloAddress GetPlacementHint(System.Collections.Generic.Dictionary OnAddActivation(PlacementStra... type PlacementTarget (line 1522) | public readonly partial struct PlacementTarget method PlacementTarget (line 1526) | public PlacementTarget(GrainId grainIdentity, System.Collections.Gener... class ActivationIdConverter (line 1540) | public partial class ActivationIdConverter : Newtonsoft.Json.JsonConverter method CanConvert (line 1542) | public override bool CanConvert(System.Type objectType) { throw null; } method ReadJson (line 1544) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method WriteJson (line 1546) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... class ConfigureOrleansJsonSerializerOptions (line 1549) | public partial class ConfigureOrleansJsonSerializerOptions : Microsoft.E... method ConfigureOrleansJsonSerializerOptions (line 1551) | public ConfigureOrleansJsonSerializerOptions(System.IServiceProvider s... method PostConfigure (line 1553) | public void PostConfigure(string name, OrleansJsonSerializerOptions op... class GrainIdConverter (line 1556) | public partial class GrainIdConverter : Newtonsoft.Json.JsonConverter method CanConvert (line 1558) | public override bool CanConvert(System.Type objectType) { throw null; } method ReadJson (line 1560) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method WriteJson (line 1562) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... class GrainReferenceJsonConverter (line 1565) | public partial class GrainReferenceJsonConverter : Newtonsoft.Json.JsonC... method GrainReferenceJsonConverter (line 1567) | public GrainReferenceJsonConverter(GrainReferences.GrainReferenceActiv... method CanConvert (line 1569) | public override bool CanConvert(System.Type objectType) { throw null; } method ReadJson (line 1571) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method WriteJson (line 1573) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... class IPAddressConverter (line 1576) | public partial class IPAddressConverter : Newtonsoft.Json.JsonConverter method CanConvert (line 1578) | public override bool CanConvert(System.Type objectType) { throw null; } method ReadJson (line 1580) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method WriteJson (line 1582) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... class IPEndPointConverter (line 1585) | public partial class IPEndPointConverter : Newtonsoft.Json.JsonConverter method CanConvert (line 1587) | public override bool CanConvert(System.Type objectType) { throw null; } method ReadJson (line 1589) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method WriteJson (line 1591) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... class MembershipVersionJsonConverter (line 1594) | public partial class MembershipVersionJsonConverter : Newtonsoft.Json.Js... method CanConvert (line 1596) | public override bool CanConvert(System.Type objectType) { throw null; } method ReadJson (line 1598) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method WriteJson (line 1600) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... class OrleansJsonSerializationBinder (line 1603) | public partial class OrleansJsonSerializationBinder : Newtonsoft.Json.Se... method OrleansJsonSerializationBinder (line 1605) | public OrleansJsonSerializationBinder(TypeSystem.TypeResolver typeReso... method BindToType (line 1607) | public override System.Type BindToType(string assemblyName, string typ... class OrleansJsonSerializer (line 1610) | public partial class OrleansJsonSerializer method OrleansJsonSerializer (line 1615) | public OrleansJsonSerializer(Microsoft.Extensions.Options.IOptions(System.BinaryData input) { throw null; } method Serialize (line 1683) | public System.BinaryData Serialize(T input) { throw null; } class GrainStorageSerializerExtensions (line 1686) | public static partial class GrainStorageSerializerExtensions method Deserialize (line 1688) | public static T Deserialize(this IGrainStorageSerializer serializer... type IGrainStorage (line 1691) | public partial interface IGrainStorage method ClearStateAsync (line 1693) | System.Threading.Tasks.Task ClearStateAsync(string stateName, Runti... method ReadStateAsync (line 1694) | System.Threading.Tasks.Task ReadStateAsync(string stateName, Runtim... method WriteStateAsync (line 1695) | System.Threading.Tasks.Task WriteStateAsync(string stateName, Runti... type IGrainStorageSerializer (line 1698) | public partial interface IGrainStorageSerializer method Deserialize (line 1700) | T Deserialize(System.BinaryData input); method Serialize (line 1701) | System.BinaryData Serialize(T input); type IMemoryStorageGrain (line 1704) | public partial interface IMemoryStorageGrain : IGrainWithIntegerKey, IGr... method DeleteStateAsync (line 1706) | System.Threading.Tasks.Task DeleteStateAsync(string grainStoreKey, ... method ReadStateAsync (line 1707) | System.Threading.Tasks.Task> ReadStateAsync(string g... method WriteStateAsync (line 1708) | System.Threading.Tasks.Task WriteStateAsync(string grainSto... class InconsistentStateException (line 1711) | [GenerateSerializer] method InconsistentStateException (line 1714) | public InconsistentStateException() { } method InconsistentStateException (line 1716) | [System.Obsolete] method InconsistentStateException (line 1719) | public InconsistentStateException(string message, System.Exception inn... method InconsistentStateException (line 1721) | public InconsistentStateException(string storedEtag, string currentEta... method InconsistentStateException (line 1723) | public InconsistentStateException(string errorMsg, string storedEtag, ... method InconsistentStateException (line 1725) | public InconsistentStateException(string errorMsg, string storedEtag, ... method InconsistentStateException (line 1727) | public InconsistentStateException(string message) { } method GetObjectData (line 1735) | [System.Obsolete] method ToString (line 1738) | public override string ToString() { throw null; } type IRestExceptionDecoder (line 1741) | public partial interface IRestExceptionDecoder method DecodeException (line 1743) | bool DecodeException(System.Exception exception, out System.Net.HttpSt... type IStorageProviderSerializerOptions (line 1746) | public partial interface IStorageProviderSerializerOptions class JsonGrainStorageSerializer (line 1751) | public partial class JsonGrainStorageSerializer : IGrainStorageSerializer method JsonGrainStorageSerializer (line 1753) | public JsonGrainStorageSerializer(Serialization.OrleansJsonSerializer ... method Deserialize (line 1755) | public T Deserialize(System.BinaryData input) { throw null; } method Serialize (line 1757) | public System.BinaryData Serialize(T value) { throw null; } class OrleansGrainStorageSerializer (line 1760) | public partial class OrleansGrainStorageSerializer : IGrainStorageSerial... method OrleansGrainStorageSerializer (line 1762) | public OrleansGrainStorageSerializer(Serialization.Serializer serializ... method Deserialize (line 1764) | public T Deserialize(System.BinaryData input) { throw null; } method Serialize (line 1766) | public System.BinaryData Serialize(T value) { throw null; } type ITimerManager (line 1772) | public partial interface ITimerManager method Delay (line 1774) | System.Threading.Tasks.Task Delay(System.TimeSpan timeSpan, Syst... class ObserverManager (line 1780) | public partial class ObserverManager : ObserverManager GetEnumerator... method Notify (line 1803) | public void Notify(System.Action notification, System.Func<... method Notify (line 1805) | public System.Threading.Tasks.Task Notify(System.Func : System.Coll... method ObserverManager (line 1782) | public ObserverManager(System.TimeSpan expiration, Microsoft.Extension... method ObserverManager (line 1787) | public ObserverManager(System.TimeSpan expiration, Microsoft.Extension... method Clear (line 1797) | public void Clear() { } method ClearExpired (line 1799) | public void ClearExpired() { } method GetEnumerator (line 1801) | public System.Collections.Generic.IEnumerator GetEnumerator... method Notify (line 1803) | public void Notify(System.Action notification, System.Func<... method Notify (line 1805) | public System.Threading.Tasks.Task Notify(System.Func(ref global::Orleans.Serializatio... method ReadValue (line 1826) | public global::Orleans.GrainState ReadValue(ref globa... method Serialize (line 1828) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1831) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_00BCE16F (line 1835) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1840) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1842) | public Invokable_IMembershipTable_GrainReference_00BCE16F ReadValue(ref global::Orleans.Serialization... method WriteField (line 1847) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_7A519C2E (line 1851) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1856) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1858) | public Invokable_IMembershipTable_GrainReference_7A519C2E ReadValue(ref global::Orleans.Serialization... method WriteField (line 1863) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_B1A52D2B (line 1867) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IMembershipTable_GrainReference_B1A52D2B (line 1872) | public Codec_Invokable_IMembershipTable_GrainReference_B1A52D2B(global... method Deserialize (line 1874) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1876) | public Invokable_IMembershipTable_GrainReference_B1A52D2B ReadValue(ref global::Orleans.Serialization... method WriteField (line 1881) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_BF899C85 (line 1885) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1890) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1892) | public Invokable_IMembershipTable_GrainReference_BF899C85 ReadValue(ref global::Orleans.Serialization... method WriteField (line 1897) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_D851FB33 (line 1901) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IMembershipTable_GrainReference_D851FB33 (line 1906) | public Codec_Invokable_IMembershipTable_GrainReference_D851FB33(global... method Deserialize (line 1908) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1910) | public Invokable_IMembershipTable_GrainReference_D851FB33 ReadValue(ref global::Orleans.Serialization... method WriteField (line 1915) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_E06D3DBC (line 1919) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IMembershipTable_GrainReference_E06D3DBC (line 1924) | public Codec_Invokable_IMembershipTable_GrainReference_E06D3DBC(global... method Deserialize (line 1926) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1928) | public Invokable_IMembershipTable_GrainReference_E06D3DBC ReadValue(ref global::Orleans.Serialization... method WriteField (line 1933) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_FB89E5E9 (line 1937) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1942) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1944) | public Invokable_IMembershipTable_GrainReference_FB89E5E9 ReadValue(ref global::Orleans.Serialization... method WriteField (line 1949) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMembershipTable_GrainReference_FEF3AC5A (line 1953) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IMembershipTable_GrainReference_FEF3AC5A (line 1958) | public Codec_Invokable_IMembershipTable_GrainReference_FEF3AC5A(global... method Deserialize (line 1960) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1962) | public Invokable_IMembershipTable_GrainReference_FEF3AC5A ReadValue(ref global::Orleans.Serialization... method WriteField (line 1967) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IVersionManager_GrainReference_4AAEAFCE (line 1971) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IVersionManager_GrainReference_4AAEAFCE (line 1976) | public Codec_Invokable_IVersionManager_GrainReference_4AAEAFCE(global:... method Deserialize (line 1978) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1980) | public Invokable_IVersionManager_GrainReference_4AAEAFCE ReadValue(ref global::Orleans.Serialization... method WriteField (line 1985) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IVersionManager_GrainReference_8F5C15A9 (line 1989) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IVersionManager_GrainReference_8F5C15A9 (line 1994) | public Codec_Invokable_IVersionManager_GrainReference_8F5C15A9(global:... method Deserialize (line 1996) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1998) | public Invokable_IVersionManager_GrainReference_8F5C15A9 ReadValue(ref global::Orleans.Serialization... method WriteField (line 2003) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IVersionManager_GrainReference_90AB9D5E (line 2007) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IVersionManager_GrainReference_90AB9D5E (line 2012) | public Codec_Invokable_IVersionManager_GrainReference_90AB9D5E(global:... method Deserialize (line 2014) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2016) | public Invokable_IVersionManager_GrainReference_90AB9D5E ReadValue(ref global::Orleans.Serialization... method WriteField (line 2021) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IVersionManager_GrainReference_C01C4EE8 (line 2025) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IVersionManager_GrainReference_C01C4EE8 (line 2030) | public Codec_Invokable_IVersionManager_GrainReference_C01C4EE8(global:... method Deserialize (line 2032) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2034) | public Invokable_IVersionManager_GrainReference_C01C4EE8 ReadValue(ref global::Orleans.Serialization... method WriteField (line 2039) | public void WriteField(ref global::Orleans.Serializatio... class Codec_MembershipEntry (line 2043) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_MembershipEntry (line 2048) | public Codec_MembershipEntry(global::Orleans.Serialization.Serializers... method Deserialize (line 2050) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2052) | public global::Orleans.MembershipEntry ReadValue(ref glo... method Serialize (line 2054) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2057) | public void WriteField(ref global::Orleans.Serializatio... class Codec_MembershipTableData (line 2061) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_MembershipTableData (line 2066) | public Codec_MembershipTableData(global::Orleans.Serialization.Activat... method Deserialize (line 2068) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2070) | public global::Orleans.MembershipTableData ReadValue(ref... method Serialize (line 2072) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2075) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TableVersion (line 2079) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TableVersion (line 2084) | public Codec_TableVersion(global::Orleans.Serialization.Activators.IAc... method Deserialize (line 2086) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2088) | public global::Orleans.TableVersion ReadValue(ref global... method Serialize (line 2090) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2093) | public void WriteField(ref global::Orleans.Serializatio... class Copier_GrainState (line 2097) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GrainState (line 2102) | public Copier_GrainState(global::Orleans.Serialization.Serializers.ICo... method DeepCopy (line 2104) | public global::Orleans.GrainState DeepCopy(global::Orleans.GrainSta... class Copier_Invokable_IMembershipTable_GrainReference_00BCE16F (line 2107) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2112) | public Invokable_IMembershipTable_GrainReference_00BCE16F DeepCopy(Inv... class Copier_Invokable_IMembershipTable_GrainReference_7A519C2E (line 2115) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2120) | public Invokable_IMembershipTable_GrainReference_7A519C2E DeepCopy(Inv... class Copier_Invokable_IMembershipTable_GrainReference_B1A52D2B (line 2123) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IMembershipTable_GrainReference_B1A52D2B (line 2128) | public Copier_Invokable_IMembershipTable_GrainReference_B1A52D2B(globa... method DeepCopy (line 2130) | public Invokable_IMembershipTable_GrainReference_B1A52D2B DeepCopy(Inv... class Copier_Invokable_IMembershipTable_GrainReference_BF899C85 (line 2133) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2138) | public Invokable_IMembershipTable_GrainReference_BF899C85 DeepCopy(Inv... class Copier_Invokable_IMembershipTable_GrainReference_D851FB33 (line 2141) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2146) | public Invokable_IMembershipTable_GrainReference_D851FB33 DeepCopy(Inv... class Copier_Invokable_IMembershipTable_GrainReference_E06D3DBC (line 2149) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IMembershipTable_GrainReference_E06D3DBC (line 2154) | public Copier_Invokable_IMembershipTable_GrainReference_E06D3DBC(globa... method DeepCopy (line 2156) | public Invokable_IMembershipTable_GrainReference_E06D3DBC DeepCopy(Inv... class Copier_Invokable_IMembershipTable_GrainReference_FB89E5E9 (line 2159) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2164) | public Invokable_IMembershipTable_GrainReference_FB89E5E9 DeepCopy(Inv... class Copier_Invokable_IMembershipTable_GrainReference_FEF3AC5A (line 2167) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IMembershipTable_GrainReference_FEF3AC5A (line 2172) | public Copier_Invokable_IMembershipTable_GrainReference_FEF3AC5A(globa... method DeepCopy (line 2174) | public Invokable_IMembershipTable_GrainReference_FEF3AC5A DeepCopy(Inv... class Copier_Invokable_IVersionManager_GrainReference_4AAEAFCE (line 2177) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IVersionManager_GrainReference_4AAEAFCE (line 2182) | public Copier_Invokable_IVersionManager_GrainReference_4AAEAFCE(global... method DeepCopy (line 2184) | public Invokable_IVersionManager_GrainReference_4AAEAFCE DeepCopy(Invo... class Copier_Invokable_IVersionManager_GrainReference_8F5C15A9 (line 2187) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IVersionManager_GrainReference_8F5C15A9 (line 2192) | public Copier_Invokable_IVersionManager_GrainReference_8F5C15A9(global... method DeepCopy (line 2194) | public Invokable_IVersionManager_GrainReference_8F5C15A9 DeepCopy(Invo... class Copier_Invokable_IVersionManager_GrainReference_90AB9D5E (line 2197) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IVersionManager_GrainReference_90AB9D5E (line 2202) | public Copier_Invokable_IVersionManager_GrainReference_90AB9D5E(global... method DeepCopy (line 2204) | public Invokable_IVersionManager_GrainReference_90AB9D5E DeepCopy(Invo... class Copier_Invokable_IVersionManager_GrainReference_C01C4EE8 (line 2207) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IVersionManager_GrainReference_C01C4EE8 (line 2212) | public Copier_Invokable_IVersionManager_GrainReference_C01C4EE8(global... method DeepCopy (line 2214) | public Invokable_IVersionManager_GrainReference_C01C4EE8 DeepCopy(Invo... class Copier_MembershipEntry (line 2217) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_MembershipEntry (line 2222) | public Copier_MembershipEntry(global::Orleans.Serialization.Serializer... method DeepCopy (line 2224) | public global::Orleans.MembershipEntry DeepCopy(global::Orleans.Member... class Copier_MembershipTableData (line 2227) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_MembershipTableData (line 2232) | public Copier_MembershipTableData(global::Orleans.Serialization.Activa... method DeepCopy (line 2234) | public global::Orleans.MembershipTableData DeepCopy(global::Orleans.Me... class Invokable_IMembershipTable_GrainReference_00BCE16F (line 2237) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2243) | public override void Dispose() { } method GetActivityName (line 2245) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 2247) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2249) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2251) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2253) | public override string GetMethodName() { throw null; } method GetTarget (line 2255) | public override object GetTarget() { throw null; } method InvokeInner (line 2257) | protected override System.Threading.Tasks.Task InvokeInner() { t... method SetArgument (line 2419) | public override void SetArgument(int index, object value) { } method SetTarget (line 2421) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IMembershipTable_GrainReference_FB89E5E9 (line 2424) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2431) | public override void Dispose() { } method GetActivityName (line 2433) | public override string GetActivityName() { throw null; } method GetArgument (line 2435) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2437) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2439) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2441) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2443) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2445) | public override string GetMethodName() { throw null; } method GetTarget (line 2447) | public override object GetTarget() { throw null; } method InvokeInner (line 2449) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 2451) | public override void SetArgument(int index, object value) { } method SetTarget (line 2453) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IMembershipTable_GrainReference_FEF3AC5A (line 2456) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2464) | public override void Dispose() { } method GetActivityName (line 2466) | public override string GetActivityName() { throw null; } method GetArgument (line 2468) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2470) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2472) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2474) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2476) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2478) | public override string GetMethodName() { throw null; } method GetTarget (line 2480) | public override object GetTarget() { throw null; } method InvokeInner (line 2482) | protected override System.Threading.Tasks.Task InvokeInner() { t... method SetArgument (line 2484) | public override void SetArgument(int index, object value) { } method SetTarget (line 2486) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IVersionManager_GrainReference_4AAEAFCE (line 2489) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2496) | public override void Dispose() { } method GetActivityName (line 2498) | public override string GetActivityName() { throw null; } method GetArgument (line 2500) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2502) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2504) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2506) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2508) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2510) | public override string GetMethodName() { throw null; } method GetTarget (line 2512) | public override object GetTarget() { throw null; } method InvokeInner (line 2514) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 2516) | public override void SetArgument(int index, object value) { } method SetTarget (line 2518) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IVersionManager_GrainReference_8F5C15A9 (line 2521) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2528) | public override void Dispose() { } method GetActivityName (line 2530) | public override string GetActivityName() { throw null; } method GetArgument (line 2532) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2534) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2536) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2538) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2540) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2542) | public override string GetMethodName() { throw null; } method GetTarget (line 2544) | public override object GetTarget() { throw null; } method InvokeInner (line 2546) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 2548) | public override void SetArgument(int index, object value) { } method SetTarget (line 2550) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IVersionManager_GrainReference_90AB9D5E (line 2553) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2561) | public override void Dispose() { } method GetActivityName (line 2563) | public override string GetActivityName() { throw null; } method GetArgument (line 2565) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2567) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2569) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2571) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2573) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2575) | public override string GetMethodName() { throw null; } method GetTarget (line 2577) | public override object GetTarget() { throw null; } method InvokeInner (line 2579) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 2581) | public override void SetArgument(int index, object value) { } method SetTarget (line 2583) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IVersionManager_GrainReference_C01C4EE8 (line 2586) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2594) | public override void Dispose() { } method GetActivityName (line 2596) | public override string GetActivityName() { throw null; } method GetArgument (line 2598) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2600) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2602) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2604) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2606) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2608) | public override string GetMethodName() { throw null; } method GetTarget (line 2610) | public override object GetTarget() { throw null; } method InvokeInner (line 2612) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 2614) | public override void SetArgument(int index, object value) { } method SetTarget (line 2616) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Codec_AcquiredLease (line 2622) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_AcquiredLease (line 2627) | public Codec_AcquiredLease(global::Orleans.Serialization.Activators.IA... method Deserialize (line 2629) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2631) | public global::Orleans.LeaseProviders.AcquiredLease ReadValue(ref global::Orleans.Serialization... method WriteField (line 2636) | public void WriteField(ref global::Orleans.Serializatio... class Codec_AcquireLeaseResult (line 2640) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_AcquireLeaseResult (line 2645) | public Codec_AcquireLeaseResult(global::Orleans.Serialization.Activato... method Deserialize (line 2647) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2649) | public global::Orleans.LeaseProviders.AcquireLeaseResult ReadValue(ref global::Orleans.Serialization... method WriteField (line 2654) | public void WriteField(ref global::Orleans.Serializatio... class Codec_LeaseRequest (line 2658) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_LeaseRequest (line 2663) | public Codec_LeaseRequest(global::Orleans.Serialization.Activators.IAc... method Deserialize (line 2665) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2667) | public global::Orleans.LeaseProviders.LeaseRequest ReadValue(ref global::Orleans.Serialization... method WriteField (line 2672) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ResponseCode (line 2676) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 2681) | public global::Orleans.LeaseProviders.ResponseCode ReadValue(ref global::Orleans.Serializatio... class Codec_SocketConnectionException (line 2690) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SocketConnectionException (line 2695) | public Codec_SocketConnectionException(global::Orleans.Serialization.S... method Deserialize (line 2697) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2699) | public global::Orleans.Networking.Shared.SocketConnectionException Rea... method Serialize (line 2701) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2704) | public void WriteField(ref global::Orleans.Serializatio... class Copier_SocketConnectionException (line 2708) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SocketConnectionException (line 2713) | public Copier_SocketConnectionException(global::Orleans.Serialization.... class Codec_Invokable_IActivationRebalancer_GrainReference_25E91D88 (line 2719) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IActivationRebalancer_GrainReference_25E91D88 (line 2724) | public Codec_Invokable_IActivationRebalancer_GrainReference_25E91D88(g... method Deserialize (line 2726) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2728) | public Invokable_IActivationRebalancer_GrainReference_25E91D88 ReadVal... method Serialize (line 2730) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2733) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IActivationRebalancer_GrainReference_2FF852F5 (line 2737) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 2742) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2744) | public Invokable_IActivationRebalancer_GrainReference_2FF852F5 ReadVal... method Serialize (line 2746) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2749) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IActivationRebalancer_GrainReference_D7EB6469 (line 2753) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 2758) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2760) | public Invokable_IActivationRebalancer_GrainReference_D7EB6469 ReadVal... method Serialize (line 2762) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2765) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IActivationRebalancer_GrainReference_D9CA3E16 (line 2769) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IActivationRebalancer_GrainReference_D9CA3E16 (line 2774) | public Codec_Invokable_IActivationRebalancer_GrainReference_D9CA3E16(g... method Deserialize (line 2776) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2778) | public Invokable_IActivationRebalancer_GrainReference_D9CA3E16 ReadVal... method Serialize (line 2780) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2783) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IActivationRebalancer_GrainReference_DCF3A7BB (line 2787) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IActivationRebalancer_GrainReference_DCF3A7BB (line 2792) | public Codec_Invokable_IActivationRebalancer_GrainReference_DCF3A7BB(g... method Deserialize (line 2794) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2796) | public Invokable_IActivationRebalancer_GrainReference_DCF3A7BB ReadVal... method Serialize (line 2798) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2801) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RebalancerStatus (line 2805) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 2810) | public global::Orleans.Placement.Rebalancing.RebalancerStatus ReadValu... method WriteField (line 2812) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RebalancingReport (line 2816) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_RebalancingReport (line 2821) | public Codec_RebalancingReport(global::Orleans.Serialization.Activator... method Deserialize (line 2823) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2825) | public global::Orleans.Placement.Rebalancing.RebalancingReport ReadVal... method Serialize (line 2827) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2830) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RebalancingStatistics (line 2834) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_RebalancingStatistics (line 2839) | public Codec_RebalancingStatistics(global::Orleans.Serialization.Activ... method Deserialize (line 2841) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2843) | public global::Orleans.Placement.Rebalancing.RebalancingStatistics Rea... method Serialize (line 2845) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2848) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Invokable_IActivationRebalancer_GrainReference_25E91D88 (line 2852) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IActivationRebalancer_GrainReference_25E91D88 (line 2857) | public Copier_Invokable_IActivationRebalancer_GrainReference_25E91D88(... method DeepCopy (line 2859) | public Invokable_IActivationRebalancer_GrainReference_25E91D88 DeepCop... class Copier_Invokable_IActivationRebalancer_GrainReference_2FF852F5 (line 2862) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2867) | public Invokable_IActivationRebalancer_GrainReference_2FF852F5 DeepCop... class Copier_Invokable_IActivationRebalancer_GrainReference_D7EB6469 (line 2870) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2875) | public Invokable_IActivationRebalancer_GrainReference_D7EB6469 DeepCop... class Copier_Invokable_IActivationRebalancer_GrainReference_D9CA3E16 (line 2878) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IActivationRebalancer_GrainReference_D9CA3E16 (line 2883) | public Copier_Invokable_IActivationRebalancer_GrainReference_D9CA3E16(... method DeepCopy (line 2885) | public Invokable_IActivationRebalancer_GrainReference_D9CA3E16 DeepCop... class Copier_Invokable_IActivationRebalancer_GrainReference_DCF3A7BB (line 2888) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2893) | public Invokable_IActivationRebalancer_GrainReference_DCF3A7BB DeepCop... class Invokable_IActivationRebalancer_GrainReference_25E91D88 (line 2896) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2903) | public override void Dispose() { } method GetActivityName (line 2905) | public override string GetActivityName() { throw null; } method GetArgument (line 2907) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2909) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2911) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2913) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2915) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2917) | public override string GetMethodName() { throw null; } method GetTarget (line 2919) | public override object GetTarget() { throw null; } method InvokeInner (line 2921) | protected override void InvokeInner() { } method SetArgument (line 2923) | public override void SetArgument(int index, object value) { } method SetTarget (line 2925) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IActivationRebalancer_GrainReference_2FF852F5 (line 2928) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2934) | public override void Dispose() { } method GetActivityName (line 2936) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 2938) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2940) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2942) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2944) | public override string GetMethodName() { throw null; } method GetTarget (line 2946) | public override object GetTarget() { throw null; } method InvokeInner (line 2948) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetTarget (line 2950) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IActivationRebalancer_GrainReference_D7EB6469 (line 2953) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2960) | public override void Dispose() { } method GetActivityName (line 2962) | public override string GetActivityName() { throw null; } method GetArgument (line 2964) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2966) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2968) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2970) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2972) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2974) | public override string GetMethodName() { throw null; } method GetTarget (line 2976) | public override object GetTarget() { throw null; } method InvokeInner (line 2978) | protected override System.Threading.Tasks.ValueTask(ref global::Orleans.Serializatio... method ReadValue (line 3061) | public global::Orleans.Placement.Repartitioning.CandidateConnectedVert... method Serialize (line 3063) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3066) | public void WriteField(ref global::Orleans.Serializatio... class Codec_EdgeVertex (line 3070) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_EdgeVertex (line 3075) | public Codec_EdgeVertex(global::Orleans.Serialization.Serializers.ICod... method Deserialize (line 3077) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3079) | public global::Orleans.Placement.Repartitioning.EdgeVertex ReadValue(ref global::Orleans.Serialization... method WriteField (line 3084) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ProviderInitializationException (line 3091) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ProviderInitializationException (line 3096) | public Codec_ProviderInitializationException(global::Orleans.Serializa... method Deserialize (line 3098) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3100) | public global::Orleans.Providers.ProviderInitializationException ReadV... method Serialize (line 3102) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3105) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ProviderStateException (line 3109) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ProviderStateException (line 3114) | public Codec_ProviderStateException(global::Orleans.Serialization.Seri... method Deserialize (line 3116) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3118) | public global::Orleans.Providers.ProviderStateException ReadValue(ref global::Orleans.Serialization... method WriteField (line 3123) | public void WriteField(ref global::Orleans.Serializatio... class Copier_ProviderInitializationException (line 3127) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ProviderInitializationException (line 3132) | public Copier_ProviderInitializationException(global::Orleans.Serializ... class Copier_ProviderStateException (line 3135) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ProviderStateException (line 3140) | public Copier_ProviderStateException(global::Orleans.Serialization.Ser... class Codec_ClusterManifestUpdate (line 3146) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ClusterManifestUpdate (line 3151) | public Codec_ClusterManifestUpdate(global::Orleans.Serialization.Activ... method Deserialize (line 3153) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3155) | public global::Orleans.Runtime.ClusterManifestUpdate ReadValue(ref global::Orleans.Serialization... method WriteField (line 3160) | public void WriteField(ref global::Orleans.Serializatio... class Codec_DetailedGrainStatistic (line 3164) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_DetailedGrainStatistic (line 3169) | public Codec_DetailedGrainStatistic(global::Orleans.Serialization.Seri... method Deserialize (line 3171) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3173) | public global::Orleans.Runtime.DetailedGrainStatistic ReadValue(ref global::Orleans.Serialization... method WriteField (line 3178) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainCallFrequency (line 3182) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainCallFrequency (line 3187) | public Codec_GrainCallFrequency(global::Orleans.Serialization.Serializ... method Deserialize (line 3189) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3191) | public global::Orleans.Runtime.GrainCallFrequency ReadValue(ref global::Orleans.Serialization... method WriteField (line 3196) | public void WriteField(ref global::Orleans.Serializatio... class Codec_IndirectProbeResponse (line 3200) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3205) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3207) | public global::Orleans.Runtime.IndirectProbeResponse ReadValue(ref global::Orleans.Serialization... method WriteField (line 3212) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_0A1C0D82 (line 3216) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_0A1C0D82 (line 3221) | public Codec_Invokable_IManagementGrain_GrainReference_0A1C0D82(global... method Deserialize (line 3223) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3225) | public Invokable_IManagementGrain_GrainReference_0A1C0D82 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3230) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_0F06E027 (line 3234) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_0F06E027 (line 3239) | public Codec_Invokable_IManagementGrain_GrainReference_0F06E027(global... method Deserialize (line 3241) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3243) | public Invokable_IManagementGrain_GrainReference_0F06E027 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3248) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_2D761B36 (line 3252) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_2D761B36 (line 3257) | public Codec_Invokable_IManagementGrain_GrainReference_2D761B36(global... method Deserialize (line 3259) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3261) | public Invokable_IManagementGrain_GrainReference_2D761B36 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3266) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_317D82B6 (line 3270) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_317D82B6 (line 3275) | public Codec_Invokable_IManagementGrain_GrainReference_317D82B6(global... method Deserialize (line 3277) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3279) | public Invokable_IManagementGrain_GrainReference_317D82B6 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3284) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_329F9A1B (line 3288) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_329F9A1B (line 3293) | public Codec_Invokable_IManagementGrain_GrainReference_329F9A1B(global... method Deserialize (line 3295) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3297) | public Invokable_IManagementGrain_GrainReference_329F9A1B ReadValue(ref global::Orleans.Serialization... method WriteField (line 3302) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_3CFF788C (line 3306) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_3CFF788C (line 3311) | public Codec_Invokable_IManagementGrain_GrainReference_3CFF788C(global... method Deserialize (line 3313) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3315) | public Invokable_IManagementGrain_GrainReference_3CFF788C ReadValue(ref global::Orleans.Serialization... method WriteField (line 3320) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_3DB7923B (line 3324) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_3DB7923B (line 3329) | public Codec_Invokable_IManagementGrain_GrainReference_3DB7923B(global... method Deserialize (line 3331) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3333) | public Invokable_IManagementGrain_GrainReference_3DB7923B ReadValue(ref global::Orleans.Serialization... method WriteField (line 3338) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_4C0864C2 (line 3342) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3347) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3349) | public Invokable_IManagementGrain_GrainReference_4C0864C2 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3354) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_54E6D1D1 (line 3358) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3363) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3365) | public Invokable_IManagementGrain_GrainReference_54E6D1D1 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3370) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_54FE0FEC (line 3374) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_54FE0FEC (line 3379) | public Codec_Invokable_IManagementGrain_GrainReference_54FE0FEC(global... method Deserialize (line 3381) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3383) | public Invokable_IManagementGrain_GrainReference_54FE0FEC ReadValue(ref global::Orleans.Serialization... method WriteField (line 3388) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_5922EB76 (line 3392) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_5922EB76 (line 3397) | public Codec_Invokable_IManagementGrain_GrainReference_5922EB76(global... method Deserialize (line 3399) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3401) | public Invokable_IManagementGrain_GrainReference_5922EB76 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3406) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_ACCE9D6A (line 3410) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3415) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3417) | public Invokable_IManagementGrain_GrainReference_ACCE9D6A ReadValue(ref global::Orleans.Serialization... method WriteField (line 3422) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_AEDE93F6 (line 3426) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_AEDE93F6 (line 3431) | public Codec_Invokable_IManagementGrain_GrainReference_AEDE93F6(global... method Deserialize (line 3433) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3435) | public Invokable_IManagementGrain_GrainReference_AEDE93F6 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3440) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_B761B345 (line 3444) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IManagementGrain_GrainReference_B761B345 (line 3449) | public Codec_Invokable_IManagementGrain_GrainReference_B761B345(global... method Deserialize (line 3451) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3453) | public Invokable_IManagementGrain_GrainReference_B761B345 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3458) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_CC6CCBC3 (line 3462) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3467) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3469) | public Invokable_IManagementGrain_GrainReference_CC6CCBC3 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3474) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_D7365B43 (line 3478) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3483) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3485) | public Invokable_IManagementGrain_GrainReference_D7365B43 ReadValue(ref global::Orleans.Serialization... method WriteField (line 3490) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IManagementGrain_GrainReference_F67965CC_1 (line 3494) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3499) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3501) | public Invokable_IManagementGrain_GrainReference_F67965CC_1 ReadVal... method Serialize (line 3503) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3506) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SiloRuntimeStatistics (line 3510) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SiloRuntimeStatistics (line 3515) | public Codec_SiloRuntimeStatistics(global::Orleans.Serialization.Activ... method Deserialize (line 3517) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3519) | public global::Orleans.Runtime.SiloRuntimeStatistics ReadValue(ref global::Orleans.Serialization... method WriteField (line 3524) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SiloStatus (line 3528) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 3533) | public global::Orleans.Runtime.SiloStatus ReadValue(ref ... method WriteField (line 3535) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SimpleGrainStatistic (line 3539) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SimpleGrainStatistic (line 3544) | public Codec_SimpleGrainStatistic(global::Orleans.Serialization.Serial... method Deserialize (line 3546) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3548) | public global::Orleans.Runtime.SimpleGrainStatistic ReadValue(ref global::Orleans.Serialization... method WriteField (line 3553) | public void WriteField(ref global::Orleans.Serializatio... class Copier_ClusterManifestUpdate (line 3557) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3562) | public void DeepCopy(global::Orleans.Runtime.ClusterManifestUpdate inp... method DeepCopy (line 3564) | public global::Orleans.Runtime.ClusterManifestUpdate DeepCopy(global::... class Copier_Invokable_IManagementGrain_GrainReference_0A1C0D82 (line 3567) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_0A1C0D82 (line 3572) | public Copier_Invokable_IManagementGrain_GrainReference_0A1C0D82(globa... method DeepCopy (line 3574) | public Invokable_IManagementGrain_GrainReference_0A1C0D82 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_0F06E027 (line 3577) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_0F06E027 (line 3582) | public Copier_Invokable_IManagementGrain_GrainReference_0F06E027(globa... method DeepCopy (line 3584) | public Invokable_IManagementGrain_GrainReference_0F06E027 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_2D761B36 (line 3587) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_2D761B36 (line 3592) | public Copier_Invokable_IManagementGrain_GrainReference_2D761B36(globa... method DeepCopy (line 3594) | public Invokable_IManagementGrain_GrainReference_2D761B36 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_317D82B6 (line 3597) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_317D82B6 (line 3602) | public Copier_Invokable_IManagementGrain_GrainReference_317D82B6(globa... method DeepCopy (line 3604) | public Invokable_IManagementGrain_GrainReference_317D82B6 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_329F9A1B (line 3607) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_329F9A1B (line 3612) | public Copier_Invokable_IManagementGrain_GrainReference_329F9A1B(globa... method DeepCopy (line 3614) | public Invokable_IManagementGrain_GrainReference_329F9A1B DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_3CFF788C (line 3617) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_3CFF788C (line 3622) | public Copier_Invokable_IManagementGrain_GrainReference_3CFF788C(globa... method DeepCopy (line 3624) | public Invokable_IManagementGrain_GrainReference_3CFF788C DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_3DB7923B (line 3627) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3632) | public Invokable_IManagementGrain_GrainReference_3DB7923B DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_4C0864C2 (line 3635) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3640) | public Invokable_IManagementGrain_GrainReference_4C0864C2 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_54E6D1D1 (line 3643) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3648) | public Invokable_IManagementGrain_GrainReference_54E6D1D1 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_54FE0FEC (line 3651) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_54FE0FEC (line 3656) | public Copier_Invokable_IManagementGrain_GrainReference_54FE0FEC(globa... method DeepCopy (line 3658) | public Invokable_IManagementGrain_GrainReference_54FE0FEC DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_5922EB76 (line 3661) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_5922EB76 (line 3666) | public Copier_Invokable_IManagementGrain_GrainReference_5922EB76(globa... method DeepCopy (line 3668) | public Invokable_IManagementGrain_GrainReference_5922EB76 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_ACCE9D6A (line 3671) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3676) | public Invokable_IManagementGrain_GrainReference_ACCE9D6A DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_AEDE93F6 (line 3679) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_AEDE93F6 (line 3684) | public Copier_Invokable_IManagementGrain_GrainReference_AEDE93F6(globa... method DeepCopy (line 3686) | public Invokable_IManagementGrain_GrainReference_AEDE93F6 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_B761B345 (line 3689) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IManagementGrain_GrainReference_B761B345 (line 3694) | public Copier_Invokable_IManagementGrain_GrainReference_B761B345(globa... method DeepCopy (line 3696) | public Invokable_IManagementGrain_GrainReference_B761B345 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_CC6CCBC3 (line 3699) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3704) | public Invokable_IManagementGrain_GrainReference_CC6CCBC3 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_D7365B43 (line 3707) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3712) | public Invokable_IManagementGrain_GrainReference_D7365B43 DeepCopy(Inv... class Copier_Invokable_IManagementGrain_GrainReference_F67965CC_1 (line 3715) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3720) | public Invokable_IManagementGrain_GrainReference_F67965CC_1 DeepCop... class Invokable_IManagementGrain_GrainReference_0A1C0D82 (line 3723) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 3731) | public override void Dispose() { } method GetActivityName (line 3733) | public override string GetActivityName() { throw null; } method GetArgument (line 3735) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 3737) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 3739) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3741) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3743) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3745) | public override string GetMethodName() { throw null; } method GetTarget (line 3747) | public override object GetTarget() { throw null; } method InvokeInner (line 3749) | protected override System.Threading.Tasks.Task InvokeInner() { th... method SetArgument (line 4129) | public override void SetArgument(int index, object value) { } method SetTarget (line 4131) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IManagementGrain_GrainReference_B761B345 (line 4134) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4141) | public override void Dispose() { } method GetActivityName (line 4143) | public override string GetActivityName() { throw null; } method GetArgument (line 4145) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4147) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4149) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4151) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4153) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4155) | public override string GetMethodName() { throw null; } method GetTarget (line 4157) | public override object GetTarget() { throw null; } method InvokeInner (line 4159) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 4161) | public override void SetArgument(int index, object value) { } method SetTarget (line 4163) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IManagementGrain_GrainReference_CC6CCBC3 (line 4166) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4173) | public override void Dispose() { } method GetActivityName (line 4175) | public override string GetActivityName() { throw null; } method GetArgument (line 4177) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4179) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4181) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4183) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4185) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4187) | public override string GetMethodName() { throw null; } method GetTarget (line 4189) | public override object GetTarget() { throw null; } method InvokeInner (line 4191) | protected override System.Threading.Tasks.Task InvokeInner() { th... method SetTarget (line 4220) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IManagementGrain_GrainReference_F67965CC_1 (line 4223) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4232) | public override void Dispose() { } method GetActivityName (line 4234) | public override string GetActivityName() { throw null; } method GetArgument (line 4236) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4238) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4240) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4242) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4244) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4246) | public override string GetMethodName() { throw null; } method GetTarget (line 4248) | public override object GetTarget() { throw null; } method InvokeInner (line 4250) | protected override System.Threading.Tasks.Task InvokeInner()... method SetArgument (line 4252) | public override void SetArgument(int index, object value) { } method SetTarget (line 4254) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Codec_InvalidMessageFrameException (line 4260) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_InvalidMessageFrameException (line 4265) | public Codec_InvalidMessageFrameException(global::Orleans.Serializatio... method Deserialize (line 4267) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4269) | public global::Orleans.Runtime.Messaging.InvalidMessageFrameException ... method Serialize (line 4271) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4274) | public void WriteField(ref global::Orleans.Serializatio... class Copier_InvalidMessageFrameException (line 4278) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_InvalidMessageFrameException (line 4283) | public Copier_InvalidMessageFrameException(global::Orleans.Serializati... class Codec_BadProviderConfigException (line 4289) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_BadProviderConfigException (line 4294) | public Codec_BadProviderConfigException(global::Orleans.Serialization.... method Deserialize (line 4296) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4298) | public global::Orleans.Storage.BadProviderConfigException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4303) | public void WriteField(ref global::Orleans.Serializatio... class Codec_InconsistentStateException (line 4307) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_InconsistentStateException (line 4312) | public Codec_InconsistentStateException(global::Orleans.Serialization.... method Deserialize (line 4314) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4316) | public global::Orleans.Storage.InconsistentStateException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4321) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMemoryStorageGrain_GrainReference_45659318_1 (line 4325) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4330) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4332) | public Invokable_IMemoryStorageGrain_GrainReference_45659318_1 Read... method Serialize (line 4334) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4337) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1 (line 4341) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1 (line 4346) | public Codec_Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1(g... method Deserialize (line 4348) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4350) | public Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1 Read... method Serialize (line 4352) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4355) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMemoryStorageGrain_GrainReference_B7CADD03_1 (line 4359) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4364) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4366) | public Invokable_IMemoryStorageGrain_GrainReference_B7CADD03_1 Read... method Serialize (line 4368) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4371) | public void WriteField(ref global::Orleans.Serializatio... class Copier_BadProviderConfigException (line 4375) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_BadProviderConfigException (line 4380) | public Copier_BadProviderConfigException(global::Orleans.Serialization... class Copier_InconsistentStateException (line 4383) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_InconsistentStateException (line 4388) | public Copier_InconsistentStateException(global::Orleans.Serialization... method DeepCopy (line 4390) | public override void DeepCopy(global::Orleans.Storage.InconsistentStat... class Copier_Invokable_IMemoryStorageGrain_GrainReference_45659318_1 (line 4393) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 4398) | public Invokable_IMemoryStorageGrain_GrainReference_45659318_1 Deep... class Copier_Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1 (line 4401) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1 (line 4406) | public Copier_Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1(... method DeepCopy (line 4408) | public Invokable_IMemoryStorageGrain_GrainReference_7CC6CA25_1 Deep... class Copier_Invokable_IMemoryStorageGrain_GrainReference_B7CADD03_1 (line 4411) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 4416) | public Invokable_IMemoryStorageGrain_GrainReference_B7CADD03_1 Deep... class Invokable_IMemoryStorageGrain_GrainReference_45659318_1 (line 4419) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4426) | public override void Dispose() { } method GetActivityName (line 4428) | public override string GetActivityName() { throw null; } method GetArgument (line 4430) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4432) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4434) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4436) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4438) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4440) | public override string GetMethodName() { throw null; } method GetTarget (line 4442) | public override object GetTarget() { throw null; } method InvokeInner (line 4444) | protected override System.Threading.Tasks.Task InvokeInner() {... method SetArgument (line 4479) | public override void SetArgument(int index, object value) { } method SetTarget (line 4481) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IMemoryStorageGrain_GrainReference_B7CADD03_1 (line 4484) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 4492) | public override void Dispose() { } method GetActivityName (line 4494) | public override string GetActivityName() { throw null; } method GetArgument (line 4496) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 4498) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 4500) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 4502) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 4504) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 4506) | public override string GetMethodName() { throw null; } method GetTarget (line 4508) | public override object GetTarget() { throw null; } method InvokeInner (line 4510) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 4512) | public override void SetArgument(int index, object value) { } method SetTarget (line 4514) | public override void SetTarget(global::Orleans.Serialization.Invocatio... FILE: src/api/Orleans.EventSourcing/Orleans.EventSourcing.cs class CustomStorageLogConsistencyOptions (line 11) | public partial class CustomStorageLogConsistencyOptions class ConnectionIssue (line 19) | [GenerateSerializer] method ComputeRetryDelay (line 34) | public abstract System.TimeSpan ComputeRetryDelay(System.TimeSpan? pre... type IConnectionIssueListener (line 37) | public partial interface IConnectionIssueListener method OnConnectionIssue (line 39) | void OnConnectionIssue(ConnectionIssue connectionIssue); method OnConnectionIssueResolved (line 40) | void OnConnectionIssueResolved(ConnectionIssue connectionIssue); type ILogConsistencyDiagnostics (line 43) | public partial interface ILogConsistencyDiagnostics method DisableStatsCollection (line 45) | void DisableStatsCollection(); method EnableStatsCollection (line 46) | void EnableStatsCollection(); method GetStats (line 47) | LogConsistencyStatistics GetStats(); type ILogConsistencyProtocolMessage (line 50) | public partial interface ILogConsistencyProtocolMessage type ILogConsistencyProtocolParticipant (line 54) | public partial interface ILogConsistencyProtocolParticipant : IGrain, Ru... method DeactivateProtocolParticipant (line 56) | System.Threading.Tasks.Task DeactivateProtocolParticipant(); method PostActivateProtocolParticipant (line 57) | System.Threading.Tasks.Task PostActivateProtocolParticipant(); method PreActivateProtocolParticipant (line 58) | System.Threading.Tasks.Task PreActivateProtocolParticipant(); type ILogConsistencyProtocolServices (line 61) | public partial interface ILogConsistencyProtocolServices method CaughtException (line 67) | void CaughtException(string where, System.Exception e); method CaughtUserCodeException (line 68) | void CaughtUserCodeException(string callback, string where, System.Exc... method DeepCopy (line 69) | T DeepCopy(T value); method Log (line 70) | void Log(Microsoft.Extensions.Logging.LogLevel level, string format, p... method ProtocolError (line 71) | void ProtocolError(string msg, bool throwexception); type ILogViewAdaptorFactory (line 74) | public partial interface ILogViewAdaptorFactory method MakeLogViewAdaptor (line 78) | ILogViewAdaptor MakeLogViewAdaptor : ICon... method OnViewChanged (line 85) | void OnViewChanged(bool tentative, bool confirmed); method UpdateView (line 86) | void UpdateView(TLogView view, TLogEntry entry); type ILogViewAdaptor (line 89) | public partial interface ILogViewAdaptor : ILogView... method PostOnActivate (line 91) | System.Threading.Tasks.Task PostOnActivate(); method PostOnDeactivate (line 92) | System.Threading.Tasks.Task PostOnDeactivate(); method PreOnActivate (line 93) | System.Threading.Tasks.Task PreOnActivate(); type ILogViewRead (line 96) | public partial interface ILogViewRead method RetrieveLogSegment (line 106) | System.Threading.Tasks.Task method ClearLogAsync (line 111) | System.Threading.Tasks.Task ClearLogAsync(System.Threading.Cancellatio... method ConfirmSubmittedEntries (line 112) | System.Threading.Tasks.Task ConfirmSubmittedEntries(); method Submit (line 113) | void Submit(TLogEntry entry); method SubmitRange (line 114) | void SubmitRange(System.Collections.Generic.IEnumerable ent... method Synchronize (line 115) | System.Threading.Tasks.Task Synchronize(); method TryAppend (line 116) | System.Threading.Tasks.Task TryAppend(TLogEntry entry); method TryAppendRange (line 117) | System.Threading.Tasks.Task TryAppendRange(System.Collections.Ge... class JournaledGrain (line 120) | public abstract partial class JournaledGrain : JournaledGra... method ConfirmEvents (line 137) | protected System.Threading.Tasks.Task ConfirmEvents() { throw null; } method DisableStatsCollection (line 139) | protected void DisableStatsCollection() { } method EnableStatsCollection (line 141) | protected void EnableStatsCollection() { } method GetStats (line 143) | protected LogConsistencyStatistics GetStats() { throw null; } method InstallAdaptor (line 145) | protected override void InstallAdaptor(ILogViewAdaptorFactory factory,... method OnActivateAsync (line 147) | public override System.Threading.Tasks.Task OnActivateAsync(System.Thr... method OnConnectionIssue (line 149) | protected virtual void OnConnectionIssue(ConnectionIssue issue) { } method OnConnectionIssueResolved (line 151) | protected virtual void OnConnectionIssueResolved(ConnectionIssue issue... method OnStateChanged (line 153) | protected virtual void OnStateChanged() { } method OnTentativeStateChanged (line 155) | protected virtual void OnTentativeStateChanged() { } method OnConnectionIssue (line 157) | void IConnectionIssueListener.OnConnectionIssue(ConnectionIssue connec... method OnConnectionIssueResolved (line 159) | void IConnectionIssueListener.OnConnectionIssueResolved(ConnectionIssu... method DeactivateProtocolParticipant (line 161) | System.Threading.Tasks.Task ILogConsistencyProtocolParticipant.Deactiv... method PostActivateProtocolParticipant (line 163) | System.Threading.Tasks.Task ILogConsistencyProtocolParticipant.PostAct... method PreActivateProtocolParticipant (line 165) | System.Threading.Tasks.Task ILogConsistencyProtocolParticipant.PreActi... method OnViewChanged (line 167) | void ILogViewAdaptorHost.OnViewChanged(bool t... method UpdateView (line 169) | void ILogViewAdaptorHost.UpdateView(TGrainSta... method RaiseConditionalEvent (line 171) | protected virtual System.Threading.Tasks.Task RaiseConditionalEv... method RaiseConditionalEvents (line 174) | protected virtual System.Threading.Tasks.Task RaiseConditionalEv... method RaiseEvent (line 177) | protected virtual void RaiseEvent(TEvent @event) method RaiseEvents (line 180) | protected virtual void RaiseEvents(System.Collections.Generic.... method RefreshNow (line 183) | protected System.Threading.Tasks.Task RefreshNow() { throw null; } method RetrieveConfirmedEvents (line 185) | protected System.Threading.Tasks.Task : ... method ConfirmEvents (line 137) | protected System.Threading.Tasks.Task ConfirmEvents() { throw null; } method DisableStatsCollection (line 139) | protected void DisableStatsCollection() { } method EnableStatsCollection (line 141) | protected void EnableStatsCollection() { } method GetStats (line 143) | protected LogConsistencyStatistics GetStats() { throw null; } method InstallAdaptor (line 145) | protected override void InstallAdaptor(ILogViewAdaptorFactory factory,... method OnActivateAsync (line 147) | public override System.Threading.Tasks.Task OnActivateAsync(System.Thr... method OnConnectionIssue (line 149) | protected virtual void OnConnectionIssue(ConnectionIssue issue) { } method OnConnectionIssueResolved (line 151) | protected virtual void OnConnectionIssueResolved(ConnectionIssue issue... method OnStateChanged (line 153) | protected virtual void OnStateChanged() { } method OnTentativeStateChanged (line 155) | protected virtual void OnTentativeStateChanged() { } method OnConnectionIssue (line 157) | void IConnectionIssueListener.OnConnectionIssue(ConnectionIssue connec... method OnConnectionIssueResolved (line 159) | void IConnectionIssueListener.OnConnectionIssueResolved(ConnectionIssu... method DeactivateProtocolParticipant (line 161) | System.Threading.Tasks.Task ILogConsistencyProtocolParticipant.Deactiv... method PostActivateProtocolParticipant (line 163) | System.Threading.Tasks.Task ILogConsistencyProtocolParticipant.PostAct... method PreActivateProtocolParticipant (line 165) | System.Threading.Tasks.Task ILogConsistencyProtocolParticipant.PreActi... method OnViewChanged (line 167) | void ILogViewAdaptorHost.OnViewChanged(bool t... method UpdateView (line 169) | void ILogViewAdaptorHost.UpdateView(TGrainSta... method RaiseConditionalEvent (line 171) | protected virtual System.Threading.Tasks.Task RaiseConditionalEv... method RaiseConditionalEvents (line 174) | protected virtual System.Threading.Tasks.Task RaiseConditionalEv... method RaiseEvent (line 177) | protected virtual void RaiseEvent(TEvent @event) method RaiseEvents (line 180) | protected virtual void RaiseEvents(System.Collections.Generic.... method RefreshNow (line 183) | protected System.Threading.Tasks.Task RefreshNow() { throw null; } method RetrieveConfirmedEvents (line 185) | protected System.Threading.Tasks.Task : Grain, ILifecy... method InstallAdaptor (line 200) | protected abstract void InstallAdaptor(ILogViewAdaptorFactory factory,... method Participate (line 201) | public virtual void Participate(Runtime.IGrainLifecycle lifecycle) { } class ProtocolTransportException (line 204) | [GenerateSerializer] method ProtocolTransportException (line 207) | public ProtocolTransportException() { } method ProtocolTransportException (line 209) | [System.Obsolete] method ProtocolTransportException (line 212) | public ProtocolTransportException(string msg, System.Exception exc) { } method ProtocolTransportException (line 214) | public ProtocolTransportException(string msg) { } method ToString (line 216) | public override string ToString() { throw null; } class BatchedNotificationMessage (line 222) | [GenerateSerializer] type INotificationMessage (line 231) | public partial interface INotificationMessage : ILogConsistencyProtocolM... class PrimaryBasedLogViewAdaptor (line 236) | public abstract partial class PrimaryBasedLogViewAdaptor OnP... method PostOnActivate (line 289) | public virtual System.Threading.Tasks.Task PostOnActivate() { throw nu... method PostOnDeactivate (line 291) | public virtual System.Threading.Tasks.Task PostOnDeactivate() { throw ... method PreOnActivate (line 293) | public virtual System.Threading.Tasks.Task PreOnActivate() { throw nul... method ProcessNotifications (line 295) | protected virtual void ProcessNotifications() { } method ReadAsync (line 297) | protected abstract System.Threading.Tasks.Task ReadAsync(); method RemoveStaleConditionalUpdates (line 298) | protected void RemoveStaleConditionalUpdates() { } method RetrieveLogSegment (line 300) | public virtual System.Threading.Tasks.Task TryAppend(TLogEntry logEntry)... method TryAppendRange (line 310) | public System.Threading.Tasks.Task TryAppendRange(System.Collect... method WriteAsync (line 312) | protected abstract System.Threading.Tasks.Task WriteAsync(); class PrimaryOperationFailed (line 315) | [GenerateSerializer] method ComputeRetryDelay (line 321) | public override System.TimeSpan ComputeRetryDelay(System.TimeSpan? pre... type RecordedConnectionIssue (line 324) | public partial struct RecordedConnectionIssue method DelayBeforeRetry (line 330) | public readonly System.Threading.Tasks.Task DelayBeforeRetry() { throw... method Record (line 332) | public void Record(ConnectionIssue newIssue, IConnectionIssueListener ... method Resolve (line 334) | public void Resolve(IConnectionIssueListener listener, ILogConsistency... method ToString (line 336) | public override readonly string ToString() { throw null; } class StringEncodedWriteVector (line 339) | public static partial class StringEncodedWriteVector method FlipBit (line 341) | public static bool FlipBit(ref string writeVector, string Replica) { t... method GetBit (line 343) | public static bool GetBit(string writeVector, string Replica) { throw ... class SubmissionEntry (line 346) | public partial class SubmissionEntry class VersionNotificationMessage (line 354) | [GenerateSerializer] type ICustomStorageInterface (line 364) | public partial interface ICustomStorageInterface method ApplyUpdatesToStorage (line 366) | System.Threading.Tasks.Task ApplyUpdatesToStorage(System.Collect... method ReadStateFromStorage (line 367) | System.Threading.Tasks.Task MakeLogViewAdaptor MakeLogViewAdaptor MakeLogViewAdaptor MakeLogViewAdaptor MakeLogViewAdaptor MakeLogViewAdaptor MakeLogViewAdaptor MakeLogViewAdaptor MakeLogViewAdaptor(ref global::Orleans.Ser... method Serialize (line 523) | public override void Serialize(ref global::Orleans.Seri... class Codec_Invokable_ILogConsistencyProtocolParticipant_GrainReference_0DB087C8 (line 526) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 531) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 533) | public Invokable_ILogConsistencyProtocolParticipant_GrainReference_0DB... method Serialize (line 535) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 538) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ILogConsistencyProtocolParticipant_GrainReference_22FD7D72 (line 542) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 547) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 549) | public Invokable_ILogConsistencyProtocolParticipant_GrainReference_22F... method Serialize (line 551) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 554) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ILogConsistencyProtocolParticipant_GrainReference_A36FC884 (line 558) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 563) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 565) | public Invokable_ILogConsistencyProtocolParticipant_GrainReference_A36... method Serialize (line 567) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 570) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ProtocolTransportException (line 574) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ProtocolTransportException (line 579) | public Codec_ProtocolTransportException(global::Orleans.Serialization.... method Deserialize (line 581) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 583) | public global::Orleans.EventSourcing.ProtocolTransportException ReadVa... method Serialize (line 585) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 588) | public void WriteField(ref global::Orleans.Serializatio... class Copier_ConnectionIssue (line 592) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 597) | public void DeepCopy(global::Orleans.EventSourcing.ConnectionIssue inp... method DeepCopy (line 599) | public global::Orleans.EventSourcing.ConnectionIssue DeepCopy(global::... class Copier_Invokable_ILogConsistencyProtocolParticipant_GrainReference_0DB087C8 (line 602) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 607) | public Invokable_ILogConsistencyProtocolParticipant_GrainReference_0DB... class Copier_Invokable_ILogConsistencyProtocolParticipant_GrainReference_22FD7D72 (line 610) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 615) | public Invokable_ILogConsistencyProtocolParticipant_GrainReference_22F... class Copier_Invokable_ILogConsistencyProtocolParticipant_GrainReference_A36FC884 (line 618) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 623) | public Invokable_ILogConsistencyProtocolParticipant_GrainReference_A36... class Copier_ProtocolTransportException (line 626) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ProtocolTransportException (line 631) | public Copier_ProtocolTransportException(global::Orleans.Serialization... class Invokable_ILogConsistencyProtocolParticipant_GrainReference_0DB087C8 (line 634) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 640) | public override void Dispose() { } method GetActivityName (line 642) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 644) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 646) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 648) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 650) | public override string GetMethodName() { throw null; } method GetTarget (line 652) | public override object GetTarget() { throw null; } method InvokeInner (line 654) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetTarget (line 656) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_ILogConsistencyProtocolParticipant_GrainReference_22FD7D72 (line 659) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 665) | public override void Dispose() { } method GetActivityName (line 667) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 669) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 671) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 673) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 675) | public override string GetMethodName() { throw null; } method GetTarget (line 677) | public override object GetTarget() { throw null; } method InvokeInner (line 679) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetTarget (line 681) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_ILogConsistencyProtocolParticipant_GrainReference_A36FC884 (line 684) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 690) | public override void Dispose() { } method GetActivityName (line 692) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 694) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 696) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 698) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 700) | public override string GetMethodName() { throw null; } method GetTarget (line 702) | public override object GetTarget() { throw null; } method InvokeInner (line 704) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetTarget (line 706) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Codec_BatchedNotificationMessage (line 712) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_BatchedNotificationMessage (line 717) | public Codec_BatchedNotificationMessage(global::Orleans.Serialization.... method Deserialize (line 719) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 721) | public global::Orleans.EventSourcing.Common.BatchedNotificationMessage... method Serialize (line 723) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 726) | public void WriteField(ref global::Orleans.Serializatio... class Codec_PrimaryOperationFailed (line 730) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_PrimaryOperationFailed (line 735) | public Codec_PrimaryOperationFailed(global::Orleans.Serialization.Seri... method Deserialize (line 737) | public override void Deserialize(ref global::Orleans.Ser... method Serialize (line 739) | public override void Serialize(ref global::Orleans.Seri... class Codec_VersionNotificationMessage (line 742) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 747) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 749) | public global::Orleans.EventSourcing.Common.VersionNotificationMessage... method Serialize (line 751) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 754) | public void WriteField(ref global::Orleans.Serializatio... class Copier_BatchedNotificationMessage (line 758) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_BatchedNotificationMessage (line 763) | public Copier_BatchedNotificationMessage(global::Orleans.Serialization... method DeepCopy (line 765) | public global::Orleans.EventSourcing.Common.BatchedNotificationMessage... class Copier_PrimaryOperationFailed (line 768) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_PrimaryOperationFailed (line 773) | public Copier_PrimaryOperationFailed(global::Orleans.Serialization.Ser... method DeepCopy (line 775) | public void DeepCopy(global::Orleans.EventSourcing.Common.PrimaryOpera... method DeepCopy (line 777) | public global::Orleans.EventSourcing.Common.PrimaryOperationFailed Dee... class Copier_VersionNotificationMessage (line 780) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 785) | public global::Orleans.EventSourcing.Common.VersionNotificationMessage... class Codec_LogStateWithMetaDataAndETag (line 791) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_LogStateWithMetaDataAndETag (line 796) | public Codec_LogStateWithMetaDataAndETag(global::Orleans.Serialization... method Deserialize (line 798) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 800) | public global::Orleans.EventSourcing.LogStorage.LogStateWithMetaDataAn... method Serialize (line 802) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 805) | public void WriteField(ref global::Orleans.Serializatio... class Codec_LogStateWithMetaData (line 809) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_LogStateWithMetaData (line 814) | public Codec_LogStateWithMetaData(global::Orleans.Serialization.Serial... method Deserialize (line 816) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 818) | public global::Orleans.EventSourcing.LogStorage.LogStateWithMetaData(ref global::Orleans.Serialization... method WriteField (line 823) | public void WriteField(ref global::Orleans.Serializatio... class Copier_LogStateWithMetaDataAndETag (line 827) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_LogStateWithMetaDataAndETag (line 832) | public Copier_LogStateWithMetaDataAndETag(global::Orleans.Serializatio... method DeepCopy (line 834) | public global::Orleans.EventSourcing.LogStorage.LogStateWithMetaDataAn... class Copier_LogStateWithMetaData (line 837) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_LogStateWithMetaData (line 842) | public Copier_LogStateWithMetaData(global::Orleans.Serialization.Seria... method DeepCopy (line 844) | public global::Orleans.EventSourcing.LogStorage.LogStateWithMetaData(ref global::Orleans.Serializatio... method ReadValue (line 859) | public global::Orleans.EventSourcing.StateStorage.GrainStateWithMetaDa... method Serialize (line 861) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 864) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainStateWithMetaData (line 868) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GrainStateWithMetaData (line 873) | public Codec_GrainStateWithMetaData(global::Orleans.Serialization.Seri... method Deserialize (line 875) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 877) | public global::Orleans.EventSourcing.StateStorage.GrainStateWithMetaDa... method Serialize (line 879) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 882) | public void WriteField(ref global::Orleans.Serializatio... class Copier_GrainStateWithMetaDataAndETag (line 886) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GrainStateWithMetaDataAndETag (line 891) | public Copier_GrainStateWithMetaDataAndETag(global::Orleans.Serializat... method DeepCopy (line 893) | public global::Orleans.EventSourcing.StateStorage.GrainStateWithMetaDa... class Copier_GrainStateWithMetaData (line 896) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GrainStateWithMetaData (line 901) | public Copier_GrainStateWithMetaData(global::Orleans.Serialization.Ser... method DeepCopy (line 903) | public global::Orleans.EventSourcing.StateStorage.GrainStateWithMetaDa... FILE: src/api/Orleans.Hosting.Kubernetes/Orleans.Hosting.Kubernetes.cs class KubernetesHostingExtensions (line 11) | public static partial class KubernetesHostingExtensions method UseKubernetesHosting (line 13) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseKubernetesHosting (line 15) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method UseKubernetesHosting (line 17) | public static ISiloBuilder UseKubernetesHosting(this ISiloBuilder silo... method UseKubernetesHosting (line 19) | public static ISiloBuilder UseKubernetesHosting(this ISiloBuilder silo... class KubernetesClusterAgent (line 25) | public sealed partial class KubernetesClusterAgent : ILifecycleParticipa... method KubernetesClusterAgent (line 27) | public KubernetesClusterAgent(Runtime.IClusterMembershipService cluste... method OnStop (line 29) | public System.Threading.Tasks.Task OnStop(System.Threading.Cancellatio... method Participate (line 31) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } class KubernetesHostingOptions (line 34) | public sealed partial class KubernetesHostingOptions FILE: src/api/Orleans.Journaling/Orleans.Journaling.cs class DurableGrain (line 11) | public abstract partial class DurableGrain : Grain, IGrainBase method GetOrCreateStateMachine (line 15) | protected TStateMachine GetOrCreateStateMachine(string ... method GetOrCreateStateMachine (line 18) | protected TStateMachine GetOrCreateStateMachine... method WriteStateAsync (line 21) | protected System.Threading.Tasks.ValueTask WriteStateAsync(System.Thre... type DurableTaskCompletionSourceState (line 24) | [GenerateSerializer] type DurableTaskCompletionSourceStatus (line 41) | [GenerateSerializer] class HostingExtensions (line 50) | public static partial class HostingExtensions method AddStateMachineStorage (line 52) | public static Hosting.ISiloBuilder AddStateMachineStorage(this Hosting... type IDurableDictionary (line 55) | public partial interface IDurableDictionary : System.Collections.G... type IDurableList (line 59) | public partial interface IDurableList : System.Collections.Generic.IL... method AddRange (line 61) | void AddRange(System.Collections.Generic.IEnumerable collection); method AsReadOnly (line 62) | System.Collections.ObjectModel.ReadOnlyCollection AsReadOnly(); type IDurableNothing (line 65) | public partial interface IDurableNothing type IDurableQueue (line 69) | public partial interface IDurableQueue : System.Collections.Generic.I... method Clear (line 71) | void Clear(); method Contains (line 72) | bool Contains(T item); method CopyTo (line 73) | void CopyTo(T[] array, int arrayIndex); method Dequeue (line 74) | T Dequeue(); method Enqueue (line 75) | void Enqueue(T item); method Peek (line 76) | T Peek(); method TryDequeue (line 77) | bool TryDequeue(out T item); method TryPeek (line 78) | bool TryPeek(out T item); type IDurableSet (line 81) | public partial interface IDurableSet : System.Collections.Generic.ISe... method Add (line 85) | bool Add(T item); method Contains (line 86) | bool Contains(T item); method IsProperSubsetOf (line 87) | bool IsProperSubsetOf(System.Collections.Generic.IEnumerable other); method IsProperSupersetOf (line 88) | bool IsProperSupersetOf(System.Collections.Generic.IEnumerable other); method IsSubsetOf (line 89) | bool IsSubsetOf(System.Collections.Generic.IEnumerable other); method IsSupersetOf (line 90) | bool IsSupersetOf(System.Collections.Generic.IEnumerable other); method Overlaps (line 91) | bool Overlaps(System.Collections.Generic.IEnumerable other); method SetEquals (line 92) | bool SetEquals(System.Collections.Generic.IEnumerable other); type IDurableStateMachine (line 95) | public partial interface IDurableStateMachine method AppendEntries (line 97) | void AppendEntries(StateMachineStorageWriter writer); method AppendSnapshot (line 98) | void AppendSnapshot(StateMachineStorageWriter writer); method Apply (line 99) | void Apply(System.Buffers.ReadOnlySequence entry); method DeepCopy (line 100) | IDurableStateMachine DeepCopy(); method OnRecoveryCompleted (line 101) | void OnRecoveryCompleted(); method OnWriteCompleted (line 102) | void OnWriteCompleted(); method Reset (line 103) | void Reset(IStateMachineLogWriter storage); type IDurableTaskCompletionSource (line 106) | public partial interface IDurableTaskCompletionSource method TrySetCanceled (line 112) | bool TrySetCanceled(); method TrySetException (line 113) | bool TrySetException(System.Exception exception); method TrySetResult (line 114) | bool TrySetResult(T value); type IDurableValue (line 117) | public partial interface IDurableValue type IStateMachineLogWriter (line 122) | public partial interface IStateMachineLogWriter method AppendEntries (line 124) | void AppendEntries(System.Action(System.Action ReadAsync(Syste... method ReplaceAsync (line 144) | System.Threading.Tasks.ValueTask ReplaceAsync(LogExtentBuilder value, ... type IStateMachineStorageProvider (line 147) | public partial interface IStateMachineStorageProvider method Create (line 149) | IStateMachineStorage Create(Runtime.IGrainContext grainContext); class LogExtent (line 152) | public sealed partial class LogExtent : System.IDisposable method LogExtent (line 154) | public LogExtent() { } method LogExtent (line 156) | public LogExtent(Serialization.Buffers.ArcBuffer buffer) { } method Dispose (line 160) | public void Dispose() { } type Entry (line 162) | public readonly partial struct Entry : System.IEquatable method Entry (line 165) | public Entry(StateMachineId StreamId, System.Buffers.ReadOnlySequenc... method Deconstruct (line 171) | [System.Runtime.CompilerServices.CompilerGenerated] method Equals (line 174) | [System.Runtime.CompilerServices.CompilerGenerated] method Equals (line 177) | [System.Runtime.CompilerServices.CompilerGenerated] method GetHashCode (line 180) | [System.Runtime.CompilerServices.CompilerGenerated] method ToString (line 189) | [System.Runtime.CompilerServices.CompilerGenerated] class LogExtentBuilder (line 194) | public sealed partial class LogExtentBuilder : System.IDisposable, Syste... method LogExtentBuilder (line 196) | public LogExtentBuilder() { } method LogExtentBuilder (line 198) | public LogExtentBuilder(Serialization.Buffers.ArcBufferWriter buffer) { } method CopyTo (line 204) | public void CopyTo(System.IO.Stream destination, int bufferSize) { } method CopyToAsync (line 206) | public System.Threading.Tasks.ValueTask CopyToAsync(System.IO.Stream d... method CreateLogWriter (line 208) | public StateMachineStorageWriter CreateLogWriter(StateMachineId id) { ... method Dispose (line 210) | public void Dispose() { } method Reset (line 212) | public void Reset() { } method Advance (line 214) | void System.Buffers.IBufferWriter.Advance(int count) { } method GetMemory (line 216) | System.Memory System.Buffers.IBufferWriter.GetMemory(int s... method GetSpan (line 218) | System.Span System.Buffers.IBufferWriter.GetSpan(int sizeH... method ToArray (line 220) | public byte[] ToArray() { throw null; } class ReadOnlyStream (line 222) | public sealed partial class ReadOnlyStream : System.IO.Stream method CopyTo (line 234) | public override void CopyTo(System.IO.Stream destination, int buffer... method CopyToAsync (line 236) | public override System.Threading.Tasks.Task CopyToAsync(System.IO.St... method Flush (line 238) | public override void Flush() { } method Read (line 240) | public override int Read(byte[] buffer, int offset, int count) { thr... method Read (line 242) | public override int Read(System.Span buffer) { throw null; } method ReadAsync (line 244) | public override System.Threading.Tasks.Task ReadAsync(byte[] bu... method ReadAsync (line 246) | public override System.Threading.Tasks.ValueTask ReadAsync(Syst... method Reset (line 248) | public void Reset() { } method Seek (line 250) | public override long Seek(long offset, System.IO.SeekOrigin origin) ... method SetBuilder (line 252) | public void SetBuilder(LogExtentBuilder builder) { } method SetLength (line 254) | public override void SetLength(long value) { } method Write (line 256) | public override void Write(byte[] buffer, int offset, int count) { } method Write (line 258) | public override void Write(System.ReadOnlySpan buffer) { } method WriteAsync (line 260) | public override System.Threading.Tasks.ValueTask WriteAsync(System.R... method WriteByte (line 262) | public override void WriteByte(byte value) { } type StateMachineId (line 266) | public readonly partial struct StateMachineId : System.IEquatable value) { } method AppendEntry (line 301) | public readonly void AppendEntry(System.Buffers.ReadOnlySequence... method AppendEntry (line 303) | public readonly void AppendEntry(byte[] value) { } method AppendEntry (line 305) | public readonly void AppendEntry(System.Memory value) { } method AppendEntry (line 307) | public readonly void AppendEntry(System.ReadOnlyMemory value) { } method AppendEntry (line 309) | public readonly void AppendEntry(System.ReadOnlySpan value) { } method AppendEntry (line 311) | public readonly void AppendEntry(System.Span value) { } method AppendEntry (line 313) | public readonly void AppendEntry(System.Action ReadAsyn... method ReplaceAsync (line 326) | public System.Threading.Tasks.ValueTask ReplaceAsync(LogExtentBuilder ... class VolatileStateMachineStorageProvider (line 329) | public sealed partial class VolatileStateMachineStorageProvider : IState... method Create (line 331) | public IStateMachineStorage Create(Runtime.IGrainContext grainContext)... class Codec_DurableTaskCompletionSourceState (line 337) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_DurableTaskCompletionSourceState (line 342) | public Codec_DurableTaskCompletionSourceState(global::Orleans.Serializ... method Deserialize (line 344) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 346) | public global::Orleans.Journaling.DurableTaskCompletionSourceState ... method Serialize (line 348) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 351) | public void WriteField(ref global::Orleans.Serializatio... class Codec_DurableTaskCompletionSourceStatus (line 355) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 360) | public global::Orleans.Journaling.DurableTaskCompletionSourceStatus Re... method WriteField (line 362) | public void WriteField(ref global::Orleans.Serializatio... class Copier_DurableTaskCompletionSourceState (line 366) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] FILE: src/api/Orleans.Persistence.Memory/Orleans.Persistence.Memory.cs class MemoryGrainStorageOptions (line 11) | public partial class MemoryGrainStorageOptions : Storage.IStorageProvide... class MemoryGrainStorageOptionsValidator (line 22) | public partial class MemoryGrainStorageOptionsValidator : IConfiguration... method MemoryGrainStorageOptionsValidator (line 24) | public MemoryGrainStorageOptionsValidator(MemoryGrainStorageOptions op... method ValidateConfiguration (line 26) | public void ValidateConfiguration() { } class MemoryGrainStorageSiloBuilderExtensions (line 32) | public static partial class MemoryGrainStorageSiloBuilderExtensions method AddMemoryGrainStorage (line 34) | public static ISiloBuilder AddMemoryGrainStorage(this ISiloBuilder bui... method AddMemoryGrainStorage (line 36) | public static ISiloBuilder AddMemoryGrainStorage(this ISiloBuilder bui... method AddMemoryGrainStorageAsDefault (line 38) | public static ISiloBuilder AddMemoryGrainStorageAsDefault(this ISiloBu... method AddMemoryGrainStorageAsDefault (line 40) | public static ISiloBuilder AddMemoryGrainStorageAsDefault(this ISiloBu... class MemoryGrainStorage (line 46) | [System.Diagnostics.DebuggerDisplay("MemoryStore:{name}")] method MemoryGrainStorage (line 49) | public MemoryGrainStorage(string name, Configuration.MemoryGrainStorag... method ClearStateAsync (line 51) | public virtual System.Threading.Tasks.Task ClearStateAsync(string g... method Dispose (line 53) | public void Dispose() { } method ReadStateAsync (line 55) | public virtual System.Threading.Tasks.Task ReadStateAsync(string gr... method WriteStateAsync (line 57) | public virtual System.Threading.Tasks.Task WriteStateAsync(string g... class MemoryGrainStorageFactory (line 60) | public static partial class MemoryGrainStorageFactory method Create (line 62) | public static MemoryGrainStorage Create(System.IServiceProvider servic... class MemoryGrainStorageWithLatency (line 65) | [System.Diagnostics.DebuggerDisplay("MemoryStore:{Name},WithLatency:{lat... method MemoryGrainStorageWithLatency (line 68) | public MemoryGrainStorageWithLatency(string name, MemoryStorageWithLat... method ClearStateAsync (line 70) | public System.Threading.Tasks.Task ClearStateAsync(string grainType... method ReadStateAsync (line 72) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 74) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class MemoryStorageWithLatencyOptions (line 77) | public partial class MemoryStorageWithLatencyOptions : Configuration.Mem... FILE: src/api/Orleans.Reminders/Orleans.Reminders.cs class GrainReminderExtensions (line 11) | public static partial class GrainReminderExtensions method GetReminder (line 13) | public static System.Threading.Tasks.Task Get... method GetReminder (line 15) | public static System.Threading.Tasks.Task Get... method GetReminders (line 17) | public static System.Threading.Tasks.Task Regi... method RegisterOrUpdateReminder (line 23) | public static System.Threading.Tasks.Task Regi... method UnregisterReminder (line 25) | public static System.Threading.Tasks.Task UnregisterReminder(this Grai... method UnregisterReminder (line 27) | public static System.Threading.Tasks.Task UnregisterReminder(this IGra... type IRemindable (line 30) | public partial interface IRemindable : IGrain, Runtime.IAddressable method ReceiveReminder (line 32) | System.Threading.Tasks.Task ReceiveReminder(string reminderName, Runti... type IReminderService (line 35) | public partial interface IReminderService : Services.IGrainService, ISys... method GetReminder (line 37) | System.Threading.Tasks.Task GetReminder(Runtim... method GetReminders (line 38) | System.Threading.Tasks.Task RegisterOrUpdateRe... method Start (line 40) | System.Threading.Tasks.Task Start(); method Stop (line 41) | System.Threading.Tasks.Task Stop(); method UnregisterReminder (line 42) | System.Threading.Tasks.Task UnregisterReminder(Runtime.IGrainReminder ... type IReminderTable (line 45) | public partial interface IReminderTable method Init (line 47) | [System.Obsolete("Implement and use StartAsync instead")] method ReadRow (line 49) | System.Threading.Tasks.Task ReadRow(Runtime.GrainId gra... method ReadRows (line 50) | System.Threading.Tasks.Task ReadRows(Runtime.GrainI... method ReadRows (line 51) | System.Threading.Tasks.Task ReadRows(uint begin, ui... method RemoveRow (line 52) | System.Threading.Tasks.Task RemoveRow(Runtime.GrainId grainId, s... method StartAsync (line 53) | System.Threading.Tasks.Task StartAsync(System.Threading.CancellationTo... method StopAsync (line 54) | System.Threading.Tasks.Task StopAsync(System.Threading.CancellationTok... method TestOnlyClearTable (line 55) | System.Threading.Tasks.Task TestOnlyClearTable(); method UpsertRow (line 56) | System.Threading.Tasks.Task UpsertRow(ReminderEntry entry); class ReminderEntry (line 59) | [GenerateSerializer] method ToString (line 77) | public override string ToString() { throw null; } class ReminderTableData (line 80) | [GenerateSerializer] method ReminderTableData (line 83) | public ReminderTableData() { } method ReminderTableData (line 85) | public ReminderTableData(ReminderEntry entry) { } method ReminderTableData (line 87) | public ReminderTableData(System.Collections.Generic.IEnumerable GetReminder(Runtim... method GetReminders (line 203) | System.Threading.Tasks.Task RegisterOrUpdateRe... method UnregisterReminder (line 205) | System.Threading.Tasks.Task UnregisterReminder(Runtime.GrainId calling... class Codec_Invokable_IRemindable_GrainReference_6461BF2F (line 211) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IRemindable_GrainReference_6461BF2F (line 216) | public Codec_Invokable_IRemindable_GrainReference_6461BF2F(global::Orl... method Deserialize (line 218) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 220) | public Invokable_IRemindable_GrainReference_6461BF2F ReadValue(ref global::Orleans.Serialization... method WriteField (line 225) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IReminderService_GrainReference_1281C86D (line 229) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IReminderService_GrainReference_1281C86D (line 234) | public Codec_Invokable_IReminderService_GrainReference_1281C86D(global... method Deserialize (line 236) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 238) | public Invokable_IReminderService_GrainReference_1281C86D ReadValue(ref global::Orleans.Serialization... method WriteField (line 243) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IReminderService_GrainReference_419EB51E (line 247) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IReminderService_GrainReference_419EB51E (line 252) | public Codec_Invokable_IReminderService_GrainReference_419EB51E(global... method Deserialize (line 254) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 256) | public Invokable_IReminderService_GrainReference_419EB51E ReadValue(ref global::Orleans.Serialization... method WriteField (line 261) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IReminderService_GrainReference_5CF78F8A (line 265) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 270) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 272) | public Invokable_IReminderService_GrainReference_5CF78F8A ReadValue(ref global::Orleans.Serialization... method WriteField (line 277) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IReminderService_GrainReference_A7AF84A8 (line 281) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IReminderService_GrainReference_A7AF84A8 (line 286) | public Codec_Invokable_IReminderService_GrainReference_A7AF84A8(global... method Deserialize (line 288) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 290) | public Invokable_IReminderService_GrainReference_A7AF84A8 ReadValue(ref global::Orleans.Serialization... method WriteField (line 295) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IReminderService_GrainReference_AC622EEB (line 299) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IReminderService_GrainReference_AC622EEB (line 304) | public Codec_Invokable_IReminderService_GrainReference_AC622EEB(global... method Deserialize (line 306) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 308) | public Invokable_IReminderService_GrainReference_AC622EEB ReadValue(ref global::Orleans.Serialization... method WriteField (line 313) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IReminderService_GrainReference_DCFCA00D (line 317) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 322) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 324) | public Invokable_IReminderService_GrainReference_DCFCA00D ReadValue(ref global::Orleans.Serialization... method WriteField (line 329) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ReminderEntry (line 333) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ReminderEntry (line 338) | public Codec_ReminderEntry(global::Orleans.Serialization.Serializers.I... method Deserialize (line 340) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 342) | public global::Orleans.ReminderEntry ReadValue(ref globa... method Serialize (line 344) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 347) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ReminderTableData (line 351) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ReminderTableData (line 356) | public Codec_ReminderTableData(global::Orleans.Serialization.Serialize... method Deserialize (line 358) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 360) | public global::Orleans.ReminderTableData ReadValue(ref g... method Serialize (line 362) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 365) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Invokable_IRemindable_GrainReference_6461BF2F (line 369) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 374) | public Invokable_IRemindable_GrainReference_6461BF2F DeepCopy(Invokabl... class Copier_Invokable_IReminderService_GrainReference_1281C86D (line 377) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 382) | public Invokable_IReminderService_GrainReference_1281C86D DeepCopy(Inv... class Copier_Invokable_IReminderService_GrainReference_419EB51E (line 385) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 390) | public Invokable_IReminderService_GrainReference_419EB51E DeepCopy(Inv... class Copier_Invokable_IReminderService_GrainReference_5CF78F8A (line 393) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 398) | public Invokable_IReminderService_GrainReference_5CF78F8A DeepCopy(Inv... class Copier_Invokable_IReminderService_GrainReference_A7AF84A8 (line 401) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IReminderService_GrainReference_A7AF84A8 (line 406) | public Copier_Invokable_IReminderService_GrainReference_A7AF84A8(globa... method DeepCopy (line 408) | public Invokable_IReminderService_GrainReference_A7AF84A8 DeepCopy(Inv... class Copier_Invokable_IReminderService_GrainReference_AC622EEB (line 411) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 416) | public Invokable_IReminderService_GrainReference_AC622EEB DeepCopy(Inv... class Copier_Invokable_IReminderService_GrainReference_DCFCA00D (line 419) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 424) | public Invokable_IReminderService_GrainReference_DCFCA00D DeepCopy(Inv... class Copier_ReminderEntry (line 427) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 432) | public global::Orleans.ReminderEntry DeepCopy(global::Orleans.Reminder... class Copier_ReminderTableData (line 435) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ReminderTableData (line 440) | public Copier_ReminderTableData(global::Orleans.Serialization.Serializ... method DeepCopy (line 442) | public global::Orleans.ReminderTableData DeepCopy(global::Orleans.Remi... class Invokable_IRemindable_GrainReference_6461BF2F (line 445) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 453) | public override void Dispose() { } method GetActivityName (line 455) | public override string GetActivityName() { throw null; } method GetArgument (line 457) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 459) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 461) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 463) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 465) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 467) | public override string GetMethodName() { throw null; } method GetTarget (line 469) | public override object GetTarget() { throw null; } method InvokeInner (line 471) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 473) | public override void SetArgument(int index, object value) { } method SetTarget (line 475) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IReminderService_GrainReference_1281C86D (line 478) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 488) | public override void Dispose() { } method GetActivityName (line 490) | public override string GetActivityName() { throw null; } method GetArgument (line 492) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 494) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 496) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 498) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 500) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 502) | public override string GetMethodName() { throw null; } method GetTarget (line 504) | public override object GetTarget() { throw null; } method InvokeInner (line 506) | protected override System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 672) | public global::Orleans.Runtime.ReminderException ReadValue(ref global::Orleans.Serialization... method WriteField (line 677) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TickStatus (line 681) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 686) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 688) | public global::Orleans.Runtime.TickStatus ReadValue(ref ... method Serialize (line 690) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 693) | public void WriteField(ref global::Orleans.Serializatio... class Copier_ReminderException (line 697) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ReminderException (line 702) | public Copier_ReminderException(global::Orleans.Serialization.Serializ... FILE: src/api/Orleans.Runtime/Orleans.Runtime.cs class OrleansSiloGenericHostExtensions (line 11) | public static partial class OrleansSiloGenericHostExtensions method AddOrleans (line 13) | public static DependencyInjection.IServiceCollection AddOrleans(this D... method UseOrleans (line 15) | public static HostApplicationBuilder UseOrleans(this HostApplicationBu... method UseOrleans (line 17) | public static HostApplicationBuilder UseOrleans(this HostApplicationBu... method UseOrleans (line 19) | public static IHostApplicationBuilder UseOrleans(this IHostApplication... method UseOrleans (line 21) | public static IHostApplicationBuilder UseOrleans(this IHostApplication... method UseOrleans (line 23) | public static IHostBuilder UseOrleans(this IHostBuilder hostBuilder, S... method UseOrleans (line 25) | public static IHostBuilder UseOrleans(this IHostBuilder hostBuilder, S... type IFacetMetadata (line 31) | public partial interface IFacetMetadata class PersistentStateAttributeMapper (line 35) | public partial class PersistentStateAttributeMapper : Runtime.IAttribute... method GetFactory (line 37) | public Factory GetFactory(System.Reflec... class ActivationCountBasedPlacementOptions (line 43) | public partial class ActivationCountBasedPlacementOptions class ActivationRebalancerOptions (line 49) | public sealed partial class ActivationRebalancerOptions class ActivationRepartitionerOptions (line 83) | public sealed partial class ActivationRepartitionerOptions class ConsistentRingOptions (line 107) | public partial class ConsistentRingOptions class DeploymentLoadPublisherOptions (line 116) | public partial class DeploymentLoadPublisherOptions class DevelopmentClusterMembershipOptions (line 122) | public partial class DevelopmentClusterMembershipOptions class EndpointOptions (line 127) | public partial class EndpointOptions class GrainCollectionOptions (line 142) | public partial class GrainCollectionOptions class GrainDirectoryOptions (line 166) | public partial class GrainDirectoryOptions type CachingStrategyType (line 192) | public enum CachingStrategyType class ResourceOptimizedPlacementOptions (line 201) | public sealed partial class ResourceOptimizedPlacementOptions class SchedulingOptions (line 222) | public partial class SchedulingOptions class SiloConnectionOptions (line 239) | public partial class SiloConnectionOptions : SiloConnectionOptions.ISilo... method ConfigureGatewayInboundConnection (line 241) | public void ConfigureGatewayInboundConnection(System.Action : IStorage, ISto... method StateStorageBridge (line 333) | [System.Obsolete("Use StateStorageBridge(string, IGrainContext, IGrain... method StateStorageBridge (line 336) | public StateStorageBridge(string name, Runtime.IGrainContext grainCont... method ClearStateAsync (line 344) | public System.Threading.Tasks.Task ClearStateAsync() { throw null; } method OnDehydrate (line 346) | public void OnDehydrate(Runtime.IDehydrationContext dehydrationContext... method OnRehydrate (line 348) | public void OnRehydrate(Runtime.IRehydrationContext rehydrationContext... method ReadStateAsync (line 350) | public System.Threading.Tasks.Task ReadStateAsync() { throw null; } method WriteStateAsync (line 352) | public System.Threading.Tasks.Task WriteStateAsync() { throw null; } class ActivationRebalancerExtensions (line 358) | public static partial class ActivationRebalancerExtensions method AddActivationRebalancer (line 360) | [System.Diagnostics.CodeAnalysis.Experimental("ORLEANSEXP002")] method AddActivationRebalancer (line 363) | [System.Diagnostics.CodeAnalysis.Experimental("ORLEANSEXP002")] class ActivationRepartitioningExtensions (line 368) | public static partial class ActivationRepartitioningExtensions method AddActivationRepartitioner (line 370) | [System.Diagnostics.CodeAnalysis.Experimental("ORLEANSEXP001")] method AddActivationRepartitioner (line 373) | [System.Diagnostics.CodeAnalysis.Experimental("ORLEANSEXP001")] class CoreHostingExtensions (line 378) | public static partial class CoreHostingExtensions method AddActivityPropagation (line 380) | public static ISiloBuilder AddActivityPropagation(this ISiloBuilder bu... method AddDistributedGrainDirectory (line 382) | [System.Diagnostics.CodeAnalysis.Experimental("ORLEANSEXP003")] method UseDevelopmentClustering (line 385) | public static ISiloBuilder UseDevelopmentClustering(this ISiloBuilder ... method UseDevelopmentClustering (line 387) | public static ISiloBuilder UseDevelopmentClustering(this ISiloBuilder ... method UseDevelopmentClustering (line 389) | public static ISiloBuilder UseDevelopmentClustering(this ISiloBuilder ... method UseLocalhostClustering (line 391) | public static ISiloBuilder UseLocalhostClustering(this ISiloBuilder bu... class EndpointOptionsExtensions (line 394) | public static partial class EndpointOptionsExtensions method ConfigureEndpoints (line 396) | public static ISiloBuilder ConfigureEndpoints(this ISiloBuilder builde... method ConfigureEndpoints (line 398) | public static ISiloBuilder ConfigureEndpoints(this ISiloBuilder builde... method ConfigureEndpoints (line 400) | public static ISiloBuilder ConfigureEndpoints(this ISiloBuilder builde... class GrainCallFilterSiloBuilderExtensions (line 403) | public static partial class GrainCallFilterSiloBuilderExtensions method AddIncomingGrainCallFilter (line 405) | public static ISiloBuilder AddIncomingGrainCallFilter(this ISiloBuilde... method AddIncomingGrainCallFilter (line 407) | public static ISiloBuilder AddIncomingGrainCallFilter(this ISiloBuilde... method AddIncomingGrainCallFilter (line 409) | public static ISiloBuilder AddIncomingGrainCallFilter... method AddOutgoingGrainCallFilter (line 412) | public static ISiloBuilder AddOutgoingGrainCallFilter(this ISiloBuilde... method AddOutgoingGrainCallFilter (line 414) | public static ISiloBuilder AddOutgoingGrainCallFilter(this ISiloBuilde... method AddOutgoingGrainCallFilter (line 416) | public static ISiloBuilder AddOutgoingGrainCallFilter... class GrainServicesSiloBuilderExtensions (line 420) | public static partial class GrainServicesSiloBuilderExtensions method AddGrainService (line 422) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddGrainService (line 424) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddGrainService (line 426) | public static ISiloBuilder AddGrainService(this ISiloBuilder builder) class HostingGrainExtensions (line 430) | public static partial class HostingGrainExtensions method AddGrainExtension (line 432) | public static ISiloBuilder AddGrainExtension(this Microsoft.Exte... method AddPlacementDirector (line 448) | public static void AddPlacementDirector(this Microsoft.Exte... method AddPlacementDirector (line 451) | public static ISiloBuilder AddPlacementDirector(this ISiloB... method AddPlacementDirector (line 454) | public static void AddPlacementDirector(this Mic... method AddPlacementDirector (line 458) | public static void AddPlacementDirector(this Mic... method AddPlacementDirector (line 462) | public static ISiloBuilder AddPlacementDirector(... class SiloBuilderExtensions (line 467) | public static partial class SiloBuilderExtensions method Configure (line 469) | public static ISiloBuilder Configure(this ISiloBuilder build... method Configure (line 472) | public static ISiloBuilder Configure(this ISiloBuilder build... method ConfigureLogging (line 475) | public static ISiloBuilder ConfigureLogging(this ISiloBuilder builder,... method ConfigureServices (line 477) | public static ISiloBuilder ConfigureServices(this ISiloBuilder builder... class SiloBuilderStartupExtensions (line 480) | public static partial class SiloBuilderStartupExtensions method AddStartupTask (line 482) | public static ISiloBuilder AddStartupTask(this ISiloBuilder builder, R... method AddStartupTask (line 484) | public static ISiloBuilder AddStartupTask(this ISiloBuilder builder, S... method AddStartupTask (line 486) | public static ISiloBuilder AddStartupTask(this ISiloBuilder ... class GrainClassMap (line 493) | public partial class GrainClassMap method GrainClassMap (line 495) | public GrainClassMap(Serialization.TypeSystem.TypeConverter typeConver... method TryGetGrainClass (line 497) | public bool TryGetGrainClass(Runtime.GrainType grainType, out System.T... class ClusterMember (line 503) | [GenerateSerializer] method ClusterMember (line 507) | public ClusterMember(SiloAddress siloAddress, SiloStatus status, strin... method Equals (line 518) | public bool Equals(ClusterMember other) { throw null; } method Equals (line 520) | public override bool Equals(object obj) { throw null; } method GetHashCode (line 522) | public override int GetHashCode() { throw null; } method ToString (line 524) | public override string ToString() { throw null; } class ClusterMembershipSnapshot (line 527) | [GenerateSerializer] method ClusterMembershipSnapshot (line 531) | public ClusterMembershipSnapshot(System.Collections.Immutable.Immutabl... method AsUpdate (line 539) | public ClusterMembershipUpdate AsUpdate() { throw null; } method CreateUpdate (line 541) | public ClusterMembershipUpdate CreateUpdate(ClusterMembershipSnapshot ... method GetSiloStatus (line 543) | public SiloStatus GetSiloStatus(SiloAddress silo) { throw null; } method ToString (line 545) | public override string ToString() { throw null; } class ClusterMembershipUpdate (line 548) | [GenerateSerializer] method ClusterMembershipUpdate (line 552) | public ClusterMembershipUpdate(ClusterMembershipSnapshot snapshot, Sys... class DefaultGrainActivator (line 563) | public partial class DefaultGrainActivator : IGrainActivator method DefaultGrainActivator (line 565) | public DefaultGrainActivator(System.IServiceProvider serviceProvider, ... method CreateInstance (line 567) | public object CreateInstance(IGrainContext context) { throw null; } method DisposeInstance (line 569) | public System.Threading.Tasks.ValueTask DisposeInstance(IGrainContext ... class GrainConstructorArgumentFactory (line 572) | public partial class GrainConstructorArgumentFactory method GrainConstructorArgumentFactory (line 574) | public GrainConstructorArgumentFactory(System.IServiceProvider service... method CreateArguments (line 578) | public object[] CreateArguments(IGrainContext grainContext) { throw nu... class GrainContextActivator (line 581) | public sealed partial class GrainContextActivator method GrainContextActivator (line 583) | public GrainContextActivator(System.Collections.Generic.IEnumerable() { throw null; } method OnCreateActivation (line 654) | public void OnCreateActivation(IGrainContext grainContext) { } method OnDestroyActivation (line 656) | public void OnDestroyActivation(IGrainContext grainContext) { } method SetComponent (line 658) | public void SetComponent(TComponent? instance) { } class GrainTypeSharedContextResolver (line 661) | public partial class GrainTypeSharedContextResolver method GrainTypeSharedContextResolver (line 663) | public GrainTypeSharedContextResolver(System.Collections.Generic.IEnum... method GetComponents (line 665) | public GrainTypeSharedContext GetComponents(GrainType grainType) { thr... type IActivationWorkingSet (line 668) | public partial interface IActivationWorkingSet method OnActivated (line 672) | void OnActivated(IActivationWorkingSetMember member); method OnActive (line 673) | void OnActive(IActivationWorkingSetMember member); method OnDeactivated (line 674) | void OnDeactivated(IActivationWorkingSetMember member); method OnDeactivating (line 675) | void OnDeactivating(IActivationWorkingSetMember member); type IActivationWorkingSetMember (line 678) | public partial interface IActivationWorkingSetMember method IsCandidateForRemoval (line 680) | bool IsCandidateForRemoval(bool wouldRemove); type IActivationWorkingSetObserver (line 683) | public partial interface IActivationWorkingSetObserver method OnActive (line 685) | void OnActive(IActivationWorkingSetMember member); method OnAdded (line 686) | void OnAdded(IActivationWorkingSetMember member); method OnDeactivated (line 687) | void OnDeactivated(IActivationWorkingSetMember member); method OnDeactivating (line 688) | void OnDeactivating(IActivationWorkingSetMember member); method OnEvicted (line 689) | void OnEvicted(IActivationWorkingSetMember member); method OnIdle (line 690) | void OnIdle(IActivationWorkingSetMember member); type IAttributeToFactoryMapper (line 693) | public partial interface IAttributeToFactoryMapper method GetFactory (line 696) | Factory GetFactory(System.Reflection.ParameterI... type IClusterMembershipService (line 699) | public partial interface IClusterMembershipService method Refresh (line 705) | System.Threading.Tasks.ValueTask Refresh(MembershipVersion minimumVers... method TryKill (line 706) | System.Threading.Tasks.Task TryKill(SiloAddress siloAddress); type IConfigureGrainContext (line 709) | public partial interface IConfigureGrainContext method Configure (line 711) | void Configure(IGrainContext context); type IConfigureGrainContextProvider (line 714) | public partial interface IConfigureGrainContextProvider method TryGetConfigurator (line 716) | bool TryGetConfigurator(GrainType grainType, Orleans.Metadata.GrainPro... type IConfigureGrainTypeComponents (line 719) | public partial interface IConfigureGrainTypeComponents method Configure (line 721) | void Configure(GrainType grainType, Orleans.Metadata.GrainProperties p... type IFatalErrorHandler (line 724) | public partial interface IFatalErrorHandler method IsUnexpected (line 726) | bool IsUnexpected(System.Exception exception); method OnFatalException (line 727) | void OnFatalException(object sender = null, string context = null, Sys... type IGrainActivator (line 730) | public partial interface IGrainActivator method CreateInstance (line 732) | object CreateInstance(IGrainContext context); method DisposeInstance (line 733) | System.Threading.Tasks.ValueTask DisposeInstance(IGrainContext context... type IGrainContextActivator (line 736) | public partial interface IGrainContextActivator method CreateContext (line 738) | IGrainContext CreateContext(GrainAddress address); type IGrainContextActivatorProvider (line 741) | public partial interface IGrainContextActivatorProvider method TryGet (line 743) | bool TryGet(GrainType grainType, out IGrainContextActivator activator); type IGrainServiceFactory (line 746) | public partial interface IGrainServiceFactory method CastToGrainServiceReference (line 748) | T CastToGrainServiceReference(GrainReference grainReference) type IHealthCheckParticipant (line 752) | public partial interface IHealthCheckParticipant : IHealthCheckable type IPersistentStateConfiguration (line 756) | public partial interface IPersistentStateConfiguration type IPersistentStateFactory (line 763) | public partial interface IPersistentStateFactory method Create (line 765) | IPersistentState Create(IGrainContext context, IPersis... type IPersistentState (line 768) | public partial interface IPersistentState : Core.IStorage GetActiveSilo... method GetApproximateSiloStatus (line 797) | SiloStatus GetApproximateSiloStatus(SiloAddress siloAddress); method GetApproximateSiloStatuses (line 798) | System.Collections.Generic.Dictionary GetAppr... method IsDeadSilo (line 799) | bool IsDeadSilo(SiloAddress silo); method IsFunctionalDirectory (line 800) | bool IsFunctionalDirectory(SiloAddress siloAddress); method SubscribeToSiloStatusEvents (line 801) | bool SubscribeToSiloStatusEvents(ISiloStatusListener observer); method TryGetSiloName (line 802) | bool TryGetSiloName(SiloAddress siloAddress, out string siloName); method UnSubscribeFromSiloStatusEvents (line 803) | bool UnSubscribeFromSiloStatusEvents(ISiloStatusListener observer); type IStartupTask (line 806) | public partial interface IStartupTask method Execute (line 808) | System.Threading.Tasks.Task Execute(System.Threading.CancellationToken... class PersistentStateAttribute (line 811) | [System.AttributeUsage(System.AttributeTargets.Parameter)] method PersistentStateAttribute (line 814) | public PersistentStateAttribute(string stateName, string storageName =... class PersistentStateFactory (line 821) | public partial class PersistentStateFactory : IPersistentStateFactory method Create (line 823) | public IPersistentState Create(IGrainContext context, ... method GetFullStateName (line 825) | protected virtual string GetFullStateName(IGrainContext context, IPers... class Silo (line 828) | public sealed partial class Silo : System.IAsyncDisposable, System.IDisp... method Silo (line 831) | [System.Obsolete("This constructor is obsolete and may be removed in a... method Dispose (line 838) | public void Dispose() { } method DisposeAsync (line 840) | public System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } method StartAsync (line 842) | public System.Threading.Tasks.Task StartAsync(System.Threading.Cancell... method Stop (line 844) | public void Stop() { } method StopAsync (line 846) | public System.Threading.Tasks.Task StopAsync(System.Threading.Cancella... method ToString (line 848) | public override string ToString() { throw null; } class SiloLifecycleSubject (line 851) | public partial class SiloLifecycleSubject : LifecycleSubject, ISiloLifec... method SiloLifecycleSubject (line 853) | public SiloLifecycleSubject(Microsoft.Extensions.Logging.ILogger() { throw null; } method GetExtension (line 904) | public TExtensionInterface GetExtension() method GetOrSetExtension (line 907) | public (TExtension, TExtensionInterface) GetOrSetExtension() method Migrate (line 913) | public void Migrate(System.Collections.Generic.Dictionary(System.Func(TComponent instance) method Equals (line 930) | bool System.IEquatable.Equals(IGrainContext other) { th... method ToString (line 932) | string System.IFormattable.ToString(string format, System.IFormatProvi... method TryFormat (line 934) | bool System.ISpanFormattable.TryFormat(System.Span destination, ... method ToString (line 936) | public sealed override string ToString() { throw null; } class DevelopmentSiloBuilderExtensions (line 942) | public static partial class DevelopmentSiloBuilderExtensions method UseInMemoryLeaseProvider (line 944) | public static Orleans.Hosting.ISiloBuilder UseInMemoryLeaseProvider(th... class InMemoryLeaseProvider (line 947) | public partial class InMemoryLeaseProvider : LeaseProviders.ILeaseProvider method InMemoryLeaseProvider (line 949) | public InMemoryLeaseProvider(IGrainFactory grainFactory) { } method Acquire (line 951) | public System.Threading.Tasks.Task(this O... class StorageProviderExtensions (line 994) | public static partial class StorageProviderExtensions method AddGrainStorage (line 996) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class OrleansClusterConnectivityCheckFailedException (line 1003) | [GenerateSerializer] method OrleansClusterConnectivityCheckFailedException (line 1006) | public OrleansClusterConnectivityCheckFailedException() { } method OrleansClusterConnectivityCheckFailedException (line 1008) | public OrleansClusterConnectivityCheckFailedException(string message, ... method OrleansClusterConnectivityCheckFailedException (line 1010) | public OrleansClusterConnectivityCheckFailedException(string message) { } class OrleansMissingMembershipEntryException (line 1013) | [GenerateSerializer] method OrleansMissingMembershipEntryException (line 1016) | public OrleansMissingMembershipEntryException() { } method OrleansMissingMembershipEntryException (line 1018) | public OrleansMissingMembershipEntryException(string message, System.E... method OrleansMissingMembershipEntryException (line 1020) | public OrleansMissingMembershipEntryException(string message) { } type ISiloMetadataCache (line 1026) | public partial interface ISiloMetadataCache method GetSiloMetadata (line 1028) | SiloMetadata GetSiloMetadata(SiloAddress siloAddress); type SiloMetadata (line 1031) | [GenerateSerializer] class SiloMetadataHostingExtensions (line 1041) | public static partial class SiloMetadataHostingExtensions method UseSiloMetadata (line 1043) | public static Orleans.Hosting.ISiloBuilder UseSiloMetadata(this Orlean... method UseSiloMetadata (line 1045) | public static Orleans.Hosting.ISiloBuilder UseSiloMetadata(this Orlean... method UseSiloMetadata (line 1047) | public static Orleans.Hosting.ISiloBuilder UseSiloMetadata(this Orlean... method UseSiloMetadata (line 1049) | public static Orleans.Hosting.ISiloBuilder UseSiloMetadata(this Orlean... type IPlacementStrategyResolver (line 1055) | public partial interface IPlacementStrategyResolver method TryResolvePlacementStrategy (line 1057) | bool TryResolvePlacementStrategy(GrainType grainType, Orleans.Metadata... class PlacementDirectorResolver (line 1060) | public sealed partial class PlacementDirectorResolver method PlacementDirectorResolver (line 1062) | public PlacementDirectorResolver(System.IServiceProvider services) { } method GetPlacementDirector (line 1064) | public IPlacementDirector GetPlacementDirector(PlacementStrategy place... class PlacementStrategyResolver (line 1067) | public sealed partial class PlacementStrategyResolver method PlacementStrategyResolver (line 1069) | public PlacementStrategyResolver(System.IServiceProvider services, Sys... method GetPlacementStrategy (line 1071) | public PlacementStrategy GetPlacementStrategy(GrainType grainType) { t... class PlacementFilterDirectorResolver (line 1077) | public sealed partial class PlacementFilterDirectorResolver method PlacementFilterDirectorResolver (line 1079) | public PlacementFilterDirectorResolver(System.IServiceProvider service... method GetFilterDirector (line 1081) | public Orleans.Placement.IPlacementFilterDirector GetFilterDirector(Or... class PlacementFilterStrategyResolver (line 1084) | public sealed partial class PlacementFilterStrategyResolver method PlacementFilterStrategyResolver (line 1086) | public PlacementFilterStrategyResolver(System.IServiceProvider service... method GetPlacementFilterStrategies (line 1088) | public Orleans.Placement.PlacementFilterStrategy[] GetPlacementFilterS... class PreferredMatchSiloMetadataPlacementFilterAttribute (line 1091) | [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = fa... method PreferredMatchSiloMetadataPlacementFilterAttribute (line 1095) | public PreferredMatchSiloMetadataPlacementFilterAttribute(string[] ord... class PreferredMatchSiloMetadataPlacementFilterStrategy (line 1098) | public partial class PreferredMatchSiloMetadataPlacementFilterStrategy :... method PreferredMatchSiloMetadataPlacementFilterStrategy (line 1100) | public PreferredMatchSiloMetadataPlacementFilterStrategy() : base(defa... method PreferredMatchSiloMetadataPlacementFilterStrategy (line 1102) | public PreferredMatchSiloMetadataPlacementFilterStrategy(string[] orde... method AdditionalInitialize (line 1108) | public override void AdditionalInitialize(Orleans.Metadata.GrainProper... method GetAdditionalGrainProperties (line 1110) | protected override System.Collections.Generic.IEnumerable : Orlean... method GrainServiceClient (line 1138) | protected GrainServiceClient(System.IServiceProvider serviceProvider) { } method GetGrainService (line 1142) | protected TGrainService GetGrainService(GrainId callingGrainId) { thro... method GetGrainService (line 1144) | protected TGrainService GetGrainService(SiloAddress destination) { thr... method GetGrainService (line 1146) | protected TGrainService GetGrainService(uint key) { throw null; } class OrleansDebuggerHelper (line 1152) | public static partial class OrleansDebuggerHelper method GetGrainInstance (line 1154) | public static object GetGrainInstance(object grainReference) { throw n... class Codec_Invokable_ILeaseProvider_GrainReference_5C7B2877 (line 1160) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ILeaseProvider_GrainReference_5C7B2877 (line 1165) | public Codec_Invokable_ILeaseProvider_GrainReference_5C7B2877(global::... method Deserialize (line 1167) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1169) | public Invokable_ILeaseProvider_GrainReference_5C7B2877 ReadValue(ref global::Orleans.Serialization... method WriteField (line 1174) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ILeaseProvider_GrainReference_ACF8E0DD (line 1178) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ILeaseProvider_GrainReference_ACF8E0DD (line 1183) | public Codec_Invokable_ILeaseProvider_GrainReference_ACF8E0DD(global::... method Deserialize (line 1185) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1187) | public Invokable_ILeaseProvider_GrainReference_ACF8E0DD ReadValue(ref global::Orleans.Serialization... method WriteField (line 1192) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ILeaseProvider_GrainReference_F2BF11D0 (line 1196) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ILeaseProvider_GrainReference_F2BF11D0 (line 1201) | public Codec_Invokable_ILeaseProvider_GrainReference_F2BF11D0(global::... method Deserialize (line 1203) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1205) | public Invokable_ILeaseProvider_GrainReference_F2BF11D0 ReadValue(ref global::Orleans.Serialization... method WriteField (line 1210) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Invokable_ILeaseProvider_GrainReference_5C7B2877 (line 1214) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ILeaseProvider_GrainReference_5C7B2877 (line 1219) | public Copier_Invokable_ILeaseProvider_GrainReference_5C7B2877(global:... method DeepCopy (line 1221) | public Invokable_ILeaseProvider_GrainReference_5C7B2877 DeepCopy(Invok... class Copier_Invokable_ILeaseProvider_GrainReference_ACF8E0DD (line 1224) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ILeaseProvider_GrainReference_ACF8E0DD (line 1229) | public Copier_Invokable_ILeaseProvider_GrainReference_ACF8E0DD(global:... method DeepCopy (line 1231) | public Invokable_ILeaseProvider_GrainReference_ACF8E0DD DeepCopy(Invok... class Copier_Invokable_ILeaseProvider_GrainReference_F2BF11D0 (line 1234) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ILeaseProvider_GrainReference_F2BF11D0 (line 1239) | public Copier_Invokable_ILeaseProvider_GrainReference_F2BF11D0(global:... method DeepCopy (line 1241) | public Invokable_ILeaseProvider_GrainReference_F2BF11D0 DeepCopy(Invok... class Invokable_ILeaseProvider_GrainReference_5C7B2877 (line 1244) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 1252) | public override void Dispose() { } method GetActivityName (line 1254) | public override string GetActivityName() { throw null; } method GetArgument (line 1256) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 1258) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 1260) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 1262) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 1264) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 1266) | public override string GetMethodName() { throw null; } method GetTarget (line 1268) | public override object GetTarget() { throw null; } method InvokeInner (line 1270) | protected override System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 1355) | public global::Orleans.Runtime.ClusterMember ReadValue(r... method Serialize (line 1357) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1360) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ClusterMembershipSnapshot (line 1364) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ClusterMembershipSnapshot (line 1369) | public Codec_ClusterMembershipSnapshot(global::Orleans.Serialization.A... method Deserialize (line 1371) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1373) | public global::Orleans.Runtime.ClusterMembershipSnapshot ReadValue(ref global::Orleans.Serialization... method WriteField (line 1378) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ClusterMembershipUpdate (line 1382) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ClusterMembershipUpdate (line 1387) | public Codec_ClusterMembershipUpdate(global::Orleans.Serialization.Act... method Deserialize (line 1389) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1391) | public global::Orleans.Runtime.ClusterMembershipUpdate ReadValue(ref global::Orleans.Serialization... method WriteField (line 1396) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansClusterConnectivityCheckFailedException (line 1403) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansClusterConnectivityCheckFailedException (line 1408) | public Codec_OrleansClusterConnectivityCheckFailedException(global::Or... method Deserialize (line 1410) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1412) | public global::Orleans.Runtime.MembershipService.OrleansClusterConnect... method Serialize (line 1414) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1417) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansMissingMembershipEntryException (line 1421) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansMissingMembershipEntryException (line 1426) | public Codec_OrleansMissingMembershipEntryException(global::Orleans.Se... method Deserialize (line 1428) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1430) | public global::Orleans.Runtime.MembershipService.OrleansMissingMembers... method Serialize (line 1432) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1435) | public void WriteField(ref global::Orleans.Serializatio... class Copier_OrleansClusterConnectivityCheckFailedException (line 1439) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansClusterConnectivityCheckFailedException (line 1444) | public Copier_OrleansClusterConnectivityCheckFailedException(global::O... class Copier_OrleansMissingMembershipEntryException (line 1447) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansMissingMembershipEntryException (line 1452) | public Copier_OrleansMissingMembershipEntryException(global::Orleans.S... class Codec_SiloMetadata (line 1458) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SiloMetadata (line 1463) | public Codec_SiloMetadata(global::Orleans.Serialization.Serializers.IC... method Deserialize (line 1465) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1467) | public global::Orleans.Runtime.MembershipService.SiloMetadata.SiloMeta... method Serialize (line 1469) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1472) | public void WriteField(ref global::Orleans.Serializatio... class Copier_SiloMetadata (line 1476) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 1481) | public void DeepCopy(global::Orleans.Runtime.MembershipService.SiloMet... method DeepCopy (line 1483) | public global::Orleans.Runtime.MembershipService.SiloMetadata.SiloMeta... FILE: src/api/Orleans.Serialization.Abstractions/Orleans.Serialization.Abstractions.cs class AliasAttribute (line 11) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... method AliasAttribute (line 14) | public AliasAttribute(string alias) { } class ApplicationPartAttribute (line 19) | [System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple =... method ApplicationPartAttribute (line 22) | public ApplicationPartAttribute(string assemblyName) { } class CompoundTypeAliasAttribute (line 27) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... method CompoundTypeAliasAttribute (line 30) | public CompoundTypeAliasAttribute(params object[] components) { } class DefaultInvokableBaseTypeAttribute (line 35) | [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = tr... method DefaultInvokableBaseTypeAttribute (line 38) | public DefaultInvokableBaseTypeAttribute(System.Type returnType, Syste... class DefaultInvokeMethodNameAttribute (line 47) | [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = tr... method DefaultInvokeMethodNameAttribute (line 50) | public DefaultInvokeMethodNameAttribute(System.Type returnType, string... class GenerateCodeForDeclaringAssemblyAttribute (line 57) | [System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple =... method GenerateCodeForDeclaringAssemblyAttribute (line 60) | public GenerateCodeForDeclaringAssemblyAttribute(System.Type type) { } class GeneratedActivatorConstructorAttribute (line 65) | [System.AttributeUsage(System.AttributeTargets.Constructor)] type GenerateFieldIds (line 70) | public enum GenerateFieldIds class GenerateMethodSerializersAttribute (line 76) | [System.AttributeUsage(System.AttributeTargets.Interface, AllowMultiple ... method GenerateMethodSerializersAttribute (line 79) | public GenerateMethodSerializersAttribute(System.Type proxyBase, bool ... class GenerateSerializerAttribute (line 86) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class GetCompletionSourceMethodNameAttribute (line 94) | [System.AttributeUsage(System.AttributeTargets.Class)] method GetCompletionSourceMethodNameAttribute (line 97) | public GetCompletionSourceMethodNameAttribute(string methodName) { } type IConverter (line 102) | public partial interface IConverter method ConvertFromSurrogate (line 105) | TValue ConvertFromSurrogate(in TSurrogate surrogate); method ConvertToSurrogate (line 106) | TSurrogate ConvertToSurrogate(in TValue value); class IdAttribute (line 109) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... method IdAttribute (line 112) | public IdAttribute(uint id) { } class ImmutableAttribute (line 117) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class InvokableBaseTypeAttribute (line 122) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... method InvokableBaseTypeAttribute (line 125) | public InvokableBaseTypeAttribute(System.Type proxyBaseClass, System.T... class InvokableCustomInitializerAttribute (line 136) | [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = tr... method InvokableCustomInitializerAttribute (line 139) | public InvokableCustomInitializerAttribute(string methodName, object m... method InvokableCustomInitializerAttribute (line 141) | public InvokableCustomInitializerAttribute(string methodName) { } class InvokeMethodNameAttribute (line 152) | [System.AttributeUsage(System.AttributeTargets.Class)] method InvokeMethodNameAttribute (line 155) | public InvokeMethodNameAttribute(string invokeMethodName) { } type IPopulator (line 160) | public partial interface IPopulator method Populate (line 163) | void Populate(in TSurrogate surrogate, TValue value); class OmitDefaultMemberValuesAttribute (line 166) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class OrleansConstructorAttribute (line 171) | [System.AttributeUsage(System.AttributeTargets.Constructor)] class RegisterActivatorAttribute (line 176) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class RegisterConverterAttribute (line 181) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class RegisterCopierAttribute (line 186) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class RegisterProviderAttribute (line 191) | [System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple =... method RegisterProviderAttribute (line 194) | public RegisterProviderAttribute(string name, string kind, string targ... class RegisterSerializerAttribute (line 205) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class ResponseTimeoutAttribute (line 210) | [System.AttributeUsage(System.AttributeTargets.Method)] method ResponseTimeoutAttribute (line 213) | public ResponseTimeoutAttribute(string timeout) { } class SerializationCallbacksAttribute (line 218) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... method SerializationCallbacksAttribute (line 221) | public SerializationCallbacksAttribute(System.Type hookType) { } class SerializerTransparentAttribute (line 226) | [System.AttributeUsage(System.AttributeTargets.Class, Inherited = false)] class SuppressReferenceTrackingAttribute (line 231) | [System.AttributeUsage(System.AttributeTargets.Class)] class UseActivatorAttribute (line 236) | [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeT... class ReturnValueProxyAttribute (line 244) | [System.AttributeUsage(System.AttributeTargets.Class)] method ReturnValueProxyAttribute (line 247) | public ReturnValueProxyAttribute(string initializerMethodName) { } class FrameworkPartAttribute (line 255) | [System.AttributeUsage(System.AttributeTargets.Assembly)] FILE: src/api/Orleans.Serialization.FSharp/Orleans.Serialization.FSharp.cs class FSharpChoiceCodec (line 11) | [RegisterSerializer] method FSharpChoiceCodec (line 14) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 16) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec>.Wr... method FSharpChoiceCodec (line 24) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 26) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec... method FSharpChoiceCodec (line 34) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 36) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec<... method WriteField (line 38) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 46) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCo... method WriteField (line 48) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 56) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFie... method WriteField (line 58) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 16) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec>.Wr... method FSharpChoiceCodec (line 24) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 26) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec... method FSharpChoiceCodec (line 34) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 36) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec<... method WriteField (line 38) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 46) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCo... method WriteField (line 48) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 56) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFie... method WriteField (line 58) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 16) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec>.Wr... method FSharpChoiceCodec (line 24) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 26) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec... method FSharpChoiceCodec (line 34) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 36) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec<... method WriteField (line 38) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 46) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCo... method WriteField (line 48) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 56) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFie... method WriteField (line 58) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 16) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec>.Wr... method FSharpChoiceCodec (line 24) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 26) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec... method FSharpChoiceCodec (line 34) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 36) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec<... method WriteField (line 38) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 46) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCo... method WriteField (line 48) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 56) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFie... method WriteField (line 58) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 16) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec>.Wr... method FSharpChoiceCodec (line 24) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 26) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec... method FSharpChoiceCodec (line 34) | public FSharpChoiceCodec(Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 36) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCodec<... method WriteField (line 38) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 46) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFieldCo... method WriteField (line 48) | void Codecs.IFieldCodec item1Codec, Codecs.IFi... method ReadValue (line 56) | Microsoft.FSharp.Core.FSharpChoice Codecs.IFie... method WriteField (line 58) | void Codecs.IFieldCodec copier1, Cloning.IDe... method DeepCopy (line 66) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microsoft.F... method FSharpChoiceCopier (line 72) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 74) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microso... method FSharpChoiceCopier (line 80) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 82) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Mic... method FSharpChoiceCopier (line 88) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 90) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy... method FSharpChoiceCopier (line 96) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 98) | public Microsoft.FSharp.Core.FSharpChoice Deep... class FSharpChoiceCopier (line 69) | [RegisterCopier] method FSharpChoiceCopier (line 64) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 66) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microsoft.F... method FSharpChoiceCopier (line 72) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 74) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microso... method FSharpChoiceCopier (line 80) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 82) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Mic... method FSharpChoiceCopier (line 88) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 90) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy... method FSharpChoiceCopier (line 96) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 98) | public Microsoft.FSharp.Core.FSharpChoice Deep... class FSharpChoiceCopier (line 77) | [RegisterCopier] method FSharpChoiceCopier (line 64) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 66) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microsoft.F... method FSharpChoiceCopier (line 72) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 74) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microso... method FSharpChoiceCopier (line 80) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 82) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Mic... method FSharpChoiceCopier (line 88) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 90) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy... method FSharpChoiceCopier (line 96) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 98) | public Microsoft.FSharp.Core.FSharpChoice Deep... class FSharpChoiceCopier (line 85) | [RegisterCopier] method FSharpChoiceCopier (line 64) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 66) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microsoft.F... method FSharpChoiceCopier (line 72) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 74) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microso... method FSharpChoiceCopier (line 80) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 82) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Mic... method FSharpChoiceCopier (line 88) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 90) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy... method FSharpChoiceCopier (line 96) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 98) | public Microsoft.FSharp.Core.FSharpChoice Deep... class FSharpChoiceCopier (line 93) | [RegisterCopier] method FSharpChoiceCopier (line 64) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 66) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microsoft.F... method FSharpChoiceCopier (line 72) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 74) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Microso... method FSharpChoiceCopier (line 80) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 82) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy(Mic... method FSharpChoiceCopier (line 88) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 90) | public Microsoft.FSharp.Core.FSharpChoice DeepCopy... method FSharpChoiceCopier (line 96) | public FSharpChoiceCopier(Cloning.IDeepCopier copier1, Cloning.IDe... method DeepCopy (line 98) | public Microsoft.FSharp.Core.FSharpChoice Deep... class FSharpListCodec (line 101) | [RegisterSerializer] method FSharpListCodec (line 104) | public FSharpListCodec(Serializers.IValueSerializer ConvertFrom... method ConvertToSurrogate (line 108) | public override void ConvertToSurrogate(Microsoft.FSharp.Collections.F... class FSharpListCopier (line 111) | [RegisterCopier] method FSharpListCopier (line 114) | public FSharpListCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 116) | public Microsoft.FSharp.Collections.FSharpList DeepCopy(Microsoft.F... type FSharpListSurrogate (line 119) | [GenerateSerializer] class FSharpMapCodec (line 129) | [RegisterSerializer] method FSharpMapCodec (line 132) | public FSharpMapCodec(Serializers.IValueSerializer C... method ConvertToSurrogate (line 136) | public override void ConvertToSurrogate(Microsoft.FSharp.Collections.F... class FSharpMapCopier (line 139) | [RegisterCopier] method FSharpMapCopier (line 142) | public FSharpMapCopier(Cloning.IDeepCopier keyCopier, Cloning.ID... method DeepCopy (line 144) | public Microsoft.FSharp.Collections.FSharpMap DeepCopy(M... type FSharpMapSurrogate (line 147) | [GenerateSerializer] class FSharpOptionCodec (line 157) | [RegisterSerializer] method FSharpOptionCodec (line 160) | public FSharpOptionCodec(Codecs.IFieldCodec fieldCodec) { } method ReadValue (line 162) | public Microsoft.FSharp.Core.FSharpOption ReadValue(ref Buf... method WriteField (line 164) | public void WriteField(ref Buffers.Writer valueCopier) { } method DeepCopy (line 173) | public Microsoft.FSharp.Core.FSharpOption DeepCopy(Microsoft.FSharp... class FSharpRefCodec (line 176) | [RegisterSerializer] method FSharpRefCodec (line 179) | public FSharpRefCodec(Serializers.IValueSerializer ConvertFromSurrogat... method ConvertToSurrogate (line 183) | public override void ConvertToSurrogate(Microsoft.FSharp.Core.FSharpRe... class FSharpRefCopier (line 186) | [RegisterCopier] method FSharpRefCopier (line 189) | public FSharpRefCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 191) | public Microsoft.FSharp.Core.FSharpRef DeepCopy(Microsoft.FSharp.Co... type FSharpRefSurrogate (line 194) | [GenerateSerializer] class FSharpResultCodec (line 202) | [RegisterSerializer] method FSharpResultCodec (line 205) | public FSharpResultCodec(Codecs.IFieldCodec item1Codec, Codecs.IFie... method ReadValue (line 207) | Microsoft.FSharp.Core.FSharpResult Codecs.IFieldCodec>... class FSharpResultCopier (line 212) | [RegisterCopier] method FSharpResultCopier (line 215) | public FSharpResultCopier(Cloning.IDeepCopier copier1, Cloning.IDee... method DeepCopy (line 217) | public Microsoft.FSharp.Core.FSharpResult DeepCopy(Microsof... class FSharpSetCodec (line 220) | [RegisterSerializer] method FSharpSetCodec (line 223) | public FSharpSetCodec(Serializers.IValueSerializer ConvertFromS... method ConvertToSurrogate (line 227) | public override void ConvertToSurrogate(Microsoft.FSharp.Collections.F... class FSharpSetCopier (line 230) | [RegisterCopier] method FSharpSetCopier (line 233) | public FSharpSetCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 235) | public Microsoft.FSharp.Collections.FSharpSet DeepCopy(Microsoft.FS... type FSharpSetSurrogate (line 238) | [GenerateSerializer] class FSharpUnitCodec (line 248) | [RegisterSerializer] method ReadValue (line 251) | public Microsoft.FSharp.Core.Unit ReadValue(ref Buffers.Reader... method WriteField (line 253) | public void WriteField(ref Buffers.Writer item1Codec) { } method ReadValue (line 267) | Microsoft.FSharp.Core.FSharpValueOption Codecs.IFieldCodec>.Wr... class FSharpValueOptionCopier (line 272) | [RegisterCopier] method FSharpValueOptionCopier (line 275) | public FSharpValueOptionCopier(Cloning.IDeepCopier valueCopier) { } method DeepCopy (line 277) | public Microsoft.FSharp.Core.FSharpValueOption DeepCopy(Microsoft.F... class Codec_FSharpListSurrogate (line 283) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FSharpListSurrogate (line 288) | public Codec_FSharpListSurrogate(global::Orleans.Serialization.Seriali... method Deserialize (line 290) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 292) | public global::Orleans.Serialization.FSharpListSurrogate ReadValue<... method Serialize (line 294) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 297) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FSharpMapSurrogate (line 301) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FSharpMapSurrogate (line 306) | public Codec_FSharpMapSurrogate(global::Orleans.Serialization.Serializ... method Deserialize (line 308) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 310) | public global::Orleans.Serialization.FSharpMapSurrogate ... method Serialize (line 312) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 315) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FSharpRefSurrogate (line 319) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FSharpRefSurrogate (line 324) | public Codec_FSharpRefSurrogate(global::Orleans.Serialization.Serializ... method Deserialize (line 326) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 328) | public global::Orleans.Serialization.FSharpRefSurrogate ReadValue(ref global::Orleans.Serialization... method WriteField (line 333) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FSharpSetSurrogate (line 337) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FSharpSetSurrogate (line 342) | public Codec_FSharpSetSurrogate(global::Orleans.Serialization.Serializ... method Deserialize (line 344) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 346) | public global::Orleans.Serialization.FSharpSetSurrogate ReadValue(ref global::Orleans.Serialization... method WriteField (line 351) | public void WriteField(ref global::Orleans.Serializatio... class Copier_FSharpListSurrogate (line 355) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FSharpListSurrogate (line 360) | public Copier_FSharpListSurrogate(global::Orleans.Serialization.Serial... method DeepCopy (line 362) | public global::Orleans.Serialization.FSharpListSurrogate DeepCopy(g... class Copier_FSharpMapSurrogate (line 365) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FSharpMapSurrogate (line 370) | public Copier_FSharpMapSurrogate(global::Orleans.Serialization.Seriali... method DeepCopy (line 372) | public global::Orleans.Serialization.FSharpMapSurrogate ... class Copier_FSharpRefSurrogate (line 375) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FSharpRefSurrogate (line 380) | public Copier_FSharpRefSurrogate(global::Orleans.Serialization.Seriali... method DeepCopy (line 382) | public global::Orleans.Serialization.FSharpRefSurrogate DeepCopy(gl... class Copier_FSharpSetSurrogate (line 385) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FSharpSetSurrogate (line 390) | public Copier_FSharpSetSurrogate(global::Orleans.Serialization.Seriali... method DeepCopy (line 392) | public global::Orleans.Serialization.FSharpSetSurrogate DeepCopy(gl... FILE: src/api/Orleans.Serialization.MemoryPack/Orleans.Serialization.MemoryPack.cs class MemoryPackCodec (line 11) | [Alias("memorypack")] method MemoryPackCodec (line 15) | public MemoryPackCodec(System.Collections.Generic.IEnumerable(ref Buffers.Reader... method WriteField (line 23) | void Codecs.IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader... method WriteField (line 23) | void Codecs.IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader... method WriteField (line 23) | void Codecs.IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader... method WriteField (line 23) | void Codecs.IFieldCodec.WriteField(ref Buffers.Writer(T original) { throw null; } method RoundTripThroughUntypedSerializer (line 142) | protected object RoundTripThroughUntypedSerializer(object original, ou... method Dispose (line 144) | void System.IDisposable.Dispose() { } method WritersProduceSameResults (line 146) | [Xunit.Fact] type IOutputBuffer (line 150) | public partial interface IOutputBuffer method GetReadOnlySequence (line 152) | System.Buffers.ReadOnlySequence GetReadOnlySequence(int maxSegme... class ReadOnlySequenceHelper (line 155) | [System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] method Batch (line 158) | public static System.Collections.Generic.IEnumerable Batch(thi... method CreateReadOnlySequence (line 160) | public static System.Buffers.ReadOnlySequence CreateReadOnlySequ... method ToReadOnlySequence (line 162) | public static System.Buffers.ReadOnlySequence ToReadOnlySequence... method ToReadOnlySequence (line 164) | public static System.Buffers.ReadOnlySequence ToReadOnlySequence... type TestBufferWriterStruct (line 167) | [System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] method TestBufferWriterStruct (line 172) | public TestBufferWriterStruct(byte[] buffer) { } method Advance (line 174) | public void Advance(int bytes) { } method GetMemory (line 176) | public readonly System.Memory GetMemory(int sizeHint = 0) { thro... method GetReadOnlySequence (line 178) | public readonly System.Buffers.ReadOnlySequence GetReadOnlySeque... method GetSpan (line 180) | public readonly System.Span GetSpan(int sizeHint) { throw null; } class TestMultiSegmentBufferWriter (line 183) | [System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] method TestMultiSegmentBufferWriter (line 186) | public TestMultiSegmentBufferWriter(int maxAllocationSize) { } method Advance (line 188) | public void Advance(int bytes) { } method GetMemory (line 190) | public System.Memory GetMemory(int sizeHint = 0) { throw null; } method GetReadOnlySequence (line 192) | public System.Buffers.ReadOnlySequence GetReadOnlySequence(int m... method GetSpan (line 194) | public System.Span GetSpan(int sizeHint) { throw null; } method PeekAllBuffers (line 196) | public System.Buffers.ReadOnlySequence PeekAllBuffers() { throw ... class ValueTypeFieldCodecTester (line 199) | public abstract partial class ValueTypeFieldCodecTester ... method ValueTypeFieldCodecTester (line 201) | protected ValueTypeFieldCodecTester(Xunit.Abstractions.ITestOutputHelp... method DirectAccessValueSerializerRoundTrip (line 203) | [Xunit.Fact] method ValueSerializerRoundTrip (line 206) | [Xunit.Fact] FILE: src/api/Orleans.Serialization/Orleans.Serialization.cs class CodecNotFoundException (line 11) | [GenerateSerializer] method CodecNotFoundException (line 14) | public CodecNotFoundException(string message) { } class DeepCopier (line 17) | public sealed partial class DeepCopier method DeepCopier (line 19) | public DeepCopier(Serializers.CodecProvider codecProvider, Cloning.Cop... method Copy (line 21) | public T Copy(T value) { throw null; } method GetCopier (line 23) | public DeepCopier GetCopier() { throw null; } method DeepCopier (line 28) | public DeepCopier(Cloning.IDeepCopier copier, Cloning.CopyContextPo... method Copy (line 30) | public T Copy(T value) { throw null; } class DeepCopier (line 26) | public sealed partial class DeepCopier method DeepCopier (line 19) | public DeepCopier(Serializers.CodecProvider codecProvider, Cloning.Cop... method Copy (line 21) | public T Copy(T value) { throw null; } method GetCopier (line 23) | public DeepCopier GetCopier() { throw null; } method DeepCopier (line 28) | public DeepCopier(Cloning.IDeepCopier copier, Cloning.CopyContextPo... method Copy (line 30) | public T Copy(T value) { throw null; } class DotNetSerializableCodec (line 33) | [Alias("ISerializable")] method DotNetSerializableCodec (line 37) | public DotNetSerializableCodec(TypeSystem.TypeConverter typeResolver) { } method IsSupportedType (line 39) | [System.Security.SecurityCritical] method ReadValue (line 42) | [System.Security.SecurityCritical] method WriteField (line 45) | [System.Security.SecurityCritical] class ExceptionCodec (line 50) | [RegisterSerializer] method ExceptionCodec (line 55) | public ExceptionCodec(TypeSystem.TypeConverter typeConverter, Codecs.I... method DeepCopy (line 57) | public void DeepCopy(System.Exception input, System.Exception output, ... method Deserialize (line 59) | public void Deserialize(ref Buffers.Reader reader, Sys... method Deserialize (line 61) | public void Deserialize(ref Buffers.Reader reader, obj... method DeserializeException (line 63) | public System.Exception DeserializeException(ref Buffers.Reade... method GetDataProperty (line 65) | public System.Collections.Generic.Dictionary GetDataPr... method GetObjectData (line 67) | public System.Runtime.Serialization.SerializationInfo GetObjectData(Sy... method IsSupportedType (line 69) | public bool IsSupportedType(System.Type type) { throw null; } method ReadValue (line 71) | object Codecs.IFieldCodec.ReadValue(ref Buffers.Reader... method ReadValue (line 73) | public System.Exception ReadValue(ref Buffers.Reader r... method Serialize (line 75) | public void Serialize(ref Buffers.Writer... method Serialize (line 78) | public void Serialize(ref Buffers.Writer... method SerializeException (line 81) | public void SerializeException(ref Buffers.Writer(ref Buffers.Writer(ref Buffers.Writer source, Session.Se... method Deserialize (line 162) | public object Deserialize(System.ArraySegment source, System.Typ... method Deserialize (line 164) | public object Deserialize(System.Buffers.ReadOnlySequence source... method Deserialize (line 166) | public object Deserialize(System.Buffers.ReadOnlySequence source... method Deserialize (line 168) | public object Deserialize(byte[] source, Session.SerializerSession ses... method Deserialize (line 170) | public object Deserialize(byte[] source, System.Type type) { throw nul... method Deserialize (line 172) | public object Deserialize(System.IO.Stream source, Session.SerializerS... method Deserialize (line 174) | public object Deserialize(System.IO.Stream source, System.Type type) {... method Deserialize (line 176) | public object Deserialize(System.ReadOnlyMemory source, Session.... method Deserialize (line 178) | public object Deserialize(System.ReadOnlyMemory source, System.T... method Deserialize (line 180) | public object Deserialize(System.ReadOnlySpan source, Session.Se... method Deserialize (line 182) | public object Deserialize(System.ReadOnlySpan source, System.Typ... method Deserialize (line 184) | public object Deserialize(ref Buffers.Reader source, S... method Serialize (line 186) | public int Serialize(object value, System.ArraySegment destinati... method Serialize (line 188) | public int Serialize(object value, System.ArraySegment destinati... method Serialize (line 190) | public int Serialize(object value, byte[] destination, Session.Seriali... method Serialize (line 192) | public int Serialize(object value, byte[] destination, System.Type typ... method Serialize (line 194) | public void Serialize(object value, System.IO.Stream destination, Sess... method Serialize (line 196) | public void Serialize(object value, System.IO.Stream destination, Syst... method Serialize (line 198) | public void Serialize(object value, ref System.Memory destinatio... method Serialize (line 200) | public void Serialize(object value, ref System.Memory destinatio... method Serialize (line 202) | public void Serialize(object value, ref System.Span destination,... method Serialize (line 204) | public void Serialize(object value, ref System.Span destination,... method Serialize (line 206) | public void Serialize(object value, TBufferWriter desti... method Serialize (line 209) | public void Serialize(object value, TBufferWriter desti... method Serialize (line 212) | public void Serialize(object value, ref Buffers.Writer<... class ReferenceFieldNotSupportedException (line 216) | [GenerateSerializer] method ReferenceFieldNotSupportedException (line 219) | public ReferenceFieldNotSupportedException(System.Type targetType) { } method GetObjectData (line 224) | [System.Obsolete] class ReferenceNotFoundException (line 228) | [GenerateSerializer] method ReferenceNotFoundException (line 231) | public ReferenceNotFoundException(System.Type targetType, uint targetI... method GetObjectData (line 239) | [System.Obsolete] class RequiredFieldMissingException (line 243) | [GenerateSerializer] method RequiredFieldMissingException (line 246) | public RequiredFieldMissingException(string message) { } class SchemaTypeInvalidException (line 249) | [GenerateSerializer] class SerializationConstructorNotFoundException (line 254) | public partial class SerializationConstructorNotFoundException : System.... method SerializationConstructorNotFoundException (line 256) | [System.Security.SecurityCritical] method SerializationConstructorNotFoundException (line 260) | [System.Security.SecurityCritical] class Serializer (line 264) | public sealed partial class Serializer method Serializer (line 266) | public Serializer(Session.SerializerSessionPool sessionPool) { } method CanSerialize (line 270) | public bool CanSerialize(System.Type type) { throw null; } method CanSerialize (line 272) | public bool CanSerialize() { throw null; } method Deserialize (line 274) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source, Sessi... method Deserialize (line 276) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source) { thr... method Deserialize (line 278) | public T Deserialize(System.ArraySegment source, Session.Seri... method Deserialize (line 280) | public T Deserialize(System.ArraySegment source) { throw null; } method Deserialize (line 282) | public T Deserialize(System.Buffers.ReadOnlySequence source, ... method Deserialize (line 284) | public T Deserialize(System.Buffers.ReadOnlySequence source) ... method Deserialize (line 286) | public T Deserialize(byte[] source, Session.SerializerSession sessi... method Deserialize (line 288) | public T Deserialize(byte[] source) { throw null; } method Deserialize (line 290) | public T Deserialize(System.IO.Stream source, Session.SerializerSes... method Deserialize (line 292) | public T Deserialize(System.IO.Stream source) { throw null; } method Deserialize (line 294) | public T Deserialize(System.ReadOnlyMemory source, Session.Se... method Deserialize (line 296) | public T Deserialize(System.ReadOnlyMemory source) { throw nu... method Deserialize (line 298) | public T Deserialize(System.ReadOnlySpan source, Session.Seri... method Deserialize (line 300) | public T Deserialize(System.ReadOnlySpan source) { throw null; } method Deserialize (line 302) | public T Deserialize(ref Buffers.Reader source) { t... method GetSerializer (line 304) | public Serializer GetSerializer() { throw null; } method Serialize (line 306) | public int Serialize(T value, System.ArraySegment destination... method Serialize (line 308) | public int Serialize(T value, System.ArraySegment destination... method Serialize (line 310) | public int Serialize(T value, byte[] destination, Session.Serialize... method Serialize (line 312) | public int Serialize(T value, byte[] destination) { throw null; } method Serialize (line 314) | public void Serialize(T value, System.IO.Stream destination, Sessio... method Serialize (line 316) | public void Serialize(T value, System.IO.Stream destination, int si... method Serialize (line 318) | public void Serialize(T value, ref System.Memory destination,... method Serialize (line 320) | public void Serialize(T value, ref System.Memory destination)... method Serialize (line 322) | public void Serialize(T value, ref System.Span destination, S... method Serialize (line 324) | public void Serialize(T value, ref System.Span destination) { } method Serialize (line 326) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 329) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 332) | public void Serialize(T value, ref Buffers.Writer(T value) { throw null; } method Serializer (line 378) | public Serializer(Codecs.IFieldCodec codec, Session.SerializerSessi... method Serializer (line 380) | public Serializer(Session.SerializerSessionPool sessionPool) { } method Deserialize (line 382) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source, Session.... method Deserialize (line 384) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source) { throw ... method Deserialize (line 386) | public T Deserialize(System.ArraySegment source, Session.Seriali... method Deserialize (line 388) | public T Deserialize(System.ArraySegment source) { throw null; } method Deserialize (line 390) | public T Deserialize(System.Buffers.ReadOnlySequence source, Ses... method Deserialize (line 392) | public T Deserialize(System.Buffers.ReadOnlySequence source) { t... method Deserialize (line 394) | public T Deserialize(byte[] source, Session.SerializerSession session)... method Deserialize (line 396) | public T Deserialize(byte[] source) { throw null; } method Deserialize (line 398) | public T Deserialize(System.IO.Stream source, Session.SerializerSessio... method Deserialize (line 400) | public T Deserialize(System.IO.Stream source) { throw null; } method Deserialize (line 402) | public T Deserialize(System.ReadOnlyMemory source, Session.Seria... method Deserialize (line 404) | public T Deserialize(System.ReadOnlyMemory source) { throw null; } method Deserialize (line 406) | public T Deserialize(System.ReadOnlySpan source, Session.Seriali... method Deserialize (line 408) | public T Deserialize(System.ReadOnlySpan source) { throw null; } method Deserialize (line 410) | public T Deserialize(ref Buffers.Reader source) { thro... method Serialize (line 412) | public int Serialize(T value, byte[] destination, Session.SerializerSe... method Serialize (line 414) | public int Serialize(T value, byte[] destination) { throw null; } method Serialize (line 416) | public void Serialize(T value, System.IO.Stream destination, Session.S... method Serialize (line 418) | public void Serialize(T value, System.IO.Stream destination, int sizeH... method Serialize (line 420) | public void Serialize(T value, ref System.Memory destination, Se... method Serialize (line 422) | public void Serialize(T value, ref System.Memory destination) { } method Serialize (line 424) | public void Serialize(T value, ref System.Span destination, Sess... method Serialize (line 426) | public void Serialize(T value, ref System.Span destination) { } method Serialize (line 428) | public void Serialize(T value, TBufferWriter destinatio... method Serialize (line 431) | public void Serialize(T value, TBufferWriter destination) method Serialize (line 434) | public void Serialize(T value, ref Buffers.Writer method Serializer (line 266) | public Serializer(Session.SerializerSessionPool sessionPool) { } method CanSerialize (line 270) | public bool CanSerialize(System.Type type) { throw null; } method CanSerialize (line 272) | public bool CanSerialize() { throw null; } method Deserialize (line 274) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source, Sessi... method Deserialize (line 276) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source) { thr... method Deserialize (line 278) | public T Deserialize(System.ArraySegment source, Session.Seri... method Deserialize (line 280) | public T Deserialize(System.ArraySegment source) { throw null; } method Deserialize (line 282) | public T Deserialize(System.Buffers.ReadOnlySequence source, ... method Deserialize (line 284) | public T Deserialize(System.Buffers.ReadOnlySequence source) ... method Deserialize (line 286) | public T Deserialize(byte[] source, Session.SerializerSession sessi... method Deserialize (line 288) | public T Deserialize(byte[] source) { throw null; } method Deserialize (line 290) | public T Deserialize(System.IO.Stream source, Session.SerializerSes... method Deserialize (line 292) | public T Deserialize(System.IO.Stream source) { throw null; } method Deserialize (line 294) | public T Deserialize(System.ReadOnlyMemory source, Session.Se... method Deserialize (line 296) | public T Deserialize(System.ReadOnlyMemory source) { throw nu... method Deserialize (line 298) | public T Deserialize(System.ReadOnlySpan source, Session.Seri... method Deserialize (line 300) | public T Deserialize(System.ReadOnlySpan source) { throw null; } method Deserialize (line 302) | public T Deserialize(ref Buffers.Reader source) { t... method GetSerializer (line 304) | public Serializer GetSerializer() { throw null; } method Serialize (line 306) | public int Serialize(T value, System.ArraySegment destination... method Serialize (line 308) | public int Serialize(T value, System.ArraySegment destination... method Serialize (line 310) | public int Serialize(T value, byte[] destination, Session.Serialize... method Serialize (line 312) | public int Serialize(T value, byte[] destination) { throw null; } method Serialize (line 314) | public void Serialize(T value, System.IO.Stream destination, Sessio... method Serialize (line 316) | public void Serialize(T value, System.IO.Stream destination, int si... method Serialize (line 318) | public void Serialize(T value, ref System.Memory destination,... method Serialize (line 320) | public void Serialize(T value, ref System.Memory destination)... method Serialize (line 322) | public void Serialize(T value, ref System.Span destination, S... method Serialize (line 324) | public void Serialize(T value, ref System.Span destination) { } method Serialize (line 326) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 329) | public void Serialize(T value, TBufferWriter destina... method Serialize (line 332) | public void Serialize(T value, ref Buffers.Writer(T value) { throw null; } method Serializer (line 378) | public Serializer(Codecs.IFieldCodec codec, Session.SerializerSessi... method Serializer (line 380) | public Serializer(Session.SerializerSessionPool sessionPool) { } method Deserialize (line 382) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source, Session.... method Deserialize (line 384) | public T Deserialize(Buffers.PooledBuffer.BufferSlice source) { throw ... method Deserialize (line 386) | public T Deserialize(System.ArraySegment source, Session.Seriali... method Deserialize (line 388) | public T Deserialize(System.ArraySegment source) { throw null; } method Deserialize (line 390) | public T Deserialize(System.Buffers.ReadOnlySequence source, Ses... method Deserialize (line 392) | public T Deserialize(System.Buffers.ReadOnlySequence source) { t... method Deserialize (line 394) | public T Deserialize(byte[] source, Session.SerializerSession session)... method Deserialize (line 396) | public T Deserialize(byte[] source) { throw null; } method Deserialize (line 398) | public T Deserialize(System.IO.Stream source, Session.SerializerSessio... method Deserialize (line 400) | public T Deserialize(System.IO.Stream source) { throw null; } method Deserialize (line 402) | public T Deserialize(System.ReadOnlyMemory source, Session.Seria... method Deserialize (line 404) | public T Deserialize(System.ReadOnlyMemory source) { throw null; } method Deserialize (line 406) | public T Deserialize(System.ReadOnlySpan source, Session.Seriali... method Deserialize (line 408) | public T Deserialize(System.ReadOnlySpan source) { throw null; } method Deserialize (line 410) | public T Deserialize(ref Buffers.Reader source) { thro... method Serialize (line 412) | public int Serialize(T value, byte[] destination, Session.SerializerSe... method Serialize (line 414) | public int Serialize(T value, byte[] destination) { throw null; } method Serialize (line 416) | public void Serialize(T value, System.IO.Stream destination, Session.S... method Serialize (line 418) | public void Serialize(T value, System.IO.Stream destination, int sizeH... method Serialize (line 420) | public void Serialize(T value, ref System.Memory destination, Se... method Serialize (line 422) | public void Serialize(T value, ref System.Memory destination) { } method Serialize (line 424) | public void Serialize(T value, ref System.Span destination, Sess... method Serialize (line 426) | public void Serialize(T value, ref System.Span destination) { } method Serialize (line 428) | public void Serialize(T value, TBufferWriter destinatio... method Serialize (line 431) | public void Serialize(T value, TBufferWriter destination) method Serialize (line 434) | public void Serialize(T value, ref Buffers.Writer method ValueSerializer (line 510) | public ValueSerializer(Serializers.IValueSerializerProvider codecProvi... method Deserialize (line 512) | public void Deserialize(System.ArraySegment source, scoped ref T... method Deserialize (line 514) | public void Deserialize(System.ArraySegment source, scoped ref T... method Deserialize (line 516) | public void Deserialize(System.Buffers.ReadOnlySequence source, ... method Deserialize (line 518) | public void Deserialize(System.Buffers.ReadOnlySequence source, ... method Deserialize (line 520) | public void Deserialize(byte[] source, scoped ref T result, Session.Se... method Deserialize (line 522) | public void Deserialize(byte[] source, scoped ref T result) { } method Deserialize (line 524) | public void Deserialize(System.IO.Stream source, scoped ref T result, ... method Deserialize (line 526) | public void Deserialize(System.IO.Stream source, scoped ref T result) { } method Deserialize (line 528) | public void Deserialize(System.ReadOnlyMemory source, scoped ref... method Deserialize (line 530) | public void Deserialize(System.ReadOnlyMemory source, scoped ref... method Deserialize (line 532) | public void Deserialize(System.ReadOnlySpan source, scoped ref T... method Deserialize (line 534) | public void Deserialize(System.ReadOnlySpan source, scoped ref T... method Deserialize (line 536) | public void Deserialize(ref Buffers.Reader source, sco... method Serialize (line 538) | public void Serialize(scoped ref T value, System.ArraySegment de... method Serialize (line 540) | public int Serialize(scoped ref T value, byte[] destination, Session.S... method Serialize (line 542) | public int Serialize(scoped ref T value, byte[] destination) { throw n... method Serialize (line 544) | public void Serialize(scoped ref T value, System.IO.Stream destination... method Serialize (line 546) | public void Serialize(scoped ref T value, System.IO.Stream destination... method Serialize (line 548) | public void Serialize(scoped ref T value, ref System.Memory dest... method Serialize (line 550) | public void Serialize(scoped ref T value, ref System.Memory dest... method Serialize (line 552) | public void Serialize(scoped ref T value, ref System.Span destin... method Serialize (line 554) | public void Serialize(scoped ref T value, ref System.Span destin... method Serialize (line 556) | public void Serialize(scoped ref T value, TBufferWriter... method Serialize (line 559) | public void Serialize(scoped ref T value, TBufferWriter... method Serialize (line 562) | public void Serialize(scoped ref T value, ref Buffers.W... method SerializeToArray (line 565) | public byte[] SerializeToArray(scoped ref T value) { throw null; } method ValueSerializer (line 3700) | public ValueSerializer(TValueSerializer serializer) { } method ReadValue (line 3702) | public TField ReadValue(ref Buffers.Reader reader, Wir... method WriteField (line 3704) | public void WriteField(ref Buffers.Writer method Create (line 573) | T Create(); type ArcBuffer (line 579) | public partial struct ArcBuffer : System.IDisposable method ArcBuffer (line 585) | public ArcBuffer(ArcBufferPage first, int token, int offset, int lengt... method AsReadOnlySequence (line 593) | public readonly System.Buffers.ReadOnlySequence AsReadOnlySequen... method CopyTo (line 595) | public readonly void CopyTo(ArcBufferWriter output) { } method CopyTo (line 597) | public readonly int CopyTo(System.Span output) { throw null; } method CopyTo (line 599) | public readonly void CopyTo(ref TBufferWriter output) method Dispose (line 602) | public void Dispose() { } method GetEnumerator (line 604) | public readonly SpanEnumerator GetEnumerator() { throw null; } method Pin (line 606) | public readonly void Pin() { } method Slice (line 608) | public readonly ArcBuffer Slice(int offset, int length) { throw null; } method Slice (line 610) | public readonly ArcBuffer Slice(int offset) { throw null; } method ToArray (line 612) | public readonly byte[] ToArray() { throw null; } method Unpin (line 614) | public void Unpin() { } method UnsafeSlice (line 616) | public readonly ArcBuffer UnsafeSlice(int offset, int length) { throw ... type ArraySegmentEnumerator (line 618) | public partial struct ArraySegmentEnumerator : System.Collections.Gene... method ArraySegmentEnumerator (line 620) | public ArraySegmentEnumerator(ArcBuffer slice) { } method GetEnumerator (line 628) | public readonly ArraySegmentEnumerator GetEnumerator() { throw null; } method MoveNext (line 630) | public bool MoveNext() { throw null; } method GetEnumerator (line 632) | readonly System.Collections.Generic.IEnumerator AsArraySegment(int offset, int length... method AsMemory (line 724) | public System.Memory AsMemory(int offset, int length) { throw nu... method AsMemory (line 726) | public System.Memory AsMemory(int offset) { throw null; } method AsSpan (line 728) | public System.Span AsSpan(int offset, int length) { throw null; } method AsSpan (line 730) | public System.Span AsSpan(int offset) { throw null; } method CheckValidity (line 732) | public void CheckValidity(int token) { } method Pin (line 734) | public void Pin(int token) { } method ResizeLargeSegment (line 736) | public void ResizeLargeSegment(int length) { } method SetNext (line 738) | public void SetNext(ArcBufferPage next, int token) { } method Unpin (line 740) | public void Unpin(int token) { } type ArcBufferReader (line 743) | public readonly partial struct ArcBufferReader method ArcBufferReader (line 747) | public ArcBufferReader(ArcBufferWriter writer) { } method Consume (line 751) | public readonly void Consume(System.Span output) { } method ConsumeSlice (line 753) | public readonly ArcBuffer ConsumeSlice(int count) { throw null; } method Peek (line 755) | public readonly System.ReadOnlySpan Peek(scoped in System.Span GetMemory(int sizeHint = 0) { throw null; } method GetSpan (line 778) | public System.Span GetSpan(int sizeHint = 0) { throw null; } method Peek (line 780) | public int Peek(System.Span output) { throw null; } method Peek (line 782) | public System.ReadOnlySpan Peek(scoped in System.Span dest... method PeekSlice (line 784) | public ArcBuffer PeekSlice(int count) { throw null; } method ReplenishBuffers (line 786) | public void ReplenishBuffers(System.Collections.Generic.List.Advance(int count) { } method Write (line 792) | public void Write(System.Buffers.ReadOnlySequence input) { } method Write (line 794) | public void Write(System.ReadOnlySpan value) { } class BufferWriterExtensions (line 797) | public static partial class BufferWriterExtensions method CreateWriter (line 799) | public static Writer CreateWriter(this T... type PooledBuffer (line 803) | [Immutable] method Advance (line 812) | public void Advance(int bytes) { } method AsReadOnlySequence (line 814) | public System.Buffers.ReadOnlySequence AsReadOnlySequence() { th... method CopyTo (line 816) | public readonly void CopyTo(System.Span output) { } method CopyTo (line 818) | public readonly void CopyTo(ref TBufferWriter writer) method CopyTo (line 821) | public readonly void CopyTo(ref Writer w... method Dispose (line 824) | public void Dispose() { } method GetMemory (line 826) | public System.Memory GetMemory(int sizeHint = 0) { throw null; } method GetSpan (line 828) | public System.Span GetSpan(int sizeHint = 0) { throw null; } method Reset (line 830) | public void Reset() { } method Slice (line 832) | public readonly BufferSlice Slice() { throw null; } method Slice (line 834) | public readonly BufferSlice Slice(int offset, int length) { throw null; } method Slice (line 836) | public readonly BufferSlice Slice(int offset) { throw null; } method ToArray (line 838) | public readonly byte[] ToArray() { throw null; } method Write (line 840) | public void Write(System.Buffers.ReadOnlySequence input) { } method Write (line 842) | public void Write(System.ReadOnlySpan value) { } type BufferSlice (line 844) | public readonly partial struct BufferSlice method BufferSlice (line 848) | public BufferSlice(in PooledBuffer buffer, int offset, int length) { } method CopyTo (line 858) | public readonly void CopyTo(ref PooledBuffer output) { } method CopyTo (line 860) | public readonly int CopyTo(System.Span output) { throw null; } method CopyTo (line 862) | public readonly void CopyTo(ref TBufferWriter output) method GetEnumerator (line 865) | public readonly SpanEnumerator GetEnumerator() { throw null; } method Slice (line 867) | public readonly BufferSlice Slice(int offset, int length) { throw nu... method Slice (line 869) | public readonly BufferSlice Slice(int offset) { throw null; } method ToArray (line 871) | public readonly byte[] ToArray() { throw null; } type MemoryEnumerator (line 873) | public partial struct MemoryEnumerator method MemoryEnumerator (line 877) | public MemoryEnumerator(BufferSlice slice) { } method GetEnumerator (line 881) | public readonly MemoryEnumerator GetEnumerator() { throw null; } method MoveNext (line 883) | public bool MoveNext() { throw null; } method struct (line 886) | public ref partial struct SpanEnumerator method GetEnumerator (line 894) | public readonly SpanEnumerator GetEnumerator() { throw null; } method MoveNext (line 896) | public bool MoveNext() { throw null; } type MemoryEnumerator (line 900) | public partial struct MemoryEnumerator method MemoryEnumerator (line 905) | public MemoryEnumerator(PooledBuffer buffer) { } method GetEnumerator (line 909) | public readonly MemoryEnumerator GetEnumerator() { throw null; } method MoveNext (line 911) | public bool MoveNext() { throw null; } class PooledBufferExtensions (line 928) | public static partial class PooledBufferExtensions method GetEnumerator (line 930) | public static PooledBuffer.SpanEnumerator GetEnumerator(this ref Poole... class Reader (line 933) | public static partial class Reader method Create (line 935) | public static Reader Create(PooledBuf... method Create (line 937) | public static Reader Create(PooledBuf... method Create (line 939) | public static Reader Create(System.Buffers.Read... method Create (line 941) | public static Reader Create(byte[] buffer, Session.Se... method Create (line 943) | public static Reader Create(System.IO.Stream stream, Sess... method Create (line 945) | public static Reader Create(System.ReadOnlyMemory Create(System.ReadOnlySpan... class ReaderInput (line 950) | public abstract partial class ReaderInput method ReadByte (line 955) | public abstract byte ReadByte(); method ReadBytes (line 956) | public abstract void ReadBytes(byte[] destination, int offset, int len... method ReadBytes (line 957) | public abstract void ReadBytes(System.Span destination); method ReadUInt32 (line 958) | public abstract uint ReadUInt32(); method ReadUInt64 (line 959) | public abstract ulong ReadUInt64(); method Seek (line 960) | public abstract void Seek(long position); method Skip (line 961) | public abstract void Skip(long count); method TryReadBytes (line 962) | public abstract bool TryReadBytes(int length, out System.ReadOnlySpan<... type ReadOnlySequenceInput (line 1006) | public partial struct ReadOnlySequenceInput type SpanReaderInput (line 1011) | public readonly partial struct SpanReaderInput class VarIntReaderExtensions (line 1015) | public static partial class VarIntReaderExtensions method ReadInt16 (line 1017) | public static short ReadInt16(this ref Reader reader, ... method ReadInt32 (line 1019) | public static int ReadInt32(this ref Reader reader, Wi... method ReadInt64 (line 1021) | public static long ReadInt64(this ref Reader reader, W... method ReadInt8 (line 1023) | public static sbyte ReadInt8(this ref Reader reader, W... method ReadUInt16 (line 1025) | public static ushort ReadUInt16(this ref Reader reader... method ReadUInt32 (line 1027) | public static uint ReadUInt32(this ref Reader reader, ... method ReadUInt64 (line 1029) | public static ulong ReadUInt64(this ref Reader reader,... method ReadUInt8 (line 1031) | public static byte ReadUInt8(this ref Reader reader, W... method ReadVarInt16 (line 1033) | public static short ReadVarInt16(this ref Reader reade... method ReadVarInt32 (line 1035) | public static int ReadVarInt32(this ref Reader reader)... method ReadVarInt64 (line 1037) | public static long ReadVarInt64(this ref Reader reader... method ReadVarInt8 (line 1039) | public static sbyte ReadVarInt8(this ref Reader reader... method ReadVarUInt16 (line 1041) | public static ushort ReadVarUInt16(this ref Reader rea... method ReadVarUInt8 (line 1043) | public static byte ReadVarUInt8(this ref Reader reader... class Writer (line 1046) | public static partial class Writer method Create (line 1048) | public static Writer Create(byte[] output, ... method Create (line 1050) | public static Writer Create(System.... method Create (line 1052) | public static Writer Create(System.I... method Create (line 1054) | public static Writer Create(System.Memory... method Create (line 1056) | public static Writer Create(System.Span Create(TBufferWrite... method CreatePooled (line 1061) | public static Writer CreatePooled(Session.SerializerSess... method CreatePooled (line 1063) | public static Writer CreatePooled(... type ArrayStreamBufferWriter (line 1130) | public partial struct ArrayStreamBufferWriter : System.Buffers.IBufferWr... method ArrayStreamBufferWriter (line 1135) | public ArrayStreamBufferWriter(System.IO.Stream stream, int sizeHint =... method Advance (line 1137) | public void Advance(int count) { } method GetMemory (line 1139) | public System.Memory GetMemory(int sizeHint = 0) { throw null; } method GetSpan (line 1141) | public System.Span GetSpan(int sizeHint = 0) { throw null; } type BufferSliceReaderInput (line 1144) | public partial struct BufferSliceReaderInput method BufferSliceReaderInput (line 1148) | public BufferSliceReaderInput(in PooledBuffer.BufferSlice slice) { } class BufferWriterBox (line 1151) | public partial class BufferWriterBox : System.Buffers.IBu... method BufferWriterBox (line 1153) | public BufferWriterBox(TBufferWriter bufferWriter) { } method Advance (line 1157) | public void Advance(int count) { } method GetMemory (line 1159) | public System.Memory GetMemory(int sizeHint = 0) { throw null; } method GetSpan (line 1161) | public System.Span GetSpan(int sizeHint = 0) { throw null; } type MemoryBufferWriter (line 1164) | public partial struct MemoryBufferWriter : System.Buffers.IBufferWriter<... method Advance (line 1169) | public void Advance(int count) { } method GetMemory (line 1171) | public System.Memory GetMemory(int sizeHint = 0) { throw null; } method GetSpan (line 1173) | public System.Span GetSpan(int sizeHint = 0) { throw null; } type MemoryStreamBufferWriter (line 1176) | public readonly partial struct MemoryStreamBufferWriter : System.Buffers... method MemoryStreamBufferWriter (line 1180) | public MemoryStreamBufferWriter(System.IO.MemoryStream stream) { } method Advance (line 1182) | public readonly void Advance(int count) { } method GetMemory (line 1184) | public readonly System.Memory GetMemory(int sizeHint = 0) { thro... method GetSpan (line 1186) | public readonly System.Span GetSpan(int sizeHint = 0) { throw nu... class PooledBufferStream (line 1189) | public sealed partial class PooledBufferStream : System.IO.Stream method PooledBufferStream (line 1191) | public PooledBufferStream() { } method PooledBufferStream (line 1193) | public PooledBufferStream(int minAllocationSize = 0) { } method CopyTo (line 1205) | public void CopyTo(ref Writer writer) method Flush (line 1208) | public override void Flush() { } method Read (line 1210) | public override int Read(byte[] buffer, int offset, int count) { throw... method Rent (line 1212) | public static PooledBufferStream Rent() { throw null; } method RentReadOnlySequence (line 1214) | public System.Buffers.ReadOnlySequence RentReadOnlySequence() { ... method Reset (line 1216) | public void Reset() { } method Return (line 1218) | public static void Return(PooledBufferStream stream) { } method ReturnReadOnlySequence (line 1220) | public void ReturnReadOnlySequence(in System.Buffers.ReadOnlySequence<... method Seek (line 1222) | public override long Seek(long offset, System.IO.SeekOrigin origin) { ... method SetLength (line 1224) | public override void SetLength(long value) { } method ToArray (line 1226) | public byte[] ToArray() { throw null; } method Write (line 1228) | public override void Write(byte[] buffer, int offset, int count) { } type PoolingStreamBufferWriter (line 1231) | public partial struct PoolingStreamBufferWriter : System.Buffers.IBuffer... method Advance (line 1235) | public void Advance(int count) { } method Dispose (line 1237) | public readonly void Dispose() { } method GetMemory (line 1239) | public System.Memory GetMemory(int sizeHint = 0) { throw null; } method GetSpan (line 1241) | public System.Span GetSpan(int sizeHint = 0) { throw null; } type SpanBufferWriter (line 1244) | public partial struct SpanBufferWriter : System.Buffers.IBufferWriter method Advance (line 1249) | public void Advance(int count) { } method GetMemory (line 1251) | public readonly System.Memory GetMemory(int sizeHint = 0) { thro... method GetSpan (line 1253) | public readonly System.Span GetSpan(int sizeHint = 0) { throw nu... class CopyContext (line 1259) | public sealed partial class CopyContext : System.IDisposable method CopyContext (line 1261) | public CopyContext(Serializers.CodecProvider codecProvider, System.Act... method DeepCopy (line 1263) | public T? DeepCopy(T? value) { throw null; } method Dispose (line 1265) | public void Dispose() { } method RecordCopy (line 1267) | public void RecordCopy(object original, object copy) { } method Reset (line 1269) | public void Reset() { } method TryGetCopy (line 1271) | public bool TryGetCopy(object? original, out T? result) class CopyContextPool (line 1275) | public sealed partial class CopyContextPool method CopyContextPool (line 1277) | public CopyContextPool(Serializers.CodecProvider codecProvider) { } method GetContext (line 1279) | public CopyContext GetContext() { throw null; } type IBaseCopier (line 1282) | public partial interface IBaseCopier method DeepCopy (line 1288) | void DeepCopy(T input, T output, CopyContext context); type IBaseCopier (line 1286) | public partial interface IBaseCopier : IBaseCopier where T : class method DeepCopy (line 1288) | void DeepCopy(T input, T output, CopyContext context); type IDeepCopier (line 1291) | public partial interface IDeepCopier method DeepCopy (line 1293) | object? DeepCopy(object? input, CopyContext context); method DeepCopy (line 1308) | T DeepCopy(T input, CopyContext context); method DeepCopy (line 1309) | object? IDeepCopier.DeepCopy(object? input, CopyContext context); type IDeepCopierProvider (line 1296) | public partial interface IDeepCopierProvider method GetBaseCopier (line 1298) | IBaseCopier GetBaseCopier() method GetDeepCopier (line 1300) | IDeepCopier GetDeepCopier(System.Type type); method GetDeepCopier (line 1301) | IDeepCopier GetDeepCopier(); method TryGetDeepCopier (line 1302) | IDeepCopier? TryGetDeepCopier(System.Type type); method TryGetDeepCopier (line 1303) | IDeepCopier? TryGetDeepCopier(); type IDeepCopier (line 1306) | public partial interface IDeepCopier : IDeepCopier method DeepCopy (line 1293) | object? DeepCopy(object? input, CopyContext context); method DeepCopy (line 1308) | T DeepCopy(T input, CopyContext context); method DeepCopy (line 1309) | object? IDeepCopier.DeepCopy(object? input, CopyContext context); type IDerivedTypeCopier (line 1312) | public partial interface IDerivedTypeCopier : IDeepCopier type IGeneralizedCopier (line 1316) | public partial interface IGeneralizedCopier : IDeepCopier method IsSupportedType (line 1318) | bool IsSupportedType(System.Type type); type IOptionalDeepCopier (line 1321) | public partial interface IOptionalDeepCopier : IDeepCopier method IsShallowCopyable (line 1323) | bool IsShallowCopyable(); type ISpecializableCopier (line 1326) | public partial interface ISpecializableCopier method GetSpecializedCopier (line 1328) | IDeepCopier GetSpecializedCopier(System.Type type); method IsSupportedType (line 1329) | bool IsSupportedType(System.Type type); class ShallowCopier (line 1332) | public partial class ShallowCopier : IOptionalDeepCopier, IDeepCopier... method DeepCopy (line 1334) | public T DeepCopy(T input, CopyContext _) { throw null; } method DeepCopy (line 1336) | public object? DeepCopy(object? input, CopyContext _) { throw null; } method IsShallowCopyable (line 1338) | public bool IsShallowCopyable() { throw null; } class ArrayCodec (line 1344) | [RegisterSerializer] method ArrayCodec (line 1347) | public ArrayCodec(IFieldCodec fieldCodec) { } method ReadValue (line 1349) | public T[] ReadValue(ref Buffers.Reader reader, WirePr... method WriteField (line 1351) | public void WriteField(ref Buffers.Writer elementCopier) { } method DeepCopy (line 1360) | public T[] DeepCopy(T[] input, Cloning.CopyContext context) { throw nu... class ArrayListCodec (line 1363) | [RegisterSerializer] method ArrayListCodec (line 1366) | public ArrayListCodec(Serializers.IValueSerializer... method ConvertFromSurrogate (line 1368) | public override System.Collections.ArrayList ConvertFromSurrogate(ref ... method ConvertToSurrogate (line 1370) | public override void ConvertToSurrogate(System.Collections.ArrayList v... class ArrayListCopier (line 1373) | [RegisterCopier] method DeepCopy (line 1376) | public System.Collections.ArrayList DeepCopy(System.Collections.ArrayL... method DeepCopy (line 1378) | public void DeepCopy(System.Collections.ArrayList input, System.Collec... type ArrayListSurrogate (line 1381) | [GenerateSerializer] class ArraySegmentCodec (line 1388) | [RegisterSerializer] method ArraySegmentCodec (line 1391) | public ArraySegmentCodec(IFieldCodec fieldCodec) { } method ReadValue (line 1393) | public System.ArraySegment ReadValue(ref Buffers.Reader(ref Buffers.Writer elementCopier) { } method DeepCopy (line 1404) | public System.ArraySegment DeepCopy(System.ArraySegment input, C... class ArraySegmentOfByteCopier (line 1407) | [RegisterCopier] method DeepCopy (line 1410) | public static System.ArraySegment DeepCopy(System.ArraySegment Cloning.IDeepCopier.R... method WriteField (line 1420) | void IFieldCodec.WriteField(ref Buffer... class BitArrayCopier (line 1425) | [RegisterCopier] method DeepCopy (line 1428) | public static System.Collections.BitArray DeepCopy(System.Collections.... method DeepCopy (line 1430) | System.Collections.BitArray Cloning.IDeepCopier(re... method WriteField (line 1438) | public void WriteField(ref Buffers.Writer.ReadValue(ref Buffers.Reader re... method WriteField (line 1447) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader... method WriteField (line 1451) | public static void WriteField(ref Buffers.Writer.ReadValue(ref Buffers.Reader.WriteField(ref Buffers.Writer<... method ReadValue (line 1462) | public static byte[] ReadValue(ref Buffers.Reader read... method WriteField (line 1464) | public static void WriteField(ref Buffers.Writer.DeepCopy(byte[] input, Cloning.Copy... class ByteCodec (line 1476) | [RegisterSerializer] method ReadValue (line 1479) | byte IFieldCodec.ReadValue(ref Buffers.Reader re... method WriteField (line 1481) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader... method WriteField (line 1485) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buffers.Reader re... method WriteField (line 1497) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader... method WriteField (line 1501) | public static void WriteField(ref Buffers.Writer fieldCodec) { } method Deserialize (line 1510) | public void Deserialize(ref Buffers.Reader reader, Sys... method ReadValue (line 1512) | public System.Collections.ObjectModel.Collection ReadValue(... method Serialize (line 1514) | public void Serialize(ref Buffers.Writer... method WriteField (line 1517) | public void WriteField(ref Buffers.Writer valueCopier) { } method DeepCopy (line 1526) | public System.Collections.ObjectModel.Collection DeepCopy(System.Co... method DeepCopy (line 1528) | public void DeepCopy(System.Collections.ObjectModel.Collection inpu... class CommonCodecTypeFilter (line 1531) | public partial class CommonCodecTypeFilter method IsAbstractOrFrameworkType (line 1533) | public static bool IsAbstractOrFrameworkType(System.Type type) { throw... class CompareInfoCodec (line 1536) | [RegisterSerializer] method ReadValue (line 1539) | public System.Globalization.CompareInfo ReadValue(ref Buffers.... method WriteField (line 1541) | public void WriteField(ref Buffers.Writer keyCopier,... method DeepCopy (line 1560) | public System.Collections.Concurrent.ConcurrentDictionary Conve... method ConvertToSurrogate (line 1579) | public override void ConvertToSurrogate(System.Collections.Concurrent.... class ConcurrentQueueCopier (line 1582) | [RegisterCopier] method ConcurrentQueueCopier (line 1585) | public ConcurrentQueueCopier(Cloning.IDeepCopier valueCopier) { } method DeepCopy (line 1587) | public System.Collections.Concurrent.ConcurrentQueue DeepCopy(Syste... method DeepCopy (line 1589) | public void DeepCopy(System.Collections.Concurrent.ConcurrentQueue ... type ConcurrentQueueSurrogate (line 1592) | [GenerateSerializer] class ConsumeFieldExtension (line 1599) | public static partial class ConsumeFieldExtension method ConsumeUnknownField (line 1601) | public static void ConsumeUnknownField(this ref Buffers.Reader... method ConsumeUnknownField (line 1603) | public static void ConsumeUnknownField(this ref Buffers.Reader... class CultureInfoCodec (line 1606) | [RegisterSerializer] method CultureInfoCodec (line 1609) | public CultureInfoCodec(Serializers.IValueSerializer.ReadValue(ref Buf... method WriteField (line 1628) | void IFieldCodec.WriteField(ref Buffer... method ReadValue (line 1630) | public static System.DateOnly ReadValue(ref Buffers.Reader(ref Buffers.Writer.ReadValue(ref Buf... method WriteField (line 1641) | void IFieldCodec.WriteField(ref Buffer... method ReadValue (line 1643) | public static System.DateTime ReadValue(ref Buffers.Reader(ref Buffers.Writer.ReadValue.WriteField(ref ... method ReadValue (line 1656) | public static System.DateTimeOffset ReadValue(ref Buffers.Read... method WriteField (line 1658) | public static void WriteField(ref Buffers.Writer.ReadValue(ref Buffers.Reader.WriteField(ref Buffers.Writer... method ReadDecimalRaw (line 1669) | public static decimal ReadDecimalRaw(ref Buffers.Reader(ref Buffers.Reader rea... method WriteField (line 1673) | public static void WriteField(ref Buffers.Writer keyCodec, IFieldCodec keyCodec, IFieldCodec... method ReadValue (line 1692) | public System.Collections.Generic.Dictionary ReadValue(ref Buffers.Writer keyCopier, Cloning.I... method DeepCopy (line 1703) | public System.Collections.Generic.Dictionary DeepCopy(Sy... method DeepCopy (line 1705) | public void DeepCopy(System.Collections.Generic.Dictionary.ReadValue(ref Buffers.Reader.WriteField(ref Buffers.Writer<... method ReadDoubleRaw (line 1715) | public static double ReadDoubleRaw(ref Buffers.Reader ... method ReadValue (line 1717) | public static double ReadValue(ref Buffers.Reader read... method WriteField (line 1719) | public static void WriteField(ref Buffers.Writer : IFieldCodec, IFiel... method ReadValue (line 1725) | public T ReadValue(ref Buffers.Reader reader, WireProt... method WriteField (line 1727) | public void WriteField(ref Buffers.Writer(this ref Buffers.Reader(this ref Buff... method ReadFieldHeaderForAnalysis (line 1737) | public static (WireProtocol.Field Field, string Type) ReadFieldHeaderF... class FloatCodec (line 1740) | [RegisterSerializer] method ReadValue (line 1743) | float IFieldCodec.ReadValue(ref Buffers.Reader ... method WriteField (line 1745) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader re... method ReadValue (line 1749) | public static float ReadValue(ref Buffers.Reader reade... method WriteField (line 1751) | public static void WriteField(ref Buffers.Writer(ref Buffers.Reader reader, Wir... method WriteField (line 1763) | public void WriteField(ref Buffers.Writer(ref Buffers.Reader reader, Wir... method WriteField (line 1775) | public void WriteField(ref Buffers.Writer.ReadValue(ref Buffers.Rea... method WriteField (line 1784) | void IFieldCodec.WriteField(ref Buffers.Wr... method ReadRaw (line 1786) | public static System.Guid ReadRaw(ref Buffers.Reader r... method ReadValue (line 1788) | public static System.Guid ReadValue(ref Buffers.Reader... method WriteField (line 1790) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buffers.Rea... method WriteField (line 1802) | void IFieldCodec.WriteField(ref Buffers.Wr... method ReadValue (line 1804) | public static System.Half ReadValue(ref Buffers.Reader... method WriteField (line 1806) | public static void WriteField(ref Buffers.Writer fieldCodec, IFieldCodec>.Des... method ReadValue (line 1817) | public System.Collections.Generic.HashSet ReadValue(ref Buf... method Serialize (line 1819) | public void Serialize(ref Buffers.Writer... method WriteField (line 1822) | public void WriteField(ref Buffers.Writer valueCopier) { } method DeepCopy (line 1831) | public System.Collections.Generic.HashSet DeepCopy(System.Collectio... method DeepCopy (line 1833) | public void DeepCopy(System.Collections.Generic.HashSet input, Syst... type IDerivedTypeCodec (line 1836) | public partial interface IDerivedTypeCodec : IFieldCodec type IFieldCodec (line 1840) | public partial interface IFieldCodec method ReadValue (line 1842) | object ReadValue(ref Buffers.Reader reader, WireProtoc... method WriteField (line 1843) | void WriteField(ref Buffers.Writer write... method ReadValue (line 1849) | object IFieldCodec.ReadValue(ref Buffers.Reader reader... method WriteField (line 1850) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader, WireProtocol.Fi... method WriteField (line 1852) | void WriteField(ref Buffers.Writer write... type IFieldCodec (line 1847) | public partial interface IFieldCodec : IFieldCodec method ReadValue (line 1842) | object ReadValue(ref Buffers.Reader reader, WireProtoc... method WriteField (line 1843) | void WriteField(ref Buffers.Writer write... method ReadValue (line 1849) | object IFieldCodec.ReadValue(ref Buffers.Reader reader... method WriteField (line 1850) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader, WireProtocol.Fi... method WriteField (line 1852) | void WriteField(ref Buffers.Writer write... class ImmutableArrayCodec (line 1856) | [RegisterSerializer] method ImmutableArrayCodec (line 1859) | public ImmutableArrayCodec(Serializers.IValueSerializer Convert... method ConvertToSurrogate (line 1863) | public override void ConvertToSurrogate(System.Collections.Immutable.I... class ImmutableArrayCopier (line 1866) | [RegisterCopier] method ImmutableArrayCopier (line 1869) | public ImmutableArrayCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 1871) | public System.Collections.Immutable.ImmutableArray DeepCopy(System.... method IsShallowCopyable (line 1873) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 1875) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... type ImmutableArraySurrogate (line 1878) | [GenerateSerializer] class ImmutableDictionaryCodec (line 1885) | [RegisterSerializer] method ImmutableDictionaryCodec (line 1888) | public ImmutableDictionaryCodec(Serializers.IValueSerializer keyCopier, ... method DeepCopy (line 1900) | public System.Collections.Immutable.ImmutableDictionary ... method IsShallowCopyable (line 1902) | public bool IsShallowCopyable() { throw null; } type ImmutableDictionarySurrogate (line 1905) | [GenerateSerializer] class ImmutableHashSetCodec (line 1912) | [RegisterSerializer] method ImmutableHashSetCodec (line 1915) | public ImmutableHashSetCodec(Serializers.IValueSerializer Conve... method ConvertToSurrogate (line 1919) | public override void ConvertToSurrogate(System.Collections.Immutable.I... class ImmutableHashSetCopier (line 1922) | [RegisterCopier] method ImmutableHashSetCopier (line 1925) | public ImmutableHashSetCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 1927) | public System.Collections.Immutable.ImmutableHashSet DeepCopy(Syste... method IsShallowCopyable (line 1929) | public bool IsShallowCopyable() { throw null; } type ImmutableHashSetSurrogate (line 1932) | [GenerateSerializer] class ImmutableListCodec (line 1941) | [RegisterSerializer] method ImmutableListCodec (line 1944) | public ImmutableListCodec(Serializers.IValueSerializer ConvertF... method ConvertToSurrogate (line 1948) | public override void ConvertToSurrogate(System.Collections.Immutable.I... class ImmutableListCopier (line 1951) | [RegisterCopier] method ImmutableListCopier (line 1954) | public ImmutableListCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 1956) | public System.Collections.Immutable.ImmutableList DeepCopy(System.C... method IsShallowCopyable (line 1958) | public bool IsShallowCopyable() { throw null; } type ImmutableListSurrogate (line 1961) | [GenerateSerializer] class ImmutableQueueCodec (line 1968) | [RegisterSerializer] method ImmutableQueueCodec (line 1971) | public ImmutableQueueCodec(Serializers.IValueSerializer Convert... method ConvertToSurrogate (line 1975) | public override void ConvertToSurrogate(System.Collections.Immutable.I... class ImmutableQueueCopier (line 1978) | [RegisterCopier] method ImmutableQueueCopier (line 1981) | public ImmutableQueueCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 1983) | public System.Collections.Immutable.ImmutableQueue DeepCopy(System.... method IsShallowCopyable (line 1985) | public bool IsShallowCopyable() { throw null; } type ImmutableQueueSurrogate (line 1988) | [GenerateSerializer] class ImmutableSortedDictionaryCodec (line 1995) | [RegisterSerializer] method ImmutableSortedDictionaryCodec (line 1998) | public ImmutableSortedDictionaryCodec(Serializers.IValueSerializer keyCo... method DeepCopy (line 2010) | public System.Collections.Immutable.ImmutableSortedDictionary Con... method ConvertToSurrogate (line 2033) | public override void ConvertToSurrogate(System.Collections.Immutable.I... class ImmutableSortedSetCopier (line 2036) | [RegisterCopier] method ImmutableSortedSetCopier (line 2039) | public ImmutableSortedSetCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2041) | public System.Collections.Immutable.ImmutableSortedSet DeepCopy(Sys... method IsShallowCopyable (line 2043) | public bool IsShallowCopyable() { throw null; } type ImmutableSortedSetSurrogate (line 2046) | [GenerateSerializer] class ImmutableStackCodec (line 2055) | [RegisterSerializer] method ImmutableStackCodec (line 2058) | public ImmutableStackCodec(Serializers.IValueSerializer Convert... method ConvertToSurrogate (line 2062) | public override void ConvertToSurrogate(System.Collections.Immutable.I... class ImmutableStackCopier (line 2065) | [RegisterCopier] method ImmutableStackCopier (line 2068) | public ImmutableStackCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2070) | public System.Collections.Immutable.ImmutableStack DeepCopy(System.... method IsShallowCopyable (line 2072) | public bool IsShallowCopyable() { throw null; } type ImmutableStackSurrogate (line 2075) | [GenerateSerializer] class Int128Codec (line 2082) | [RegisterSerializer] method ReadValue (line 2085) | System.Int128 IFieldCodec.ReadValue(ref Buffers... method WriteField (line 2087) | void IFieldCodec.WriteField(ref Buffers.... method ReadValue (line 2089) | public static System.Int128 ReadValue(ref Buffers.Reader(ref Buffers.Writer.ReadValue(ref Buffers.Reader ... method WriteField (line 2100) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reade... method WriteField (line 2104) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buffers.Reader read... method WriteField (line 2116) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader,... method WriteField (line 2120) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buffers.Reader re... method WriteField (line 2132) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader... method WriteField (line 2136) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue.WriteField(ref B... method ReadRaw (line 2150) | public static System.Net.IPAddress ReadRaw(ref Buffers.Reader<... method ReadValue (line 2152) | public static System.Net.IPAddress ReadValue(ref Buffers.Reade... method WriteField (line 2154) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue.WriteField(ref ... method ReadValue (line 2168) | public static System.Net.IPEndPoint ReadValue(ref Buffers.Read... method WriteField (line 2170) | public static void WriteField(ref Buffers.Writer method OnCopied (line 2176) | void OnCopied(T original, T result); method OnCopying (line 2177) | void OnCopying(T original, T result); method OnDeserialized (line 2178) | void OnDeserialized(T value); method OnDeserializing (line 2179) | void OnDeserializing(T value); method OnSerialized (line 2180) | void OnSerialized(T value); method OnSerializing (line 2181) | void OnSerializing(T value); class KeyValuePairCodec (line 2184) | [RegisterSerializer] method KeyValuePairCodec (line 2187) | public KeyValuePairCodec(IFieldCodec keyCodec, IFieldCodec ReadValue... method WriteField (line 2191) | public void WriteField(ref Buffers.Writer keyCopier, Cloning... method DeepCopy (line 2200) | public System.Collections.Generic.KeyValuePair DeepCopy(... method IsShallowCopyable (line 2202) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 2204) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ListCodec (line 2207) | [RegisterSerializer] method ListCodec (line 2210) | public ListCodec(IFieldCodec fieldCodec) { } method Deserialize (line 2212) | public void Deserialize(ref Buffers.Reader reader, Sys... method ReadValue (line 2214) | public System.Collections.Generic.List ReadValue(ref Buffer... method Serialize (line 2216) | public void Serialize(ref Buffers.Writer... method WriteField (line 2219) | public void WriteField(ref Buffers.Writer valueCopier) { } method DeepCopy (line 2228) | public System.Collections.Generic.List DeepCopy(System.Collections.... method DeepCopy (line 2230) | public void DeepCopy(System.Collections.Generic.List input, System.... class MemoryCodec (line 2233) | [RegisterSerializer] method MemoryCodec (line 2236) | public MemoryCodec(IFieldCodec fieldCodec) { } method ReadValue (line 2238) | public System.Memory ReadValue(ref Buffers.Reader r... method WriteField (line 2240) | public void WriteField(ref Buffers.Writer elementCopier) { } method DeepCopy (line 2249) | public System.Memory DeepCopy(System.Memory input, Cloning.CopyC... class MemoryOfByteCodec (line 2252) | [RegisterSerializer] method ReadValue (line 2255) | System.Memory IFieldCodec>.ReadValue... method WriteField (line 2257) | void IFieldCodec>.WriteField(ref Bu... method ReadValue (line 2259) | public static System.Memory ReadValue(ref Buffers.Reader... method WriteField (line 2261) | public static void WriteField(ref Buffers.Writer DeepCopy(System.Memory input, ... method DeepCopy (line 2270) | System.Memory Cloning.IDeepCopier>.DeepCopy(... class NameValueCollectionCodec (line 2273) | [RegisterSerializer] method NameValueCollectionCodec (line 2276) | public NameValueCollectionCodec(Serializers.IValueSerializer fieldCodec) { } method ReadValue (line 2301) | public T? ReadValue(ref Buffers.Reader reader, WirePro... method WriteField (line 2303) | public void WriteField(ref Buffers.Writer copier) { } method DeepCopy (line 2312) | public T? DeepCopy(T? input, Cloning.CopyContext context) { throw null; } method IsShallowCopyable (line 2314) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 2316) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ObjectCodec (line 2319) | [RegisterSerializer] method ReadValue (line 2322) | object IFieldCodec.ReadValue(ref Buffers.Reader.WriteField(ref Buffers.Writer<... method WriteField (line 2326) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader read... method WriteField (line 2330) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.DeepCopy(object input, Cloning.Copy... method DeepCopy (line 2344) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class PooledBufferCodec (line 2347) | [RegisterSerializer] method ReadValue (line 2350) | public Buffers.PooledBuffer ReadValue(ref Buffers.Reader(ref Buffers.Writer fieldCodec) { } method ReadValue (line 2369) | public System.Collections.Generic.Queue ReadValue(ref Buffe... method WriteField (line 2371) | public void WriteField(ref Buffers.Writer valueCopier) { } method DeepCopy (line 2380) | public System.Collections.Generic.Queue DeepCopy(System.Collections... method DeepCopy (line 2382) | public void DeepCopy(System.Collections.Generic.Queue input, System... class ReadOnlyCollectionCodec (line 2385) | [RegisterSerializer] method ReadOnlyCollectionCodec (line 2388) | public ReadOnlyCollectionCodec(Serializers.IValueSerializer C... method ConvertToSurrogate (line 2392) | public override void ConvertToSurrogate(System.Collections.ObjectModel... class ReadOnlyCollectionCopier (line 2395) | [RegisterCopier] method ReadOnlyCollectionCopier (line 2398) | public ReadOnlyCollectionCopier(Cloning.IDeepCopier elementCopier) { } method DeepCopy (line 2400) | public System.Collections.ObjectModel.ReadOnlyCollection DeepCopy(S... type ReadOnlyCollectionSurrogate (line 2403) | [GenerateSerializer] class ReadOnlyDictionaryCodec (line 2410) | [RegisterSerializer] method ReadOnlyDictionaryCodec (line 2413) | public ReadOnlyDictionaryCodec(Serializers.IValueSerializer keyCopier, C... method DeepCopy (line 2425) | public System.Collections.ObjectModel.ReadOnlyDictionary... type ReadOnlyDictionarySurrogate (line 2428) | [GenerateSerializer] class ReadOnlyMemoryCodec (line 2435) | [RegisterSerializer] method ReadOnlyMemoryCodec (line 2438) | public ReadOnlyMemoryCodec(IFieldCodec fieldCodec) { } method ReadValue (line 2440) | public System.ReadOnlyMemory ReadValue(ref Buffers.Reader(ref Buffers.Writer elementCopier) { } method DeepCopy (line 2451) | public System.ReadOnlyMemory DeepCopy(System.ReadOnlyMemory inpu... class ReadOnlyMemoryOfByteCodec (line 2454) | [RegisterSerializer] method ReadValue (line 2457) | System.ReadOnlyMemory IFieldCodec>.R... method WriteField (line 2459) | void IFieldCodec>.WriteField(ref Buffers.Reader read... method WriteField (line 2463) | public static void WriteField(ref Buffers.Writer DeepCopy(System.ReadOnlyMemo... method DeepCopy (line 2472) | System.ReadOnlyMemory Cloning.IDeepCopier(ref Buffers.Reader ... method ReadReference (line 2483) | public static T ReadReference(ref Buffers.Reader re... method RecordObject (line 2485) | public static void RecordObject(Session.SerializerSession session, obj... method RecordObject (line 2487) | public static void RecordObject(Session.SerializerSession session, obj... method TryWriteReferenceField (line 2489) | public static bool TryWriteReferenceField(ref Buffers.W... method TryWriteReferenceField (line 2492) | public static bool TryWriteReferenceField(ref Buffers.W... method WriteNullReference (line 2495) | public static void WriteNullReference(ref Buffers.Write... class ReferenceTypeSurrogateCodec (line 2499) | public abstract partial class ReferenceTypeSurrogateCodec(ref Buffers.Reader reader, Wir... method WriteField (line 2507) | public void WriteField(ref Buffers.Writer.ReadValue(ref Buffers.Reader ... method WriteField (line 2516) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reade... method WriteField (line 2520) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer(ref Buffers.Reader reader, Wir... method WriteField (line 2531) | public void WriteField(ref Buffers.Writer(this ref Buffers.Reader r... class SortedDictionaryCodec (line 2540) | [RegisterSerializer] method SortedDictionaryCodec (line 2543) | public SortedDictionaryCodec(Serializers.IValueSerializer keyCopier, Clo... method DeepCopy (line 2555) | public System.Collections.Generic.SortedDictionary DeepC... method DeepCopy (line 2557) | public void DeepCopy(System.Collections.Generic.SortedDictionary Co... method ConvertToSurrogate (line 2576) | public override void ConvertToSurrogate(System.Collections.Generic.Sor... class SortedListCopier (line 2579) | [RegisterCopier] method SortedListCopier (line 2582) | public SortedListCopier(Cloning.IDeepCopier keyCopier, Cloning.I... method DeepCopy (line 2584) | public System.Collections.Generic.SortedList DeepCopy(Sy... method DeepCopy (line 2586) | public void DeepCopy(System.Collections.Generic.SortedList ConvertFromSur... method ConvertToSurrogate (line 2605) | public override void ConvertToSurrogate(System.Collections.Generic.Sor... class SortedSetCopier (line 2608) | [RegisterCopier] method SortedSetCopier (line 2611) | public SortedSetCopier(Cloning.IDeepCopier elementCopier) { } method DeepCopy (line 2613) | public System.Collections.Generic.SortedSet DeepCopy(System.Collect... method DeepCopy (line 2615) | public void DeepCopy(System.Collections.Generic.SortedSet input, Sy... type SortedSetSurrogate (line 2618) | [GenerateSerializer] class StackCodec (line 2627) | [RegisterSerializer] method StackCodec (line 2630) | public StackCodec(IFieldCodec fieldCodec) { } method ReadValue (line 2632) | public System.Collections.Generic.Stack ReadValue(ref Buffe... method WriteField (line 2634) | public void WriteField(ref Buffers.Writer valueCopier) { } method DeepCopy (line 2643) | public System.Collections.Generic.Stack DeepCopy(System.Collections... method DeepCopy (line 2645) | public void DeepCopy(System.Collections.Generic.Stack input, System... class StringCodec (line 2648) | [RegisterSerializer] method ReadValue (line 2651) | string IFieldCodec.ReadValue(ref Buffers.Reader.WriteField(ref Buffers.Writer<... method ReadRaw (line 2655) | public static string ReadRaw(ref Buffers.Reader reader... method ReadValue (line 2657) | public static string ReadValue(ref Buffers.Reader read... method WriteField (line 2659) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buf... method WriteField (line 2671) | void IFieldCodec.WriteField(ref Buffer... method ReadValue (line 2673) | public static System.TimeOnly ReadValue(ref Buffers.Reader(ref Buffers.Writer.ReadValue(ref Buf... method WriteField (line 2684) | void IFieldCodec.WriteField(ref Buffer... method ReadValue (line 2686) | public static System.TimeSpan ReadValue(ref Buffers.Reader(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2697) | public System.Tuple ReadValue(ref Buffers.Reader re... method WriteField (line 2699) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2708) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2719) | public System.Tuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2730) | public System.Tuple ReadValue(ref Buffers.Read... method WriteField (line 2732) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2741) | public System.Tuple ReadValue(ref Buffers.... method WriteField (line 2743) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2752) | public System.Tuple ReadValue(ref Buff... method WriteField (line 2754) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2763) | public System.Tuple ReadValue(ref ... method WriteField (line 2765) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec item2Cod... method ReadValue (line 2774) | public System.Tuple ReadValue(... method WriteField (line 2776) | public void WriteField(ref Buffers.Writer copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TupleCopier (line 2790) | [RegisterCopier] method TupleCopier (line 2783) | public TupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TupleCopier (line 2800) | [RegisterCopier] method TupleCopier (line 2783) | public TupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TupleCopier (line 2810) | [RegisterCopier] method TupleCopier (line 2783) | public TupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TupleCopier (line 2820) | [RegisterCopier] method TupleCopier (line 2783) | public TupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TupleCopier (line 2830) | [RegisterCopier] method TupleCopier (line 2783) | public TupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TupleCopier (line 2840) | [RegisterCopier] method TupleCopier (line 2783) | public TupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TupleCopier (line 2850) | [RegisterCopier] method TupleCopier (line 2783) | public TupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 2785) | public System.Tuple DeepCopy(System.Tuple input, Cloning.CopyCon... method IsShallowCopyable (line 2787) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2793) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2795) | public System.Tuple DeepCopy(System.Tuple input, Cloni... method IsShallowCopyable (line 2797) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2803) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2805) | public System.Tuple DeepCopy(System.Tuple inpu... method IsShallowCopyable (line 2807) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2813) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2815) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2825) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2835) | public System.Tuple DeepCopy(System.Tuple copier1, Cloning.IDeepCopie... method DeepCopy (line 2845) | public System.Tuple DeepCopy(System.Tuple<... method IsShallowCopyable (line 2847) | public bool IsShallowCopyable() { throw null; } method TupleCopier (line 2853) | public TupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeepCopie... method DeepCopy (line 2855) | public System.Tuple DeepCopy(System.Tu... method IsShallowCopyable (line 2857) | public bool IsShallowCopyable() { throw null; } class TypeSerializerCodec (line 2860) | [RegisterSerializer] method ReadValue (line 2863) | System.Type IFieldCodec.ReadValue(ref Buffers.Rea... method WriteField (line 2865) | void IFieldCodec.WriteField(ref Buffers.Wr... method ReadValue (line 2867) | public static System.Type ReadValue(ref Buffers.Reader... method WriteField (line 2869) | public static void WriteField(ref Buffers.Writer.ReadValue(ref Buffe... method WriteField (line 2878) | void IFieldCodec.WriteField(ref Buffers... method ReadValue (line 2880) | public static System.UInt128 ReadValue(ref Buffers.Reader(ref Buffers.Writer.ReadValue(ref Buffers.Reader.WriteField(ref Buffers.Writer<... method ReadValue (line 2893) | public static ushort ReadValue(ref Buffers.Reader read... method WriteField (line 2895) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buffers.Reader re... method WriteField (line 2907) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reader... method WriteField (line 2911) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buffers.Reader ... method WriteField (line 2923) | void IFieldCodec.WriteField(ref Buffers.Writer(ref Buffers.Reader reade... method WriteField (line 2927) | public static void WriteField(ref Buffers.Writer(ref Buffers.Writer.ReadValue(ref Buffers.Reade... method WriteField (line 2950) | void IFieldCodec.WriteField(ref Buffers.Wri... method ReadValue (line 2952) | public static System.Uri ReadValue(ref Buffers.Reader ... method WriteField (line 2954) | public static void WriteField(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer(ref Buffers.Reader ... method WriteField (line 2963) | public void WriteField(ref Buffers.Writer valueCodec) { } method ReadValue (line 2972) | public System.ValueTuple ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2983) | public (T1, T2) ReadValue(ref Buffers.Reader reader, W... method WriteField (line 2985) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 2994) | public (T1, T2, T3) ReadValue(ref Buffers.Reader reade... method WriteField (line 2996) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3005) | public (T1, T2, T3, T4) ReadValue(ref Buffers.Reader r... method WriteField (line 3007) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3016) | public (T1, T2, T3, T4, T5) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3027) | public (T1, T2, T3, T4, T5, T6) ReadValue(ref Buffers.Reader(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3038) | public (T1, T2, T3, T4, T5, T6, T7) ReadValue(ref Buffers.Read... method WriteField (line 3040) | public void WriteField(ref Buffers.Writer item1Codec, IFieldCodec ite... method ReadValue (line 3049) | public System.ValueTuple ReadValue(ref Buffers.Writer copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3065) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3077) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3089) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3101) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3113) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3125) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3137) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class ValueTupleCopier (line 3149) | [RegisterCopier] method DeepCopy (line 3058) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloning.Cop... method IsShallowCopyable (line 3060) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3062) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3068) | public ValueTupleCopier(Cloning.IDeepCopier copier) { } method DeepCopy (line 3070) | public System.ValueTuple DeepCopy(System.ValueTuple input, Cloni... method IsShallowCopyable (line 3072) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3074) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3080) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3082) | public (T1, T2) DeepCopy((T1, T2) input, Cloning.CopyContext context) ... method IsShallowCopyable (line 3084) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3086) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3092) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3094) | public (T1, T2, T3) DeepCopy((T1, T2, T3) input, Cloning.CopyContext c... method IsShallowCopyable (line 3096) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3098) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3104) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3106) | public (T1, T2, T3, T4) DeepCopy((T1, T2, T3, T4) input, Cloning.CopyC... method IsShallowCopyable (line 3108) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3110) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3116) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3118) | public (T1, T2, T3, T4, T5) DeepCopy((T1, T2, T3, T4, T5) input, Cloni... method IsShallowCopyable (line 3120) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3122) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3128) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3130) | public (T1, T2, T3, T4, T5, T6) DeepCopy((T1, T2, T3, T4, T5, T6) inpu... method IsShallowCopyable (line 3132) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3134) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3140) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3142) | public (T1, T2, T3, T4, T5, T6, T7) DeepCopy((T1, T2, T3, T4, T5, T6, ... method IsShallowCopyable (line 3144) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3146) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... method ValueTupleCopier (line 3152) | public ValueTupleCopier(Cloning.IDeepCopier copier1, Cloning.IDeep... method DeepCopy (line 3154) | public System.ValueTuple DeepCopy(Syst... method IsShallowCopyable (line 3156) | public bool IsShallowCopyable() { throw null; } method DeepCopy (line 3158) | object Cloning.IDeepCopier.DeepCopy(object input, Cloning.CopyContext ... class VersionCodec (line 3161) | [RegisterSerializer] method VersionCodec (line 3164) | public VersionCodec(Serializers.IValueSerializer sur... method ConvertFromSurrogate (line 3166) | public override System.Version ConvertFromSurrogate(ref VersionSurroga... method ConvertToSurrogate (line 3168) | public override void ConvertToSurrogate(System.Version value, ref Vers... type VersionSurrogate (line 3171) | [GenerateSerializer] class WellKnownStringComparerCodec (line 3184) | [Alias("StringComparer")] method IsSupportedType (line 3187) | public bool IsSupportedType(System.Type type) { throw null; } method ReadValue (line 3189) | public object ReadValue(ref Buffers.Reader reader, Wir... method WriteField (line 3191) | public void WriteField(ref Buffers.Writer(this ref Buffers.... method ConsumeEndBaseOrEndObject (line 3256) | public static void ConsumeEndBaseOrEndObject(this ref Buffers.... method DeserializeUnexpectedType (line 3258) | public static TField DeserializeUnexpectedType(this re... method GetMethodInfoOrDefault (line 3261) | public static System.Reflection.MethodInfo GetMethodInfoOrDefault(Syst... method GetOptionalCopier (line 3263) | public static Cloning.IDeepCopier GetOptionalCopier(Cloning.IDee... method GetService (line 3265) | public static TService GetService(object caller, Serializers... method InvokableThrowArgumentOutOfRange (line 3267) | public static object InvokableThrowArgumentOutOfRange(int index, int m... method SerializeUnexpectedType (line 3269) | public static void SerializeUnexpectedType(this ref Buf... method UnwrapService (line 3272) | public static TService UnwrapService(object caller, TService... class ExceptionCopier (line 3274) | public abstract partial class ExceptionCopier : Cloning.IDeepCop... method ExceptionCopier (line 3276) | protected ExceptionCopier(Serializers.ICodecProvider codecProvider) { } method DeepCopy (line 3278) | public virtual void DeepCopy(T input, T output, Cloning.CopyContext ... method DeepCopy (line 3280) | public T DeepCopy(T original, Cloning.CopyContext context) { throw n... class ReferencedAssemblyProvider (line 3287) | public static partial class ReferencedAssemblyProvider method AddAssembly (line 3289) | public static void AddAssembly(System.Collections.Generic.HashSet() { throw null; } method ToString (line 3319) | public override string ToString() { throw null; } class ExceptionResponse (line 3322) | [GenerateSerializer] method Dispose (line 3331) | public override void Dispose() { } method GetResult (line 3333) | public override T GetResult() { throw null; } method ToString (line 3335) | public override string ToString() { throw null; } type IInvokable (line 3338) | public partial interface IInvokable : System.IDisposable method GetActivityName (line 3340) | string GetActivityName(); method GetArgument (line 3341) | object? GetArgument(int index); method GetArgumentCount (line 3342) | int GetArgumentCount(); method GetCancellationToken (line 3343) | System.Threading.CancellationToken GetCancellationToken(); method GetDefaultResponseTimeout (line 3344) | System.TimeSpan? GetDefaultResponseTimeout(); method GetInterfaceName (line 3345) | string GetInterfaceName(); method GetInterfaceType (line 3346) | System.Type GetInterfaceType(); method GetMethod (line 3347) | System.Reflection.MethodInfo GetMethod(); method GetMethodName (line 3348) | string GetMethodName(); method GetTarget (line 3349) | object? GetTarget(); method Invoke (line 3350) | System.Threading.Tasks.ValueTask Invoke(); method SetArgument (line 3351) | void SetArgument(int index, object value); method SetTarget (line 3352) | void SetTarget(ITargetHolder holder); method TryCancel (line 3353) | bool TryCancel(); class InvokablePool (line 3356) | public static partial class InvokablePool method Get (line 3358) | public static T Get() method Return (line 3361) | public static void Return(T obj) type IResponseCompletionSource (line 3365) | public partial interface IResponseCompletionSource method Complete (line 3367) | void Complete(); method Complete (line 3368) | void Complete(Response value); type ITargetHolder (line 3371) | public partial interface ITargetHolder method GetComponent (line 3373) | TComponent? GetComponent() method GetTarget (line 3375) | TTarget? GetTarget() class Response (line 3379) | [SerializerTransparent] method Dispose (line 3387) | public abstract void Dispose(); method FromException (line 3388) | public static Response FromException(System.Exception exception) { thr... method FromResult (line 3390) | public static Response FromResult(TResult value) { throw null; } method GetResult (line 3392) | public abstract T GetResult(); method GetSimpleResultType (line 3393) | public virtual System.Type? GetSimpleResultType() { throw null; } method ToString (line 3395) | public override string ToString() { throw null; } method Dispose (line 3490) | public override void Dispose() { } method GetResult (line 3492) | public override T GetResult() { throw null; } method GetSimpleResultType (line 3494) | public override System.Type GetSimpleResultType() { throw null; } method ToString (line 3496) | public override string ToString() { throw null; } class ResponseCodec (line 3398) | public abstract partial class ResponseCodec method ReadRaw (line 3400) | public abstract object ReadRaw(ref Buffers.Reader read... method WriteRaw (line 3401) | public abstract void WriteRaw(ref Buffers.Writer AsValueTask() { thro... method AsVoidValueTask (line 3409) | public System.Threading.Tasks.ValueTask AsVoidValueTask() { throw null; } method Complete (line 3411) | public void Complete() { } method Complete (line 3413) | public void Complete(Response value) { } method GetResult (line 3415) | public Response GetResult(short token) { throw null; } method GetStatus (line 3417) | public System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(... method OnCompleted (line 3419) | public void OnCompleted(System.Action continuation, object sta... method Reset (line 3421) | public void Reset() { } method SetException (line 3423) | public void SetException(System.Exception exception) { } method SetResult (line 3425) | public void SetResult(Response result) { } method GetResult (line 3427) | void System.Threading.Tasks.Sources.IValueTaskSource.GetResult(short t... method AsValueTask (line 3443) | public System.Threading.Tasks.ValueTask AsValueTask() { throw... method AsVoidValueTask (line 3445) | public System.Threading.Tasks.ValueTask AsVoidValueTask() { throw null; } method Complete (line 3447) | public void Complete() { } method Complete (line 3449) | public void Complete(Response value) { } method Complete (line 3451) | public void Complete(Response value) { } method GetResult (line 3453) | public TResult GetResult(short token) { throw null; } method GetStatus (line 3455) | public System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(... method OnCompleted (line 3457) | public void OnCompleted(System.Action continuation, object sta... method Reset (line 3459) | public void Reset() { } method SetException (line 3461) | public void SetException(System.Exception exception) { } method SetResult (line 3463) | public void SetResult(TResult result) { } method GetResult (line 3465) | void System.Threading.Tasks.Sources.IValueTaskSource.GetResult(short t... class ResponseCompletionSourcePool (line 3430) | public static partial class ResponseCompletionSourcePool method Get (line 3432) | public static ResponseCompletionSource Get() { throw null; } method Get (line 3434) | public static ResponseCompletionSource Get() { throw null; } method Return (line 3436) | public static void Return(ResponseCompletionSource obj) { } method Return (line 3438) | public static void Return(ResponseCompletionSource obj) { } class ResponseCompletionSource (line 3441) | public sealed partial class ResponseCompletionSource : IRespons... method AsValueTask (line 3407) | public System.Threading.Tasks.ValueTask AsValueTask() { thro... method AsVoidValueTask (line 3409) | public System.Threading.Tasks.ValueTask AsVoidValueTask() { throw null; } method Complete (line 3411) | public void Complete() { } method Complete (line 3413) | public void Complete(Response value) { } method GetResult (line 3415) | public Response GetResult(short token) { throw null; } method GetStatus (line 3417) | public System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(... method OnCompleted (line 3419) | public void OnCompleted(System.Action continuation, object sta... method Reset (line 3421) | public void Reset() { } method SetException (line 3423) | public void SetException(System.Exception exception) { } method SetResult (line 3425) | public void SetResult(Response result) { } method GetResult (line 3427) | void System.Threading.Tasks.Sources.IValueTaskSource.GetResult(short t... method AsValueTask (line 3443) | public System.Threading.Tasks.ValueTask AsValueTask() { throw... method AsVoidValueTask (line 3445) | public System.Threading.Tasks.ValueTask AsVoidValueTask() { throw null; } method Complete (line 3447) | public void Complete() { } method Complete (line 3449) | public void Complete(Response value) { } method Complete (line 3451) | public void Complete(Response value) { } method GetResult (line 3453) | public TResult GetResult(short token) { throw null; } method GetStatus (line 3455) | public System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(... method OnCompleted (line 3457) | public void OnCompleted(System.Action continuation, object sta... method Reset (line 3459) | public void Reset() { } method SetException (line 3461) | public void SetException(System.Exception exception) { } method SetResult (line 3463) | public void SetResult(TResult result) { } method GetResult (line 3465) | void System.Threading.Tasks.Sources.IValueTaskSource.GetResult(short t... class ResponseExtensions (line 3468) | public static partial class ResponseExtensions method ThrowIfExceptionResponse (line 3470) | public static void ThrowIfExceptionResponse(this Response response) { } class ResponsePool (line 3473) | public static partial class ResponsePool method Get (line 3475) | public static Response Get() { throw null; } method Return (line 3477) | public static void Return(Response obj) { } class Response (line 3480) | [UseActivator] method Dispose (line 3387) | public abstract void Dispose(); method FromException (line 3388) | public static Response FromException(System.Exception exception) { thr... method FromResult (line 3390) | public static Response FromResult(TResult value) { throw null; } method GetResult (line 3392) | public abstract T GetResult(); method GetSimpleResultType (line 3393) | public virtual System.Type? GetSimpleResultType() { throw null; } method ToString (line 3395) | public override string ToString() { throw null; } method Dispose (line 3490) | public override void Dispose() { } method GetResult (line 3492) | public override T GetResult() { throw null; } method GetSimpleResultType (line 3494) | public override System.Type GetSimpleResultType() { throw null; } method ToString (line 3496) | public override string ToString() { throw null; } class AbstractTypeSerializer (line 3502) | public partial class AbstractTypeSerializer : Codecs.IFieldCodec method AbstractTypeSerializer (line 3504) | protected internal AbstractTypeSerializer(System.Type fieldType) { } method ReadValue (line 3506) | public object ReadValue(ref Buffers.Reader reader, Wir... method WriteField (line 3508) | public void WriteField(ref Buffers.Writer(ref Buffers.Reader(ref Buffers.Reader reader, Wir... method Serialize (line 3520) | public virtual void Serialize(ref Buffers.Writer(ref Buffers.Writer : AbstractTypeSerial... method AbstractTypeSerializer (line 3504) | protected internal AbstractTypeSerializer(System.Type fieldType) { } method ReadValue (line 3506) | public object ReadValue(ref Buffers.Reader reader, Wir... method WriteField (line 3508) | public void WriteField(ref Buffers.Writer(ref Buffers.Reader(ref Buffers.Reader reader, Wir... method Serialize (line 3520) | public virtual void Serialize(ref Buffers.Writer(ref Buffers.Writer GetActivator() { throw null; } method GetBaseCodec (line 3535) | public IBaseCodec GetBaseCodec() method GetBaseCopier (line 3538) | public Cloning.IBaseCopier GetBaseCopier() method GetCodec (line 3541) | public Codecs.IFieldCodec GetCodec(System.Type fieldType) { throw null; } method GetCodec (line 3543) | public Codecs.IFieldCodec GetCodec() { throw null; } method GetDeepCopier (line 3545) | public Cloning.IDeepCopier GetDeepCopier(System.Type fieldType) { thro... method GetDeepCopier (line 3547) | public Cloning.IDeepCopier GetDeepCopier() { throw null; } method GetValueSerializer (line 3549) | public IValueSerializer GetValueSerializer() method TryGetCodec (line 3552) | public Codecs.IFieldCodec TryGetCodec(System.Type fieldType) { throw n... method TryGetCodec (line 3554) | public Codecs.IFieldCodec TryGetCodec() { throw null; } method TryGetDeepCopier (line 3556) | public Cloning.IDeepCopier TryGetDeepCopier(System.Type fieldType) { t... method TryGetDeepCopier (line 3558) | public Cloning.IDeepCopier TryGetDeepCopier() { throw null; } class ConcreteTypeSerializer (line 3561) | public sealed partial class ConcreteTypeSerializer :... method ConcreteTypeSerializer (line 3563) | public ConcreteTypeSerializer(Activators.IActivator activator,... method ReadValue (line 3565) | public TField ReadValue(ref Buffers.Reader reader, Wir... method ReadValueSealed (line 3567) | public TField ReadValueSealed(ref Buffers.Reader reade... method WriteField (line 3569) | public void WriteField(ref Buffers.Writer GetActivator(); type IBaseCodec (line 3596) | public partial interface IBaseCodec method Deserialize (line 3608) | void Deserialize(ref Buffers.Reader reader, T value); method Serialize (line 3609) | void Serialize(ref Buffers.Writer writer... type IBaseCodecProvider (line 3600) | public partial interface IBaseCodecProvider method GetBaseCodec (line 3602) | IBaseCodec GetBaseCodec() type IBaseCodec (line 3606) | public partial interface IBaseCodec : IBaseCodec where T : class method Deserialize (line 3608) | void Deserialize(ref Buffers.Reader reader, T value); method Serialize (line 3609) | void Serialize(ref Buffers.Writer writer... type ICodecProvider (line 3613) | public partial interface ICodecProvider : IFieldCodecProvider, IBaseCode... type ICodecSelector (line 3618) | public partial interface ICodecSelector method IsSupportedType (line 3622) | bool IsSupportedType(System.Type type); type ICopierSelector (line 3625) | public partial interface ICopierSelector method IsSupportedType (line 3629) | bool IsSupportedType(System.Type type); type IFieldCodecProvider (line 3632) | public partial interface IFieldCodecProvider method GetCodec (line 3634) | Codecs.IFieldCodec GetCodec(System.Type fieldType); method GetCodec (line 3635) | Codecs.IFieldCodec GetCodec(); method TryGetCodec (line 3636) | Codecs.IFieldCodec TryGetCodec(System.Type fieldType); method TryGetCodec (line 3637) | Codecs.IFieldCodec TryGetCodec(); type IGeneralizedBaseCodec (line 3640) | public partial interface IGeneralizedBaseCodec : IBaseCodec, IBa... method IsSupportedType (line 3642) | bool IsSupportedType(System.Type type); type IGeneralizedCodec (line 3645) | public partial interface IGeneralizedCodec : Codecs.IFieldCodec method IsSupportedType (line 3647) | bool IsSupportedType(System.Type type); type ISpecializableBaseCodec (line 3650) | public partial interface ISpecializableBaseCodec method GetSpecializedCodec (line 3652) | IBaseCodec GetSpecializedCodec(System.Type type); method IsSupportedType (line 3653) | bool IsSupportedType(System.Type type); type ISpecializableCodec (line 3656) | public partial interface ISpecializableCodec method GetSpecializedCodec (line 3658) | Codecs.IFieldCodec GetSpecializedCodec(System.Type type); method IsSupportedType (line 3659) | bool IsSupportedType(System.Type type); type IValueSerializer (line 3662) | public partial interface IValueSerializer method Deserialize (line 3674) | void Deserialize(ref Buffers.Reader reader, scoped ref... method Serialize (line 3675) | void Serialize(ref Buffers.Writer writer... type IValueSerializerProvider (line 3666) | public partial interface IValueSerializerProvider method GetValueSerializer (line 3668) | IValueSerializer GetValueSerializer() type IValueSerializer (line 3672) | public partial interface IValueSerializer : IValueSerializer where T ... method Deserialize (line 3674) | void Deserialize(ref Buffers.Reader reader, scoped ref... method Serialize (line 3675) | void Serialize(ref Buffers.Writer writer... class SurrogateCodec (line 3679) | public sealed partial class SurrogateCodec surrogateSerializer... method DeepCopy (line 3683) | public void DeepCopy(TField input, TField output, Cloning.CopyContext ... method DeepCopy (line 3685) | public TField DeepCopy(TField input, Cloning.CopyContext context) { th... method Deserialize (line 3687) | public void Deserialize(ref Buffers.Reader reader, TFi... method ReadValue (line 3689) | public TField ReadValue(ref Buffers.Reader reader, Wir... method Serialize (line 3691) | public void Serialize(ref Buffers.Writer... method WriteField (line 3694) | public void WriteField(ref Buffers.Writer : ... method ValueSerializer (line 510) | public ValueSerializer(Serializers.IValueSerializerProvider codecProvi... method Deserialize (line 512) | public void Deserialize(System.ArraySegment source, scoped ref T... method Deserialize (line 514) | public void Deserialize(System.ArraySegment source, scoped ref T... method Deserialize (line 516) | public void Deserialize(System.Buffers.ReadOnlySequence source, ... method Deserialize (line 518) | public void Deserialize(System.Buffers.ReadOnlySequence source, ... method Deserialize (line 520) | public void Deserialize(byte[] source, scoped ref T result, Session.Se... method Deserialize (line 522) | public void Deserialize(byte[] source, scoped ref T result) { } method Deserialize (line 524) | public void Deserialize(System.IO.Stream source, scoped ref T result, ... method Deserialize (line 526) | public void Deserialize(System.IO.Stream source, scoped ref T result) { } method Deserialize (line 528) | public void Deserialize(System.ReadOnlyMemory source, scoped ref... method Deserialize (line 530) | public void Deserialize(System.ReadOnlyMemory source, scoped ref... method Deserialize (line 532) | public void Deserialize(System.ReadOnlySpan source, scoped ref T... method Deserialize (line 534) | public void Deserialize(System.ReadOnlySpan source, scoped ref T... method Deserialize (line 536) | public void Deserialize(ref Buffers.Reader source, sco... method Serialize (line 538) | public void Serialize(scoped ref T value, System.ArraySegment de... method Serialize (line 540) | public int Serialize(scoped ref T value, byte[] destination, Session.S... method Serialize (line 542) | public int Serialize(scoped ref T value, byte[] destination) { throw n... method Serialize (line 544) | public void Serialize(scoped ref T value, System.IO.Stream destination... method Serialize (line 546) | public void Serialize(scoped ref T value, System.IO.Stream destination... method Serialize (line 548) | public void Serialize(scoped ref T value, ref System.Memory dest... method Serialize (line 550) | public void Serialize(scoped ref T value, ref System.Memory dest... method Serialize (line 552) | public void Serialize(scoped ref T value, ref System.Span destin... method Serialize (line 554) | public void Serialize(scoped ref T value, ref System.Span destin... method Serialize (line 556) | public void Serialize(scoped ref T value, TBufferWriter... method Serialize (line 559) | public void Serialize(scoped ref T value, TBufferWriter... method Serialize (line 562) | public void Serialize(scoped ref T value, ref Buffers.W... method SerializeToArray (line 565) | public byte[] SerializeToArray(scoped ref T value) { throw null; } method ValueSerializer (line 3700) | public ValueSerializer(TValueSerializer serializer) { } method ReadValue (line 3702) | public TField ReadValue(ref Buffers.Reader reader, Wir... method WriteField (line 3704) | public void WriteField(ref Buffers.Writer surrogateS... method DeepCopy (line 3712) | public TField DeepCopy(TField input, Cloning.CopyContext context) { th... method Deserialize (line 3714) | public void Deserialize(ref Buffers.Reader reader, sco... method ReadValue (line 3716) | public TField ReadValue(ref Buffers.Reader reader, Wir... method Serialize (line 3718) | public void Serialize(ref Buffers.Writer... method WriteField (line 3721) | public void WriteField(ref Buffers.Writer CopyIdTable... method CopyReferenceTable (line 3734) | public System.Collections.Generic.Dictionary CopyReferen... method GetOrAddReference (line 3736) | public bool GetOrAddReference(object value, out uint reference) { thro... method GetReferenceIndex (line 3738) | public int GetReferenceIndex(object value) { throw null; } method MarkValueField (line 3740) | public void MarkValueField() { } method RecordReferenceField (line 3742) | public void RecordReferenceField(object value, uint referenceId) { } method RecordReferenceField (line 3744) | public void RecordReferenceField(object value) { } method Reset (line 3746) | public void Reset() { } method TryGetReferencedObject (line 3748) | public object TryGetReferencedObject(uint reference) { throw null; } class ReferencedTypeCollection (line 3751) | public sealed partial class ReferencedTypeCollection method GetOrAddTypeReference (line 3753) | public uint GetOrAddTypeReference(System.Type type) { throw null; } method GetReferencedType (line 3755) | public System.Type GetReferencedType(uint reference) { throw null; } method RecordReferencedType (line 3757) | public void RecordReferencedType(System.Type type) { } method Reset (line 3759) | public void Reset() { } method TryGetReferencedType (line 3761) | public bool TryGetReferencedType(uint reference, out System.Type type)... method TryGetTypeReference (line 3763) | public bool TryGetTypeReference(System.Type type, out uint reference) ... class SerializerSession (line 3766) | public sealed partial class SerializerSession : System.IDisposable method SerializerSession (line 3768) | public SerializerSession(TypeSystem.TypeCodec typeCodec, WellKnownType... method Dispose (line 3780) | public void Dispose() { } method PartialReset (line 3782) | public void PartialReset() { } method Reset (line 3784) | public void Reset() { } class SerializerSessionPool (line 3787) | public sealed partial class SerializerSessionPool method SerializerSessionPool (line 3789) | public SerializerSessionPool(TypeSystem.TypeCodec typeCodec, WellKnown... method GetSession (line 3793) | public SerializerSession GetSession() { throw null; } class WellKnownTypeCollection (line 3796) | public sealed partial class WellKnownTypeCollection method WellKnownTypeCollection (line 3798) | public WellKnownTypeCollection(Microsoft.Extensions.Options.IOptions input) { throw ... method Parse (line 3973) | public static TypeSpec Parse(string input) { throw null; } class TupleTypeSpec (line 3976) | public partial class TupleTypeSpec : TypeSpec method TupleTypeSpec (line 3978) | public TupleTypeSpec(TypeSpec[] elements, int arity) { } method Format (line 3984) | public override string Format() { throw null; } method ToString (line 3986) | public override string ToString() { throw null; } class TypeCodec (line 3989) | public sealed partial class TypeCodec method TypeCodec (line 3991) | public TypeCodec(TypeConverter typeConverter) { } method ReadLengthPrefixed (line 3993) | public System.Type ReadLengthPrefixed(ref Buffers.Reader(ref Buffers.Reader reader) ... method TryReadForAnalysis (line 3997) | public bool TryReadForAnalysis(ref Buffers.Reader read... method WriteEncodedType (line 3999) | public void WriteEncodedType(ref Buffers.Writer(ref Buffers.Writer... method Parse (line 4014) | public System.Type Parse(string formatted) { throw null; } method TryParse (line 4016) | public bool TryParse(string formatted, out System.Type result) { throw... class TypeResolver (line 4019) | public abstract partial class TypeResolver method ResolveType (line 4021) | public abstract System.Type ResolveType(string name); method TryResolveType (line 4022) | public abstract bool TryResolveType(string name, out System.Type type); class TypeSpec (line 4025) | public abstract partial class TypeSpec method Format (line 4027) | public abstract string Format(); class BitStreamFormatter (line 4033) | public static partial class BitStreamFormatter method Format (line 4035) | public static string Format(Buffers.PooledBuffer.BufferSlice slice, Se... method Format (line 4037) | public static string Format(System.Buffers.ReadOnlySequence inpu... method Format (line 4039) | public static string Format(byte[] array, Session.SerializerSession se... method Format (line 4041) | public static string Format(System.IO.Stream input, Session.Serializer... method Format (line 4043) | public static string Format(System.ReadOnlyMemory input, Session... method Format (line 4045) | public static string Format(System.ReadOnlySpan input, Session.S... method Format (line 4047) | public static void Format(ref Buffers.Reader reader, S... method Format (line 4049) | public static string Format(ref Buffers.Reader reader)... class FieldAccessor (line 4052) | public static partial class FieldAccessor method GetGetter (line 4054) | public static System.Delegate GetGetter(System.Type declaringType, str... method GetReferenceSetter (line 4056) | public static System.Delegate GetReferenceSetter(System.Type declaring... method GetValueGetter (line 4058) | public static System.Delegate GetValueGetter(System.Type declaringType... method GetValueSetter (line 4060) | public static System.Delegate GetValueSetter(System.Type declaringType... class InternalServiceCollectionExtensions (line 4071) | public static partial class InternalServiceCollectionExtensions method AddFromExisting (line 4073) | public static void AddFromExisting(this Microsoft.Extensions.Dependenc... method AddFromExisting (line 4075) | public static void AddFromExisting(this Mic... type ExtendedWireType (line 4082) | public enum ExtendedWireType : uint type Field (line 4088) | public partial struct Field method Field (line 4093) | public Field(Tag tag, uint extendedFieldIdDelta, System.Type type) { } method Field (line 4095) | public Field(Tag tag) { } method EnsureWireType (line 4123) | public void EnsureWireType(WireType expectedType) { } method EnsureWireTypeTagDelimited (line 4125) | public void EnsureWireTypeTagDelimited() { } method ToString (line 4127) | public override string ToString() { throw null; } type SchemaType (line 4130) | public enum SchemaType : uint type Tag (line 4138) | public partial struct Tag method Tag (line 4147) | public Tag(byte tag) { } method SetFieldIdInvalid (line 4169) | public void SetFieldIdInvalid() { } type WireType (line 4172) | public enum WireType : uint class Codec_CodecNotFoundException (line 4186) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_CodecNotFoundException (line 4191) | public Codec_CodecNotFoundException(global::Orleans.Serialization.Seri... method Deserialize (line 4193) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4195) | public global::Orleans.Serialization.CodecNotFoundException ReadValue<... method Serialize (line 4197) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4200) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ExtendedWireTypeInvalidException (line 4204) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ExtendedWireTypeInvalidException (line 4209) | public Codec_ExtendedWireTypeInvalidException(global::Orleans.Serializ... method Deserialize (line 4211) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4213) | public global::Orleans.Serialization.ExtendedWireTypeInvalidException ... method Serialize (line 4215) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4218) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FieldIdNotPresentException (line 4222) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FieldIdNotPresentException (line 4227) | public Codec_FieldIdNotPresentException(global::Orleans.Serialization.... method Deserialize (line 4229) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4231) | public global::Orleans.Serialization.FieldIdNotPresentException ReadVa... method Serialize (line 4233) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4236) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FieldTypeInvalidException (line 4240) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FieldTypeInvalidException (line 4245) | public Codec_FieldTypeInvalidException(global::Orleans.Serialization.S... method Deserialize (line 4247) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4249) | public global::Orleans.Serialization.FieldTypeInvalidException ReadVal... method Serialize (line 4251) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4254) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FieldTypeMissingException (line 4258) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FieldTypeMissingException (line 4263) | public Codec_FieldTypeMissingException(global::Orleans.Serialization.S... method Deserialize (line 4265) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4267) | public global::Orleans.Serialization.FieldTypeMissingException ReadVal... method Serialize (line 4269) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4272) | public void WriteField(ref global::Orleans.Serializatio... class Codec_IllegalTypeException (line 4276) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_IllegalTypeException (line 4281) | public Codec_IllegalTypeException(global::Orleans.Serialization.Serial... method Deserialize (line 4283) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4285) | public global::Orleans.Serialization.IllegalTypeException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4290) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ReferenceFieldNotSupportedException (line 4294) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ReferenceFieldNotSupportedException (line 4299) | public Codec_ReferenceFieldNotSupportedException(global::Orleans.Seria... method Deserialize (line 4301) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4303) | public global::Orleans.Serialization.ReferenceFieldNotSupportedExcepti... method Serialize (line 4305) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4308) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ReferenceNotFoundException (line 4312) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ReferenceNotFoundException (line 4317) | public Codec_ReferenceNotFoundException(global::Orleans.Serialization.... method Deserialize (line 4319) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4321) | public global::Orleans.Serialization.ReferenceNotFoundException ReadVa... method Serialize (line 4323) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4326) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RequiredFieldMissingException (line 4330) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_RequiredFieldMissingException (line 4335) | public Codec_RequiredFieldMissingException(global::Orleans.Serializati... method Deserialize (line 4337) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4339) | public global::Orleans.Serialization.RequiredFieldMissingException Rea... method Serialize (line 4341) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4344) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SchemaTypeInvalidException (line 4348) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SchemaTypeInvalidException (line 4353) | public Codec_SchemaTypeInvalidException(global::Orleans.Serialization.... method Deserialize (line 4355) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4357) | public global::Orleans.Serialization.SchemaTypeInvalidException ReadVa... method Serialize (line 4359) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4362) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SerializerException (line 4366) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SerializerException (line 4371) | public Codec_SerializerException(global::Orleans.Serialization.Seriali... method Deserialize (line 4373) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4375) | public global::Orleans.Serialization.SerializerException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4380) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TypeMissingException (line 4384) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TypeMissingException (line 4389) | public Codec_TypeMissingException(global::Orleans.Serialization.Serial... method Deserialize (line 4391) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4393) | public global::Orleans.Serialization.TypeMissingException ReadValue(ref global::Orleans.Serialization... method WriteField (line 4398) | public void WriteField(ref global::Orleans.Serializatio... class Codec_UnexpectedLengthPrefixValueException (line 4402) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_UnexpectedLengthPrefixValueException (line 4407) | public Codec_UnexpectedLengthPrefixValueException(global::Orleans.Seri... method Deserialize (line 4409) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4411) | public global::Orleans.Serialization.UnexpectedLengthPrefixValueExcept... method Serialize (line 4413) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4416) | public void WriteField(ref global::Orleans.Serializatio... class Codec_UnknownReferencedTypeException (line 4420) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_UnknownReferencedTypeException (line 4425) | public Codec_UnknownReferencedTypeException(global::Orleans.Serializat... method Deserialize (line 4427) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4429) | public global::Orleans.Serialization.UnknownReferencedTypeException Re... method Serialize (line 4431) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4434) | public void WriteField(ref global::Orleans.Serializatio... class Codec_UnknownWellKnownTypeException (line 4438) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_UnknownWellKnownTypeException (line 4443) | public Codec_UnknownWellKnownTypeException(global::Orleans.Serializati... method Deserialize (line 4445) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4447) | public global::Orleans.Serialization.UnknownWellKnownTypeException Rea... method Serialize (line 4449) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4452) | public void WriteField(ref global::Orleans.Serializatio... class Codec_UnsupportedWireTypeException (line 4456) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_UnsupportedWireTypeException (line 4461) | public Codec_UnsupportedWireTypeException(global::Orleans.Serializatio... method Deserialize (line 4463) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4465) | public global::Orleans.Serialization.UnsupportedWireTypeException Read... method Serialize (line 4467) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4470) | public void WriteField(ref global::Orleans.Serializatio... class Copier_CodecNotFoundException (line 4474) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_CodecNotFoundException (line 4479) | public Copier_CodecNotFoundException(global::Orleans.Serialization.Ser... class Copier_ExtendedWireTypeInvalidException (line 4482) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ExtendedWireTypeInvalidException (line 4487) | public Copier_ExtendedWireTypeInvalidException(global::Orleans.Seriali... class Copier_FieldIdNotPresentException (line 4490) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FieldIdNotPresentException (line 4495) | public Copier_FieldIdNotPresentException(global::Orleans.Serialization... class Copier_FieldTypeInvalidException (line 4498) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FieldTypeInvalidException (line 4503) | public Copier_FieldTypeInvalidException(global::Orleans.Serialization.... class Copier_FieldTypeMissingException (line 4506) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FieldTypeMissingException (line 4511) | public Copier_FieldTypeMissingException(global::Orleans.Serialization.... class Copier_IllegalTypeException (line 4514) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_IllegalTypeException (line 4519) | public Copier_IllegalTypeException(global::Orleans.Serialization.Seria... method DeepCopy (line 4521) | public override void DeepCopy(global::Orleans.Serialization.IllegalTyp... class Copier_ReferenceFieldNotSupportedException (line 4524) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ReferenceFieldNotSupportedException (line 4529) | public Copier_ReferenceFieldNotSupportedException(global::Orleans.Seri... method DeepCopy (line 4531) | public override void DeepCopy(global::Orleans.Serialization.ReferenceF... class Copier_ReferenceNotFoundException (line 4534) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ReferenceNotFoundException (line 4539) | public Copier_ReferenceNotFoundException(global::Orleans.Serialization... method DeepCopy (line 4541) | public override void DeepCopy(global::Orleans.Serialization.ReferenceN... class Copier_RequiredFieldMissingException (line 4544) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_RequiredFieldMissingException (line 4549) | public Copier_RequiredFieldMissingException(global::Orleans.Serializat... class Copier_SchemaTypeInvalidException (line 4552) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SchemaTypeInvalidException (line 4557) | public Copier_SchemaTypeInvalidException(global::Orleans.Serialization... class Copier_SerializerException (line 4560) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SerializerException (line 4565) | public Copier_SerializerException(global::Orleans.Serialization.Serial... class Copier_TypeMissingException (line 4568) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_TypeMissingException (line 4573) | public Copier_TypeMissingException(global::Orleans.Serialization.Seria... class Copier_UnexpectedLengthPrefixValueException (line 4576) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_UnexpectedLengthPrefixValueException (line 4581) | public Copier_UnexpectedLengthPrefixValueException(global::Orleans.Ser... class Copier_UnknownReferencedTypeException (line 4584) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_UnknownReferencedTypeException (line 4589) | public Copier_UnknownReferencedTypeException(global::Orleans.Serializa... method DeepCopy (line 4591) | public override void DeepCopy(global::Orleans.Serialization.UnknownRef... class Copier_UnknownWellKnownTypeException (line 4594) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_UnknownWellKnownTypeException (line 4599) | public Copier_UnknownWellKnownTypeException(global::Orleans.Serializat... method DeepCopy (line 4601) | public override void DeepCopy(global::Orleans.Serialization.UnknownWel... class Copier_UnsupportedWireTypeException (line 4604) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_UnsupportedWireTypeException (line 4609) | public Copier_UnsupportedWireTypeException(global::Orleans.Serializati... class Codec_ArrayListSurrogate (line 4615) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ArrayListSurrogate (line 4620) | public Codec_ArrayListSurrogate(global::Orleans.Serialization.Serializ... method Deserialize (line 4622) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4624) | public global::Orleans.Serialization.Codecs.ArrayListSurrogate ReadVal... method Serialize (line 4626) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4629) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ConcurrentDictionarySurrogate (line 4633) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ConcurrentDictionarySurrogate (line 4638) | public Codec_ConcurrentDictionarySurrogate(global::Orleans.Serializati... method Deserialize (line 4640) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4642) | public global::Orleans.Serialization.Codecs.ConcurrentDictionarySurrog... method Serialize (line 4644) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4647) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ConcurrentQueueSurrogate (line 4651) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ConcurrentQueueSurrogate (line 4656) | public Codec_ConcurrentQueueSurrogate(global::Orleans.Serialization.Se... method Deserialize (line 4658) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4660) | public global::Orleans.Serialization.Codecs.ConcurrentQueueSurrogate(ref global::Orleans.Serialization... method WriteField (line 4665) | public void WriteField(ref global::Orleans.Serializatio... class Codec_CultureInfoSurrogate (line 4669) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4674) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4676) | public global::Orleans.Serialization.Codecs.CultureInfoSurrogate ReadV... method Serialize (line 4678) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4681) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableArraySurrogate (line 4685) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableArraySurrogate (line 4690) | public Codec_ImmutableArraySurrogate(global::Orleans.Serialization.Ser... method Deserialize (line 4692) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4694) | public global::Orleans.Serialization.Codecs.ImmutableArraySurrogate... method Serialize (line 4696) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4699) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableDictionarySurrogate (line 4703) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableDictionarySurrogate (line 4708) | public Codec_ImmutableDictionarySurrogate(global::Orleans.Serializatio... method Deserialize (line 4710) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4712) | public global::Orleans.Serialization.Codecs.ImmutableDictionarySurroga... method Serialize (line 4714) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4717) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableHashSetSurrogate (line 4721) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableHashSetSurrogate (line 4726) | public Codec_ImmutableHashSetSurrogate(global::Orleans.Serialization.S... method Deserialize (line 4728) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4730) | public global::Orleans.Serialization.Codecs.ImmutableHashSetSurrogate<... method Serialize (line 4732) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4735) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableListSurrogate (line 4739) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableListSurrogate (line 4744) | public Codec_ImmutableListSurrogate(global::Orleans.Serialization.Seri... method Deserialize (line 4746) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4748) | public global::Orleans.Serialization.Codecs.ImmutableListSurrogate ... method Serialize (line 4750) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4753) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableQueueSurrogate (line 4757) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableQueueSurrogate (line 4762) | public Codec_ImmutableQueueSurrogate(global::Orleans.Serialization.Ser... method Deserialize (line 4764) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4766) | public global::Orleans.Serialization.Codecs.ImmutableQueueSurrogate... method Serialize (line 4768) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4771) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableSortedDictionarySurrogate (line 4775) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableSortedDictionarySurrogate (line 4780) | public Codec_ImmutableSortedDictionarySurrogate(global::Orleans.Serial... method Deserialize (line 4782) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4784) | public global::Orleans.Serialization.Codecs.ImmutableSortedDictionaryS... method Serialize (line 4786) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4789) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableSortedSetSurrogate (line 4793) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableSortedSetSurrogate (line 4798) | public Codec_ImmutableSortedSetSurrogate(global::Orleans.Serialization... method Deserialize (line 4800) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4802) | public global::Orleans.Serialization.Codecs.ImmutableSortedSetSurrogat... method Serialize (line 4804) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4807) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ImmutableStackSurrogate (line 4811) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ImmutableStackSurrogate (line 4816) | public Codec_ImmutableStackSurrogate(global::Orleans.Serialization.Ser... method Deserialize (line 4818) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4820) | public global::Orleans.Serialization.Codecs.ImmutableStackSurrogate... method Serialize (line 4822) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4825) | public void WriteField(ref global::Orleans.Serializatio... class Codec_NameValueCollectionSurrogate (line 4829) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_NameValueCollectionSurrogate (line 4834) | public Codec_NameValueCollectionSurrogate(global::Orleans.Serializatio... method Deserialize (line 4836) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4838) | public global::Orleans.Serialization.Codecs.NameValueCollectionSurroga... method Serialize (line 4840) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4843) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ReadOnlyCollectionSurrogate (line 4847) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ReadOnlyCollectionSurrogate (line 4852) | public Codec_ReadOnlyCollectionSurrogate(global::Orleans.Serialization... method Deserialize (line 4854) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4856) | public global::Orleans.Serialization.Codecs.ReadOnlyCollectionSurrogat... method Serialize (line 4858) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4861) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ReadOnlyDictionarySurrogate (line 4865) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ReadOnlyDictionarySurrogate (line 4870) | public Codec_ReadOnlyDictionarySurrogate(global::Orleans.Serialization... method Deserialize (line 4872) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4874) | public global::Orleans.Serialization.Codecs.ReadOnlyDictionarySurrogat... method Serialize (line 4876) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4879) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SortedDictionarySurrogate (line 4883) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SortedDictionarySurrogate (line 4888) | public Codec_SortedDictionarySurrogate(global::Orleans.Serialization.S... method Deserialize (line 4890) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4892) | public global::Orleans.Serialization.Codecs.SortedDictionarySurrogate<... method Serialize (line 4894) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4897) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SortedListSurrogate (line 4901) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SortedListSurrogate (line 4906) | public Codec_SortedListSurrogate(global::Orleans.Serialization.Seriali... method Deserialize (line 4908) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4910) | public global::Orleans.Serialization.Codecs.SortedListSurrogate(ref global::Orleans.Serialization... method WriteField (line 4915) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SortedSetSurrogate (line 4919) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SortedSetSurrogate (line 4924) | public Codec_SortedSetSurrogate(global::Orleans.Serialization.Serializ... method Deserialize (line 4926) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4928) | public global::Orleans.Serialization.Codecs.SortedSetSurrogate Read... method Serialize (line 4930) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4933) | public void WriteField(ref global::Orleans.Serializatio... class Codec_VersionSurrogate (line 4937) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 4942) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 4944) | public global::Orleans.Serialization.Codecs.VersionSurrogate ReadValue... method Serialize (line 4946) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 4949) | public void WriteField(ref global::Orleans.Serializatio... class Copier_ArrayListSurrogate (line 4953) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ArrayListSurrogate (line 4958) | public Copier_ArrayListSurrogate(global::Orleans.Serialization.Seriali... method DeepCopy (line 4960) | public global::Orleans.Serialization.Codecs.ArrayListSurrogate DeepCop... class Copier_ConcurrentDictionarySurrogate (line 4963) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ConcurrentDictionarySurrogate (line 4968) | public Copier_ConcurrentDictionarySurrogate(global::Orleans.Serializat... method DeepCopy (line 4970) | public global::Orleans.Serialization.Codecs.ConcurrentDictionarySurrog... class Copier_ConcurrentQueueSurrogate (line 4973) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ConcurrentQueueSurrogate (line 4978) | public Copier_ConcurrentQueueSurrogate(global::Orleans.Serialization.S... method DeepCopy (line 4980) | public global::Orleans.Serialization.Codecs.ConcurrentQueueSurrogate... class Copier_ImmutableDictionarySurrogate (line 4993) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ImmutableDictionarySurrogate (line 4998) | public Copier_ImmutableDictionarySurrogate(global::Orleans.Serializati... method DeepCopy (line 5000) | public global::Orleans.Serialization.Codecs.ImmutableDictionarySurroga... class Copier_ImmutableHashSetSurrogate (line 5003) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ImmutableHashSetSurrogate (line 5008) | public Copier_ImmutableHashSetSurrogate(global::Orleans.Serialization.... method DeepCopy (line 5010) | public global::Orleans.Serialization.Codecs.ImmutableHashSetSurrogate<... class Copier_ImmutableListSurrogate (line 5013) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ImmutableListSurrogate (line 5018) | public Copier_ImmutableListSurrogate(global::Orleans.Serialization.Ser... method DeepCopy (line 5020) | public global::Orleans.Serialization.Codecs.ImmutableListSurrogate ... class Copier_ImmutableQueueSurrogate (line 5023) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ImmutableQueueSurrogate (line 5028) | public Copier_ImmutableQueueSurrogate(global::Orleans.Serialization.Se... method DeepCopy (line 5030) | public global::Orleans.Serialization.Codecs.ImmutableQueueSurrogate... class Copier_ImmutableSortedDictionarySurrogate (line 5033) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ImmutableSortedDictionarySurrogate (line 5038) | public Copier_ImmutableSortedDictionarySurrogate(global::Orleans.Seria... method DeepCopy (line 5040) | public global::Orleans.Serialization.Codecs.ImmutableSortedDictionaryS... class Copier_ImmutableSortedSetSurrogate (line 5043) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ImmutableSortedSetSurrogate (line 5048) | public Copier_ImmutableSortedSetSurrogate(global::Orleans.Serializatio... method DeepCopy (line 5050) | public global::Orleans.Serialization.Codecs.ImmutableSortedSetSurrogat... class Copier_ImmutableStackSurrogate (line 5053) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ImmutableStackSurrogate (line 5058) | public Copier_ImmutableStackSurrogate(global::Orleans.Serialization.Se... method DeepCopy (line 5060) | public global::Orleans.Serialization.Codecs.ImmutableStackSurrogate... class Copier_NameValueCollectionSurrogate (line 5063) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_NameValueCollectionSurrogate (line 5068) | public Copier_NameValueCollectionSurrogate(global::Orleans.Serializati... method DeepCopy (line 5070) | public global::Orleans.Serialization.Codecs.NameValueCollectionSurroga... class Copier_ReadOnlyCollectionSurrogate (line 5073) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ReadOnlyCollectionSurrogate (line 5078) | public Copier_ReadOnlyCollectionSurrogate(global::Orleans.Serializatio... method DeepCopy (line 5080) | public global::Orleans.Serialization.Codecs.ReadOnlyCollectionSurrogat... class Copier_ReadOnlyDictionarySurrogate (line 5083) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ReadOnlyDictionarySurrogate (line 5088) | public Copier_ReadOnlyDictionarySurrogate(global::Orleans.Serializatio... method DeepCopy (line 5090) | public global::Orleans.Serialization.Codecs.ReadOnlyDictionarySurrogat... class Copier_SortedDictionarySurrogate (line 5093) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SortedDictionarySurrogate (line 5098) | public Copier_SortedDictionarySurrogate(global::Orleans.Serialization.... method DeepCopy (line 5100) | public global::Orleans.Serialization.Codecs.SortedDictionarySurrogate<... class Copier_SortedListSurrogate (line 5103) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SortedListSurrogate (line 5108) | public Copier_SortedListSurrogate(global::Orleans.Serialization.Serial... method DeepCopy (line 5110) | public global::Orleans.Serialization.Codecs.SortedListSurrogate Deep... class Codec_CompletedResponse (line 5126) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_CompletedResponse (line 5131) | public Codec_CompletedResponse(global::Orleans.Serialization.Activator... method Deserialize (line 5133) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 5135) | public global::Orleans.Serialization.Invocation.CompletedResponse Read... method Serialize (line 5137) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 5140) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ExceptionResponse (line 5144) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ExceptionResponse (line 5149) | public Codec_ExceptionResponse(global::Orleans.Serialization.Serialize... method Deserialize (line 5151) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 5153) | public global::Orleans.Serialization.Invocation.ExceptionResponse Read... method Serialize (line 5155) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 5158) | public void WriteField(ref global::Orleans.Serializatio... FILE: src/api/Orleans.Streaming/Orleans.Streaming.cs class ClientStreamingExtensions (line 11) | public static partial class ClientStreamingExtensions method GetStreamProvider (line 13) | public static Streams.IStreamProvider GetStreamProvider(this IClusterC... class GrainStreamingExtensions (line 16) | public static partial class GrainStreamingExtensions method GetStreamProvider (line 18) | public static Streams.IStreamProvider GetStreamProvider(this Grain gra... method GetStreamProvider (line 20) | public static Streams.IStreamProvider GetStreamProvider(this IGrainBas... class ImplicitStreamSubscriptionAttribute (line 23) | [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = tr... method ImplicitStreamSubscriptionAttribute (line 26) | public ImplicitStreamSubscriptionAttribute() { } method ImplicitStreamSubscriptionAttribute (line 28) | public ImplicitStreamSubscriptionAttribute(Streams.IStreamNamespacePre... method ImplicitStreamSubscriptionAttribute (line 30) | public ImplicitStreamSubscriptionAttribute(string streamNamespace, str... method ImplicitStreamSubscriptionAttribute (line 32) | public ImplicitStreamSubscriptionAttribute(System.Type predicateType, ... method GetBindings (line 38) | public System.Collections.Generic.IEnumerable(this IClien... method AddPersistentStreams (line 171) | public static IClientBuilder AddPersistentStreams(this IClientBuilder ... method AddStreaming (line 173) | public static IClientBuilder AddStreaming(this IClientBuilder builder)... class ClusterClientMemoryStreamConfigurator (line 176) | public partial class ClusterClientMemoryStreamConfigurator ... method ClusterClientMemoryStreamConfigurator (line 178) | public ClusterClientMemoryStreamConfigurator(string name, IClientBuild... class ClusterClientPersistentStreamConfigurator (line 181) | public partial class ClusterClientPersistentStreamConfigurator : NamedSe... method ClusterClientPersistentStreamConfigurator (line 183) | public ClusterClientPersistentStreamConfigurator(string name, IClientB... class ClusterClientPersistentStreamConfiguratorExtensions (line 186) | public static partial class ClusterClientPersistentStreamConfiguratorExt... method ConfigureLifecycle (line 188) | public static void ConfigureLifecycle(this IClusterClientPersistentStr... type IClusterClientMemoryStreamConfigurator (line 191) | public partial interface IClusterClientMemoryStreamConfigurator : IMemor... type IClusterClientPersistentStreamConfigurator (line 195) | public partial interface IClusterClientPersistentStreamConfigurator : IP... type IMemoryStreamConfigurator (line 199) | public partial interface IMemoryStreamConfigurator : INamedServiceConfig... type IPersistentStreamConfigurator (line 203) | public partial interface IPersistentStreamConfigurator : INamedServiceCo... type ISiloMemoryStreamConfigurator (line 207) | public partial interface ISiloMemoryStreamConfigurator : IMemoryStreamCo... type ISiloPersistentStreamConfigurator (line 211) | public partial interface ISiloPersistentStreamConfigurator : IPersistent... type ISiloRecoverableStreamConfigurator (line 215) | public partial interface ISiloRecoverableStreamConfigurator : ISiloPersi... class MemoryStreamConfiguratorExtensions (line 219) | public static partial class MemoryStreamConfiguratorExtensions method ConfigurePartitioning (line 221) | public static void ConfigurePartitioning(this IMemoryStreamConfigurato... class PersistentStreamConfiguratorExtensions (line 224) | public static partial class PersistentStreamConfiguratorExtensions method ConfigureStreamPubSub (line 226) | public static void ConfigureStreamPubSub(this IPersistentStreamConfigu... class PersistentStreamStorageConfigurationValidator (line 229) | public partial class PersistentStreamStorageConfigurationValidator : ICo... method PersistentStreamStorageConfigurationValidator (line 231) | internal PersistentStreamStorageConfigurationValidator() { } method Create (line 233) | public static IConfigurationValidator Create(System.IServiceProvider s... method ValidateConfiguration (line 235) | public void ValidateConfiguration() { } class SiloBuilderMemoryStreamExtensions (line 238) | public static partial class SiloBuilderMemoryStreamExtensions method AddMemoryStreams (line 240) | public static ISiloBuilder AddMemoryStreams(this ISiloBuilder builder,... method AddMemoryStreams (line 242) | public static ISiloBuilder AddMemoryStreams(this ISiloBui... class SiloBuilderStreamingExtensions (line 246) | public static partial class SiloBuilderStreamingExtensions method AddPersistentStreams (line 248) | public static ISiloBuilder AddPersistentStreams(this ISiloBuilder buil... method AddStreamFilter (line 250) | public static IClientBuilder AddStreamFilter(this IClientBuilder bu... method AddStreamFilter (line 253) | public static ISiloBuilder AddStreamFilter(this ISiloBuilder builde... method AddStreaming (line 256) | public static ISiloBuilder AddStreaming(this ISiloBuilder builder) { t... class SiloMemoryStreamConfigurator (line 259) | public partial class SiloMemoryStreamConfigurator : SiloRec... method SiloMemoryStreamConfigurator (line 261) | public SiloMemoryStreamConfigurator(string name, System.Action(this ISiloPer... method ConfigurePullingAgent (line 293) | public static void ConfigurePullingAgent(this ISiloPersistentStreamCon... class SiloRecoverableStreamConfigurator (line 296) | public partial class SiloRecoverableStreamConfigurator : SiloPersistentS... method SiloRecoverableStreamConfigurator (line 298) | public SiloRecoverableStreamConfigurator(string name, System.Action Streams.IDeploymentConfigurat... class StreamingServiceCollectionExtensions (line 328) | public static partial class StreamingServiceCollectionExtensions method AddClientStreaming (line 330) | public static void AddClientStreaming(this Microsoft.Extensions.Depend... method AddSiloStreaming (line 332) | public static void AddSiloStreaming(this Microsoft.Extensions.Dependen... method AddStreamFilter (line 334) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class DefaultMemoryMessageBodySerializer (line 341) | [GenerateSerializer] method DefaultMemoryMessageBodySerializer (line 346) | public DefaultMemoryMessageBodySerializer(Serialization.Serializer bodyByt... method OnDeserialized (line 350) | void Serialization.IOnDeserialized.OnDeserialized(Serialization.Deseri... method Serialize (line 352) | public System.ArraySegment Serialize(MemoryMessageBody body) { t... type IMemoryMessageBodySerializer (line 355) | public partial interface IMemoryMessageBodySerializer method Deserialize (line 357) | MemoryMessageBody Deserialize(System.ArraySegment bodyBytes); method Serialize (line 358) | System.ArraySegment Serialize(MemoryMessageBody body); type IMemoryStreamQueueGrain (line 361) | public partial interface IMemoryStreamQueueGrain : IGrainWithGuidKey, IG... method Dequeue (line 363) | System.Threading.Tasks.Task : Orleans.Streams... method MemoryAdapterFactory (line 372) | public MemoryAdapterFactory(string providerName, Configuration.StreamC... method Create (line 382) | public static MemoryAdapterFactory Create(System.IService... method CreateAdapter (line 384) | public System.Threading.Tasks.Task Crea... method CreateQueueCache (line 386) | public Orleans.Streams.IQueueCache CreateQueueCache(Orleans.Streams.Qu... method CreateReceiver (line 388) | public Orleans.Streams.IQueueAdapterReceiver CreateReceiver(Orleans.St... method GetDeliveryFailureHandler (line 390) | public System.Threading.Tasks.Task(Runtime.S... class MemoryMessageBody (line 401) | [GenerateSerializer] method MemoryMessageBody (line 404) | public MemoryMessageBody(System.Collections.Generic.IEnumerable : Orleans.Streams.IQ... method MemoryPooledCache (line 430) | public MemoryPooledCache(Streams.Common.IObjectPool method FixedSizeBuffer (line 663) | public FixedSizeBuffer(int blockSizeInByte) { } method OnResetState (line 667) | public override void OnResetState() { } method TryGetSegment (line 669) | public bool TryGetSegment(int size, out System.ArraySegment valu... type IBlockPoolMonitor (line 672) | public partial interface IBlockPoolMonitor method Report (line 674) | void Report(long totalSizeInByte, long availableMemoryInByte, long cla... method TrackMemoryAllocated (line 675) | void TrackMemoryAllocated(long allocatedMemoryInBytes); method TrackMemoryReleased (line 676) | void TrackMemoryReleased(long releasedMemoryInBytes); type ICacheDataAdapter (line 679) | public partial interface ICacheDataAdapter method GetBatchContainer (line 681) | Orleans.Streams.IBatchContainer GetBatchContainer(ref CachedMessage ca... method GetSequenceToken (line 682) | Orleans.Streams.StreamSequenceToken GetSequenceToken(ref CachedMessage... type ICacheMonitor (line 685) | public partial interface ICacheMonitor method ReportCacheSize (line 687) | void ReportCacheSize(long totalCacheSizeInBytes); method ReportMessageStatistics (line 688) | void ReportMessageStatistics(System.DateTime? oldestMessageEnqueueTime... method TrackCachePressureMonitorStatusChange (line 689) | void TrackCachePressureMonitorStatusChange(string pressureMonitorType,... method TrackMemoryAllocated (line 690) | void TrackMemoryAllocated(int memoryInBytes); method TrackMemoryReleased (line 691) | void TrackMemoryReleased(int memoryInBytes); method TrackMessagesAdded (line 692) | void TrackMessagesAdded(long messagesAdded); method TrackMessagesPurged (line 693) | void TrackMessagesPurged(long messagesPurged); type IEvictionStrategy (line 696) | public partial interface IEvictionStrategy method OnBlockAllocated (line 702) | void OnBlockAllocated(FixedSizeBuffer newBlock); method PerformPurge (line 703) | void PerformPurge(System.DateTime utcNow); type IObjectPoolMonitor (line 706) | public partial interface IObjectPoolMonitor method Report (line 708) | void Report(long totalObjects, long availableObjects, long claimedObje... method TrackObjectAllocated (line 709) | void TrackObjectAllocated(); method TrackObjectReleased (line 710) | void TrackObjectReleased(); type IObjectPool (line 713) | public partial interface IObjectPool method Allocate (line 716) | T Allocate(); method Free (line 717) | void Free(T resource); type IPurgeObservable (line 720) | public partial interface IPurgeObservable method RemoveOldestMessage (line 730) | void RemoveOldestMessage(); type IQueueAdapterReceiverMonitor (line 733) | public partial interface IQueueAdapterReceiverMonitor method TrackInitialization (line 735) | void TrackInitialization(bool success, System.TimeSpan callTime, Syste... method TrackMessagesReceived (line 736) | void TrackMessagesReceived(long count, System.DateTime? oldestMessageE... method TrackRead (line 737) | void TrackRead(bool success, System.TimeSpan callTime, System.Exceptio... method TrackShutdown (line 738) | void TrackShutdown(bool success, System.TimeSpan callTime, System.Exce... class ObjectPoolMonitorBridge (line 741) | public partial class ObjectPoolMonitorBridge : IObjectPoolMonitor method ObjectPoolMonitorBridge (line 743) | public ObjectPoolMonitorBridge(IBlockPoolMonitor blockPoolMonitor, int... method Report (line 745) | public void Report(long totalObjects, long availableObjects, long clai... method TrackObjectAllocated (line 747) | public void TrackObjectAllocated() { } method TrackObjectReleased (line 749) | public void TrackObjectReleased() { } class ObjectPool (line 752) | public partial class ObjectPool : IObjectPool where T : PooledReso... method ObjectPool (line 754) | public ObjectPool(System.Func factoryFunc, IObjectPoolMonitor monit... method Allocate (line 756) | public virtual T Allocate() { throw null; } method Free (line 758) | public virtual void Free(T resource) { } class PersistentStreamProvider (line 761) | public partial class PersistentStreamProvider : Orleans.Streams.IStreamP... method PersistentStreamProvider (line 763) | public PersistentStreamProvider(string name, Configuration.StreamPubSu... method Create (line 769) | public static Orleans.Streams.IStreamProvider Create(System.IServicePr... method ExecuteCommand (line 771) | public System.Threading.Tasks.Task ExecuteCommand(int command,... method GetStream (line 773) | public Orleans.Streams.IAsyncStream GetStream(Runtime.StreamId s... method GetStreamSubscriptionManager (line 775) | public Orleans.Streams.Core.IStreamSubscriptionManager GetStreamSubscr... method Participate (line 777) | public void Participate(ILifecycleObservable lifecycle) { } method ParticipateIn (line 779) | public static ILifecycleParticipant ParticipateIn message... method GetCursor (line 810) | public object GetCursor(Runtime.StreamId streamId, Orleans.Streams.Str... method RemoveOldestMessage (line 812) | public void RemoveOldestMessage() { } method TryGetNextMessage (line 814) | public bool TryGetNextMessage(object cursorObj, out Orleans.Streams.IB... class PooledResource (line 817) | public abstract partial class PooledResource : System.IDisposable whe... method Dispose (line 821) | public void Dispose() { } method OnResetState (line 823) | public virtual void OnResetState() { } method SignalPurge (line 825) | public virtual void SignalPurge() { } class ReceiverMonitorDimensions (line 828) | public partial class ReceiverMonitorDimensions method ReceiverMonitorDimensions (line 830) | public ReceiverMonitorDimensions() { } method ReceiverMonitorDimensions (line 832) | public ReceiverMonitorDimensions(string queueId) { } class SegmentBuilder (line 837) | public static partial class SegmentBuilder method Append (line 839) | public static void Append(System.ArraySegment segment, ref int w... method Append (line 841) | public static void Append(System.ArraySegment segment, ref int w... method CalculateAppendSize (line 843) | public static int CalculateAppendSize(System.ReadOnlySpan memory... method CalculateAppendSize (line 845) | public static int CalculateAppendSize(string str) { throw null; } method ReadNextBytes (line 847) | public static System.ArraySegment ReadNextBytes(System.ArraySegm... method ReadNextString (line 849) | public static string ReadNextString(System.ArraySegment segment,... class SimpleQueueAdapterCache (line 852) | public partial class SimpleQueueAdapterCache : Orleans.Streams.IQueueAda... method SimpleQueueAdapterCache (line 855) | public SimpleQueueAdapterCache(Configuration.SimpleQueueCacheOptions o... method CreateQueueCache (line 857) | public Orleans.Streams.IQueueCache CreateQueueCache(Orleans.Streams.Qu... class SimpleQueueCache (line 860) | public partial class SimpleQueueCache : Orleans.Streams.IQueueCache, Orl... method SimpleQueueCache (line 862) | public SimpleQueueCache(int cacheSize, Microsoft.Extensions.Logging.IL... method AddToCache (line 866) | public virtual void AddToCache(System.Collections.Generic.IList Crea... method CreateQueueCache (line 963) | public Orleans.Streams.IQueueCache CreateQueueCache(Orleans.Streams.Qu... method CreateReceiver (line 965) | public Orleans.Streams.IQueueAdapterReceiver CreateReceiver(Orleans.St... method ExecuteCommand (line 967) | public System.Threading.Tasks.Task ExecuteCommand(int command,... method GetDeliveryFailureHandler (line 969) | public System.Threading.Tasks.Task(Runtime.S... class GeneratorPooledCache (line 980) | public partial class GeneratorPooledCache : Orleans.Streams.IQueueCache,... method GeneratorPooledCache (line 982) | public GeneratorPooledCache(Common.IObjectPool... method AddToCache (line 984) | public void AddToCache(System.Collections.Generic.IList dest... method ToString (line 1048) | public override readonly string ToString() { throw null; } type StreamId (line 1051) | [Immutable] method CompareTo (line 1063) | public readonly int CompareTo(StreamId other) { throw null; } method Create (line 1065) | public static StreamId Create(Streams.IStreamIdentity streamIdentity) ... method Create (line 1067) | public static StreamId Create(System.ReadOnlySpan ns, System.Rea... method Create (line 1069) | public static StreamId Create(string ns, System.Guid key) { throw null; } method Create (line 1071) | public static StreamId Create(string ns, long key) { throw null; } method Create (line 1073) | public static StreamId Create(string ns, string key) { throw null; } method Equals (line 1075) | public readonly bool Equals(StreamId other) { throw null; } method Equals (line 1077) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 1079) | public override readonly int GetHashCode() { throw null; } method GetKeyAsString (line 1081) | public readonly string GetKeyAsString() { throw null; } method GetNamespace (line 1083) | public readonly string? GetNamespace() { throw null; } method GetObjectData (line 1085) | public readonly void GetObjectData(System.Runtime.Serialization.Serial... method Parse (line 1091) | public static StreamId Parse(System.ReadOnlySpan value) { throw ... method ToString (line 1093) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 1095) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToString (line 1097) | public override readonly string ToString() { throw null; } type IMessageDeliveryBackoffProvider (line 1103) | public partial interface IMessageDeliveryBackoffProvider : Orleans.Inter... type IQueueReaderBackoffProvider (line 1107) | public partial interface IQueueReaderBackoffProvider : Orleans.Internal.... class AggregatedQueueFlowController (line 1114) | public partial class AggregatedQueueFlowController : System.Collections.... method AggregatedQueueFlowController (line 1116) | public AggregatedQueueFlowController(int defaultMaxAddCount) { } method GetMaxAddCount (line 1118) | public int GetMaxAddCount() { throw null; } class AsyncBatchObservableExtensions (line 1121) | public static partial class AsyncBatchObservableExtensions method SubscribeAsync (line 1123) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1125) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1127) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1129) | public static System.Threading.Tasks.Task>... class AsyncObservableExtensions (line 1132) | public static partial class AsyncObservableExtensions method SubscribeAsync (line 1134) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1136) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1138) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1140) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1142) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1144) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1146) | public static System.Threading.Tasks.Task>... method SubscribeAsync (line 1148) | public static System.Threading.Tasks.Task>... class BatchContainerBatch (line 1151) | [GenerateSerializer] method BatchContainerBatch (line 1154) | public BatchContainerBatch(System.Collections.Generic.List GetMyQ... method Initialize (line 1220) | public override System.Threading.Tasks.Task Initialize(IStreamQueueMap... method OnClusterMembershipChange (line 1222) | protected override void OnClusterMembershipChange(System.Collections.G... class FaultedSubscriptionException (line 1225) | [GenerateSerializer] method FaultedSubscriptionException (line 1228) | public FaultedSubscriptionException() { } method FaultedSubscriptionException (line 1230) | public FaultedSubscriptionException(string message, System.Exception i... method FaultedSubscriptionException (line 1232) | public FaultedSubscriptionException(string message) { } class HashRingBasedPartitionedStreamQueueMapper (line 1235) | public sealed partial class HashRingBasedPartitionedStreamQueueMapper : ... method HashRingBasedPartitionedStreamQueueMapper (line 1237) | public HashRingBasedPartitionedStreamQueueMapper(System.Collections.Ge... method QueueToPartition (line 1239) | public string QueueToPartition(QueueId queue) { throw null; } class HashRingBasedStreamQueueMapper (line 1242) | public partial class HashRingBasedStreamQueueMapper : IConsistentRingStr... method HashRingBasedStreamQueueMapper (line 1244) | public HashRingBasedStreamQueueMapper(Configuration.HashRingStreamQueu... method GetAllQueues (line 1246) | public System.Collections.Generic.IEnumerable GetAllQueues() ... method GetQueueForStream (line 1248) | public QueueId GetQueueForStream(Runtime.StreamId streamId) { throw nu... method GetQueuesForRange (line 1250) | public System.Collections.Generic.IEnumerable GetQueuesForRan... method ToString (line 1252) | public override string ToString() { throw null; } type IAsyncBatchObservable (line 1255) | public partial interface IAsyncBatchObservable method SubscribeAsync (line 1257) | System.Threading.Tasks.Task> SubscribeAsyn... method SubscribeAsync (line 1258) | System.Threading.Tasks.Task> SubscribeAsyn... type IAsyncBatchObserver (line 1261) | public partial interface IAsyncBatchObserver method OnCompletedAsync (line 1263) | System.Threading.Tasks.Task OnCompletedAsync(); method OnErrorAsync (line 1264) | System.Threading.Tasks.Task OnErrorAsync(System.Exception ex); method OnNextAsync (line 1265) | System.Threading.Tasks.Task OnNextAsync(System.Collections.Generic.ILi... type IAsyncBatchProducer (line 1268) | public partial interface IAsyncBatchProducer : IAsyncObserver method OnNextBatchAsync (line 1270) | System.Threading.Tasks.Task OnNextBatchAsync(System.Collections.Generi... type IAsyncObservable (line 1273) | public partial interface IAsyncObservable method SubscribeAsync (line 1275) | System.Threading.Tasks.Task> SubscribeAsyn... method SubscribeAsync (line 1276) | System.Threading.Tasks.Task> SubscribeAsyn... type IAsyncObserver (line 1279) | public partial interface IAsyncObserver method OnCompletedAsync (line 1281) | System.Threading.Tasks.Task OnCompletedAsync(); method OnErrorAsync (line 1282) | System.Threading.Tasks.Task OnErrorAsync(System.Exception ex); method OnNextAsync (line 1283) | System.Threading.Tasks.Task OnNextAsync(T item, StreamSequenceToken? t... type IAsyncStream (line 1286) | public partial interface IAsyncStream method GetAllSubscriptionHandles (line 1297) | System.Threading.Tasks.Task : IAsyncStream, System.IEquatab... method GetAllSubscriptionHandles (line 1297) | System.Threading.Tasks.Task GetQueuesForRange(Runt... type IDeploymentConfiguration (line 1320) | public partial interface IDeploymentConfiguration method GetAllSiloNames (line 1322) | System.Collections.Generic.IList GetAllSiloNames(); class ImplicitConsumerGrainExtensions (line 1325) | public static partial class ImplicitConsumerGrainExtensions method GetImplicitStreamIdentity (line 1327) | public static StreamIdentity GetImplicitStreamIdentity(this IGrainWith... type IQueueAdapter (line 1330) | public partial interface IQueueAdapter method CreateReceiver (line 1338) | IQueueAdapterReceiver CreateReceiver(QueueId queueId); method QueueMessageBatchAsync (line 1339) | System.Threading.Tasks.Task QueueMessageBatchAsync(Runtime.StreamId... type IQueueAdapterCache (line 1342) | public partial interface IQueueAdapterCache method CreateQueueCache (line 1344) | IQueueCache CreateQueueCache(QueueId queueId); type IQueueAdapterFactory (line 1347) | public partial interface IQueueAdapterFactory method CreateAdapter (line 1349) | System.Threading.Tasks.Task CreateAdapter(); method GetDeliveryFailureHandler (line 1350) | System.Threading.Tasks.Task GetDeliveryFailureH... method GetQueueAdapterCache (line 1351) | IQueueAdapterCache GetQueueAdapterCache(); method GetStreamQueueMapper (line 1352) | IStreamQueueMapper GetStreamQueueMapper(); type IQueueAdapterReceiver (line 1355) | public partial interface IQueueAdapterReceiver method GetQueueMessagesAsync (line 1357) | System.Threading.Tasks.Task mess... method GetCacheCursor (line 1366) | IQueueCacheCursor GetCacheCursor(Runtime.StreamId streamId, StreamSequ... method IsUnderPressure (line 1367) | bool IsUnderPressure(); method TryPurgeFromCache (line 1368) | bool TryPurgeFromCache(out System.Collections.Generic.IList method ToQueueMessage (line 1381) | TQueueMessage ToQueueMessage(Runtime.StreamId streamId, System.Coll... method FromQueueMessage (line 1386) | TMessageBatch FromQueueMessage(TQueueMessage queueMessage, long sequen... type IQueueDataAdapter (line 1384) | public partial interface IQueueDataAdapter... method ToQueueMessage (line 1381) | TQueueMessage ToQueueMessage(Runtime.StreamId streamId, System.Coll... method FromQueueMessage (line 1386) | TMessageBatch FromQueueMessage(TQueueMessage queueMessage, long sequen... type IQueueFlowController (line 1389) | public partial interface IQueueFlowController method GetMaxAddCount (line 1391) | int GetMaxAddCount(); type IStreamFailureHandler (line 1394) | public partial interface IStreamFailureHandler method OnDeliveryFailure (line 1398) | System.Threading.Tasks.Task OnDeliveryFailure(Runtime.GuidId subscript... method OnSubscriptionFailure (line 1399) | System.Threading.Tasks.Task OnSubscriptionFailure(Runtime.GuidId subsc... type IStreamIdentity (line 1402) | public partial interface IStreamIdentity type IStreamIdMapper (line 1409) | public partial interface IStreamIdMapper method GetGrainKeyId (line 1411) | Runtime.IdSpan GetGrainKeyId(Metadata.GrainBindings grainBindings, Run... type IStreamNamespacePredicate (line 1414) | public partial interface IStreamNamespacePredicate method IsMatch (line 1418) | bool IsMatch(string streamNamespace); type IStreamNamespacePredicateProvider (line 1421) | public partial interface IStreamNamespacePredicateProvider method TryGetPredicate (line 1423) | bool TryGetPredicate(string predicatePattern, out IStreamNamespacePred... type IStreamProvider (line 1426) | public partial interface IStreamProvider method GetStream (line 1432) | IAsyncStream GetStream(Runtime.StreamId streamId); type IStreamPubSub (line 1435) | public partial interface IStreamPubSub method ConsumerCount (line 1437) | System.Threading.Tasks.Task ConsumerCount(Runtime.QualifiedStream... method CreateSubscriptionId (line 1438) | Runtime.GuidId CreateSubscriptionId(Runtime.QualifiedStreamId streamId... method FaultSubscription (line 1439) | System.Threading.Tasks.Task FaultSubscription(Runtime.QualifiedS... method GetAllSubscriptions (line 1440) | System.Threading.Tasks.Task ProducerCount(Runtime.QualifiedStream... method RegisterConsumer (line 1442) | System.Threading.Tasks.Task RegisterConsumer(Runtime.GuidId subscripti... method RegisterProducer (line 1443) | System.Threading.Tasks.Task GetMyQueues(); method Initialize (line 1456) | System.Threading.Tasks.Task Initialize(IStreamQueueMapper queueMapper); method Shutdown (line 1457) | System.Threading.Tasks.Task Shutdown(); method SubscribeToQueueDistributionChangeEvents (line 1458) | bool SubscribeToQueueDistributionChangeEvents(IStreamQueueBalanceListe... method UnSubscribeFromQueueDistributionChangeEvents (line 1459) | bool UnSubscribeFromQueueDistributionChangeEvents(IStreamQueueBalanceL... type IStreamQueueCheckpointerFactory (line 1462) | public partial interface IStreamQueueCheckpointerFactory method Create (line 1464) | System.Threading.Tasks.Task> Create(s... type IStreamQueueCheckpointer (line 1467) | public partial interface IStreamQueueCheckpointer method Load (line 1471) | System.Threading.Tasks.Task Load(); method Update (line 1472) | void Update(TCheckpoint offset, System.DateTime utcNow); type IStreamQueueMapper (line 1475) | public partial interface IStreamQueueMapper method GetAllQueues (line 1477) | System.Collections.Generic.IEnumerable GetAllQueues(); method GetQueueForStream (line 1478) | QueueId GetQueueForStream(Runtime.StreamId streamId); class LeaseBasedQueueBalancer (line 1481) | public partial class LeaseBasedQueueBalancer : QueueBalancerBase, IStrea... method LeaseBasedQueueBalancer (line 1483) | public LeaseBasedQueueBalancer(string name, Configuration.LeaseBasedQu... method Create (line 1485) | public static IStreamQueueBalancer Create(System.IServiceProvider serv... method GetMyQueues (line 1487) | public override System.Collections.Generic.IEnumerable GetMyQ... method Initialize (line 1489) | public override System.Threading.Tasks.Task Initialize(IStreamQueueMap... method OnClusterMembershipChange (line 1491) | protected override void OnClusterMembershipChange(System.Collections.G... method Shutdown (line 1493) | public override System.Threading.Tasks.Task Shutdown() { throw null; } class LoadShedQueueFlowController (line 1496) | public partial class LoadShedQueueFlowController : IQueueFlowController method LoadShedQueueFlowController (line 1498) | internal LoadShedQueueFlowController() { } method CreateAsPercentageOfCPU (line 1500) | public static IQueueFlowController CreateAsPercentageOfCPU(int loadShe... method CreateAsPercentOfLoadSheddingLimit (line 1502) | public static IQueueFlowController CreateAsPercentOfLoadSheddingLimit(... method GetMaxAddCount (line 1504) | public int GetMaxAddCount() { throw null; } class NoOpStreamDeliveryFailureHandler (line 1507) | public partial class NoOpStreamDeliveryFailureHandler : IStreamFailureHa... method NoOpStreamDeliveryFailureHandler (line 1509) | public NoOpStreamDeliveryFailureHandler() { } method NoOpStreamDeliveryFailureHandler (line 1511) | public NoOpStreamDeliveryFailureHandler(bool faultOnError) { } method OnDeliveryFailure (line 1515) | public System.Threading.Tasks.Task OnDeliveryFailure(Runtime.GuidId su... method OnSubscriptionFailure (line 1517) | public System.Threading.Tasks.Task OnSubscriptionFailure(Runtime.GuidI... class ProviderStartException (line 1520) | [GenerateSerializer] method ProviderStartException (line 1523) | public ProviderStartException() { } method ProviderStartException (line 1525) | public ProviderStartException(string message, System.Exception innerEx... method ProviderStartException (line 1527) | public ProviderStartException(string message) { } class PubSubSubscriptionState (line 1530) | [Newtonsoft.Json.JsonObject(Newtonsoft.Json.MemberSerialization.OptIn)] method PubSubSubscriptionState (line 1549) | public PubSubSubscriptionState(Runtime.GuidId subscriptionId, Runtime.... method AddFilter (line 1554) | public void AddFilter(string filterData) { } method Equals (line 1556) | public bool Equals(Runtime.GuidId subscriptionId) { throw null; } method Equals (line 1558) | public bool Equals(PubSubSubscriptionState other) { throw null; } method Equals (line 1560) | public override bool Equals(object obj) { throw null; } method Fault (line 1562) | public void Fault() { } method GetHashCode (line 1564) | public override int GetHashCode() { throw null; } method ToString (line 1570) | public override string ToString() { throw null; } type SubscriptionStates (line 1572) | public enum SubscriptionStates class QueueAdapterConstants (line 1579) | public static partial class QueueAdapterConstants class QueueAdapterExtensions (line 1584) | public static partial class QueueAdapterExtensions method QueueMessageAsync (line 1586) | public static System.Threading.Tasks.Task QueueMessageAsync(this IQ... class QueueBalancerBase (line 1589) | public abstract partial class QueueBalancerBase : IStreamQueueBalancer method QueueBalancerBase (line 1591) | protected QueueBalancerBase(System.IServiceProvider sp, Microsoft.Exte... method GetMyQueues (line 1599) | public abstract System.Collections.Generic.IEnumerable GetMyQ... method Initialize (line 1600) | public virtual System.Threading.Tasks.Task Initialize(IStreamQueueMapp... method NotifyListeners (line 1602) | protected System.Threading.Tasks.Task NotifyListeners() { throw null; } method OnClusterMembershipChange (line 1604) | protected abstract void OnClusterMembershipChange(System.Collections.G... method Shutdown (line 1605) | public virtual System.Threading.Tasks.Task Shutdown() { throw null; } method SubscribeToQueueDistributionChangeEvents (line 1607) | public bool SubscribeToQueueDistributionChangeEvents(IStreamQueueBalan... method UnSubscribeFromQueueDistributionChangeEvents (line 1609) | public bool UnSubscribeFromQueueDistributionChangeEvents(IStreamQueueB... class QueueCacheMissException (line 1612) | [GenerateSerializer] method QueueCacheMissException (line 1615) | public QueueCacheMissException() { } method QueueCacheMissException (line 1617) | public QueueCacheMissException(StreamSequenceToken requested, StreamSe... method QueueCacheMissException (line 1619) | public QueueCacheMissException(string message, System.Exception innerE... method QueueCacheMissException (line 1621) | public QueueCacheMissException(string requested, string low, string hi... method QueueCacheMissException (line 1623) | public QueueCacheMissException(string message) { } method GetObjectData (line 1634) | [System.Obsolete] type QueueId (line 1638) | [Immutable] method CompareTo (line 1646) | public readonly int CompareTo(QueueId other) { throw null; } method Equals (line 1648) | public readonly bool Equals(QueueId other) { throw null; } method Equals (line 1650) | public override readonly bool Equals(object? obj) { throw null; } method GetHashCode (line 1652) | public override readonly int GetHashCode() { throw null; } method GetNumericId (line 1654) | public readonly uint GetNumericId() { throw null; } method GetQueueId (line 1656) | public static QueueId GetQueueId(string queueName, uint queueId, uint ... method GetStringNamePrefix (line 1658) | public readonly string GetStringNamePrefix() { throw null; } method GetUniformHashCode (line 1660) | public readonly uint GetUniformHashCode() { throw null; } method ToString (line 1666) | readonly string System.IFormattable.ToString(string? format, System.IF... method TryFormat (line 1668) | readonly bool System.ISpanFormattable.TryFormat(System.Span dest... method ToString (line 1670) | public override readonly string ToString() { throw null; } method ToStringWithHashCode (line 1672) | public readonly string ToStringWithHashCode() { throw null; } class RegexStreamNamespacePredicate (line 1675) | public partial class RegexStreamNamespacePredicate : IStreamNamespacePre... method RegexStreamNamespacePredicate (line 1677) | public RegexStreamNamespacePredicate(string regex) { } method IsMatch (line 1681) | public bool IsMatch(string streamNameSpace) { throw null; } class SequentialItem (line 1684) | public partial class SequentialItem method SequentialItem (line 1686) | public SequentialItem(T item, StreamSequenceToken token) { } class StreamEventDeliveryFailureException (line 1693) | [GenerateSerializer] method StreamEventDeliveryFailureException (line 1696) | public StreamEventDeliveryFailureException() { } method StreamEventDeliveryFailureException (line 1698) | [System.Obsolete] method StreamEventDeliveryFailureException (line 1701) | public StreamEventDeliveryFailureException(string message, System.Exce... method StreamEventDeliveryFailureException (line 1703) | public StreamEventDeliveryFailureException(string message) { } class StreamIdentity (line 1706) | [GenerateSerializer] method StreamIdentity (line 1710) | public StreamIdentity(System.Guid streamGuid, string streamNamespace) { } method Equals (line 1718) | public override bool Equals(object obj) { throw null; } method GetHashCode (line 1720) | public override int GetHashCode() { throw null; } class StreamPosition (line 1723) | public partial class StreamPosition method StreamPosition (line 1725) | public StreamPosition(Runtime.StreamId streamId, StreamSequenceToken s... type StreamProviderDirection (line 1732) | public enum StreamProviderDirection class StreamProviderExtensions (line 1740) | public static partial class StreamProviderExtensions method GetStream (line 1742) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 1744) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 1746) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 1748) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 1750) | public static IAsyncStream GetStream(this IStreamProvider stream... method GetStream (line 1752) | public static IAsyncStream GetStream(this IStreamProvider stream... type StreamPubSubType (line 1755) | public enum StreamPubSubType class StreamSequenceToken (line 1762) | [GenerateSerializer] method CompareTo (line 1768) | public abstract int CompareTo(StreamSequenceToken other); method Equals (line 1769) | public abstract bool Equals(StreamSequenceToken other); class StreamSequenceTokenUtilities (line 1772) | public static partial class StreamSequenceTokenUtilities method Newer (line 1774) | public static bool Newer(this StreamSequenceToken me, StreamSequenceTo... method Older (line 1776) | public static bool Older(this StreamSequenceToken me, StreamSequenceTo... class StreamSubscriptionHandleExtensions (line 1779) | public static partial class StreamSubscriptionHandleExtensions method ResumeAsync (line 1781) | public static System.Threading.Tasks.Task>... method ResumeAsync (line 1783) | public static System.Threading.Tasks.Task>... method ResumeAsync (line 1785) | public static System.Threading.Tasks.Task>... method ResumeAsync (line 1787) | public static System.Threading.Tasks.Task>... method ResumeAsync (line 1789) | public static System.Threading.Tasks.Task>... method ResumeAsync (line 1791) | public static System.Threading.Tasks.Task>... method ResumeAsync (line 1793) | public static System.Threading.Tasks.Task>... method ResumeAsync (line 1795) | public static System.Threading.Tasks.Task>... class StreamSubscriptionHandlerFactory (line 1798) | public partial class StreamSubscriptionHandlerFactory : Core.IStreamSubs... method StreamSubscriptionHandlerFactory (line 1800) | public StreamSubscriptionHandlerFactory(IStreamProvider streamProvider... method Create (line 1808) | public StreamSubscriptionHandle Create() { throw null; } class StreamSubscriptionHandle (line 1811) | [GenerateSerializer] method Equals (line 1818) | public abstract bool Equals(StreamSubscriptionHandle other); method ResumeAsync (line 1819) | public abstract System.Threading.Tasks.Task Create(); type IStreamSubscriptionManager (line 1838) | public partial interface IStreamSubscriptionManager method AddSubscription (line 1840) | System.Threading.Tasks.Task AddSubscription(string... method GetSubscriptions (line 1841) | System.Threading.Tasks.Task Add... method AddSubscription (line 1900) | public static System.Threading.Tasks.Task Add... method AddSubscription (line 1903) | public static System.Threading.Tasks.Task Add... method AddSubscription (line 1906) | public static System.Threading.Tasks.Task Add... method AddSubscription (line 1909) | public static System.Threading.Tasks.Task Add... method AddSubscription (line 1912) | public static System.Threading.Tasks.Task Add... method TryGetStreamSubscriptionManager (line 1915) | public static bool TryGetStreamSubscriptionManager(this IStreamProvide... class Codec_SimpleGeneratorOptions (line 1921) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1926) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1928) | public global::Orleans.Hosting.SimpleGeneratorOptions ReadValue(ref global::Orleans.Serialization... method WriteField (line 1933) | public void WriteField(ref global::Orleans.Serializatio... class Copier_SimpleGeneratorOptions (line 1937) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 1942) | public global::Orleans.Hosting.SimpleGeneratorOptions DeepCopy(global:... class Codec_DefaultMemoryMessageBodySerializer (line 1948) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_DefaultMemoryMessageBodySerializer (line 1953) | public Codec_DefaultMemoryMessageBodySerializer(global::Orleans.Serial... method Deserialize (line 1955) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1957) | public global::Orleans.Providers.DefaultMemoryMessageBodySerializer Re... method Serialize (line 1959) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1962) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341 (line 1966) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341 (line 1971) | public Codec_Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341... method Deserialize (line 1973) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1975) | public Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341 ReadV... method Serialize (line 1977) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1980) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IMemoryStreamQueueGrain_GrainReference_7A8F8C1A (line 1984) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1989) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1991) | public Invokable_IMemoryStreamQueueGrain_GrainReference_7A8F8C1A ReadV... method Serialize (line 1993) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1996) | public void WriteField(ref global::Orleans.Serializatio... class Codec_MemoryMessageBody (line 2000) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_MemoryMessageBody (line 2005) | public Codec_MemoryMessageBody(global::Orleans.Serialization.Activator... method Deserialize (line 2007) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2009) | public global::Orleans.Providers.MemoryMessageBody ReadValue(ref global::Orleans.Serialization... method WriteField (line 2014) | public void WriteField(ref global::Orleans.Serializatio... class Codec_MemoryMessageData (line 2018) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_MemoryMessageData (line 2023) | public Codec_MemoryMessageData(global::Orleans.Serialization.Serialize... method Deserialize (line 2025) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2027) | public global::Orleans.Providers.MemoryMessageData ReadValue(ref global::Orleans.Serialization... method WriteField (line 2032) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341 (line 2036) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341 (line 2041) | public Copier_Invokable_IMemoryStreamQueueGrain_GrainReference_74D6034... method DeepCopy (line 2043) | public Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341 DeepC... class Copier_Invokable_IMemoryStreamQueueGrain_GrainReference_7A8F8C1A (line 2046) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2051) | public Invokable_IMemoryStreamQueueGrain_GrainReference_7A8F8C1A DeepC... class Copier_MemoryMessageBody (line 2054) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_MemoryMessageBody (line 2059) | public Copier_MemoryMessageBody(global::Orleans.Serialization.Activato... method DeepCopy (line 2061) | public global::Orleans.Providers.MemoryMessageBody DeepCopy(global::Or... class Copier_MemoryMessageData (line 2064) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_MemoryMessageData (line 2069) | public Copier_MemoryMessageData(global::Orleans.Serialization.Serializ... method DeepCopy (line 2071) | public global::Orleans.Providers.MemoryMessageData DeepCopy(global::Or... class Invokable_IMemoryStreamQueueGrain_GrainReference_74D60341 (line 2074) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2081) | public override void Dispose() { } method GetActivityName (line 2083) | public override string GetActivityName() { throw null; } method GetArgument (line 2085) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2087) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2089) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2091) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2093) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2095) | public override string GetMethodName() { throw null; } method GetTarget (line 2097) | public override object GetTarget() { throw null; } method InvokeInner (line 2099) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 2101) | public override void SetArgument(int index, object value) { } method SetTarget (line 2103) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IMemoryStreamQueueGrain_GrainReference_7A8F8C1A (line 2106) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 2113) | public override void Dispose() { } method GetActivityName (line 2115) | public override string GetActivityName() { throw null; } method GetArgument (line 2117) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2119) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2121) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2123) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2125) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2127) | public override string GetMethodName() { throw null; } method GetTarget (line 2129) | public override object GetTarget() { throw null; } method InvokeInner (line 2131) | protected override System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 2150) | public global::Orleans.Providers.Streams.Common.EventSequenceToken Rea... method Serialize (line 2152) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2155) | public void WriteField(ref global::Orleans.Serializatio... class Codec_EventSequenceTokenV2 (line 2159) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_EventSequenceTokenV2 (line 2164) | public Codec_EventSequenceTokenV2(global::Orleans.Serialization.Serial... method Deserialize (line 2166) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2168) | public global::Orleans.Providers.Streams.Common.EventSequenceTokenV2 R... method Serialize (line 2170) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2173) | public void WriteField(ref global::Orleans.Serializatio... class Copier_EventSequenceToken (line 2177) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_EventSequenceToken (line 2182) | public Copier_EventSequenceToken(global::Orleans.Serialization.Seriali... method DeepCopy (line 2184) | public void DeepCopy(global::Orleans.Providers.Streams.Common.EventSeq... method DeepCopy (line 2186) | public global::Orleans.Providers.Streams.Common.EventSequenceToken Dee... class Copier_EventSequenceTokenV2 (line 2189) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_EventSequenceTokenV2 (line 2194) | public Copier_EventSequenceTokenV2(global::Orleans.Serialization.Seria... method DeepCopy (line 2196) | public void DeepCopy(global::Orleans.Providers.Streams.Common.EventSeq... method DeepCopy (line 2198) | public global::Orleans.Providers.Streams.Common.EventSequenceTokenV2 D... class Codec_GeneratedBatchContainer (line 2204) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GeneratedBatchContainer (line 2209) | public Codec_GeneratedBatchContainer(global::Orleans.Serialization.Act... method Deserialize (line 2211) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2213) | public global::Orleans.Providers.Streams.Generator.GeneratedBatchConta... method Serialize (line 2215) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2218) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GeneratedEvent (line 2222) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_GeneratedEvent (line 2227) | public Codec_GeneratedEvent(global::Orleans.Serialization.Serializers.... method Deserialize (line 2229) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2231) | public global::Orleans.Providers.Streams.Generator.GeneratedEvent Read... method Serialize (line 2233) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2236) | public void WriteField(ref global::Orleans.Serializatio... class Copier_GeneratedBatchContainer (line 2240) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GeneratedBatchContainer (line 2245) | public Copier_GeneratedBatchContainer(global::Orleans.Serialization.Ac... method DeepCopy (line 2247) | public global::Orleans.Providers.Streams.Generator.GeneratedBatchConta... class Copier_GeneratedEvent (line 2250) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_GeneratedEvent (line 2255) | public Copier_GeneratedEvent(global::Orleans.Serialization.Serializers... method DeepCopy (line 2257) | public global::Orleans.Providers.Streams.Generator.GeneratedEvent Deep... class Codec_QualifiedStreamId (line 2263) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_QualifiedStreamId (line 2268) | public Codec_QualifiedStreamId(global::Orleans.Serialization.Serialize... method Deserialize (line 2270) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2272) | public global::Orleans.Runtime.QualifiedStreamId ReadValue(ref global::Orleans.Serialization... method WriteField (line 2277) | public void WriteField(ref global::Orleans.Serializatio... class Codec_StreamId (line 2281) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 2286) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2288) | public global::Orleans.Runtime.StreamId ReadValue(ref gl... method Serialize (line 2290) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2293) | public void WriteField(ref global::Orleans.Serializatio... class Codec_BatchContainerBatch (line 2300) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_BatchContainerBatch (line 2305) | public Codec_BatchContainerBatch(global::Orleans.Serialization.Activat... method Deserialize (line 2307) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2309) | public global::Orleans.Streams.BatchContainerBatch ReadValue(ref global::Orleans.Serialization... method WriteField (line 2314) | public void WriteField(ref global::Orleans.Serializatio... class Codec_CacheFullException (line 2318) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_CacheFullException (line 2323) | public Codec_CacheFullException(global::Orleans.Serialization.Serializ... method Deserialize (line 2325) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2327) | public global::Orleans.Streams.CacheFullException ReadValue(ref global::Orleans.Serialization... method WriteField (line 2332) | public void WriteField(ref global::Orleans.Serializatio... class Codec_DataNotAvailableException (line 2336) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_DataNotAvailableException (line 2341) | public Codec_DataNotAvailableException(global::Orleans.Serialization.S... method Deserialize (line 2343) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2345) | public global::Orleans.Streams.DataNotAvailableException ReadValue(ref global::Orleans.Serialization... method WriteField (line 2350) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FaultedSubscriptionException (line 2354) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FaultedSubscriptionException (line 2359) | public Codec_FaultedSubscriptionException(global::Orleans.Serializatio... method Deserialize (line 2361) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2363) | public global::Orleans.Streams.FaultedSubscriptionException ReadValue<... method Serialize (line 2365) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2368) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ProviderStartException (line 2372) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ProviderStartException (line 2377) | public Codec_ProviderStartException(global::Orleans.Serialization.Seri... method Deserialize (line 2379) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2381) | public global::Orleans.Streams.ProviderStartException ReadValue(ref global::Orleans.Serialization... method WriteField (line 2386) | public void WriteField(ref global::Orleans.Serializatio... class Codec_PubSubSubscriptionState (line 2390) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_PubSubSubscriptionState (line 2395) | public Codec_PubSubSubscriptionState(global::Orleans.Serialization.Act... method Deserialize (line 2397) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2399) | public global::Orleans.Streams.PubSubSubscriptionState ReadValue(ref global::Orleans.Serialization... method WriteField (line 2404) | public void WriteField(ref global::Orleans.Serializatio... class Codec_QueueCacheMissException (line 2408) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_QueueCacheMissException (line 2413) | public Codec_QueueCacheMissException(global::Orleans.Serialization.Ser... method Deserialize (line 2415) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2417) | public global::Orleans.Streams.QueueCacheMissException ReadValue(ref global::Orleans.Serialization... method WriteField (line 2422) | public void WriteField(ref global::Orleans.Serializatio... class Codec_QueueId (line 2426) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 2431) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2433) | public global::Orleans.Streams.QueueId ReadValue(ref glo... method Serialize (line 2435) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2438) | public void WriteField(ref global::Orleans.Serializatio... class Codec_StreamEventDeliveryFailureException (line 2442) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_StreamEventDeliveryFailureException (line 2447) | public Codec_StreamEventDeliveryFailureException(global::Orleans.Seria... method Deserialize (line 2449) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2451) | public global::Orleans.Streams.StreamEventDeliveryFailureException Rea... method Serialize (line 2453) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2456) | public void WriteField(ref global::Orleans.Serializatio... class Codec_StreamIdentity (line 2460) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_StreamIdentity (line 2465) | public Codec_StreamIdentity(global::Orleans.Serialization.Activators.I... method Deserialize (line 2467) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2469) | public global::Orleans.Streams.StreamIdentity ReadValue(... method Serialize (line 2471) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2474) | public void WriteField(ref global::Orleans.Serializatio... class Codec_StreamSequenceToken (line 2478) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] class Codec_StreamSubscriptionHandle (line 2485) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] class Copier_BatchContainerBatch (line 2492) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_BatchContainerBatch (line 2497) | public Copier_BatchContainerBatch(global::Orleans.Serialization.Activa... method DeepCopy (line 2499) | public global::Orleans.Streams.BatchContainerBatch DeepCopy(global::Or... class Copier_CacheFullException (line 2502) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_CacheFullException (line 2507) | public Copier_CacheFullException(global::Orleans.Serialization.Seriali... class Copier_DataNotAvailableException (line 2510) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_DataNotAvailableException (line 2515) | public Copier_DataNotAvailableException(global::Orleans.Serialization.... class Copier_FaultedSubscriptionException (line 2518) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FaultedSubscriptionException (line 2523) | public Copier_FaultedSubscriptionException(global::Orleans.Serializati... class Copier_ProviderStartException (line 2526) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ProviderStartException (line 2531) | public Copier_ProviderStartException(global::Orleans.Serialization.Ser... class Copier_PubSubSubscriptionState (line 2534) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_PubSubSubscriptionState (line 2539) | public Copier_PubSubSubscriptionState(global::Orleans.Serialization.Ac... method DeepCopy (line 2541) | public global::Orleans.Streams.PubSubSubscriptionState DeepCopy(global... class Copier_QueueCacheMissException (line 2544) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_QueueCacheMissException (line 2549) | public Copier_QueueCacheMissException(global::Orleans.Serialization.Se... method DeepCopy (line 2551) | public override void DeepCopy(global::Orleans.Streams.QueueCacheMissEx... class Copier_StreamEventDeliveryFailureException (line 2554) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_StreamEventDeliveryFailureException (line 2559) | public Copier_StreamEventDeliveryFailureException(global::Orleans.Seri... class Copier_StreamSequenceToken (line 2562) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2567) | public global::Orleans.Streams.StreamSequenceToken DeepCopy(global::Or... method DeepCopy (line 2569) | public void DeepCopy(global::Orleans.Streams.StreamSequenceToken input... class Copier_StreamSubscriptionHandle (line 2572) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 2577) | public global::Orleans.Streams.StreamSubscriptionHandle DeepCopy(gl... method DeepCopy (line 2579) | public void DeepCopy(global::Orleans.Streams.StreamSubscriptionHandle<... class Codec_StreamSubscription (line 2585) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_StreamSubscription (line 2590) | public Codec_StreamSubscription(global::Orleans.Serialization.Activato... method Deserialize (line 2592) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2594) | public global::Orleans.Streams.Core.StreamSubscription ReadValue(ref global::Orleans.Serialization... method WriteField (line 2599) | public void WriteField(ref global::Orleans.Serializatio... FILE: src/api/Orleans.TestingHost/Orleans.TestingHost.cs class FaultInjectionStorageServiceCollectionExtensions (line 11) | public static partial class FaultInjectionStorageServiceCollectionExtens... method AddFaultInjectionMemoryStorage (line 13) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddFaultInjectionMemoryStorage (line 15) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... type ConnectionTransportType (line 21) | public enum ConnectionTransportType class FaultInjectionGrainStorage (line 28) | public partial class FaultInjectionGrainStorage : Storage.IGrainStorage,... method FaultInjectionGrainStorage (line 30) | public FaultInjectionGrainStorage(Storage.IGrainStorage realStoragePro... method ClearStateAsync (line 32) | public System.Threading.Tasks.Task ClearStateAsync(string grainType... method Participate (line 34) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method ReadStateAsync (line 36) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 38) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class FaultInjectionGrainStorageFactory (line 41) | public static partial class FaultInjectionGrainStorageFactory method Create (line 43) | public static Storage.IGrainStorage Create(System.IServiceProvider ser... class FaultInjectionGrainStorageOptions (line 46) | public partial class FaultInjectionGrainStorageOptions type IClientBuilderConfigurator (line 52) | public partial interface IClientBuilderConfigurator method Configure (line 54) | void Configure(Microsoft.Extensions.Configuration.IConfiguration confi... type IHostConfigurator (line 57) | public partial interface IHostConfigurator method Configure (line 59) | void Configure(Microsoft.Extensions.Hosting.IHostBuilder hostBuilder); class InProcessSiloHandle (line 62) | public partial class InProcessSiloHandle : SiloHandle method CreateAsync (line 70) | public static System.Threading.Tasks.Task CreateA... method Dispose (line 72) | protected override void Dispose(bool disposing) { } method DisposeAsync (line 74) | public override System.Threading.Tasks.ValueTask DisposeAsync() { thro... method StopSiloAsync (line 76) | public override System.Threading.Tasks.Task StopSiloAsync(bool stopGra... method StopSiloAsync (line 78) | public override System.Threading.Tasks.Task StopSiloAsync(System.Threa... class InProcessTestCluster (line 81) | public sealed partial class InProcessTestCluster : System.IDisposable, S... method InProcessTestCluster (line 83) | public InProcessTestCluster(InProcessTestClusterOptions options, ITest... method CreateSiloAsync (line 93) | public System.Threading.Tasks.Task CreateSiloAsyn... method DeployAsync (line 95) | public System.Threading.Tasks.Task DeployAsync() { throw null; } method Dispose (line 97) | public void Dispose() { } method DisposeAsync (line 99) | public System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } method GetActiveSilos (line 101) | public System.Collections.Generic.IEnumerable Get... method GetLivenessStabilizationTime (line 103) | public static System.TimeSpan GetLivenessStabilizationTime(Configurati... method GetLog (line 105) | public string GetLog() { throw null; } method GetSiloForAddress (line 107) | public InProcessSiloHandle GetSiloForAddress(Runtime.SiloAddress siloA... method GetSiloServiceProvider (line 109) | public System.IServiceProvider GetSiloServiceProvider(Runtime.SiloAddr... method InitializeClientAsync (line 111) | public System.Threading.Tasks.Task InitializeClientAsync() { throw nul... method KillClientAsync (line 113) | public System.Threading.Tasks.Task KillClientAsync() { throw null; } method KillSiloAsync (line 115) | public System.Threading.Tasks.Task KillSiloAsync(InProcessSiloHandle i... method RestartSiloAsync (line 117) | public System.Threading.Tasks.Task RestartSiloAsy... method RestartStoppedSecondarySiloAsync (line 119) | public System.Threading.Tasks.Task RestartStopped... method StartAdditionalSilo (line 121) | public InProcessSiloHandle StartAdditionalSilo() { throw null; } method StartAdditionalSilo (line 123) | [System.Obsolete("Use overload which does not have a 'startAdditionalS... method StartAdditionalSiloAsync (line 126) | public System.Threading.Tasks.Task StartAdditiona... method StartAdditionalSiloAsync (line 128) | public System.Threading.Tasks.Task StartAdditiona... method StartSiloAsync (line 130) | [System.Obsolete("Use the overload which does not have a 'startSiloOnN... method StartSiloAsync (line 133) | public static System.Threading.Tasks.Task StartSi... method StartSiloAsync (line 135) | [System.Obsolete("Use the overload which does not have a 'startSiloOnN... method StartSiloAsync (line 138) | public System.Threading.Tasks.Task StartSiloAsync... method StartSilosAsync (line 140) | [System.Obsolete("Use overload which does not have a 'startAdditionalS... method StartSilosAsync (line 143) | public System.Threading.Tasks.Task Create(string si... method CreateDelegate (line 290) | public static System.Func DefaultCreateSiloAsync(... method Deploy (line 355) | public void Deploy() { } method DeployAsync (line 357) | public System.Threading.Tasks.Task DeployAsync() { throw null; } method Dispose (line 359) | public void Dispose() { } method DisposeAsync (line 361) | public System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } method GetActiveSilos (line 363) | public System.Collections.Generic.IEnumerable GetActiveSil... method GetLivenessStabilizationTime (line 365) | public static System.TimeSpan GetLivenessStabilizationTime(Configurati... method GetLog (line 367) | public string GetLog() { throw null; } method GetSiloForAddress (line 369) | public SiloHandle GetSiloForAddress(Runtime.SiloAddress siloAddress) {... method GetSiloServiceProvider (line 371) | public System.IServiceProvider GetSiloServiceProvider(Runtime.SiloAddr... method InitializeClientAsync (line 373) | public System.Threading.Tasks.Task InitializeClientAsync() { throw nul... method KillClientAsync (line 375) | public System.Threading.Tasks.Task KillClientAsync() { throw null; } method KillSiloAsync (line 377) | public System.Threading.Tasks.Task KillSiloAsync(SiloHandle instance) ... method RestartSiloAsync (line 379) | public System.Threading.Tasks.Task RestartSiloAsync(SiloHa... method RestartStoppedSecondarySiloAsync (line 381) | public System.Threading.Tasks.Task RestartStoppedSecondary... method StartAdditionalSilo (line 383) | public SiloHandle StartAdditionalSilo(bool startAdditionalSiloOnNewPor... method StartAdditionalSiloAsync (line 385) | public System.Threading.Tasks.Task StartAdditionalSiloAsyn... method StartAdditionalSilosAsync (line 387) | public System.Threading.Tasks.Task StartSiloAsync(T... method StartSiloAsync (line 391) | public System.Threading.Tasks.Task StartSiloAsync(int inst... method StopAllSilos (line 393) | public void StopAllSilos() { } method StopAllSilosAsync (line 395) | public System.Threading.Tasks.Task StopAllSilosAsync() { throw null; } method StopClusterClientAsync (line 397) | public System.Threading.Tasks.Task StopClusterClientAsync() { throw nu... method StopPrimarySiloAsync (line 399) | public System.Threading.Tasks.Task StopPrimarySiloAsync() { throw null; } method StopSecondarySilosAsync (line 401) | public System.Threading.Tasks.Task StopSecondarySilosAsync() { throw n... method StopSiloAsync (line 403) | public System.Threading.Tasks.Task StopSiloAsync(SiloHandle instance) ... method WaitForLivenessToStabilizeAsync (line 405) | public System.Threading.Tasks.Task WaitForLivenessToStabilizeAsync(boo... class TestClusterBuilder (line 408) | public partial class TestClusterBuilder method TestClusterBuilder (line 410) | public TestClusterBuilder() { } method TestClusterBuilder (line 412) | public TestClusterBuilder(short initialSilosCount) { } method AddClientBuilderConfigurator (line 422) | public TestClusterBuilder AddClientBuilderConfigurator() method AddSiloBuilderConfigurator (line 425) | public TestClusterBuilder AddSiloBuilderConfigurator() method Build (line 428) | public TestCluster Build() { throw null; } method ConfigureBuilder (line 430) | public TestClusterBuilder ConfigureBuilder(System.Action configureDele... method ConfigureHostConfiguration (line 432) | public TestClusterBuilder ConfigureHostConfiguration(System.Action ToDiction... class TestClusterPortAllocator (line 494) | public partial class TestClusterPortAllocator : ITestClusterPortAllocato... method AllocateConsecutivePortPairs (line 496) | public (int, int) AllocateConsecutivePortPairs(int numPorts = 5) { thr... method Dispose (line 498) | public void Dispose() { } method Dispose (line 500) | protected virtual void Dispose(bool disposing) { } class TestSiloSpecificOptions (line 506) | public partial class TestSiloSpecificOptions method Create (line 516) | public static TestSiloSpecificOptions Create(TestCluster testCluster, ... method ToDictionary (line 518) | public System.Collections.Generic.Dictionary ToDiction... class FileLogger (line 524) | public partial class FileLogger : Microsoft.Extensions.Logging.ILogger method FileLogger (line 526) | public FileLogger(FileLoggingOutput output, string category) { } method BeginScope (line 528) | public System.IDisposable BeginScope(TState state) { throw nul... method IsEnabled (line 530) | public bool IsEnabled(Microsoft.Extensions.Logging.LogLevel logLevel) ... method Log (line 532) | public void Log(Microsoft.Extensions.Logging.LogLevel logLevel... class FileLoggerProvider (line 535) | public partial class FileLoggerProvider : Microsoft.Extensions.Logging.I... method FileLoggerProvider (line 537) | public FileLoggerProvider(string filePath) { } method CreateLogger (line 539) | public Microsoft.Extensions.Logging.ILogger CreateLogger(string catego... method Dispose (line 541) | public void Dispose() { } class FileLoggerProviderExtensions (line 544) | public static partial class FileLoggerProviderExtensions method AddFile (line 546) | public static Microsoft.Extensions.Logging.ILoggingBuilder AddFile(thi... class FileLoggingOutput (line 549) | public partial class FileLoggingOutput : System.IDisposable method FileLoggingOutput (line 551) | public FileLoggingOutput(string fileName) { } method Dispose (line 553) | public void Dispose() { } method Log (line 555) | public void Log(Microsoft.Extensions.Logging.LogLevel logLevel... class UnixSocketConnectionExtensions (line 561) | public static partial class UnixSocketConnectionExtensions method UseUnixSocketConnection (line 563) | public static Hosting.IClientBuilder UseUnixSocketConnection(this Host... method UseUnixSocketConnection (line 565) | public static Hosting.ISiloBuilder UseUnixSocketConnection(this Hostin... class UnixSocketConnectionOptions (line 568) | public partial class UnixSocketConnectionOptions class AsyncResultHandle (line 576) | public partial class AsyncResultHandle method Reset (line 586) | public virtual void Reset() { } method WaitFor (line 588) | public System.Threading.Tasks.Task WaitFor(System.TimeSpan timeo... method WaitForContinue (line 590) | public System.Threading.Tasks.Task WaitForContinue(System.TimeSp... method WaitForFinished (line 592) | public System.Threading.Tasks.Task WaitForFinished(System.TimeSp... class StorageEmulator (line 595) | public static partial class StorageEmulator method Help (line 599) | public static string Help() { throw null; } method IsStarted (line 601) | public static bool IsStarted() { throw null; } method Start (line 603) | public static bool Start() { throw null; } method Stop (line 605) | public static bool Stop() { throw null; } method TryStart (line 607) | public static bool TryStart() { throw null; } class TestingUtils (line 610) | public static partial class TestingUtils method ConfigureDefaultLoggingBuilder (line 612) | public static void ConfigureDefaultLoggingBuilder(Microsoft.Extensions... method ConfigureThreadPoolSettingsForStorageTests (line 614) | public static void ConfigureThreadPoolSettingsForStorageTests(int numD... method CreateDefaultLoggerFactory (line 616) | public static Microsoft.Extensions.Logging.ILoggerFactory CreateDefaul... method CreateDefaultLoggerFactory (line 618) | public static Microsoft.Extensions.Logging.ILoggerFactory CreateDefaul... method CreateTraceFileName (line 620) | public static string CreateTraceFileName(string nodeName, string clust... method Multiply (line 622) | public static System.TimeSpan Multiply(System.TimeSpan time, double va... method WaitUntilAsync (line 624) | public static System.Threading.Tasks.Task WaitUntilAsync(System.Func(ref global::Orleans.Serializatio... method ReadValue (line 639) | public Invokable_IStorageFaultGrain_GrainReference_1150D526 ReadValue<... method Serialize (line 641) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 644) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IStorageFaultGrain_GrainReference_1A607A31 (line 648) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IStorageFaultGrain_GrainReference_1A607A31 (line 653) | public Codec_Invokable_IStorageFaultGrain_GrainReference_1A607A31(glob... method Deserialize (line 655) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 657) | public Invokable_IStorageFaultGrain_GrainReference_1A607A31 ReadValue<... method Serialize (line 659) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 662) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IStorageFaultGrain_GrainReference_5D91E1AF (line 666) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IStorageFaultGrain_GrainReference_5D91E1AF (line 671) | public Codec_Invokable_IStorageFaultGrain_GrainReference_5D91E1AF(glob... method Deserialize (line 673) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 675) | public Invokable_IStorageFaultGrain_GrainReference_5D91E1AF ReadValue<... method Serialize (line 677) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 680) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IStorageFaultGrain_GrainReference_B9852E6E (line 684) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IStorageFaultGrain_GrainReference_B9852E6E (line 689) | public Codec_Invokable_IStorageFaultGrain_GrainReference_B9852E6E(glob... method Deserialize (line 691) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 693) | public Invokable_IStorageFaultGrain_GrainReference_B9852E6E ReadValue<... method Serialize (line 695) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 698) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IStorageFaultGrain_GrainReference_C94BA77C (line 702) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IStorageFaultGrain_GrainReference_C94BA77C (line 707) | public Codec_Invokable_IStorageFaultGrain_GrainReference_C94BA77C(glob... method Deserialize (line 709) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 711) | public Invokable_IStorageFaultGrain_GrainReference_C94BA77C ReadValue<... method Serialize (line 713) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 716) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IStorageFaultGrain_GrainReference_E8594820 (line 720) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IStorageFaultGrain_GrainReference_E8594820 (line 725) | public Codec_Invokable_IStorageFaultGrain_GrainReference_E8594820(glob... method Deserialize (line 727) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 729) | public Invokable_IStorageFaultGrain_GrainReference_E8594820 ReadValue<... method Serialize (line 731) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 734) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RandomlyInjectedInconsistentStateException (line 738) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_RandomlyInjectedInconsistentStateException (line 743) | public Codec_RandomlyInjectedInconsistentStateException(global::Orlean... method Deserialize (line 745) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 747) | public global::Orleans.TestingHost.RandomlyInjectedInconsistentStateEx... method Serialize (line 749) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 752) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RandomlyInjectedStorageException (line 756) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_RandomlyInjectedStorageException (line 761) | public Codec_RandomlyInjectedStorageException(global::Orleans.Serializ... method Deserialize (line 763) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 765) | public global::Orleans.TestingHost.RandomlyInjectedStorageException Re... method Serialize (line 767) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 770) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Invokable_IStorageFaultGrain_GrainReference_1150D526 (line 774) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 779) | public Invokable_IStorageFaultGrain_GrainReference_1150D526 DeepCopy(I... class Copier_Invokable_IStorageFaultGrain_GrainReference_1A607A31 (line 782) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 787) | public Invokable_IStorageFaultGrain_GrainReference_1A607A31 DeepCopy(I... class Copier_Invokable_IStorageFaultGrain_GrainReference_5D91E1AF (line 790) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 795) | public Invokable_IStorageFaultGrain_GrainReference_5D91E1AF DeepCopy(I... class Copier_Invokable_IStorageFaultGrain_GrainReference_B9852E6E (line 798) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 803) | public Invokable_IStorageFaultGrain_GrainReference_B9852E6E DeepCopy(I... class Copier_Invokable_IStorageFaultGrain_GrainReference_C94BA77C (line 806) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 811) | public Invokable_IStorageFaultGrain_GrainReference_C94BA77C DeepCopy(I... class Copier_Invokable_IStorageFaultGrain_GrainReference_E8594820 (line 814) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 819) | public Invokable_IStorageFaultGrain_GrainReference_E8594820 DeepCopy(I... class Copier_RandomlyInjectedInconsistentStateException (line 822) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_RandomlyInjectedInconsistentStateException (line 827) | public Copier_RandomlyInjectedInconsistentStateException(global::Orlea... class Copier_RandomlyInjectedStorageException (line 830) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_RandomlyInjectedStorageException (line 835) | public Copier_RandomlyInjectedStorageException(global::Orleans.Seriali... class Invokable_IStorageFaultGrain_GrainReference_1150D526 (line 838) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 846) | public override void Dispose() { } method GetActivityName (line 848) | public override string GetActivityName() { throw null; } method GetArgument (line 850) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 852) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 854) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 856) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 858) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 860) | public override string GetMethodName() { throw null; } method GetTarget (line 862) | public override object GetTarget() { throw null; } method InvokeInner (line 864) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 866) | public override void SetArgument(int index, object value) { } method SetTarget (line 868) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IStorageFaultGrain_GrainReference_1A607A31 (line 871) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 879) | public override void Dispose() { } method GetActivityName (line 881) | public override string GetActivityName() { throw null; } method GetArgument (line 883) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 885) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 887) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 889) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 891) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 893) | public override string GetMethodName() { throw null; } method GetTarget (line 895) | public override object GetTarget() { throw null; } method InvokeInner (line 897) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 899) | public override void SetArgument(int index, object value) { } method SetTarget (line 901) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IStorageFaultGrain_GrainReference_5D91E1AF (line 904) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 911) | public override void Dispose() { } method GetActivityName (line 913) | public override string GetActivityName() { throw null; } method GetArgument (line 915) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 917) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 919) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 921) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 923) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 925) | public override string GetMethodName() { throw null; } method GetTarget (line 927) | public override object GetTarget() { throw null; } method InvokeInner (line 929) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 931) | public override void SetArgument(int index, object value) { } method SetTarget (line 933) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IStorageFaultGrain_GrainReference_B9852E6E (line 936) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 944) | public override void Dispose() { } method GetActivityName (line 946) | public override string GetActivityName() { throw null; } method GetArgument (line 948) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 950) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 952) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 954) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 956) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 958) | public override string GetMethodName() { throw null; } method GetTarget (line 960) | public override object GetTarget() { throw null; } method InvokeInner (line 962) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 964) | public override void SetArgument(int index, object value) { } method SetTarget (line 966) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IStorageFaultGrain_GrainReference_C94BA77C (line 969) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 976) | public override void Dispose() { } method GetActivityName (line 978) | public override string GetActivityName() { throw null; } method GetArgument (line 980) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 982) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 984) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 986) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 988) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 990) | public override string GetMethodName() { throw null; } method GetTarget (line 992) | public override object GetTarget() { throw null; } method InvokeInner (line 994) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 996) | public override void SetArgument(int index, object value) { } method SetTarget (line 998) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IStorageFaultGrain_GrainReference_E8594820 (line 1001) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 1008) | public override void Dispose() { } method GetActivityName (line 1010) | public override string GetActivityName() { throw null; } method GetArgument (line 1012) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 1014) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 1016) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 1018) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 1020) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 1022) | public override string GetMethodName() { throw null; } method GetTarget (line 1024) | public override object GetTarget() { throw null; } method InvokeInner (line 1026) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 1028) | public override void SetArgument(int index, object value) { } method SetTarget (line 1030) | public override void SetTarget(global::Orleans.Serialization.Invocatio... FILE: src/api/Orleans.Transactions.TestKit.Base/Orleans.Transactions.TestKit.Base.cs class TransactionFaultInjectionServiceCollectionExtensions (line 11) | public static partial class TransactionFaultInjectionServiceCollectionEx... method UseControlledFaultInjectionTransactionState (line 13) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class AddAndThrowException (line 19) | [GenerateSerializer] method AddAndThrowException (line 22) | public AddAndThrowException() { } method AddAndThrowException (line 24) | [System.Obsolete] method AddAndThrowException (line 27) | public AddAndThrowException(string message, System.Exception innerExce... method AddAndThrowException (line 29) | public AddAndThrowException(string message) { } class ConsistencyTransactionTestRunner (line 32) | public abstract partial class ConsistencyTransactionTestRunner : Transac... method ConsistencyTransactionTestRunner (line 34) | protected ConsistencyTransactionTestRunner(IGrainFactory grainFactory,... method RandomizedConsistency (line 39) | public virtual System.Threading.Tasks.Task RandomizedConsistency(int n... class ControlledFaultInjectionTransactionTestRunner (line 42) | public partial class ControlledFaultInjectionTransactionTestRunner : Tra... method ControlledFaultInjectionTransactionTestRunner (line 44) | public ControlledFaultInjectionTransactionTestRunner(IGrainFactory gra... method MultiGrainWriteTransaction_FaultInjection (line 46) | public virtual System.Threading.Tasks.Task MultiGrainWriteTransaction_... method SingleGrainReadTransaction (line 48) | public virtual System.Threading.Tasks.Task SingleGrainReadTransaction(... method SingleGrainWriteTransaction (line 50) | public virtual System.Threading.Tasks.Task SingleGrainWriteTransaction... class CreateAttributionGrain (line 53) | public partial class CreateAttributionGrain : Grain, ICreateAttributionG... method GetNestedTransactionIds (line 55) | public System.Threading.Tasks.Task Commit(System.Guid transactio... class FaultInjectionAzureTableTransactionStateStorageFactory (line 88) | public partial class FaultInjectionAzureTableTransactionStateStorageFact... method FaultInjectionAzureTableTransactionStateStorageFactory (line 90) | public FaultInjectionAzureTableTransactionStateStorageFactory(AzureSto... method Create (line 92) | public static Abstractions.ITransactionalStateStorageFactory Create(Sy... method Create (line 94) | public Abstractions.ITransactionalStateStorage Create(... method Participate (line 97) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } class FaultInjectionAzureTableTransactionStateStorage (line 100) | public partial class FaultInjectionAzureTableTransactionStateStorage Store(string expectedETag, ... class FaultInjectionControl (line 109) | [GenerateSerializer] method Reset (line 116) | public void Reset() { } class FaultInjectionTransactionalStateAttribute (line 119) | [System.AttributeUsage(System.AttributeTargets.Parameter)] method FaultInjectionTransactionalStateAttribute (line 122) | public FaultInjectionTransactionalStateAttribute(string stateName, str... class FaultInjectionTransactionalStateAttributeMapper (line 129) | public partial class FaultInjectionTransactionalStateAttributeMapper : R... method GetFactory (line 131) | public Factory GetFactory(System.Reflec... class FaultInjectionTransactionalStateFactory (line 134) | public partial class FaultInjectionTransactionalStateFactory : IFaultInj... method FaultInjectionTransactionalStateFactory (line 136) | public FaultInjectionTransactionalStateFactory(Runtime.IGrainContextAc... method Create (line 138) | public IFaultInjectionTransactionalState Create(IFault... class FaultInjectionTransactionCoordinatorGrain (line 142) | public partial class FaultInjectionTransactionCoordinatorGrain : Grain, ... method MultiGrainAddAndFaultInjection (line 144) | public System.Threading.Tasks.Task MultiGrainAddAndFaultInjection(Syst... method MultiGrainSet (line 146) | public System.Threading.Tasks.Task MultiGrainSet(System.Collections.Ge... type FaultInjectionType (line 149) | public enum FaultInjectionType class GoldenPathTransactionTestRunner (line 157) | public abstract partial class GoldenPathTransactionTestRunner : Transact... method GoldenPathTransactionTestRunner (line 159) | protected GoldenPathTransactionTestRunner(IGrainFactory grainFactory, ... method MultiGrainReadWriteTransaction (line 161) | public virtual System.Threading.Tasks.Task MultiGrainReadWriteTransact... method MultiGrainWriteTransaction (line 163) | public virtual System.Threading.Tasks.Task MultiGrainWriteTransaction(... method MultiWriteToSingleGrainTransaction (line 165) | public virtual System.Threading.Tasks.Task MultiWriteToSingleGrainTran... method RepeatGrainReadWriteTransaction (line 167) | public virtual System.Threading.Tasks.Task RepeatGrainReadWriteTransac... method RWRWTest (line 169) | public virtual System.Threading.Tasks.Task RWRWTest(string grainStates... method SingleGrainReadTransaction (line 171) | public virtual System.Threading.Tasks.Task SingleGrainReadTransaction(... method SingleGrainWriteTransaction (line 173) | public virtual System.Threading.Tasks.Task SingleGrainWriteTransaction... method WRWRTest (line 175) | public virtual System.Threading.Tasks.Task WRWRTest(string grainStates... class GrainData (line 178) | [GenerateSerializer] class GrainFaultTransactionTestRunner (line 185) | public abstract partial class GrainFaultTransactionTestRunner : Transact... method GrainFaultTransactionTestRunner (line 187) | public GrainFaultTransactionTestRunner(IGrainFactory grainFactory, Sys... method AbortTransactionExceptionInnerExceptionOnlyContainsOneRootCauseException (line 189) | public virtual System.Threading.Tasks.Task AbortTransactionExceptionIn... method AbortTransactionOnExceptions (line 191) | public virtual System.Threading.Tasks.Task AbortTransactionOnException... method AbortTransactionOnOrphanCalls (line 193) | public virtual System.Threading.Tasks.Task AbortTransactionOnOrphanCal... method AbortTransactionOnReadOnlyViolatedException (line 195) | public virtual System.Threading.Tasks.Task AbortTransactionOnReadOnlyV... method MultiGrainAbortTransactionOnExceptions (line 197) | public virtual System.Threading.Tasks.Task MultiGrainAbortTransactionO... type IControlledTransactionFaultInjector (line 200) | public partial interface IControlledTransactionFaultInjector : ITransact... type ICreateAttributionGrain (line 207) | public partial interface ICreateAttributionGrain : IGrainWithGuidKey, IG... method GetNestedTransactionIds (line 209) | [Transaction(TransactionOption.Create)] type ICreateOrJoinAttributionGrain (line 213) | public partial interface ICreateOrJoinAttributionGrain : IGrainWithGuidK... method GetNestedTransactionIds (line 215) | [Transaction(TransactionOption.CreateOrJoin)] type IFaultInjectionTransactionalStateConfiguration (line 219) | public partial interface IFaultInjectionTransactionalStateConfiguration ... type IFaultInjectionTransactionalStateFactory (line 223) | public partial interface IFaultInjectionTransactionalStateFactory method Create (line 225) | IFaultInjectionTransactionalState Create(IFaultInjecti... type IFaultInjectionTransactionalState (line 229) | public partial interface IFaultInjectionTransactionalState : Abs... type IFaultInjectionTransactionCoordinatorGrain (line 234) | public partial interface IFaultInjectionTransactionCoordinatorGrain : IG... method MultiGrainAddAndFaultInjection (line 236) | [Transaction(TransactionOption.Create)] method MultiGrainSet (line 238) | [Transaction(TransactionOption.Create)] type IFaultInjectionTransactionTestGrain (line 242) | public partial interface IFaultInjectionTransactionTestGrain : IGrainWit... method Add (line 244) | [Transaction(TransactionOption.CreateOrJoin)] method Deactivate (line 246) | System.Threading.Tasks.Task Deactivate(); method Get (line 247) | [Transaction(TransactionOption.CreateOrJoin)] method Set (line 249) | [Transaction(TransactionOption.CreateOrJoin)] type IJoinAttributionGrain (line 253) | public partial interface IJoinAttributionGrain : IGrainWithGuidKey, IGra... method GetNestedTransactionIds (line 255) | [Transaction(TransactionOptionAlias.Mandatory)] type INoAttributionGrain (line 259) | public partial interface INoAttributionGrain : IGrainWithGuidKey, IGrain... method GetNestedTransactionIds (line 261) | System.Threading.Tasks.Task[]>... type INotAllowedAttributionGrain (line 264) | public partial interface INotAllowedAttributionGrain : IGrainWithGuidKey... method GetNestedTransactionIds (line 266) | [Transaction(TransactionOption.NotAllowed)] type IRemoteCommitService (line 270) | public partial interface IRemoteCommitService method Fail (line 272) | System.Threading.Tasks.Task Fail(System.Guid transactionId, stri... method Pass (line 273) | System.Threading.Tasks.Task Pass(System.Guid transactionId, stri... method Throw (line 274) | System.Threading.Tasks.Task Throw(System.Guid transactionId, str... type ISupportedAttributionGrain (line 277) | public partial interface ISupportedAttributionGrain : IGrainWithGuidKey,... method GetNestedTransactionIds (line 279) | [Transaction(TransactionOption.Supported)] type ISuppressAttributionGrain (line 283) | public partial interface ISuppressAttributionGrain : IGrainWithGuidKey, ... method GetNestedTransactionIds (line 285) | [Transaction(TransactionOption.Suppress)] type ITestState (line 289) | public partial interface ITestState type ITransactionAttributionGrain (line 294) | public partial interface ITransactionAttributionGrain method GetNestedTransactionIds (line 296) | System.Threading.Tasks.Task[]>... type ITransactionCommitterTestGrain (line 299) | public partial interface ITransactionCommitterTestGrain : IGrainWithGuid... method Commit (line 301) | [Transaction(TransactionOption.Join)] type ITransactionCoordinatorGrain (line 305) | public partial interface ITransactionCoordinatorGrain : IGrainWithGuidKe... method AddAndThrow (line 307) | [Transaction(TransactionOption.Create)] method MultiGrainAdd (line 309) | [Transaction(TransactionOption.Create)] method MultiGrainAdd (line 311) | [Transaction(TransactionOption.Create)] method MultiGrainAddAndThrow (line 313) | [Transaction(TransactionOption.Create)] method MultiGrainDouble (line 315) | [Transaction(TransactionOption.Create)] method MultiGrainDoubleByRWRW (line 317) | [Transaction(TransactionOption.Create)] method MultiGrainDoubleByWRWR (line 319) | [Transaction(TransactionOption.Create)] method MultiGrainSet (line 321) | [Transaction(TransactionOption.Create)] method MultiGrainSetBit (line 323) | [Transaction(TransactionOption.Create)] method OrphanCallTransaction (line 325) | [Transaction(TransactionOption.Create)] method UpdateViolated (line 327) | [Transaction(TransactionOption.Create)] type ITransactionFaultInjector (line 332) | public partial interface ITransactionFaultInjector method AfterStore (line 334) | void AfterStore(); method BeforeStore (line 335) | void BeforeStore(); type ITransactionTestGrain (line 338) | public partial interface ITransactionTestGrain : IGrainWithGuidKey, IGra... method Add (line 340) | [Transaction(TransactionOption.CreateOrJoin)] method AddAndThrow (line 342) | [Transaction(TransactionOption.CreateOrJoin)] method Deactivate (line 344) | System.Threading.Tasks.Task Deactivate(); method Get (line 345) | [Transaction(TransactionOption.CreateOrJoin)] method Set (line 347) | [Transaction(TransactionOption.CreateOrJoin)] method SetAndThrow (line 349) | [Transaction(TransactionOption.CreateOrJoin)] class JoinAttributionGrain (line 353) | public partial class JoinAttributionGrain : Grain, IJoinAttributionGrain... method GetNestedTransactionIds (line 355) | public System.Threading.Tasks.Task Add(int numberToAdd) { throw... method AddAndThrow (line 371) | public System.Threading.Tasks.Task AddAndThrow(int numberToAdd) { thro... method Deactivate (line 373) | public System.Threading.Tasks.Task Deactivate() { throw null; } method Get (line 375) | public System.Threading.Tasks.Task Get() { throw null; } method OnActivateAsync (line 377) | public override System.Threading.Tasks.Task OnActivateAsync(System.Thr... method Set (line 379) | public System.Threading.Tasks.Task Set(int newValue) { throw null; } method SetAndThrow (line 381) | public System.Threading.Tasks.Task SetAndThrow(int numberToSet) { thro... class NoAttributionGrain (line 384) | public partial class NoAttributionGrain : Grain, INoAttributionGrain, IG... method GetNestedTransactionIds (line 386) | public System.Threading.Tasks.Task Commit(System.Guid transactio... class RandomErrorInjector (line 410) | public partial class RandomErrorInjector : ITransactionFaultInjector method RandomErrorInjector (line 412) | public RandomErrorInjector(double injectionProbability) { } method AfterStore (line 414) | public void AfterStore() { } method BeforeStore (line 416) | public void BeforeStore() { } class RandomlyInjectedInconsistentStateException (line 418) | [GenerateSerializer] method RandomlyInjectedInconsistentStateException (line 421) | public RandomlyInjectedInconsistentStateException() { } method RandomlyInjectedInconsistentStateException (line 423) | [System.Obsolete] class RandomlyInjectedStorageException (line 427) | [GenerateSerializer] method RandomlyInjectedStorageException (line 430) | public RandomlyInjectedStorageException() { } method RandomlyInjectedStorageException (line 432) | [System.Obsolete] class RemoteCommitService (line 437) | public partial class RemoteCommitService : IRemoteCommitService method RemoteCommitService (line 439) | public RemoteCommitService(Microsoft.Extensions.Logging.ILogger Fail(System.Guid transactionI... method Pass (line 443) | public System.Threading.Tasks.Task Pass(System.Guid transactionI... method Throw (line 445) | public System.Threading.Tasks.Task Throw(System.Guid transaction... class ScopedTransactionsTestRunner (line 448) | public abstract partial class ScopedTransactionsTestRunner : Transaction... method ScopedTransactionsTestRunner (line 450) | protected ScopedTransactionsTestRunner(IGrainFactory grainFactory, ITr... method CreateNestedTransactionScopeAndSetValueAndInnerFailAndAssert (line 452) | public virtual System.Threading.Tasks.Task CreateNestedTransactionScop... method CreateTransactionScopeAndSetValue (line 454) | public virtual System.Threading.Tasks.Task CreateTransactionScopeAndSe... method CreateTransactionScopeAndSetValueAndAssert (line 456) | public virtual System.Threading.Tasks.Task CreateTransactionScopeAndSe... method CreateTransactionScopeAndSetValueWithFailure (line 458) | public virtual System.Threading.Tasks.Task CreateTransactionScopeAndSe... class SiloBuilderExtensions (line 461) | public static partial class SiloBuilderExtensions method AddFaultInjectionAzureTableTransactionalStateStorage (line 463) | public static Hosting.ISiloBuilder AddFaultInjectionAzureTableTransact... method AddFaultInjectionAzureTableTransactionalStateStorage (line 465) | public static Hosting.ISiloBuilder AddFaultInjectionAzureTableTransact... method UseControlledFaultInjectionTransactionState (line 467) | public static Hosting.ISiloBuilder UseControlledFaultInjectionTransact... class SimpleAzureStorageException (line 470) | [GenerateSerializer] method SimpleAzureStorageException (line 473) | public SimpleAzureStorageException(int status, string message, System.... method SimpleAzureStorageException (line 475) | public SimpleAzureStorageException(int status, string message, string ... method SimpleAzureStorageException (line 477) | public SimpleAzureStorageException(int status, string message) : base(... method SimpleAzureStorageException (line 479) | [System.Obsolete("TThe serialization constructor pattern was made obso... method SimpleAzureStorageException (line 483) | public SimpleAzureStorageException(string message, System.Exception in... method SimpleAzureStorageException (line 485) | public SimpleAzureStorageException(string message) : base(default(stri... class SimpleAzureStorageExceptionInjector (line 488) | public partial class SimpleAzureStorageExceptionInjector : IControlledTr... method SimpleAzureStorageExceptionInjector (line 490) | public SimpleAzureStorageExceptionInjector(Microsoft.Extensions.Loggin... method AfterStore (line 496) | public void AfterStore() { } method BeforeStore (line 498) | public void BeforeStore() { } class SingleStateFaultInjectionTransactionalGrain (line 501) | public partial class SingleStateFaultInjectionTransactionalGrain : Grain... method SingleStateFaultInjectionTransactionalGrain (line 503) | public SingleStateFaultInjectionTransactionalGrain(IFaultInjectionTran... method Add (line 505) | public System.Threading.Tasks.Task Add(int numberToAdd, FaultInjection... method Deactivate (line 507) | public System.Threading.Tasks.Task Deactivate() { throw null; } method Get (line 509) | public System.Threading.Tasks.Task Get() { throw null; } method OnActivateAsync (line 511) | public override System.Threading.Tasks.Task OnActivateAsync(System.Thr... method Set (line 513) | public System.Threading.Tasks.Task Set(int newValue) { throw null; } class SingleStateTransactionalGrain (line 516) | public partial class SingleStateTransactionalGrain : MultiStateTransacti... method SingleStateTransactionalGrain (line 518) | public SingleStateTransactionalGrain(Abstractions.ITransactionalState<... method SingleStateTransactionalGrain (line 967) | public SingleStateTransactionalGrain(Abstractions.ITransactionalState<... class SkewedClock (line 521) | public partial class SkewedClock : IClock method SkewedClock (line 523) | public SkewedClock(System.TimeSpan minSkew, System.TimeSpan maxSkew) { } method UtcNow (line 525) | public System.DateTime UtcNow() { throw null; } class SkewedClockConfigurator (line 528) | public partial class SkewedClockConfigurator : TestingHost.ISiloConfigur... method Configure (line 530) | public void Configure(Hosting.ISiloBuilder hostBuilder) { } class SupportedAttributionGrain (line 533) | public partial class SupportedAttributionGrain : Grain, ISupportedAttrib... method GetNestedTransactionIds (line 535) | public System.Threading.Tasks.Task Commit(System.Guid transactio... class TocFaultTransactionTestRunner (line 554) | public abstract partial class TocFaultTransactionTestRunner : Transactio... method TocFaultTransactionTestRunner (line 556) | protected TocFaultTransactionTestRunner(IGrainFactory grainFactory, Sy... method MultiGrainWriteTransactionWithCommitException (line 558) | public virtual System.Threading.Tasks.Task MultiGrainWriteTransactionW... method MultiGrainWriteTransactionWithCommitFailure (line 560) | public virtual System.Threading.Tasks.Task MultiGrainWriteTransactionW... class TocGoldenPathTestRunner (line 563) | public abstract partial class TocGoldenPathTestRunner : TransactionTestR... method TocGoldenPathTestRunner (line 565) | protected TocGoldenPathTestRunner(IGrainFactory grainFactory, System.A... method MultiGrainWriteTransaction (line 567) | public virtual System.Threading.Tasks.Task MultiGrainWriteTransaction(... class TransactionalStateStorageTestRunner (line 570) | public abstract partial class TransactionalStateStorageTestRunner(string tran... method TestGrain (line 779) | protected virtual ITransactionTestGrain TestGrain(string transactionTe... method TestGrain (line 781) | protected virtual TGrainInterface TestGrain(string tr... class ConsistencyTestGrain (line 788) | [Concurrency.Reentrant] method ConsistencyTestGrain (line 792) | public ConsistencyTestGrain(Abstractions.ITransactionalState da... method Run (line 794) | public System.Threading.Tasks.Task Run(ConsistencyTestO... class State (line 796) | [GenerateSerializer] class ConsistencyTestHarness (line 806) | public partial class ConsistencyTestHarness method ConsistencyTestHarness (line 809) | public ConsistencyTestHarness(IGrainFactory grainFactory, int numGrain... method CheckConsistency (line 813) | public void CheckConsistency(bool tolerateGenericTimeouts = false, boo... method RunRandomTransactionSequence (line 815) | public System.Threading.Tasks.Task RunRandomTransactionSequence(int pa... class ConsistencyTestOptions (line 818) | [GenerateSerializer] type IConsistencyTestGrain (line 844) | public partial interface IConsistencyTestGrain : IGrainWithIntegerKey, I... method Run (line 846) | [Transaction(TransactionOption.CreateOrJoin)] type Observation (line 850) | [GenerateSerializer] type ReadWriteDetermination (line 868) | public enum ReadWriteDetermination class UserAbort (line 875) | [GenerateSerializer] method UserAbort (line 878) | public UserAbort() { } method UserAbort (line 880) | [System.Obsolete] class BitArrayState (line 887) | [GenerateSerializer] method BitArrayState (line 890) | public BitArrayState() { } method BitArrayState (line 892) | public BitArrayState(BitArrayState other) { } method Apply (line 902) | public static BitArrayState Apply(BitArrayState left, BitArrayState ri... method Equals (line 904) | protected bool Equals(BitArrayState other) { throw null; } method Equals (line 906) | public override bool Equals(object obj) { throw null; } method GetEnumerator (line 908) | public System.Collections.Generic.IEnumerator GetEnumerator() { t... method GetHashCode (line 910) | public override int GetHashCode() { throw null; } method Set (line 922) | public void Set(int index, bool value) { } method ToString (line 924) | public override string ToString() { throw null; } class DoubleStateTransactionalGrain (line 927) | [GrainType("txn-correctness-DoubleStateTransactionalGrain")] method DoubleStateTransactionalGrain (line 74) | public DoubleStateTransactionalGrain(Abstractions.ITransactionalState<... method DoubleStateTransactionalGrain (line 930) | public DoubleStateTransactionalGrain(Abstractions.ITransactionalState<... type ITransactionalBitArrayGrain (line 933) | public partial interface ITransactionalBitArrayGrain : IGrainWithGuidKey... method Get (line 935) | [Transaction(TransactionOption.CreateOrJoin)] method Ping (line 937) | System.Threading.Tasks.Task Ping(); method SetBit (line 938) | [Transaction(TransactionOption.CreateOrJoin)] class MaxStateTransactionalGrain (line 942) | [GrainType("txn-correctness-MaxStateTransactionalGrain")] method MaxStateTransactionalGrain (line 360) | public MaxStateTransactionalGrain(Abstractions.ITransactionalStateFact... method MaxStateTransactionalGrain (line 945) | public MaxStateTransactionalGrain(Abstractions.ITransactionalStateFact... class MultiStateTransactionalBitArrayGrain (line 948) | [GrainType("txn-correctness-MultiStateTransactionalBitArrayGrain")] method MultiStateTransactionalBitArrayGrain (line 953) | public MultiStateTransactionalBitArrayGrain(Abstractions.ITransactiona... method Get (line 955) | public System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 982) | public global::Orleans.Transactions.TestKit.AddAndThrowException ReadV... method Serialize (line 984) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 987) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FailOperation (line 991) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FailOperation (line 996) | public Codec_FailOperation(global::Orleans.Serialization.Activators.IA... method Deserialize (line 998) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1000) | public global::Orleans.Transactions.TestKit.FailOperation ReadValue(ref global::Orleans.Serialization... method WriteField (line 1005) | public void WriteField(ref global::Orleans.Serializatio... class Codec_FaultInjectionControl (line 1009) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_FaultInjectionControl (line 1014) | public Codec_FaultInjectionControl(global::Orleans.Serialization.Seria... method Deserialize (line 1016) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1018) | public global::Orleans.Transactions.TestKit.FaultInjectionControl Read... method Serialize (line 1020) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1023) | public void WriteField(ref global::Orleans.Serializatio... class Codec_GrainData (line 1027) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1032) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1034) | public global::Orleans.Transactions.TestKit.GrainData ReadValue(ref global::Orleans.Serialization... method WriteField (line 1039) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D (line 1043) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D (line 1048) | public Codec_Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D... method Deserialize (line 1050) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1052) | public Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D ReadV... method Serialize (line 1054) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1057) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ICreateOrJoinAttributionGrain_GrainReference_C9B8ECB8 (line 1061) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ICreateOrJoinAttributionGrain_GrainReference_C9B8ECB8 (line 1066) | public Codec_Invokable_ICreateOrJoinAttributionGrain_GrainReference_C9... method Deserialize (line 1068) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1070) | public Invokable_ICreateOrJoinAttributionGrain_GrainReference_C9B8ECB8... method Serialize (line 1072) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1075) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_70FF7C60 (line 1079) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_70FF7C60 (line 1084) | public Codec_Invokable_IFaultInjectionTransactionCoordinatorGrain_Grai... method Deserialize (line 1086) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1088) | public Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainRefer... method Serialize (line 1090) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1093) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_E67D54A5 (line 1097) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_E67D54A5 (line 1102) | public Codec_Invokable_IFaultInjectionTransactionCoordinatorGrain_Grai... method Deserialize (line 1104) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1106) | public Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainRefer... method Serialize (line 1108) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1111) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_8389970A (line 1115) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_8389970A (line 1120) | public Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainRefere... method Deserialize (line 1122) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1124) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_83... method Serialize (line 1126) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1129) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A4CAE05C (line 1133) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A4CAE05C (line 1138) | public Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainRefere... method Deserialize (line 1140) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1142) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A4... method Serialize (line 1144) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1147) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A6C1652E (line 1151) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1156) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1158) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A6... method Serialize (line 1160) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1163) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_C752DF7D (line 1167) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_C752DF7D (line 1172) | public Codec_Invokable_IFaultInjectionTransactionTestGrain_GrainRefere... method Deserialize (line 1174) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1176) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_C7... method Serialize (line 1178) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1181) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IJoinAttributionGrain_GrainReference_B1619F67 (line 1185) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IJoinAttributionGrain_GrainReference_B1619F67 (line 1190) | public Codec_Invokable_IJoinAttributionGrain_GrainReference_B1619F67(g... method Deserialize (line 1192) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1194) | public Invokable_IJoinAttributionGrain_GrainReference_B1619F67 ReadVal... method Serialize (line 1196) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1199) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_INoAttributionGrain_GrainReference_BC7E3A79 (line 1203) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_INoAttributionGrain_GrainReference_BC7E3A79 (line 1208) | public Codec_Invokable_INoAttributionGrain_GrainReference_BC7E3A79(glo... method Deserialize (line 1210) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1212) | public Invokable_INoAttributionGrain_GrainReference_BC7E3A79 ReadValue... method Serialize (line 1214) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1217) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_INotAllowedAttributionGrain_GrainReference_891D027E (line 1221) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_INotAllowedAttributionGrain_GrainReference_891D027E (line 1226) | public Codec_Invokable_INotAllowedAttributionGrain_GrainReference_891D... method Deserialize (line 1228) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1230) | public Invokable_INotAllowedAttributionGrain_GrainReference_891D027E R... method Serialize (line 1232) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1235) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ISupportedAttributionGrain_GrainReference_BC7DBC0A (line 1239) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ISupportedAttributionGrain_GrainReference_BC7DBC0A (line 1244) | public Codec_Invokable_ISupportedAttributionGrain_GrainReference_BC7DB... method Deserialize (line 1246) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1248) | public Invokable_ISupportedAttributionGrain_GrainReference_BC7DBC0A Re... method Serialize (line 1250) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1253) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ISuppressAttributionGrain_GrainReference_5A02311D (line 1257) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ISuppressAttributionGrain_GrainReference_5A02311D (line 1262) | public Codec_Invokable_ISuppressAttributionGrain_GrainReference_5A0231... method Deserialize (line 1264) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1266) | public Invokable_ISuppressAttributionGrain_GrainReference_5A02311D Rea... method Serialize (line 1268) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1271) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCommitterTestGrain_GrainReference_C44BE2A4 (line 1275) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCommitterTestGrain_GrainReference_C44BE2A4 (line 1280) | public Codec_Invokable_ITransactionCommitterTestGrain_GrainReference_C... method Deserialize (line 1282) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1284) | public Invokable_ITransactionCommitterTestGrain_GrainReference_C44BE2A... method Serialize (line 1286) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1289) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_2760260D (line 1293) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_2760260D (line 1298) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_276... method Deserialize (line 1300) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1302) | public Invokable_ITransactionCoordinatorGrain_GrainReference_2760260D ... method Serialize (line 1304) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1307) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_3A6B9237 (line 1311) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_3A6B9237 (line 1316) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_3A6... method Deserialize (line 1318) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1320) | public Invokable_ITransactionCoordinatorGrain_GrainReference_3A6B9237 ... method Serialize (line 1322) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1325) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_485592B2 (line 1329) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_485592B2 (line 1334) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_485... method Deserialize (line 1336) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1338) | public Invokable_ITransactionCoordinatorGrain_GrainReference_485592B2 ... method Serialize (line 1340) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1343) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_5FC2E7A1 (line 1347) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_5FC2E7A1 (line 1352) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_5FC... method Deserialize (line 1354) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1356) | public Invokable_ITransactionCoordinatorGrain_GrainReference_5FC2E7A1 ... method Serialize (line 1358) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1361) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_5FF4F216 (line 1365) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_5FF4F216 (line 1370) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_5FF... method Deserialize (line 1372) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1374) | public Invokable_ITransactionCoordinatorGrain_GrainReference_5FF4F216 ... method Serialize (line 1376) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1379) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_78D54907 (line 1383) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_78D54907 (line 1388) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_78D... method Deserialize (line 1390) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1392) | public Invokable_ITransactionCoordinatorGrain_GrainReference_78D54907 ... method Serialize (line 1394) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1397) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_8EE5E563 (line 1401) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_8EE5E563 (line 1406) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_8EE... method Deserialize (line 1408) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1410) | public Invokable_ITransactionCoordinatorGrain_GrainReference_8EE5E563 ... method Serialize (line 1412) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1415) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_9EFEA7F3 (line 1419) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_9EFEA7F3 (line 1424) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_9EF... method Deserialize (line 1426) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1428) | public Invokable_ITransactionCoordinatorGrain_GrainReference_9EFEA7F3 ... method Serialize (line 1430) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1433) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_B013DBF6 (line 1437) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_B013DBF6 (line 1442) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_B01... method Deserialize (line 1444) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1446) | public Invokable_ITransactionCoordinatorGrain_GrainReference_B013DBF6 ... method Serialize (line 1448) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1451) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_B4376B4D (line 1455) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_B4376B4D (line 1460) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_B43... method Deserialize (line 1462) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1464) | public Invokable_ITransactionCoordinatorGrain_GrainReference_B4376B4D ... method Serialize (line 1466) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1469) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_D3EF444F (line 1473) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_D3EF444F (line 1478) | public Codec_Invokable_ITransactionCoordinatorGrain_GrainReference_D3E... method Deserialize (line 1480) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1482) | public Invokable_ITransactionCoordinatorGrain_GrainReference_D3EF444F ... method Serialize (line 1484) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1487) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionTestGrain_GrainReference_25B066B5 (line 1491) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionTestGrain_GrainReference_25B066B5 (line 1496) | public Codec_Invokable_ITransactionTestGrain_GrainReference_25B066B5(g... method Deserialize (line 1498) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1500) | public Invokable_ITransactionTestGrain_GrainReference_25B066B5 ReadVal... method Serialize (line 1502) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1505) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionTestGrain_GrainReference_35C87F81 (line 1509) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionTestGrain_GrainReference_35C87F81 (line 1514) | public Codec_Invokable_ITransactionTestGrain_GrainReference_35C87F81(g... method Deserialize (line 1516) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1518) | public Invokable_ITransactionTestGrain_GrainReference_35C87F81 ReadVal... method Serialize (line 1520) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1523) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionTestGrain_GrainReference_35D6FD32 (line 1527) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1532) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1534) | public Invokable_ITransactionTestGrain_GrainReference_35D6FD32 ReadVal... method Serialize (line 1536) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1539) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionTestGrain_GrainReference_8DAA79AA (line 1543) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionTestGrain_GrainReference_8DAA79AA (line 1548) | public Codec_Invokable_ITransactionTestGrain_GrainReference_8DAA79AA(g... method Deserialize (line 1550) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1552) | public Invokable_ITransactionTestGrain_GrainReference_8DAA79AA ReadVal... method Serialize (line 1554) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1557) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionTestGrain_GrainReference_CE9EC80B (line 1561) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionTestGrain_GrainReference_CE9EC80B (line 1566) | public Codec_Invokable_ITransactionTestGrain_GrainReference_CE9EC80B(g... method Deserialize (line 1568) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1570) | public Invokable_ITransactionTestGrain_GrainReference_CE9EC80B ReadVal... method Serialize (line 1572) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1575) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionTestGrain_GrainReference_DC07DAEA (line 1579) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionTestGrain_GrainReference_DC07DAEA (line 1584) | public Codec_Invokable_ITransactionTestGrain_GrainReference_DC07DAEA(g... method Deserialize (line 1586) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1588) | public Invokable_ITransactionTestGrain_GrainReference_DC07DAEA ReadVal... method Serialize (line 1590) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1593) | public void WriteField(ref global::Orleans.Serializatio... class Codec_PassOperation (line 1597) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_PassOperation (line 1602) | public Codec_PassOperation(global::Orleans.Serialization.Activators.IA... method Deserialize (line 1604) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1606) | public global::Orleans.Transactions.TestKit.PassOperation ReadValue(ref global::Orleans.Serialization... method WriteField (line 1611) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SimpleAzureStorageException (line 1615) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SimpleAzureStorageException (line 1620) | public Codec_SimpleAzureStorageException(global::Orleans.Serialization... method Deserialize (line 1622) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1624) | public global::Orleans.Transactions.TestKit.SimpleAzureStorageExceptio... method Serialize (line 1626) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1629) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ThrowOperation (line 1633) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ThrowOperation (line 1638) | public Codec_ThrowOperation(global::Orleans.Serialization.Activators.I... method Deserialize (line 1640) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1642) | public global::Orleans.Transactions.TestKit.ThrowOperation ReadValue(ref global::Orleans.Serialization... method WriteField (line 1647) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TransactionFaultInjectPhase (line 1651) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 1656) | public global::Orleans.Transactions.TestKit.TransactionFaultInjectPhas... method WriteField (line 1658) | public void WriteField(ref global::Orleans.Serializatio... class Copier_AddAndThrowException (line 1662) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_AddAndThrowException (line 1667) | public Copier_AddAndThrowException(global::Orleans.Serialization.Seria... class Copier_FailOperation (line 1670) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_FailOperation (line 1675) | public Copier_FailOperation(global::Orleans.Serialization.Activators.I... method DeepCopy (line 1677) | public global::Orleans.Transactions.TestKit.FailOperation DeepCopy(glo... method DeepCopy (line 1679) | public void DeepCopy(global::Orleans.Transactions.TestKit.FailOperatio... class Copier_FaultInjectionControl (line 1682) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 1687) | public global::Orleans.Transactions.TestKit.FaultInjectionControl Deep... method DeepCopy (line 1689) | public void DeepCopy(global::Orleans.Transactions.TestKit.FaultInjecti... class Copier_GrainData (line 1692) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 1697) | public global::Orleans.Transactions.TestKit.GrainData DeepCopy(global:... method DeepCopy (line 1699) | public void DeepCopy(global::Orleans.Transactions.TestKit.GrainData in... class Copier_Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D (line 1702) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D (line 1707) | public Copier_Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5... method DeepCopy (line 1709) | public Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D DeepC... class Copier_Invokable_ICreateOrJoinAttributionGrain_GrainReference_C9B8ECB8 (line 1712) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ICreateOrJoinAttributionGrain_GrainReference_C9B8ECB8 (line 1717) | public Copier_Invokable_ICreateOrJoinAttributionGrain_GrainReference_C... method DeepCopy (line 1719) | public Invokable_ICreateOrJoinAttributionGrain_GrainReference_C9B8ECB8... class Copier_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_70FF7C60 (line 1722) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_70FF7C60 (line 1727) | public Copier_Invokable_IFaultInjectionTransactionCoordinatorGrain_Gra... method DeepCopy (line 1729) | public Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainRefer... class Copier_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_E67D54A5 (line 1732) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainReference_E67D54A5 (line 1737) | public Copier_Invokable_IFaultInjectionTransactionCoordinatorGrain_Gra... method DeepCopy (line 1739) | public Invokable_IFaultInjectionTransactionCoordinatorGrain_GrainRefer... class Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_8389970A (line 1742) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_8389970A (line 1747) | public Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainRefer... method DeepCopy (line 1749) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_83... class Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A4CAE05C (line 1752) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A4CAE05C (line 1757) | public Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainRefer... method DeepCopy (line 1759) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A4... class Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A6C1652E (line 1762) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 1767) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_A6... class Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_C752DF7D (line 1770) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainReference_C752DF7D (line 1775) | public Copier_Invokable_IFaultInjectionTransactionTestGrain_GrainRefer... method DeepCopy (line 1777) | public Invokable_IFaultInjectionTransactionTestGrain_GrainReference_C7... class Copier_Invokable_IJoinAttributionGrain_GrainReference_B1619F67 (line 1780) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IJoinAttributionGrain_GrainReference_B1619F67 (line 1785) | public Copier_Invokable_IJoinAttributionGrain_GrainReference_B1619F67(... method DeepCopy (line 1787) | public Invokable_IJoinAttributionGrain_GrainReference_B1619F67 DeepCop... class Copier_Invokable_INoAttributionGrain_GrainReference_BC7E3A79 (line 1790) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_INoAttributionGrain_GrainReference_BC7E3A79 (line 1795) | public Copier_Invokable_INoAttributionGrain_GrainReference_BC7E3A79(gl... method DeepCopy (line 1797) | public Invokable_INoAttributionGrain_GrainReference_BC7E3A79 DeepCopy(... class Copier_Invokable_INotAllowedAttributionGrain_GrainReference_891D027E (line 1800) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_INotAllowedAttributionGrain_GrainReference_891D027E (line 1805) | public Copier_Invokable_INotAllowedAttributionGrain_GrainReference_891... method DeepCopy (line 1807) | public Invokable_INotAllowedAttributionGrain_GrainReference_891D027E D... class Copier_Invokable_ISupportedAttributionGrain_GrainReference_BC7DBC0A (line 1810) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ISupportedAttributionGrain_GrainReference_BC7DBC0A (line 1815) | public Copier_Invokable_ISupportedAttributionGrain_GrainReference_BC7D... method DeepCopy (line 1817) | public Invokable_ISupportedAttributionGrain_GrainReference_BC7DBC0A De... class Copier_Invokable_ISuppressAttributionGrain_GrainReference_5A02311D (line 1820) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ISuppressAttributionGrain_GrainReference_5A02311D (line 1825) | public Copier_Invokable_ISuppressAttributionGrain_GrainReference_5A023... method DeepCopy (line 1827) | public Invokable_ISuppressAttributionGrain_GrainReference_5A02311D Dee... class Copier_Invokable_ITransactionCommitterTestGrain_GrainReference_C44BE2A4 (line 1830) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCommitterTestGrain_GrainReference_C44BE2A4 (line 1835) | public Copier_Invokable_ITransactionCommitterTestGrain_GrainReference_... method DeepCopy (line 1837) | public Invokable_ITransactionCommitterTestGrain_GrainReference_C44BE2A... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_2760260D (line 1840) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_2760260D (line 1845) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_27... method DeepCopy (line 1847) | public Invokable_ITransactionCoordinatorGrain_GrainReference_2760260D ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_3A6B9237 (line 1850) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_3A6B9237 (line 1855) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_3A... method DeepCopy (line 1857) | public Invokable_ITransactionCoordinatorGrain_GrainReference_3A6B9237 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_485592B2 (line 1860) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_485592B2 (line 1865) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_48... method DeepCopy (line 1867) | public Invokable_ITransactionCoordinatorGrain_GrainReference_485592B2 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_5FC2E7A1 (line 1870) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_5FC2E7A1 (line 1875) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_5F... method DeepCopy (line 1877) | public Invokable_ITransactionCoordinatorGrain_GrainReference_5FC2E7A1 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_5FF4F216 (line 1880) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_5FF4F216 (line 1885) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_5F... method DeepCopy (line 1887) | public Invokable_ITransactionCoordinatorGrain_GrainReference_5FF4F216 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_78D54907 (line 1890) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_78D54907 (line 1895) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_78... method DeepCopy (line 1897) | public Invokable_ITransactionCoordinatorGrain_GrainReference_78D54907 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_8EE5E563 (line 1900) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_8EE5E563 (line 1905) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_8E... method DeepCopy (line 1907) | public Invokable_ITransactionCoordinatorGrain_GrainReference_8EE5E563 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_9EFEA7F3 (line 1910) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_9EFEA7F3 (line 1915) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_9E... method DeepCopy (line 1917) | public Invokable_ITransactionCoordinatorGrain_GrainReference_9EFEA7F3 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_B013DBF6 (line 1920) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_B013DBF6 (line 1925) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_B0... method DeepCopy (line 1927) | public Invokable_ITransactionCoordinatorGrain_GrainReference_B013DBF6 ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_B4376B4D (line 1930) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_B4376B4D (line 1935) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_B4... method DeepCopy (line 1937) | public Invokable_ITransactionCoordinatorGrain_GrainReference_B4376B4D ... class Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_D3EF444F (line 1940) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_D3EF444F (line 1945) | public Copier_Invokable_ITransactionCoordinatorGrain_GrainReference_D3... method DeepCopy (line 1947) | public Invokable_ITransactionCoordinatorGrain_GrainReference_D3EF444F ... class Copier_Invokable_ITransactionTestGrain_GrainReference_25B066B5 (line 1950) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionTestGrain_GrainReference_25B066B5 (line 1955) | public Copier_Invokable_ITransactionTestGrain_GrainReference_25B066B5(... method DeepCopy (line 1957) | public Invokable_ITransactionTestGrain_GrainReference_25B066B5 DeepCop... class Copier_Invokable_ITransactionTestGrain_GrainReference_35C87F81 (line 1960) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionTestGrain_GrainReference_35C87F81 (line 1965) | public Copier_Invokable_ITransactionTestGrain_GrainReference_35C87F81(... method DeepCopy (line 1967) | public Invokable_ITransactionTestGrain_GrainReference_35C87F81 DeepCop... class Copier_Invokable_ITransactionTestGrain_GrainReference_35D6FD32 (line 1970) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 1975) | public Invokable_ITransactionTestGrain_GrainReference_35D6FD32 DeepCop... class Copier_Invokable_ITransactionTestGrain_GrainReference_8DAA79AA (line 1978) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionTestGrain_GrainReference_8DAA79AA (line 1983) | public Copier_Invokable_ITransactionTestGrain_GrainReference_8DAA79AA(... method DeepCopy (line 1985) | public Invokable_ITransactionTestGrain_GrainReference_8DAA79AA DeepCop... class Copier_Invokable_ITransactionTestGrain_GrainReference_CE9EC80B (line 1988) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionTestGrain_GrainReference_CE9EC80B (line 1993) | public Copier_Invokable_ITransactionTestGrain_GrainReference_CE9EC80B(... method DeepCopy (line 1995) | public Invokable_ITransactionTestGrain_GrainReference_CE9EC80B DeepCop... class Copier_Invokable_ITransactionTestGrain_GrainReference_DC07DAEA (line 1998) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionTestGrain_GrainReference_DC07DAEA (line 2003) | public Copier_Invokable_ITransactionTestGrain_GrainReference_DC07DAEA(... method DeepCopy (line 2005) | public Invokable_ITransactionTestGrain_GrainReference_DC07DAEA DeepCop... class Copier_PassOperation (line 2008) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_PassOperation (line 2013) | public Copier_PassOperation(global::Orleans.Serialization.Activators.I... method DeepCopy (line 2015) | public global::Orleans.Transactions.TestKit.PassOperation DeepCopy(glo... method DeepCopy (line 2017) | public void DeepCopy(global::Orleans.Transactions.TestKit.PassOperatio... class Copier_SimpleAzureStorageException (line 2020) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SimpleAzureStorageException (line 2025) | public Copier_SimpleAzureStorageException(global::Orleans.Serializatio... class Copier_ThrowOperation (line 2028) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_ThrowOperation (line 2033) | public Copier_ThrowOperation(global::Orleans.Serialization.Activators.... method DeepCopy (line 2035) | public global::Orleans.Transactions.TestKit.ThrowOperation DeepCopy(gl... method DeepCopy (line 2037) | public void DeepCopy(global::Orleans.Transactions.TestKit.ThrowOperati... class Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D (line 2040) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D (line 2048) | public Invokable_ICreateAttributionGrain_GrainReference_3EFBDD5D(globa... method Dispose (line 2050) | public override void Dispose() { } method GetActivityName (line 2052) | public override string GetActivityName() { throw null; } method GetArgument (line 2054) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2056) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2058) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2060) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2062) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2064) | public override string GetMethodName() { throw null; } method GetTarget (line 2066) | public override object GetTarget() { throw null; } method InvokeInner (line 2068) | protected override System.Threading.Tasks.Task InvokeInner() { th... method SetTarget (line 2299) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_IJoinAttributionGrain_GrainReference_B1619F67 (line 2302) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_IJoinAttributionGrain_GrainReference_B1619F67 (line 2310) | public Invokable_IJoinAttributionGrain_GrainReference_B1619F67(global:... method Dispose (line 2312) | public override void Dispose() { } method GetActivityName (line 2314) | public override string GetActivityName() { throw null; } method GetArgument (line 2316) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 2318) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 2320) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 2322) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 2324) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 2326) | public override string GetMethodName() { throw null; } method GetTarget (line 2328) | public override object GetTarget() { throw null; } method InvokeInner (line 2330) | protected override System.Threading.Tasks.Task InvokeInner() { ... method SetTarget (line 3012) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_ITransactionTestGrain_GrainReference_CE9EC80B (line 3015) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_ITransactionTestGrain_GrainReference_CE9EC80B (line 3022) | public Invokable_ITransactionTestGrain_GrainReference_CE9EC80B(global:... method Dispose (line 3024) | public override void Dispose() { } method GetActivityName (line 3026) | public override string GetActivityName() { throw null; } method GetArgument (line 3028) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 3030) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 3032) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3034) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3036) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3038) | public override string GetMethodName() { throw null; } method GetTarget (line 3040) | public override object GetTarget() { throw null; } method InvokeInner (line 3042) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 3044) | public override void SetArgument(int index, object value) { } method SetTarget (line 3046) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_ITransactionTestGrain_GrainReference_DC07DAEA (line 3049) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_ITransactionTestGrain_GrainReference_DC07DAEA (line 3056) | public Invokable_ITransactionTestGrain_GrainReference_DC07DAEA(global:... method Dispose (line 3058) | public override void Dispose() { } method GetActivityName (line 3060) | public override string GetActivityName() { throw null; } method GetArgument (line 3062) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 3064) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 3066) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3068) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3070) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3072) | public override string GetMethodName() { throw null; } method GetTarget (line 3074) | public override object GetTarget() { throw null; } method InvokeInner (line 3076) | protected override System.Threading.Tasks.Task InvokeInner() { ... method SetArgument (line 3078) | public override void SetArgument(int index, object value) { } method SetTarget (line 3080) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Codec_ConsistencyTestOptions (line 3086) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ConsistencyTestOptions (line 3091) | public Codec_ConsistencyTestOptions(global::Orleans.Serialization.Seri... method Deserialize (line 3093) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3095) | public global::Orleans.Transactions.TestKit.Consistency.ConsistencyTes... method Serialize (line 3097) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3100) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_IConsistencyTestGrain_GrainReference_2EB318CB (line 3104) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_IConsistencyTestGrain_GrainReference_2EB318CB (line 3109) | public Codec_Invokable_IConsistencyTestGrain_GrainReference_2EB318CB(g... method Deserialize (line 3111) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3113) | public Invokable_IConsistencyTestGrain_GrainReference_2EB318CB ReadVal... method Serialize (line 3115) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3118) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Observation (line 3122) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3127) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3129) | public global::Orleans.Transactions.TestKit.Consistency.Observation Re... method Serialize (line 3131) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3134) | public void WriteField(ref global::Orleans.Serializatio... class Codec_UserAbort (line 3138) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_UserAbort (line 3143) | public Codec_UserAbort(global::Orleans.Serialization.Serializers.IBase... method Deserialize (line 3145) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3147) | public global::Orleans.Transactions.TestKit.Consistency.UserAbort Read... method Serialize (line 3149) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3152) | public void WriteField(ref global::Orleans.Serializatio... class Copier_ConsistencyTestOptions (line 3156) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3161) | public global::Orleans.Transactions.TestKit.Consistency.ConsistencyTes... method DeepCopy (line 3163) | public void DeepCopy(global::Orleans.Transactions.TestKit.Consistency.... class Copier_Invokable_IConsistencyTestGrain_GrainReference_2EB318CB (line 3166) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_IConsistencyTestGrain_GrainReference_2EB318CB (line 3171) | public Copier_Invokable_IConsistencyTestGrain_GrainReference_2EB318CB(... method DeepCopy (line 3173) | public Invokable_IConsistencyTestGrain_GrainReference_2EB318CB DeepCop... class Copier_UserAbort (line 3176) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_UserAbort (line 3181) | public Copier_UserAbort(global::Orleans.Serialization.Serializers.ICod... class Invokable_IConsistencyTestGrain_GrainReference_2EB318CB (line 3184) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_IConsistencyTestGrain_GrainReference_2EB318CB (line 3195) | public Invokable_IConsistencyTestGrain_GrainReference_2EB318CB(global:... method Dispose (line 3197) | public override void Dispose() { } method GetActivityName (line 3199) | public override string GetActivityName() { throw null; } method GetArgument (line 3201) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 3203) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 3205) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3207) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3209) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3211) | public override string GetMethodName() { throw null; } method GetTarget (line 3213) | public override object GetTarget() { throw null; } method InvokeInner (line 3215) | protected override System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 3232) | public global::Orleans.Transactions.TestKit.Consistency.ConsistencyTes... method Serialize (line 3234) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3237) | public void WriteField(ref global::Orleans.Serializatio... class Copier_State (line 3241) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3246) | public global::Orleans.Transactions.TestKit.Consistency.ConsistencyTes... method DeepCopy (line 3248) | public void DeepCopy(global::Orleans.Transactions.TestKit.Consistency.... class Codec_BitArrayState (line 3254) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_BitArrayState (line 3259) | public Codec_BitArrayState(global::Orleans.Serialization.Serializers.I... method Deserialize (line 3261) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3263) | public global::Orleans.Transactions.TestKit.Correctnesss.BitArrayState... method Serialize (line 3265) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3268) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 (line 3272) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 (line 3277) | public Codec_Invokable_ITransactionalBitArrayGrain_GrainReference_0183... method Deserialize (line 3279) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3281) | public Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 R... method Serialize (line 3283) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3286) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalBitArrayGrain_GrainReference_9A5740F1 (line 3290) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 3295) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3297) | public Invokable_ITransactionalBitArrayGrain_GrainReference_9A5740F1 R... method Serialize (line 3299) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3302) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 (line 3306) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 (line 3311) | public Codec_Invokable_ITransactionalBitArrayGrain_GrainReference_B821... method Deserialize (line 3313) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3315) | public Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 R... method Serialize (line 3317) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3320) | public void WriteField(ref global::Orleans.Serializatio... class Copier_BitArrayState (line 3324) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_BitArrayState (line 3329) | public Copier_BitArrayState(global::Orleans.Serialization.Serializers.... method DeepCopy (line 3331) | public global::Orleans.Transactions.TestKit.Correctnesss.BitArrayState... method DeepCopy (line 3333) | public void DeepCopy(global::Orleans.Transactions.TestKit.Correctnesss... class Copier_Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 (line 3336) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 (line 3341) | public Copier_Invokable_ITransactionalBitArrayGrain_GrainReference_018... method DeepCopy (line 3343) | public Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 D... class Copier_Invokable_ITransactionalBitArrayGrain_GrainReference_9A5740F1 (line 3346) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method DeepCopy (line 3351) | public Invokable_ITransactionalBitArrayGrain_GrainReference_9A5740F1 D... class Copier_Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 (line 3354) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 (line 3359) | public Copier_Invokable_ITransactionalBitArrayGrain_GrainReference_B82... method DeepCopy (line 3361) | public Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 D... class Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 (line 3364) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5 (line 3371) | public Invokable_ITransactionalBitArrayGrain_GrainReference_0183C2F5(g... method Dispose (line 3373) | public override void Dispose() { } method GetActivityName (line 3375) | public override string GetActivityName() { throw null; } method GetArgument (line 3377) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 3379) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 3381) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3383) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3385) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3387) | public override string GetMethodName() { throw null; } method GetTarget (line 3389) | public override object GetTarget() { throw null; } method InvokeInner (line 3391) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetArgument (line 3393) | public override void SetArgument(int index, object value) { } method SetTarget (line 3395) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_ITransactionalBitArrayGrain_GrainReference_9A5740F1 (line 3398) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Dispose (line 3404) | public override void Dispose() { } method GetActivityName (line 3406) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 3408) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3410) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3412) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3414) | public override string GetMethodName() { throw null; } method GetTarget (line 3416) | public override object GetTarget() { throw null; } method InvokeInner (line 3418) | protected override System.Threading.Tasks.Task InvokeInner() { throw n... method SetTarget (line 3420) | public override void SetTarget(global::Orleans.Serialization.Invocatio... class Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 (line 3423) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1 (line 3429) | public Invokable_ITransactionalBitArrayGrain_GrainReference_B821F3B1(g... method Dispose (line 3431) | public override void Dispose() { } method GetActivityName (line 3433) | public override string GetActivityName() { throw null; } method GetInterfaceName (line 3435) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 3437) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 3439) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 3441) | public override string GetMethodName() { throw null; } method GetTarget (line 3443) | public override object GetTarget() { throw null; } method InvokeInner (line 3445) | protected override System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 3462) | public global::Orleans.Transactions.TestKit.RandomErrorInjector.Random... method Serialize (line 3464) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3467) | public void WriteField(ref global::Orleans.Serializatio... class Codec_RandomlyInjectedStorageException (line 3471) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_RandomlyInjectedStorageException (line 3476) | public Codec_RandomlyInjectedStorageException(global::Orleans.Serializ... method Deserialize (line 3478) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3480) | public global::Orleans.Transactions.TestKit.RandomErrorInjector.Random... method Serialize (line 3482) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3485) | public void WriteField(ref global::Orleans.Serializatio... class Copier_RandomlyInjectedInconsistentStateException (line 3489) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_RandomlyInjectedInconsistentStateException (line 3494) | public Copier_RandomlyInjectedInconsistentStateException(global::Orlea... class Copier_RandomlyInjectedStorageException (line 3497) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_RandomlyInjectedStorageException (line 3502) | public Copier_RandomlyInjectedStorageException(global::Orleans.Seriali... class Codec_CreateAttributionGrain (line 3508) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_CreateAttributionGrain (line 3513) | public Codec_CreateAttributionGrain(global::Orleans.Serialization.Acti... method Deserialize (line 3515) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3517) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method Serialize (line 3519) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3522) | public void WriteField(ref global::Orleans.Serializatio... class Codec_CreateOrJoinAttributionGrain (line 3526) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_CreateOrJoinAttributionGrain (line 3531) | public Codec_CreateOrJoinAttributionGrain(global::Orleans.Serializatio... method Deserialize (line 3533) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3535) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method Serialize (line 3537) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3540) | public void WriteField(ref global::Orleans.Serializatio... class Codec_JoinAttributionGrain (line 3544) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_JoinAttributionGrain (line 3549) | public Codec_JoinAttributionGrain(global::Orleans.Serialization.Activa... method Deserialize (line 3551) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3553) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method Serialize (line 3555) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3558) | public void WriteField(ref global::Orleans.Serializatio... class Codec_NoAttributionGrain (line 3562) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_NoAttributionGrain (line 3567) | public Codec_NoAttributionGrain(global::Orleans.Serialization.Activato... method Deserialize (line 3569) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3571) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method Serialize (line 3573) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3576) | public void WriteField(ref global::Orleans.Serializatio... class Codec_NotAllowedAttributionGrain (line 3580) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_NotAllowedAttributionGrain (line 3585) | public Codec_NotAllowedAttributionGrain(global::Orleans.Serialization.... method Deserialize (line 3587) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3589) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method Serialize (line 3591) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3594) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SupportedAttributionGrain (line 3598) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SupportedAttributionGrain (line 3603) | public Codec_SupportedAttributionGrain(global::Orleans.Serialization.A... method Deserialize (line 3605) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3607) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method Serialize (line 3609) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3612) | public void WriteField(ref global::Orleans.Serializatio... class Codec_SuppressAttributionGrain (line 3616) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_SuppressAttributionGrain (line 3621) | public Codec_SuppressAttributionGrain(global::Orleans.Serialization.Ac... method Deserialize (line 3623) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 3625) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method Serialize (line 3627) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 3630) | public void WriteField(ref global::Orleans.Serializatio... class Copier_CreateAttributionGrain (line 3634) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_CreateAttributionGrain (line 3639) | public Copier_CreateAttributionGrain(global::Orleans.Serialization.Act... method DeepCopy (line 3641) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method DeepCopy (line 3643) | public void DeepCopy(global::Orleans.Transactions.TestKit.TransactionA... class Copier_CreateOrJoinAttributionGrain (line 3646) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_CreateOrJoinAttributionGrain (line 3651) | public Copier_CreateOrJoinAttributionGrain(global::Orleans.Serializati... method DeepCopy (line 3653) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method DeepCopy (line 3655) | public void DeepCopy(global::Orleans.Transactions.TestKit.TransactionA... class Copier_JoinAttributionGrain (line 3658) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_JoinAttributionGrain (line 3663) | public Copier_JoinAttributionGrain(global::Orleans.Serialization.Activ... method DeepCopy (line 3665) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method DeepCopy (line 3667) | public void DeepCopy(global::Orleans.Transactions.TestKit.TransactionA... class Copier_NoAttributionGrain (line 3670) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_NoAttributionGrain (line 3675) | public Copier_NoAttributionGrain(global::Orleans.Serialization.Activat... method DeepCopy (line 3677) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method DeepCopy (line 3679) | public void DeepCopy(global::Orleans.Transactions.TestKit.TransactionA... class Copier_NotAllowedAttributionGrain (line 3682) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_NotAllowedAttributionGrain (line 3687) | public Copier_NotAllowedAttributionGrain(global::Orleans.Serialization... method DeepCopy (line 3689) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method DeepCopy (line 3691) | public void DeepCopy(global::Orleans.Transactions.TestKit.TransactionA... class Copier_SupportedAttributionGrain (line 3694) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SupportedAttributionGrain (line 3699) | public Copier_SupportedAttributionGrain(global::Orleans.Serialization.... method DeepCopy (line 3701) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method DeepCopy (line 3703) | public void DeepCopy(global::Orleans.Transactions.TestKit.TransactionA... class Copier_SuppressAttributionGrain (line 3706) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_SuppressAttributionGrain (line 3711) | public Copier_SuppressAttributionGrain(global::Orleans.Serialization.A... method DeepCopy (line 3713) | public global::Orleans.Transactions.TestKit.TransactionAttributionGrai... method DeepCopy (line 3715) | public void DeepCopy(global::Orleans.Transactions.TestKit.TransactionA... FILE: src/api/Orleans.Transactions.TestKit.xUnit/Orleans.Transactions.TestKit.xUnit.cs class ConsistencyTransactionTestRunnerxUnit (line 11) | public abstract partial class ConsistencyTransactionTestRunnerxUnit : Co... method ConsistencyTransactionTestRunnerxUnit (line 13) | public ConsistencyTransactionTestRunnerxUnit(IGrainFactory grainFactor... method RandomizedConsistency (line 19) | [SkippableTheory(new[] { })] class ControlledFaultInjectionTransactionTestRunnerxUnit (line 104) | public partial class ControlledFaultInjectionTransactionTestRunnerxUnit ... method ControlledFaultInjectionTransactionTestRunnerxUnit (line 106) | public ControlledFaultInjectionTransactionTestRunnerxUnit(IGrainFactor... method MultiGrainWriteTransaction_FaultInjection (line 108) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method SingleGrainReadTransaction (line 121) | [SkippableFact(new[] { })] method SingleGrainWriteTransaction (line 124) | [SkippableFact(new[] { })] class DisabledTransactionsTestRunnerxUnit (line 128) | public partial class DisabledTransactionsTestRunnerxUnit : DisabledTrans... method DisabledTransactionsTestRunnerxUnit (line 130) | protected DisabledTransactionsTestRunnerxUnit(IGrainFactory grainFacto... method MultiTransactionGrainsThrowWhenTransactions (line 132) | [SkippableTheory(new[] { })] method TransactionGrainsThrowWhenTransactions (line 136) | [SkippableTheory(new[] { })] class GoldenPathTransactionTestRunnerxUnit (line 141) | public abstract partial class GoldenPathTransactionTestRunnerxUnit : Gol... method GoldenPathTransactionTestRunnerxUnit (line 143) | protected GoldenPathTransactionTestRunnerxUnit(IGrainFactory grainFact... method MultiGrainReadWriteTransaction (line 145) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method MultiGrainWriteTransaction (line 151) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method MultiWriteToSingleGrainTransaction (line 157) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method RepeatGrainReadWriteTransaction (line 163) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method RWRWTest (line 169) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method SingleGrainReadTransaction (line 175) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method SingleGrainWriteTransaction (line 181) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... method WRWRTest (line 187) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... class GrainFaultTransactionTestRunnerxUnit (line 194) | public partial class GrainFaultTransactionTestRunnerxUnit : GrainFaultTr... method GrainFaultTransactionTestRunnerxUnit (line 196) | public GrainFaultTransactionTestRunnerxUnit(IGrainFactory grainFactory... method AbortTransactionExceptionInnerExceptionOnlyContainsOneRootCauseException (line 198) | [SkippableTheory(new[] { })] method AbortTransactionOnExceptions (line 204) | [SkippableTheory(new[] { })] method AbortTransactionOnOrphanCalls (line 210) | [SkippableTheory(new[] { })] method AbortTransactionOnReadOnlyViolatedException (line 216) | [SkippableTheory(new[] { })] method MultiGrainAbortTransactionOnExceptions (line 222) | [SkippableTheory(new[] { })] class ScopedTransactionsTestRunnerxUnit (line 229) | public abstract partial class ScopedTransactionsTestRunnerxUnit : Scoped... method ScopedTransactionsTestRunnerxUnit (line 231) | protected ScopedTransactionsTestRunnerxUnit(IGrainFactory grainFactory... method CreateNestedTransactionScopeAndSetValueAndInnerFailAndAssert (line 233) | [SkippableTheory(new[] { })] method CreateTransactionScopeAndSetValue (line 239) | [SkippableTheory(new[] { })] method CreateTransactionScopeAndSetValueAndAssert (line 245) | [SkippableTheory(new[] { })] method CreateTransactionScopeAndSetValueWithFailure (line 251) | [SkippableTheory(new[] { })] class TocFaultTransactionTestRunnerxUnit (line 258) | public abstract partial class TocFaultTransactionTestRunnerxUnit : TocFa... method TocFaultTransactionTestRunnerxUnit (line 260) | protected TocFaultTransactionTestRunnerxUnit(IGrainFactory grainFactor... method MultiGrainWriteTransactionWithCommitException (line 262) | [SkippableTheory(new[] { })] method MultiGrainWriteTransactionWithCommitFailure (line 268) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... class TocGoldenPathTestRunnerxUnit (line 275) | public abstract partial class TocGoldenPathTestRunnerxUnit : TocGoldenPa... method TocGoldenPathTestRunnerxUnit (line 277) | protected TocGoldenPathTestRunnerxUnit(IGrainFactory grainFactory, Xun... method MultiGrainWriteTransaction (line 279) | [SkippableTheory(new[] { }, Skip = "https://github.com/dotnet/orleans/... class TransactionalStateStorageTestRunnerxUnit (line 285) | public abstract partial class TransactionalStateStorageTestRunnerxUnit InvokeInn... class TransactionRequestBase (line 64) | [GenerateSerializer] method TransactionRequestBase (line 67) | [GeneratedActivatorConstructor] method BaseInvoke (line 80) | protected abstract System.Threading.Tasks.ValueTask InvokeInn... class TransactionResponse (line 104) | [GenerateSerializer] method Create (line 116) | public static TransactionResponse Create(Serialization.Invocation.Resp... method Dispose (line 118) | public override void Dispose() { } method GetException (line 120) | public System.Exception GetException() { throw null; } method GetResult (line 122) | public override T GetResult() { throw null; } class TransactionTaskRequest (line 125) | [SerializerTransparent] method TransactionTaskRequest (line 128) | protected TransactionTaskRequest(Serialization.Serializer InvokeInner(); class TransactionTaskRequest (line 135) | [SerializerTransparent] method TransactionTaskRequest (line 128) | protected TransactionTaskRequest(Serialization.Serializer InvokeInner(); class TransactionalStateOptions (line 148) | public partial class TransactionalStateOptions class ClientBuilderExtensions (line 176) | public static partial class ClientBuilderExtensions method UseTransactions (line 178) | public static IClientBuilder UseTransactions(this IClientBuilder build... class SiloBuilderExtensions (line 181) | public static partial class SiloBuilderExtensions method UseTransactions (line 183) | public static ISiloBuilder UseTransactions(this ISiloBuilder builder) ... class TransactionsServiceCollectionExtensions (line 186) | public static partial class TransactionsServiceCollectionExtensions class CausalClock (line 193) | public partial class CausalClock method CausalClock (line 195) | public CausalClock(IClock clock) { } method Merge (line 197) | public System.DateTime Merge(System.DateTime timestamp) { throw null; } method MergeUtcNow (line 199) | public System.DateTime MergeUtcNow(System.DateTime timestamp) { throw ... method UtcNow (line 201) | public System.DateTime UtcNow() { throw null; } class Clock (line 204) | public partial class Clock : IClock method UtcNow (line 206) | public System.DateTime UtcNow() { throw null; } class DefaultTransactionDataCopier (line 209) | public partial class DefaultTransactionDataCopier : Abstractions.... method DefaultTransactionDataCopier (line 211) | public DefaultTransactionDataCopier(Serialization.DeepCopier de... method DeepCopy (line 213) | public TData DeepCopy(TData original) { throw null; } type IClock (line 216) | public partial interface IClock method UtcNow (line 218) | System.DateTime UtcNow(); type ITransactionAgent (line 221) | public partial interface ITransactionAgent method Abort (line 223) | System.Threading.Tasks.Task Abort(TransactionInfo transactionInfo); method Resolve (line 224) | System.Threading.Tasks.Task<(TransactionalStatus Status, System.Except... method StartTransaction (line 225) | System.Threading.Tasks.Task StartTransaction(bool rea... type ITransactionalStateStorageEvents (line 228) | public partial interface ITransactionalStateStorageEvents method Cancel (line 231) | void Cancel(long sequenceNumber); method Collect (line 232) | void Collect(System.Guid transactionId); method Commit (line 233) | void Commit(System.Guid transactionId, System.DateTime timestamp, Syst... method Confirm (line 234) | void Confirm(long sequenceNumber); method Prepare (line 235) | void Prepare(long sequenceNumber, System.Guid transactionId, System.Da... method Read (line 236) | void Read(System.DateTime timestamp); type ITransactionOverloadDetector (line 239) | public partial interface ITransactionOverloadDetector method IsOverloaded (line 241) | bool IsOverloaded(); class NamedTransactionalStateStorageFactory (line 244) | public partial class NamedTransactionalStateStorageFactory : Abstraction... method NamedTransactionalStateStorageFactory (line 246) | [System.Obsolete("Use the NamedTransactionalStateStorageFactory(IGrain... method NamedTransactionalStateStorageFactory (line 249) | public NamedTransactionalStateStorageFactory(Runtime.IGrainContextAcce... method Create (line 251) | public Abstractions.ITransactionalStateStorage Create(... class OrleansBrokenTransactionLockException (line 255) | [GenerateSerializer] method OrleansBrokenTransactionLockException (line 258) | public OrleansBrokenTransactionLockException(string transactionId, str... method OrleansBrokenTransactionLockException (line 260) | public OrleansBrokenTransactionLockException(string transactionId, str... class OrleansCascadingAbortException (line 263) | [GenerateSerializer] method OrleansCascadingAbortException (line 266) | public OrleansCascadingAbortException(string transactionId, System.Exc... method OrleansCascadingAbortException (line 268) | public OrleansCascadingAbortException(string transactionId, string dep... method OrleansCascadingAbortException (line 270) | public OrleansCascadingAbortException(string transactionId) : base(def... method GetObjectData (line 275) | [System.Obsolete] class OrleansOrphanCallException (line 279) | [GenerateSerializer] method OrleansOrphanCallException (line 282) | public OrleansOrphanCallException(string transactionId, int pendingCal... class OrleansReadOnlyViolatedException (line 285) | [GenerateSerializer] method OrleansReadOnlyViolatedException (line 288) | public OrleansReadOnlyViolatedException(string transactionId) : base(d... class OrleansStartTransactionFailedException (line 291) | [GenerateSerializer] method OrleansStartTransactionFailedException (line 294) | public OrleansStartTransactionFailedException(System.Exception innerEx... class OrleansTransactionAbortedException (line 297) | [GenerateSerializer] method OrleansTransactionAbortedException (line 300) | [System.Obsolete] method OrleansTransactionAbortedException (line 303) | public OrleansTransactionAbortedException(string transactionId, System... method OrleansTransactionAbortedException (line 305) | public OrleansTransactionAbortedException(string transactionId, string... method OrleansTransactionAbortedException (line 307) | public OrleansTransactionAbortedException(string transactionId, string... method GetObjectData (line 312) | [System.Obsolete] class OrleansTransactionException (line 316) | [GenerateSerializer] method OrleansTransactionException (line 319) | public OrleansTransactionException() { } method OrleansTransactionException (line 321) | [System.Obsolete] method OrleansTransactionException (line 324) | public OrleansTransactionException(string message, System.Exception in... method OrleansTransactionException (line 326) | public OrleansTransactionException(string message) { } class OrleansTransactionInDoubtException (line 329) | [GenerateSerializer] method OrleansTransactionInDoubtException (line 332) | public OrleansTransactionInDoubtException(string transactionId, System... method OrleansTransactionInDoubtException (line 334) | public OrleansTransactionInDoubtException(string transactionId, string... method OrleansTransactionInDoubtException (line 336) | public OrleansTransactionInDoubtException(string transactionId) { } method GetObjectData (line 341) | [System.Obsolete] class OrleansTransactionLockUpgradeException (line 345) | [GenerateSerializer] method OrleansTransactionLockUpgradeException (line 348) | public OrleansTransactionLockUpgradeException(string transactionId) : ... class OrleansTransactionOverloadException (line 351) | [GenerateSerializer] class OrleansTransactionPrepareTimeoutException (line 356) | [GenerateSerializer] method OrleansTransactionPrepareTimeoutException (line 359) | public OrleansTransactionPrepareTimeoutException(string transactionId,... class OrleansTransactionsDisabledException (line 362) | [GenerateSerializer] class OrleansTransactionServiceNotAvailableException (line 367) | [GenerateSerializer] class OrleansTransactionTransientFailureException (line 372) | [GenerateSerializer] method OrleansTransactionTransientFailureException (line 375) | [System.Obsolete] method OrleansTransactionTransientFailureException (line 378) | public OrleansTransactionTransientFailureException(string transactionI... method OrleansTransactionTransientFailureException (line 380) | public OrleansTransactionTransientFailureException(string transactionI... type ParticipantId (line 383) | [GenerateSerializer] method ParticipantId (line 390) | public ParticipantId(string name, Runtime.GrainReference reference, Ro... method ToString (line 401) | public override readonly string ToString() { throw null; } class IdComparer (line 403) | [GenerateSerializer] method Equals (line 407) | public bool Equals(ParticipantId x, ParticipantId y) { throw null; } method GetHashCode (line 409) | public int GetHashCode(ParticipantId obj) { throw null; } type Role (line 412) | [GenerateSerializer] class ParticipantRoleExtensions (line 422) | public static partial class ParticipantRoleExtensions method IsManager (line 424) | public static bool IsManager(this ParticipantId participant) { throw n... method IsPriorityManager (line 426) | public static bool IsPriorityManager(this ParticipantId participant) {... method IsResource (line 428) | public static bool IsResource(this ParticipantId participant) { throw ... method SelectManagers (line 430) | public static System.Collections.Generic.IEnumerable Se... method SelectResources (line 434) | public static System.Collections.Generic.IEnumerable CommitReadOnly... method Confirm (line 470) | public System.Threading.Tasks.Task Confirm(string resourceId, System.G... method Prepare (line 472) | public System.Threading.Tasks.Task Prepare(string resourceId, System.G... class TransactionalStateAttributeMapper (line 475) | public partial class TransactionalStateAttributeMapper : TransactionalSt... method AttributeToConfig (line 477) | protected override Abstractions.TransactionalStateConfiguration Attrib... method AttributeToConfig (line 482) | protected abstract Abstractions.TransactionalStateConfiguration Attrib... method GetFactory (line 483) | public Factory GetFactory(System.Reflec... class TransactionalStateAttributeMapper (line 480) | public abstract partial class TransactionalStateAttributeMapper GetFactory(System.Reflec... class TransactionalStateFactory (line 486) | public partial class TransactionalStateFactory : Abstractions.ITransacti... method TransactionalStateFactory (line 488) | public TransactionalStateFactory(Runtime.IGrainContextAccessor context... method Create (line 490) | public Abstractions.ITransactionalState Create(Abstrac... method GetJsonSerializerSettings (line 493) | public static Newtonsoft.Json.JsonSerializerSettings GetJsonSerializer... class TransactionalStateRecord (line 496) | [GenerateSerializer] class TransactionalState (line 513) | public partial class TransactionalState : Abstractions.ITransact... method TransactionalState (line 515) | public TransactionalState(Abstractions.TransactionalStateConfiguration... method Participate (line 519) | public void Participate(Runtime.IGrainLifecycle lifecycle) { } method PerformRead (line 521) | public System.Threading.Tasks.Task PerformRead(Syste... method PerformUpdate (line 523) | public System.Threading.Tasks.Task PerformUpdate(Sys... type TransactionalStatus (line 526) | public enum TransactionalStatus class TransactionalStatusExtensions (line 542) | public static partial class TransactionalStatusExtensions method ConvertToUserException (line 544) | public static OrleansTransactionException ConvertToUserException(this ... method DefinitelyAborted (line 546) | public static bool DefinitelyAborted(this TransactionalStatus status) ... class TransactionCommitterFactory (line 549) | public partial class TransactionCommitterFactory : Abstractions.ITransac... method TransactionCommitterFactory (line 551) | public TransactionCommitterFactory(Runtime.IGrainContextAccessor conte... method Create (line 553) | public Abstractions.ITransactionCommitter Create(A... class TransactionCommitter (line 557) | public partial class TransactionCommitter : Abstractions.ITran... method TransactionCommitter (line 559) | public TransactionCommitter(Abstractions.ITransactionCommitterConfigur... method OnCommit (line 561) | public System.Threading.Tasks.Task OnCommit(Abstractions.ITransactionC... method Participate (line 563) | public void Participate(Runtime.IGrainLifecycle lifecycle) { } class OperationState (line 565) | [GenerateSerializer] class TransactionContext (line 573) | public static partial class TransactionContext method GetRequiredTransactionInfo (line 577) | public static TransactionInfo GetRequiredTransactionInfo() { throw nul... method GetTransactionInfo (line 579) | public static TransactionInfo GetTransactionInfo() { throw null; } class TransactionInfo (line 582) | [GenerateSerializer] method TransactionInfo (line 586) | public TransactionInfo() { } method TransactionInfo (line 588) | public TransactionInfo(TransactionInfo other) { } method TransactionInfo (line 590) | public TransactionInfo(System.Guid id, System.DateTime timeStamp, Syst... method Fork (line 615) | public TransactionInfo Fork() { throw null; } method Join (line 617) | public void Join(TransactionInfo x) { } method MustAbort (line 619) | public OrleansTransactionAbortedException MustAbort(Serialization.Seri... method ReconcilePending (line 621) | public void ReconcilePending() { } method RecordException (line 623) | public void RecordException(System.Exception e, Serialization.Serializ... method RecordRead (line 625) | public void RecordRead(ParticipantId id, System.DateTime minTime) { } method RecordWrite (line 627) | public void RecordWrite(ParticipantId id, System.DateTime minTime) { } method ToString (line 629) | public override string ToString() { throw null; } class TransactionManagerExtension (line 632) | public partial class TransactionManagerExtension : Abstractions.ITransac... method TransactionManagerExtension (line 634) | public TransactionManagerExtension(Runtime.IGrainContextAccessor conte... method Ping (line 636) | public System.Threading.Tasks.Task Ping(string resourceId, System.Guid... method PrepareAndCommit (line 638) | public System.Threading.Tasks.Task PrepareAndComm... method Prepared (line 640) | public System.Threading.Tasks.Task Prepared(string resourceId, System.... class TransactionOverloadDetector (line 643) | public partial class TransactionOverloadDetector : ITransactionOverloadD... method TransactionOverloadDetector (line 645) | public TransactionOverloadDetector(Abstractions.ITransactionAgentStati... method IsOverloaded (line 647) | public bool IsOverloaded() { throw null; } class TransactionRateLoadSheddingOptions (line 650) | public partial class TransactionRateLoadSheddingOptions type AccessCounter (line 661) | [GenerateSerializer] class CommitRecord (line 671) | [GenerateSerializer] type INamedTransactionalStateStorageFactory (line 682) | public partial interface INamedTransactionalStateStorageFactory method Create (line 684) | ITransactionalStateStorage Create(string storageName, ... type ITransactionAgentStatistics (line 688) | public partial interface ITransactionAgentStatistics method TrackTransactionFailed (line 698) | void TrackTransactionFailed(); method TrackTransactionStarted (line 699) | void TrackTransactionStarted(); method TrackTransactionSucceeded (line 700) | void TrackTransactionSucceeded(); method TrackTransactionThrottled (line 701) | void TrackTransactionThrottled(); type ITransactionalResource (line 704) | public partial interface ITransactionalResource method Abort (line 706) | System.Threading.Tasks.Task Abort(System.Guid transactionId); method Cancel (line 707) | System.Threading.Tasks.Task Cancel(System.Guid transactionId, System.D... method CommitReadOnly (line 708) | System.Threading.Tasks.Task CommitReadOnly(System... method Confirm (line 709) | System.Threading.Tasks.Task Confirm(System.Guid transactionId, System.... method Prepare (line 710) | System.Threading.Tasks.Task Prepare(System.Guid transactionId, AccessC... type ITransactionalResourceExtension (line 713) | public partial interface ITransactionalResourceExtension : Runtime.IGrai... method Abort (line 715) | [Concurrency.AlwaysInterleave] method Cancel (line 718) | [Concurrency.AlwaysInterleave] method CommitReadOnly (line 721) | [Concurrency.AlwaysInterleave] method Confirm (line 724) | [Concurrency.AlwaysInterleave] method Prepare (line 727) | [Concurrency.AlwaysInterleave] type ITransactionalStateConfiguration (line 733) | public partial interface ITransactionalStateConfiguration type ITransactionalStateFactory (line 740) | public partial interface ITransactionalStateFactory method Create (line 742) | ITransactionalState Create(TransactionalStateConfigura... type ITransactionalStateStorageFactory (line 746) | public partial interface ITransactionalStateStorageFactory method Create (line 748) | ITransactionalStateStorage Create(string stateName, Ru... type ITransactionalStateStorage (line 752) | public partial interface ITransactionalStateStorage method Load (line 755) | System.Threading.Tasks.Task> ... method Store (line 756) | System.Threading.Tasks.Task Store(string expectedETag, Transac... type ITransactionalState (line 759) | public partial interface ITransactionalState method PerformRead (line 762) | System.Threading.Tasks.Task PerformRead(System.Func<... method PerformUpdate (line 763) | System.Threading.Tasks.Task PerformUpdate(System.Fun... type ITransactionCommitOperation (line 766) | public partial interface ITransactionCommitOperation method Commit (line 769) | System.Threading.Tasks.Task Commit(System.Guid transactionId, TS... type ITransactionCommitterConfiguration (line 772) | public partial interface ITransactionCommitterConfiguration type ITransactionCommitterFactory (line 779) | public partial interface ITransactionCommitterFactory method Create (line 781) | ITransactionCommitter Create(ITransactionCommitter... type ITransactionCommitter (line 785) | public partial interface ITransactionCommitter method OnCommit (line 788) | System.Threading.Tasks.Task OnCommit(ITransactionCommitOperation method DeepCopy (line 793) | TData DeepCopy(TData original); type ITransactionManager (line 796) | public partial interface ITransactionManager method Ping (line 798) | System.Threading.Tasks.Task Ping(System.Guid transactionId, System.Dat... method PrepareAndCommit (line 799) | System.Threading.Tasks.Task PrepareAndCommit(Syst... method Prepared (line 800) | System.Threading.Tasks.Task Prepared(System.Guid transactionId, System... type ITransactionManagerExtension (line 803) | public partial interface ITransactionManagerExtension : Runtime.IGrainEx... method Ping (line 805) | [Concurrency.AlwaysInterleave] method PrepareAndCommit (line 809) | [Concurrency.AlwaysInterleave] method Prepared (line 812) | [Concurrency.AlwaysInterleave] class PendingTransactionState (line 818) | [GenerateSerializer] class TransactionalStateAttribute (line 839) | [System.AttributeUsage(System.AttributeTargets.Parameter)] method TransactionalStateAttribute (line 842) | public TransactionalStateAttribute(string stateName, string storageNam... class TransactionalStateConfiguration (line 849) | public partial class TransactionalStateConfiguration : ITransactionalSta... method TransactionalStateConfiguration (line 851) | public TransactionalStateConfiguration(ITransactionalStateConfiguratio... class TransactionalStateExtensions (line 860) | public static partial class TransactionalStateExtensions method PerformUpdate (line 862) | public static System.Threading.Tasks.Task PerformUpdate(this I... class TransactionalStateMetaData (line 866) | [GenerateSerializer] class TransactionalStorageLoadResponse (line 876) | [GenerateSerializer] method TransactionalStorageLoadResponse (line 881) | public TransactionalStorageLoadResponse() { } method TransactionalStorageLoadResponse (line 883) | public TransactionalStorageLoadResponse(string etag, TState committedS... class TransactionCommitterAttribute (line 901) | [System.AttributeUsage(System.AttributeTargets.Parameter)] method TransactionCommitterAttribute (line 904) | public TransactionCommitterAttribute(string serviceName, string storag... class Codec_TransactionRequestBase (line 914) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TransactionRequestBase (line 919) | public Codec_TransactionRequestBase(global::Orleans.Serialization.Seri... method Deserialize (line 921) | public override void Deserialize(ref global::Orleans.Ser... method Serialize (line 923) | public override void Serialize(ref global::Orleans.Seri... class Codec_TransactionResponse (line 926) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TransactionResponse (line 931) | public Codec_TransactionResponse(global::Orleans.Serialization.Seriali... method Deserialize (line 933) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 935) | public global::Orleans.TransactionResponse ReadValue(ref... method Serialize (line 937) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 940) | public void WriteField(ref global::Orleans.Serializatio... class Copier_TransactionRequestBase (line 944) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_TransactionRequestBase (line 949) | public Copier_TransactionRequestBase(global::Orleans.Serialization.Ser... method DeepCopy (line 951) | public global::Orleans.TransactionRequestBase DeepCopy(global::Orleans... method DeepCopy (line 953) | public void DeepCopy(global::Orleans.TransactionRequestBase input, glo... class Copier_TransactionResponse (line 956) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_TransactionResponse (line 961) | public Copier_TransactionResponse(global::Orleans.Serialization.Serial... method DeepCopy (line 963) | public global::Orleans.TransactionResponse DeepCopy(global::Orleans.Tr... class Codec_OrleansBrokenTransactionLockException (line 969) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansBrokenTransactionLockException (line 974) | public Codec_OrleansBrokenTransactionLockException(global::Orleans.Ser... method Deserialize (line 976) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 978) | public global::Orleans.Transactions.OrleansBrokenTransactionLockExcept... method Serialize (line 980) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 983) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansCascadingAbortException (line 987) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansCascadingAbortException (line 992) | public Codec_OrleansCascadingAbortException(global::Orleans.Serializat... method Deserialize (line 994) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 996) | public global::Orleans.Transactions.OrleansCascadingAbortException Rea... method Serialize (line 998) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1001) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansOrphanCallException (line 1005) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansOrphanCallException (line 1010) | public Codec_OrleansOrphanCallException(global::Orleans.Serialization.... method Deserialize (line 1012) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1014) | public global::Orleans.Transactions.OrleansOrphanCallException ReadVal... method Serialize (line 1016) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1019) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansReadOnlyViolatedException (line 1023) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansReadOnlyViolatedException (line 1028) | public Codec_OrleansReadOnlyViolatedException(global::Orleans.Serializ... method Deserialize (line 1030) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1032) | public global::Orleans.Transactions.OrleansReadOnlyViolatedException R... method Serialize (line 1034) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1037) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansStartTransactionFailedException (line 1041) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansStartTransactionFailedException (line 1046) | public Codec_OrleansStartTransactionFailedException(global::Orleans.Se... method Deserialize (line 1048) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1050) | public global::Orleans.Transactions.OrleansStartTransactionFailedExcep... method Serialize (line 1052) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1055) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionAbortedException (line 1059) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionAbortedException (line 1064) | public Codec_OrleansTransactionAbortedException(global::Orleans.Serial... method Deserialize (line 1066) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1068) | public global::Orleans.Transactions.OrleansTransactionAbortedException... method Serialize (line 1070) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1073) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionException (line 1077) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionException (line 1082) | public Codec_OrleansTransactionException(global::Orleans.Serialization... method Deserialize (line 1084) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1086) | public global::Orleans.Transactions.OrleansTransactionException ReadVa... method Serialize (line 1088) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1091) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionInDoubtException (line 1095) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionInDoubtException (line 1100) | public Codec_OrleansTransactionInDoubtException(global::Orleans.Serial... method Deserialize (line 1102) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1104) | public global::Orleans.Transactions.OrleansTransactionInDoubtException... method Serialize (line 1106) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1109) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionLockUpgradeException (line 1113) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionLockUpgradeException (line 1118) | public Codec_OrleansTransactionLockUpgradeException(global::Orleans.Se... method Deserialize (line 1120) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1122) | public global::Orleans.Transactions.OrleansTransactionLockUpgradeExcep... method Serialize (line 1124) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1127) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionOverloadException (line 1131) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionOverloadException (line 1136) | public Codec_OrleansTransactionOverloadException(global::Orleans.Seria... method Deserialize (line 1138) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1140) | public global::Orleans.Transactions.OrleansTransactionOverloadExceptio... method Serialize (line 1142) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1145) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionPrepareTimeoutException (line 1149) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionPrepareTimeoutException (line 1154) | public Codec_OrleansTransactionPrepareTimeoutException(global::Orleans... method Deserialize (line 1156) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1158) | public global::Orleans.Transactions.OrleansTransactionPrepareTimeoutEx... method Serialize (line 1160) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1163) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionsDisabledException (line 1167) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionsDisabledException (line 1172) | public Codec_OrleansTransactionsDisabledException(global::Orleans.Seri... method Deserialize (line 1174) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1176) | public global::Orleans.Transactions.OrleansTransactionsDisabledExcepti... method Serialize (line 1178) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1181) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionServiceNotAvailableException (line 1185) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionServiceNotAvailableException (line 1190) | public Codec_OrleansTransactionServiceNotAvailableException(global::Or... method Deserialize (line 1192) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1194) | public global::Orleans.Transactions.OrleansTransactionServiceNotAvaila... method Serialize (line 1196) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1199) | public void WriteField(ref global::Orleans.Serializatio... class Codec_OrleansTransactionTransientFailureException (line 1203) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OrleansTransactionTransientFailureException (line 1208) | public Codec_OrleansTransactionTransientFailureException(global::Orlea... method Deserialize (line 1210) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1212) | public global::Orleans.Transactions.OrleansTransactionTransientFailure... method Serialize (line 1214) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1217) | public void WriteField(ref global::Orleans.Serializatio... class Codec_ParticipantId (line 1221) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_ParticipantId (line 1226) | public Codec_ParticipantId(global::Orleans.Serialization.Serializers.I... method Deserialize (line 1228) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1230) | public global::Orleans.Transactions.ParticipantId ReadValue(ref global::Orleans.Serialization... method WriteField (line 1235) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TransactionalStateRecord (line 1239) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TransactionalStateRecord (line 1244) | public Codec_TransactionalStateRecord(global::Orleans.Serialization.Se... method Deserialize (line 1246) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1248) | public global::Orleans.Transactions.TransactionalStateRecord R... method Serialize (line 1250) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1253) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TransactionInfo (line 1257) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TransactionInfo (line 1262) | public Codec_TransactionInfo(global::Orleans.Serialization.Serializers... method Deserialize (line 1264) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1266) | public global::Orleans.Transactions.TransactionInfo ReadValue(ref global::Orleans.Serialization... method WriteField (line 1271) | public void WriteField(ref global::Orleans.Serializatio... class Copier_OrleansBrokenTransactionLockException (line 1275) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansBrokenTransactionLockException (line 1280) | public Copier_OrleansBrokenTransactionLockException(global::Orleans.Se... class Copier_OrleansCascadingAbortException (line 1283) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansCascadingAbortException (line 1288) | public Copier_OrleansCascadingAbortException(global::Orleans.Serializa... method DeepCopy (line 1290) | public override void DeepCopy(global::Orleans.Transactions.OrleansCasc... class Copier_OrleansOrphanCallException (line 1293) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansOrphanCallException (line 1298) | public Copier_OrleansOrphanCallException(global::Orleans.Serialization... class Copier_OrleansReadOnlyViolatedException (line 1301) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansReadOnlyViolatedException (line 1306) | public Copier_OrleansReadOnlyViolatedException(global::Orleans.Seriali... class Copier_OrleansStartTransactionFailedException (line 1309) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansStartTransactionFailedException (line 1314) | public Copier_OrleansStartTransactionFailedException(global::Orleans.S... class Copier_OrleansTransactionAbortedException (line 1317) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionAbortedException (line 1322) | public Copier_OrleansTransactionAbortedException(global::Orleans.Seria... method DeepCopy (line 1324) | public override void DeepCopy(global::Orleans.Transactions.OrleansTran... class Copier_OrleansTransactionException (line 1327) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionException (line 1332) | public Copier_OrleansTransactionException(global::Orleans.Serializatio... class Copier_OrleansTransactionInDoubtException (line 1335) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionInDoubtException (line 1340) | public Copier_OrleansTransactionInDoubtException(global::Orleans.Seria... method DeepCopy (line 1342) | public override void DeepCopy(global::Orleans.Transactions.OrleansTran... class Copier_OrleansTransactionLockUpgradeException (line 1345) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionLockUpgradeException (line 1350) | public Copier_OrleansTransactionLockUpgradeException(global::Orleans.S... class Copier_OrleansTransactionOverloadException (line 1353) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionOverloadException (line 1358) | public Copier_OrleansTransactionOverloadException(global::Orleans.Seri... class Copier_OrleansTransactionPrepareTimeoutException (line 1361) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionPrepareTimeoutException (line 1366) | public Copier_OrleansTransactionPrepareTimeoutException(global::Orlean... class Copier_OrleansTransactionsDisabledException (line 1369) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionsDisabledException (line 1374) | public Copier_OrleansTransactionsDisabledException(global::Orleans.Ser... class Copier_OrleansTransactionServiceNotAvailableException (line 1377) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionServiceNotAvailableException (line 1382) | public Copier_OrleansTransactionServiceNotAvailableException(global::O... class Copier_OrleansTransactionTransientFailureException (line 1385) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OrleansTransactionTransientFailureException (line 1390) | public Copier_OrleansTransactionTransientFailureException(global::Orle... class Copier_TransactionalStateRecord (line 1393) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_TransactionalStateRecord (line 1398) | public Copier_TransactionalStateRecord(global::Orleans.Serialization.S... method DeepCopy (line 1400) | public global::Orleans.Transactions.TransactionalStateRecord D... class Copier_TransactionInfo (line 1403) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_TransactionInfo (line 1408) | public Copier_TransactionInfo(global::Orleans.Serialization.Serializer... method DeepCopy (line 1410) | public global::Orleans.Transactions.TransactionInfo DeepCopy(global::O... class Codec_AccessCounter (line 1416) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Deserialize (line 1421) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1423) | public global::Orleans.Transactions.Abstractions.AccessCounter ReadVal... method Serialize (line 1425) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1428) | public void WriteField(ref global::Orleans.Serializatio... class Codec_CommitRecord (line 1432) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_CommitRecord (line 1437) | public Codec_CommitRecord(global::Orleans.Serialization.Serializers.IC... method Deserialize (line 1439) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1441) | public global::Orleans.Transactions.Abstractions.CommitRecord ReadValu... method Serialize (line 1443) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1446) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_1BB071FE (line 1450) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_1BB071FE (line 1455) | public Codec_Invokable_ITransactionalResourceExtension_GrainReference_... method Deserialize (line 1457) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1459) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_1B... method Serialize (line 1461) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1464) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_2ADCC608 (line 1468) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_2ADCC608 (line 1473) | public Codec_Invokable_ITransactionalResourceExtension_GrainReference_... method Deserialize (line 1475) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1477) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_2A... method Serialize (line 1479) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1482) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_5DDDE6F0 (line 1486) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_5DDDE6F0 (line 1491) | public Codec_Invokable_ITransactionalResourceExtension_GrainReference_... method Deserialize (line 1493) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1495) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_5D... method Serialize (line 1497) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1500) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_80028AB9 (line 1504) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_80028AB9 (line 1509) | public Codec_Invokable_ITransactionalResourceExtension_GrainReference_... method Deserialize (line 1511) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1513) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_80... method Serialize (line 1515) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1518) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_BD051D23 (line 1522) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionalResourceExtension_GrainReference_Ext_BD051D23 (line 1527) | public Codec_Invokable_ITransactionalResourceExtension_GrainReference_... method Deserialize (line 1529) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1531) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_BD... method Serialize (line 1533) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1536) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext_12BEFA17 (line 1540) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext_12BEFA17 (line 1545) | public Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext... method Deserialize (line 1547) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1549) | public Invokable_ITransactionManagerExtension_GrainReference_Ext_12BEF... method Serialize (line 1551) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1554) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext_AC4A9AEB (line 1558) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext_AC4A9AEB (line 1563) | public Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext... method Deserialize (line 1565) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1567) | public Invokable_ITransactionManagerExtension_GrainReference_Ext_AC4A9... method Serialize (line 1569) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1572) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext_B024EFA6 (line 1576) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext_B024EFA6 (line 1581) | public Codec_Invokable_ITransactionManagerExtension_GrainReference_Ext... method Deserialize (line 1583) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1585) | public Invokable_ITransactionManagerExtension_GrainReference_Ext_B024E... method Serialize (line 1587) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1590) | public void WriteField(ref global::Orleans.Serializatio... class Codec_PendingTransactionState (line 1594) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_PendingTransactionState (line 1599) | public Codec_PendingTransactionState(global::Orleans.Serialization.Ser... method Deserialize (line 1601) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1603) | public global::Orleans.Transactions.Abstractions.PendingTransactionSta... method Serialize (line 1605) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1608) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TransactionalStateMetaData (line 1612) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TransactionalStateMetaData (line 1617) | public Codec_TransactionalStateMetaData(global::Orleans.Serialization.... method Deserialize (line 1619) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1621) | public global::Orleans.Transactions.Abstractions.TransactionalStateMet... method Serialize (line 1623) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1626) | public void WriteField(ref global::Orleans.Serializatio... class Codec_TransactionalStorageLoadResponse (line 1630) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_TransactionalStorageLoadResponse (line 1635) | public Codec_TransactionalStorageLoadResponse(global::Orleans.Serializ... method Deserialize (line 1637) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 1639) | public global::Orleans.Transactions.Abstractions.TransactionalStorageL... method Serialize (line 1641) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 1644) | public void WriteField(ref global::Orleans.Serializatio... class Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_1BB071FE (line 1648) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_1BB071FE (line 1653) | public Copier_Invokable_ITransactionalResourceExtension_GrainReference... method DeepCopy (line 1655) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_1B... class Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_2ADCC608 (line 1658) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_2ADCC608 (line 1663) | public Copier_Invokable_ITransactionalResourceExtension_GrainReference... method DeepCopy (line 1665) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_2A... class Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_5DDDE6F0 (line 1668) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_5DDDE6F0 (line 1673) | public Copier_Invokable_ITransactionalResourceExtension_GrainReference... method DeepCopy (line 1675) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_5D... class Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_80028AB9 (line 1678) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_80028AB9 (line 1683) | public Copier_Invokable_ITransactionalResourceExtension_GrainReference... method DeepCopy (line 1685) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_80... class Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_BD051D23 (line 1688) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionalResourceExtension_GrainReference_Ext_BD051D23 (line 1693) | public Copier_Invokable_ITransactionalResourceExtension_GrainReference... method DeepCopy (line 1695) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_BD... class Copier_Invokable_ITransactionManagerExtension_GrainReference_Ext_12BEFA17 (line 1698) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionManagerExtension_GrainReference_Ext_12BEFA17 (line 1703) | public Copier_Invokable_ITransactionManagerExtension_GrainReference_Ex... method DeepCopy (line 1705) | public Invokable_ITransactionManagerExtension_GrainReference_Ext_12BEF... class Copier_Invokable_ITransactionManagerExtension_GrainReference_Ext_AC4A9AEB (line 1708) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionManagerExtension_GrainReference_Ext_AC4A9AEB (line 1713) | public Copier_Invokable_ITransactionManagerExtension_GrainReference_Ex... method DeepCopy (line 1715) | public Invokable_ITransactionManagerExtension_GrainReference_Ext_AC4A9... class Copier_Invokable_ITransactionManagerExtension_GrainReference_Ext_B024EFA6 (line 1718) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_Invokable_ITransactionManagerExtension_GrainReference_Ext_B024EFA6 (line 1723) | public Copier_Invokable_ITransactionManagerExtension_GrainReference_Ex... method DeepCopy (line 1725) | public Invokable_ITransactionManagerExtension_GrainReference_Ext_B024E... class Copier_PendingTransactionState (line 1728) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] class Copier_TransactionalStateMetaData (line 1735) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_TransactionalStateMetaData (line 1740) | public Copier_TransactionalStateMetaData(global::Orleans.Serialization... method DeepCopy (line 1742) | public global::Orleans.Transactions.Abstractions.TransactionalStateMet... class Copier_TransactionalStorageLoadResponse (line 1745) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] class Invokable_ITransactionalResourceExtension_GrainReference_Ext_1BB071FE (line 1752) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Invokable_ITransactionalResourceExtension_GrainReference_Ext_1BB071FE (line 1762) | public Invokable_ITransactionalResourceExtension_GrainReference_Ext_1B... method Dispose (line 1764) | public override void Dispose() { } method GetActivityName (line 1766) | public override string GetActivityName() { throw null; } method GetArgument (line 1768) | public override object GetArgument(int index) { throw null; } method GetArgumentCount (line 1770) | public override int GetArgumentCount() { throw null; } method GetInterfaceName (line 1772) | public override string GetInterfaceName() { throw null; } method GetInterfaceType (line 1774) | public override System.Type GetInterfaceType() { throw null; } method GetMethod (line 1776) | public override System.Reflection.MethodInfo GetMethod() { throw null; } method GetMethodName (line 1778) | public override string GetMethodName() { throw null; } method GetTarget (line 1780) | public override object GetTarget() { throw null; } method InvokeInner (line 1782) | protected override System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 2059) | public global::Orleans.Transactions.ParticipantId.IdComparer ReadValue... method Serialize (line 2061) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2064) | public void WriteField(ref global::Orleans.Serializatio... class Codec_Role (line 2068) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method ReadValue (line 2073) | public global::Orleans.Transactions.ParticipantId.Role ReadValue(ref global::Orleans.Serializatio... class Codec_OperationState (line 2082) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Codec_OperationState (line 2087) | public Codec_OperationState(global::Orleans.Serialization.Serializers.... method Deserialize (line 2089) | public void Deserialize(ref global::Orleans.Serializatio... method ReadValue (line 2091) | public global::Orleans.Transactions.TransactionCommitter.Ope... method Serialize (line 2093) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 2096) | public void WriteField(ref global::Orleans.Serializatio... class Copier_OperationState (line 2100) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_OperationState (line 2105) | public Copier_OperationState(global::Orleans.Serialization.Serializers... method DeepCopy (line 2107) | public global::Orleans.Transactions.TransactionCommitter.Ope... FILE: src/api/Redis/Orleans.Clustering.Redis/Orleans.Clustering.Redis.cs class RedisClusteringIClientBuilderExtensions (line 11) | public static partial class RedisClusteringIClientBuilderExtensions method UseRedisClustering (line 13) | public static Orleans.Hosting.IClientBuilder UseRedisClustering(this O... method UseRedisClustering (line 15) | public static Orleans.Hosting.IClientBuilder UseRedisClustering(this O... class RedisClusteringISiloBuilderExtensions (line 18) | public static partial class RedisClusteringISiloBuilderExtensions method UseRedisClustering (line 20) | public static Orleans.Hosting.ISiloBuilder UseRedisClustering(this Orl... method UseRedisClustering (line 22) | public static Orleans.Hosting.ISiloBuilder UseRedisClustering(this Orl... class RedisClusteringException (line 28) | public partial class RedisClusteringException : System.Exception method RedisClusteringException (line 30) | public RedisClusteringException() { } method RedisClusteringException (line 32) | [System.Obsolete] method RedisClusteringException (line 35) | public RedisClusteringException(string message, System.Exception inner... method RedisClusteringException (line 37) | public RedisClusteringException(string message) { } class RedisClusteringOptions (line 40) | public partial class RedisClusteringOptions method DefaultCreateMultiplexer (line 50) | public static System.Threading.Tasks.Task Lookup(Runti... method Participate (line 40) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method Register (line 42) | public System.Threading.Tasks.Task Register(Run... method Register (line 44) | public System.Threading.Tasks.Task Register(Run... method Unregister (line 46) | public System.Threading.Tasks.Task Unregister(Runtime.GrainAddress add... method UnregisterSilos (line 48) | public System.Threading.Tasks.Task UnregisterSilos(System.Collections.... class RedisGrainDirectoryExtensions (line 54) | public static partial class RedisGrainDirectoryExtensions method AddRedisGrainDirectory (line 56) | public static ISiloBuilder AddRedisGrainDirectory(this ISiloBuilder bu... method AddRedisGrainDirectory (line 58) | public static ISiloBuilder AddRedisGrainDirectory(this ISiloBuilder bu... method UseRedisGrainDirectoryAsDefault (line 60) | public static ISiloBuilder UseRedisGrainDirectoryAsDefault(this ISiloB... method UseRedisGrainDirectoryAsDefault (line 62) | public static ISiloBuilder UseRedisGrainDirectoryAsDefault(this ISiloB... FILE: src/api/Redis/Orleans.Persistence.Redis/Orleans.Persistence.Redis.cs class RedisGrainStorageServiceCollectionExtensions (line 11) | public static partial class RedisGrainStorageServiceCollectionExtensions method AddRedisGrainStorage (line 13) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddRedisGrainStorage (line 15) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddRedisGrainStorageAsDefault (line 17) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... method AddRedisGrainStorageAsDefault (line 19) | public static Microsoft.Extensions.DependencyInjection.IServiceCollect... class RedisSiloBuilderExtensions (line 22) | public static partial class RedisSiloBuilderExtensions method AddRedisGrainStorage (line 24) | public static ISiloBuilder AddRedisGrainStorage(this ISiloBuilder buil... method AddRedisGrainStorage (line 26) | public static ISiloBuilder AddRedisGrainStorage(this ISiloBuilder buil... method AddRedisGrainStorage (line 28) | public static ISiloBuilder AddRedisGrainStorage(this ISiloBuilder buil... method AddRedisGrainStorageAsDefault (line 30) | public static ISiloBuilder AddRedisGrainStorageAsDefault(this ISiloBui... method AddRedisGrainStorageAsDefault (line 32) | public static ISiloBuilder AddRedisGrainStorageAsDefault(this ISiloBui... method AddRedisGrainStorageAsDefault (line 34) | public static ISiloBuilder AddRedisGrainStorageAsDefault(this ISiloBui... class RedisGrainStorage (line 40) | public partial class RedisGrainStorage : Storage.IGrainStorage, ILifecyc... method RedisGrainStorage (line 42) | public RedisGrainStorage(string name, RedisStorageOptions options, Sto... method ClearStateAsync (line 44) | public System.Threading.Tasks.Task ClearStateAsync(string grainType... method Participate (line 46) | public void Participate(Runtime.ISiloLifecycle lifecycle) { } method ReadStateAsync (line 48) | public System.Threading.Tasks.Task ReadStateAsync(string grainType,... method WriteStateAsync (line 50) | public System.Threading.Tasks.Task WriteStateAsync(string grainType... class RedisGrainStorageFactory (line 53) | public static partial class RedisGrainStorageFactory method Create (line 55) | public static RedisGrainStorage Create(System.IServiceProvider service... class RedisStorageOptions (line 58) | public partial class RedisStorageOptions : Storage.IStorageProviderSeria... method DefaultCreateMultiplexer (line 74) | public static System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 110) | public global::Orleans.Persistence.Redis.RedisStorageException ReadVal... method Serialize (line 112) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 115) | public void WriteField(ref global::Orleans.Serializatio... class Copier_RedisStorageException (line 119) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_RedisStorageException (line 124) | public Copier_RedisStorageException(global::Orleans.Serialization.Seri... FILE: src/api/Redis/Orleans.Reminders.Redis/Orleans.Reminders.Redis.cs class RedisReminderTableOptions (line 11) | public partial class RedisReminderTableOptions method DefaultCreateMultiplexer (line 19) | public static System.Threading.Tasks.Task(ref global::Orleans.Serializatio... method ReadValue (line 67) | public global::Orleans.Reminders.Redis.RedisRemindersException ReadVal... method Serialize (line 69) | public void Serialize(ref global::Orleans.Serialization... method WriteField (line 72) | public void WriteField(ref global::Orleans.Serializatio... class Copier_RedisRemindersException (line 76) | [System.CodeDom.Compiler.GeneratedCode("OrleansCodeGen", "9.0.0.0")] method Copier_RedisRemindersException (line 81) | public Copier_RedisRemindersException(global::Orleans.Serialization.Se... FILE: src/api/Serializers/Orleans.Serialization.Protobuf/Orleans.Serialization.Protobuf.cs class ByteStringCodec (line 11) | [RegisterSerializer] method ReadValue (line 14) | Google.Protobuf.ByteString Codecs.IFieldCodec.WriteField keyCodec, Codecs.IFieldC... method ReadValue (line 30) | public Google.Protobuf.Collections.MapField ReadValue(ref Buffers.Writer keyCopier, Cloning.IDe... method DeepCopy (line 41) | public void DeepCopy(Google.Protobuf.Collections.MapField DeepCopy(Goo... class ProtobufCodec (line 46) | [Alias("protobuf")] method ProtobufCodec (line 50) | public ProtobufCodec(System.Collections.Generic.IEnumerable(ref Buffers.Reader... method WriteField (line 58) | void Codecs.IFieldCodec.WriteField(ref Buffers.Writer fieldCodec) { } method ReadValue (line 70) | public Google.Protobuf.Collections.RepeatedField ReadValue(... method WriteField (line 72) | public void WriteField(ref Buffers.Writer valueCopier) { } method DeepCopy (line 81) | public void DeepCopy(Google.Protobuf.Collections.RepeatedField inpu... method DeepCopy (line 83) | public Google.Protobuf.Collections.RepeatedField DeepCopy(Google.Pr... class SerializationHostingExtensions (line 86) | public static partial class SerializationHostingExtensions method AddProtobufSerializer (line 88) | public static ISerializerBuilder AddProtobufSerializer(this ISerialize... method AddProtobufSerializer (line 90) | public static ISerializerBuilder AddProtobufSerializer(this ISerialize... FILE: test/Benchmarks.AdoNet/Streaming/MessageDequeueingBenchmark.cs class SqlServerMessageDequeuingBenchmark (line 11) | public class SqlServerMessageDequeuingBenchmark() : MessageDequeuingBenc... method GlobalSetup (line 13) | public override void GlobalSetup() class MessageDequeuingBenchmark (line 24) | [WarmupCount(1), IterationCount(3), InvocationCount(1), MarkdownExporter] method GlobalSetup (line 60) | [GlobalSetup] method IterationSetup (line 85) | [IterationSetup] method GetStreamMessages (line 108) | [Benchmark(OperationsPerInvoke = OperationsPerInvoke)] FILE: test/Benchmarks.AdoNet/Streaming/MessageQueueingBenchmark.cs class SqlServerMessageQueueingBenchmark (line 10) | public class SqlServerMessageQueueingBenchmark() : MessageQueueingBenchm... method GlobalSetup (line 12) | public override void GlobalSetup() class MessageQueueingBenchmark (line 23) | [WarmupCount(1), IterationCount(3), InvocationCount(1), MarkdownExporter] method GlobalSetup (line 52) | [GlobalSetup] method IterationSetup (line 72) | [IterationSetup] method QueueStreamMessage (line 75) | [Benchmark(OperationsPerInvoke = OperationsPerInvoke)] FILE: test/Benchmarks/Dashboard/DashboardGrainBenchmark.cs class DashboardGrainBenchmark (line 10) | [ShortRunJob] method Setup (line 37) | [GlobalSetup] method Test_Add_TraceHistory (line 49) | [Benchmark] method Test_QueryAll_TraceHistory (line 58) | [Benchmark] method Test_QuerySilo_TraceHistory (line 64) | [Benchmark] method Test_QueryGrain_TraceHistory (line 70) | [Benchmark] method Test_GroupByGrainAndSilo_TraceHistory (line 76) | [Benchmark] method Test_AggregateByGrainMethod_TraceHistory (line 82) | [Benchmark] method Setup (line 88) | private void Setup(DateTime startTime, ITraceHistory history) FILE: test/Benchmarks/Dashboard/Helper.cs class Helper (line 7) | internal class Helper method CreateTraces (line 9) | public static IEnumerable CreateTraces(DateTime time, int ... FILE: test/Benchmarks/Dashboard/ManualTests.cs class ManualTests (line 9) | internal class ManualTests method ManualTests (line 15) | public ManualTests() method Setup (line 24) | private static void Setup(DateTime startTime, ITraceHistory history) method Run (line 37) | public void Run() method Test (line 73) | private void Test(string name, Action action) FILE: test/Benchmarks/Dashboard/TestTraces.cs type TestTraces (line 6) | internal sealed record TestTraces(DateTime Time, string Silo, SiloGrainT... FILE: test/Benchmarks/GrainStorage/GrainStorageBenchmark.cs class GrainStorageBenchmark (line 11) | public class GrainStorageBenchmark : IDisposable method GrainStorageBenchmark (line 18) | public GrainStorageBenchmark(int concurrent, int payloadSize, TimeSpan... method MemorySetup (line 25) | public void MemorySetup() method AzureTableSetup (line 33) | public void AzureTableSetup() method AzureBlobSetup (line 41) | public void AzureBlobSetup() method AdoNetSetup (line 49) | public void AdoNetSetup() class SiloMemoryStorageConfigurator (line 57) | public class SiloMemoryStorageConfigurator : ISiloConfigurator method Configure (line 59) | public void Configure(ISiloBuilder hostBuilder) class SiloAzureTableStorageConfigurator (line 65) | public class SiloAzureTableStorageConfigurator : ISiloConfigurator method Configure (line 67) | public void Configure(ISiloBuilder hostBuilder) class SiloAzureBlobStorageConfigurator (line 76) | public class SiloAzureBlobStorageConfigurator : ISiloConfigurator method Configure (line 78) | public void Configure(ISiloBuilder hostBuilder) class SiloAdoNetStorageConfigurator (line 87) | public class SiloAdoNetStorageConfigurator : ISiloConfigurator method Configure (line 89) | public void Configure(ISiloBuilder hostBuilder) method RunAsync (line 98) | public async Task RunAsync() method RunAsync (line 122) | public async Task> RunAsync(int instance, Func runn... method Teardown (line 139) | public void Teardown() method Dispose (line 144) | public void Dispose() FILE: test/Benchmarks/MapReduce/MapReduceBenchmark.cs class MapReduceBenchmark (line 11) | public class MapReduceBenchmark : IDisposable method BenchmarkSetup (line 19) | [GlobalSetup] method Bench (line 27) | [Benchmark] method Teardown (line 42) | [GlobalCleanup] method BenchCore (line 48) | private async Task BenchCore() method Dispose (line 103) | public void Dispose() FILE: test/Benchmarks/MapReduce/MapReduceBenchmarkConfig.cs class MapReduceBenchmarkConfig (line 6) | public class MapReduceBenchmarkConfig : ManualConfig method MapReduceBenchmarkConfig (line 8) | public MapReduceBenchmarkConfig() FILE: test/Benchmarks/Ping/ConcurrentLoadGenerator.cs class ConcurrentLoadGenerator (line 6) | public sealed class ConcurrentLoadGenerator type WorkBlock (line 9) | private struct WorkBlock method ConcurrentLoadGenerator (line 30) | public ConcurrentLoadGenerator( method Warmup (line 48) | public async Task Warmup() method ResetBetweenRuns (line 67) | private void ResetBetweenRuns() method Run (line 78) | public async Task Run() method RunWorker (line 139) | private async Task RunWorker(TState state, int requestsPerBlock, int n... FILE: test/Benchmarks/Ping/FanoutBenchmark.cs class FanoutBenchmark (line 16) | [MemoryDiagnoser] method FanoutBenchmark (line 25) | public FanoutBenchmark() : this(2, true) { } method FanoutBenchmark (line 27) | public FanoutBenchmark(int numSilos, bool startClient, bool grainsOnSe... method CancelPressed (line 100) | private void CancelPressed(object sender, ConsoleCancelEventArgs e) method Ping (line 105) | [Benchmark] method PingForever (line 108) | public async Task PingForever() method Shutdown (line 116) | public async Task Shutdown() method Dispose (line 146) | [GlobalCleanup] FILE: test/Benchmarks/Ping/PingBenchmark.cs class PingBenchmark (line 14) | [MemoryDiagnoser] method PingBenchmark (line 23) | public PingBenchmark() : this(1, true) { } method PingBenchmark (line 25) | public PingBenchmark(int numSilos, bool startClient, bool grainsOnSeco... method CancelPressed (line 80) | private void CancelPressed(object sender, ConsoleCancelEventArgs e) method Ping (line 85) | [Benchmark] method PingForever (line 88) | public async Task PingForever() method PingConcurrentForever (line 96) | public Task PingConcurrentForever() => this.Run( method PingConcurrent (line 101) | public Task PingConcurrent() => this.Run( method PingConcurrentHostedClient (line 106) | public Task PingConcurrentHostedClient(int blocksPerWorker = 30) => th... method Run (line 111) | private async Task Run(int runs, IGrainFactory grainFactory, int block... method PingPongForever (line 123) | public async Task PingPongForever() method Shutdown (line 132) | public async Task Shutdown() method Dispose (line 162) | [GlobalCleanup] FILE: test/Benchmarks/Ping/StatelessWorkerBenchmark.cs class StatelessWorkerBenchmark (line 11) | public class StatelessWorkerBenchmark : IDisposable method StatelessWorkerBenchmark (line 16) | public StatelessWorkerBenchmark() method Dispose (line 27) | public void Dispose() method RunAsync (line 33) | public async Task RunAsync() method Run (line 39) | private async static Task Run(T grain) class BenchmarkConstants (line 111) | public static class BenchmarkConstants type IProcessorGrain (line 117) | public interface IProcessorGrain : IGrainWithIntegerKey method Process (line 119) | Task Process(); type IAdaptiveGrain (line 122) | public interface IAdaptiveGrain : IProcessorGrain { } type IMonotonicGrain (line 123) | public interface IMonotonicGrain : IProcessorGrain { } class SWMonotonicGrain (line 125) | [StatelessWorker(BenchmarkConstants.MaxWorkersLimit, removeIdleWorkers... class SWAdaptiveGrain (line 128) | [StatelessWorker(BenchmarkConstants.MaxWorkersLimit, removeIdleWorkers... class BaseGrain (line 131) | public abstract class BaseGrain : Grain, IProcessorGrain where T : ... method OnActivateAsync (line 143) | public override Task OnActivateAsync(CancellationToken cancellationT... method OnDeactivateAsync (line 156) | public override Task OnDeactivateAsync(DeactivationReason reason, Ca... method Process (line 170) | public Task Process() => Task.Delay(BenchmarkConstants.ProcessDelayMs); method UpdateStats (line 172) | public static void UpdateStats() method Stop (line 193) | public static void Stop() method GetActiveWorkers (line 199) | public static int GetActiveWorkers() => Volatile.Read(ref _activeWor... method GetMaxActiveWorkers (line 200) | public static int GetMaxActiveWorkers() => Volatile.Read(ref _maxAct... method GetAverageActiveWorkers (line 202) | public static double GetAverageActiveWorkers() FILE: test/Benchmarks/Program.cs class Program (line 10) | internal class Program method Main (line 291) | public static void Main(string[] args) method RunBenchmark (line 315) | private static void RunBenchmark(string name, Func init, Action<... FILE: test/Benchmarks/Serialization/Comparison/ArrayDeserializeBenchmark.cs class ArrayDeserializeBenchmark (line 18) | [GroupBenchmarksBy(BenchmarkLogicalGroupRule.ByCategory)] method ArrayDeserializeBenchmark (line 30) | static ArrayDeserializeBenchmark() method MessagePackDeserialize (line 49) | [Benchmark(Baseline = true)] method ProtobufNetDeserialize (line 52) | [Benchmark] method SystemTextJsonDeserialize (line 55) | [Benchmark] method OrleansDeserialize (line 58) | [Benchmark] FILE: test/Benchmarks/Serialization/Comparison/ArraySerializeBenchmark.cs class ArraySerializeBenchmark (line 21) | [GroupBenchmarksBy(BenchmarkLogicalGroupRule.ByCategory)] method ArraySerializeBenchmark (line 34) | static ArraySerializeBenchmark() method MessagePackSerialize (line 61) | [Benchmark(Baseline = true), BenchmarkCategory(" byte[]")] method ProtobufNetSerialize (line 67) | [Benchmark, BenchmarkCategory(" byte[]")] method SystemTextJsonSerialize (line 76) | [Benchmark, BenchmarkCategory(" byte[]")] method OrleansSerialize (line 85) | [Benchmark, BenchmarkCategory(" byte[]")] method MessagePackBufferWriter (line 93) | [Fact] method ProtobufNetBufferWriter (line 101) | [Fact] method SystemTextJsonBufferWriter (line 109) | [Fact] method OrleansBufferWriter (line 119) | [Fact] method OrleansBufferWriter2 (line 135) | [Fact] method OrleansPipeWriter (line 154) | [Fact] FILE: test/Benchmarks/Serialization/Comparison/ClassDeserializeBenchmark.cs class ClassDeserializeBenchmark (line 21) | [Trait("Category", "Benchmark")] method ClassDeserializeBenchmark (line 52) | static ClassDeserializeBenchmark() method SumResult (line 86) | private static int SumResult(IntClass result) => result.MyProperty1 + method SumResult (line 96) | private static int SumResult(ProtoIntClass result) => result.MyPropert... method Orleans (line 106) | [Benchmark(Baseline = true)] method Utf8Json (line 114) | [Benchmark] method SystemTextJson (line 117) | [Benchmark] method MessagePackCSharp (line 120) | [Benchmark] method ProtobufNet (line 123) | [Benchmark] method GoogleProtobuf (line 130) | [Benchmark] method Hyperion (line 136) | [Benchmark] method NewtonsoftJson (line 144) | [Benchmark] method SpanJsonUtf8 (line 147) | [Benchmark(Description = "SpanJson")] FILE: test/Benchmarks/Serialization/Comparison/ClassSerializeBenchmark.cs class ClassSerializeBenchmark (line 23) | [Trait("Category", "Benchmark")] method ClassSerializeBenchmark (line 51) | static ClassSerializeBenchmark() method Orleans (line 67) | [Benchmark(Baseline = true)] method Utf8Json (line 74) | [Benchmark] method SystemTextJson (line 82) | [Benchmark] method MessagePackCSharp (line 91) | [Benchmark] method ProtobufNet (line 98) | [Benchmark] method GoogleProtobuf (line 106) | [Benchmark] method Hyperion (line 114) | [Benchmark] method ZeroFormatter (line 123) | public int ZeroFormatter() method NewtonsoftJson (line 129) | [Benchmark] method SpanJsonUtf8 (line 136) | [Benchmark(Description = "SpanJson")] FILE: test/Benchmarks/Serialization/Comparison/CopierBenchmark.cs class CopierBenchmark (line 14) | [Config(typeof(BenchmarkConfig))] method CopierBenchmark (line 27) | static CopierBenchmark() method VectorArray (line 43) | [Benchmark] method ImmutableVectorArray (line 46) | [Benchmark] method Struct (line 49) | [Benchmark] method Class (line 52) | [Benchmark] FILE: test/Benchmarks/Serialization/Comparison/StructDeserializeBenchmark.cs class StructDeserializeBenchmark (line 20) | [Trait("Category", "Benchmark")] method StructDeserializeBenchmark (line 47) | static StructDeserializeBenchmark() method SumResult (line 80) | private static int SumResult(in IntStruct result) => result.MyProperty1 + method Orleans (line 90) | [Benchmark(Baseline = true)] method Utf8Json (line 99) | [Benchmark] method SystemTextJson (line 102) | [Benchmark] method MessagePackCSharp (line 105) | [Benchmark] method ProtobufNet (line 108) | [Benchmark] method Hyperion (line 115) | [Benchmark] method ZeroFormatter (line 123) | public int ZeroFormatter() => SumResult(ZeroFormatterSerializer.Deseri... method NewtonsoftJson (line 125) | [Benchmark] method SpanJsonUtf8 (line 128) | [Benchmark(Description = "SpanJson")] FILE: test/Benchmarks/Serialization/Comparison/StructSerializeBenchmark.cs class StructSerializeBenchmark (line 21) | [Trait("Category", "Benchmark")] method StructSerializeBenchmark (line 44) | static StructSerializeBenchmark() method Orleans (line 59) | [Benchmark(Baseline = true)] method Utf8Json (line 66) | [Benchmark] method SystemTextJson (line 74) | [Benchmark] method MessagePackCSharp (line 84) | [Benchmark] method ProtobufNet (line 91) | [Benchmark] method Hyperion (line 99) | [Benchmark] method ZeroFormatter (line 108) | public int ZeroFormatter() method NewtonsoftJson (line 114) | [Benchmark] method SpanJsonUtf8 (line 121) | [Benchmark(Description = "SpanJson")] FILE: test/Benchmarks/Serialization/ComplexTypeBenchmarks.cs class ComplexTypeBenchmarks (line 21) | [Trait("Category", "Benchmark")] method ComplexTypeBenchmarks (line 42) | public ComplexTypeBenchmarks() method SerializeComplex (line 87) | [Fact] method CopyComplex (line 100) | [Fact] method CopyComplexStruct (line 106) | [Fact] method OrleansStructRoundTrip (line 112) | [Benchmark] method OrleansClassRoundTrip (line 142) | public object OrleansClassRoundTrip() method OrleansSerialize (line 175) | public object OrleansSerialize() method OrleansDeserialize (line 185) | public object OrleansDeserialize() method OrleansReadEachByte (line 193) | public int OrleansReadEachByte() FILE: test/Benchmarks/Serialization/FieldHeaderBenchmarks.cs class FieldHeaderBenchmarks (line 14) | [Config(typeof(BenchmarkConfig))] method FieldHeaderBenchmarks (line 20) | static FieldHeaderBenchmarks() method WritePlainExpectedEmbeddedId (line 28) | [Benchmark(Baseline = true)] method WritePlainExpectedExtendedId (line 37) | [Benchmark] method WriteFastEmbedded (line 46) | [Benchmark] method WriteFastExtended (line 55) | [Benchmark] method CreateWriter (line 64) | [Benchmark] method WriteByte (line 67) | [Benchmark] FILE: test/Benchmarks/Serialization/MegaGraphBenchmark.cs class MegaGraphBenchmark (line 18) | [Trait("Category", "Benchmark")] method MegaGraphBenchmark (line 27) | static MegaGraphBenchmark() method Deserialize (line 49) | [Benchmark] method Serialize (line 57) | [Benchmark] FILE: test/Benchmarks/Serialization/Models/ComplexClass.cs class ComplexClass (line 3) | [Serializable] FILE: test/Benchmarks/Serialization/Models/IntClass.cs class IntClass (line 6) | [Serializable] method Create (line 12) | public static IntClass Create() method Initialize (line 19) | public void Initialize() => MyProperty1 = MyProperty2 = FILE: test/Benchmarks/Serialization/Models/IntStruct.cs type IntStruct (line 7) | [Serializable] method Create (line 14) | public static IntStruct Create() method Initialize (line 21) | public void Initialize() => MyProperty1 = MyProperty2 = method IntStruct (line 24) | public IntStruct(int p1, int p2, int p3, int p4, int p5, int p6, int p... FILE: test/Benchmarks/Serialization/Models/ProtoIntClass.cs class ProtoIntClass (line 3) | public partial class ProtoIntClass method Create (line 5) | public static ProtoIntClass Create() method Initialize (line 12) | public void Initialize() => MyProperty1 = MyProperty2 = FILE: test/Benchmarks/Serialization/Models/SimpleClass.cs class SimpleClass (line 3) | [Serializable] FILE: test/Benchmarks/Serialization/Models/SimpleStruct.cs type SimpleStruct (line 3) | [Serializable] FILE: test/Benchmarks/Serialization/Models/Vector3.cs type MyVector3 (line 6) | [MessagePackObject] type ImmutableVector3 (line 27) | [Immutable] FILE: test/Benchmarks/Serialization/Models/VirtualIntsClass.cs class VirtualIntsClass (line 5) | [ZeroFormattable] method Create (line 8) | public static VirtualIntsClass Create() method Initialize (line 15) | public void Initialize() => MyProperty1 = MyProperty2 = FILE: test/Benchmarks/Serialization/Utilities/BenchmarkConfig.cs class BenchmarkConfig (line 9) | internal class BenchmarkConfig : ManualConfig method BenchmarkConfig (line 11) | public BenchmarkConfig() FILE: test/Benchmarks/Serialization/Utilities/ClassSingleSegmentBuffer.cs class ClassSingleSegmentBuffer (line 7) | public class ClassSingleSegmentBuffer : IBufferWriter method ClassSingleSegmentBuffer (line 12) | public ClassSingleSegmentBuffer(byte[] buffer) method Advance (line 18) | public void Advance(int bytes) => _written += bytes; method GetMemory (line 20) | [Pure] method GetSpan (line 23) | [Pure] method ToArray (line 26) | public byte[] ToArray() => _buffer.AsSpan(0, _written).ToArray(); method Reset (line 28) | public void Reset() => _written = 0; method GetReadOnlySequence (line 33) | [Pure] method ToString (line 36) | public override string ToString() => Encoding.UTF8.GetString(_buffer.A... FILE: test/Benchmarks/Serialization/Utilities/MethodResultColumn.cs class MethodResultColumn (line 8) | public class MethodResultColumn : IColumn method MethodResultColumn (line 12) | public MethodResultColumn(string columnName, Func form... method GetValue (line 19) | public string GetValue(Summary summary, BenchmarkCase benchmarkCase) =... method GetValue (line 21) | public string GetValue(Summary summary, BenchmarkCase benchmarkCase, S... method CallMethod (line 23) | private static object CallMethod(BenchmarkCase benchmarkCase) method IsDefault (line 54) | public bool IsDefault(Summary summary, BenchmarkCase benchmarkCase) =>... method IsAvailable (line 56) | public bool IsAvailable(Summary summary) => summary.Reports.Any(r => C... FILE: test/Benchmarks/Serialization/Utilities/PayloadSizeColumnAttribute.cs class PayloadSizeColumnAttribute (line 5) | [AttributeUsage(AttributeTargets.Class)] method PayloadSizeColumnAttribute (line 8) | public PayloadSizeColumnAttribute(string columnName = "Payload") FILE: test/Benchmarks/Serialization/Utilities/SingleSegmentBuffer.cs type SingleSegmentBuffer (line 7) | public struct SingleSegmentBuffer : IBufferWriter method SingleSegmentBuffer (line 12) | public SingleSegmentBuffer(byte[] buffer) method Advance (line 18) | public void Advance(int bytes) => _written += bytes; method GetMemory (line 20) | [Pure] method GetSpan (line 23) | [Pure] method ToArray (line 26) | public readonly byte[] ToArray() => _buffer.AsSpan(0, _written).ToArra... method Reset (line 28) | public void Reset() => _written = 0; method GetReadOnlySpan (line 33) | [Pure] method ToString (line 36) | public override readonly string ToString() => Encoding.UTF8.GetString(... FILE: test/Benchmarks/TopK/BloomFilterBenchmark.cs class BloomFilterBenchmark (line 14) | [MemoryDiagnoser] method GlobalSetup (line 45) | [GlobalSetup] method BloomFilter_Add (line 75) | [Benchmark] method BloomFilter_Contains (line 85) | [Benchmark] method BloomFilter_FPR (line 95) | [Benchmark] method OriginalBloomFilter_Add (line 117) | [Benchmark(Baseline = true)] method OriginalBloomFilter_Contains (line 127) | [Benchmark(Baseline = true)] method BlockedBloomFilter_Add (line 160) | [Benchmark] method BlockedBloomFilter_Contains (line 170) | [Benchmark] method BlockedBloomFilter_FPR (line 181) | [Benchmark] class FalsePositiveRateColumnAttribute (line 203) | [AttributeUsage(AttributeTargets.Class)] method FalsePositiveRateColumnAttribute (line 206) | public FalsePositiveRateColumnAttribute(string columnName = "FP %") class OriginalBloomFilter (line 220) | public class OriginalBloomFilter method Add (line 226) | public void Add(GrainId id) method Contains (line 235) | public bool Contains(GrainId id) class BloomFilter (line 249) | internal sealed class BloomFilter method BloomFilter (line 257) | public BloomFilter(int capacity, double falsePositiveRate) method Add (line 273) | public void Add(GrainId id) method Contains (line 284) | public bool Contains(GrainId id) method IsClear (line 301) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Set (line 304) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method Mix64 (line 315) | public static ulong Mix64(ulong z) method Reset (line 322) | public void Reset() => Array.Clear(_filter); method CeilingPowerOfTwo (line 324) | private static uint CeilingPowerOfTwo(uint x) => 1u << -BitOperations.... FILE: test/Benchmarks/TopK/TopKBenchmark.cs class TopKBenchmark (line 10) | [MemoryDiagnoser] method GlobalSetup (line 34) | [GlobalSetup] type EdgeClass (line 80) | internal sealed record class EdgeClass(Edge Edge); method IterationSetup (line 82) | [IterationSetup] method FssAdd (line 117) | [Benchmark] method SinkAdd (line 127) | [Benchmark] class EdgeFrequentItemCollection (line 137) | private sealed class EdgeFrequentItemCollection(int capacity) : Freque... method GetKey (line 139) | protected override ulong GetKey(in Edge element) => (ulong)element.S... method Clear (line 140) | public void Clear() => ClearCore(); class EdgeClassFrequentItemCollection (line 143) | private sealed class EdgeClassFrequentItemCollection(int capacity) : F... method GetKey (line 145) | static ulong GetKey(in Edge element) => (ulong)element.Source.Id.Get... method GetKey (line 146) | protected override ulong GetKey(in EdgeClass element) => GetKey(elem... method Clear (line 147) | public void Clear() => ClearCore(); class UlongFrequentItemCollection (line 150) | private sealed class UlongFrequentItemCollection(int capacity) : Frequ... method GetKey (line 152) | protected override ulong GetKey(in ulong element) => element; method Remove (line 153) | public void Remove(in ulong element) => Remove(GetKey(element)); method Clear (line 154) | public void Clear() => ClearCore(); class EdgeCounter (line 157) | internal class EdgeCounter(ulong value, Edge edge) class FrequencySink (line 167) | internal sealed class FrequencySink(int capacity) method GetKey (line 169) | public ulong GetKey(in Edge element) => (ulong)element.Source.Id.Get... method Add (line 176) | public void Add(Edge edge) method Remove (line 197) | public void Remove(uint sourceHash, uint targetHash) method CombineHashes (line 213) | [MethodImpl(MethodImplOptions.AggressiveInlining)] class UpdateableMinHeap (line 218) | private class UpdateableMinHeap(int capacity) method Enqueue (line 228) | public void Enqueue(ulong hash, ulong value) method Dequeue (line 236) | public ulong Dequeue() method Remove (line 251) | public bool Remove(ulong hash) method Update (line 273) | public void Update(ulong hash, ulong newValue) method MoveNodeUp (line 279) | private void MoveNodeUp((ulong Hash, ulong Value) node, int nodeIn... method MoveNodeDown (line 309) | private void MoveNodeDown((ulong Hash, ulong Value) node, int node... class ZipfRejectionSampler (line 354) | internal sealed class ZipfRejectionSampler method ZipfRejectionSampler (line 360) | public ZipfRejectionSampler(Random random, long cardinality, double skew) method Sample (line 367) | public long Sample() method bInvCdf (line 382) | private double bInvCdf(double p) FILE: test/Benchmarks/Transactions/TransactionBenchmark.cs class TransactionBenchmark (line 9) | public class TransactionBenchmark : IDisposable method TransactionBenchmark (line 16) | public TransactionBenchmark(int runs, int transactionsPerRun, int conc... method MemorySetup (line 23) | public void MemorySetup() method MemoryThrottledSetup (line 32) | public void MemoryThrottledSetup() method AzureSetup (line 42) | public void AzureSetup() method AzureThrottledSetup (line 51) | public void AzureThrottledSetup() class SiloMemoryStorageConfigurator (line 61) | public class SiloMemoryStorageConfigurator : ISiloConfigurator method Configure (line 63) | public void Configure(ISiloBuilder hostBuilder) class SiloAzureStorageConfigurator (line 69) | public class SiloAzureStorageConfigurator : ISiloConfigurator method Configure (line 71) | public void Configure(ISiloBuilder hostBuilder) class SiloTransactionThrottlingConfigurator (line 80) | public class SiloTransactionThrottlingConfigurator : ISiloConfigurator method Configure (line 82) | public void Configure(ISiloBuilder hostBuilder) method RunAsync (line 92) | public async Task RunAsync() method FullRunAsync (line 103) | private async Task FullRunAsync() method RunAsync (line 122) | public async Task RunAsync(int run, int transactiosPerRun, int... method Teardown (line 135) | public void Teardown() method Dispose (line 140) | public void Dispose() class SiloTransactionConfigurator (line 145) | public sealed class SiloTransactionConfigurator : ISiloConfigurator method Configure (line 147) | public void Configure(ISiloBuilder hostBuilder) FILE: test/DistributedTests/DistributedTests.Client/Commands/ChaosAgentCommand.cs class ChaosAgentCommand (line 8) | public class ChaosAgentCommand : Command class Parameters (line 12) | private class Parameters method ChaosAgentCommand (line 26) | public ChaosAgentCommand(ILogger logger) method RunAsync (line 44) | private async Task RunAsync(Parameters parameters) FILE: test/DistributedTests/DistributedTests.Client/Commands/CounterCaptureCommand.cs class CounterCaptureCommand (line 13) | public class CounterCaptureCommand : Command class Parameters (line 17) | private class Parameters method CounterCaptureCommand (line 27) | public CounterCaptureCommand(ILogger logger) method RunAsync (line 41) | private async Task RunAsync(Parameters parameters) FILE: test/DistributedTests/DistributedTests.Client/Commands/ScenarioCommand.cs class ScenarioCommand (line 8) | public class ScenarioCommand : Command method ScenarioCommand (line 12) | public ScenarioCommand(ILoadGeneratorScenario scenario, ILoggerFact... class Scenario (line 34) | public static class Scenario method CreateCommand (line 36) | public static Command CreateCommand(ILoadGeneratorScenario scena... FILE: test/DistributedTests/DistributedTests.Client/LoadGeneratorScenario/ConcurrentLoadGenerator.cs type LoadGeneratorReport (line 8) | public struct LoadGeneratorReport method ToString (line 22) | public override readonly string ToString() class ConcurrentLoadGenerator (line 30) | public sealed class ConcurrentLoadGenerator type WorkBlock (line 33) | private struct WorkBlock method ConcurrentLoadGenerator (line 55) | public ConcurrentLoadGenerator( method Warmup (line 75) | public async Task Warmup() method ResetBetweenRuns (line 96) | private void ResetBetweenRuns() method Run (line 107) | public async Task Run(CancellationToken ct) method RunWorker (line 185) | private async Task RunWorker(TState state, int requestsPerBlock, int n... FILE: test/DistributedTests/DistributedTests.Client/LoadGeneratorScenario/LoadGeneratorScenarioRunner.cs class ClientParameters (line 11) | public class ClientParameters class LoadGeneratorParameters (line 20) | public class LoadGeneratorParameters class LoadGeneratorScenarioRunner (line 28) | public class LoadGeneratorScenarioRunner method LoadGeneratorScenarioRunner (line 33) | public LoadGeneratorScenarioRunner(ILoadGeneratorScenario scenario,... method Run (line 39) | public async Task Run(ClientParameters clientParams, LoadGeneratorPara... FILE: test/DistributedTests/DistributedTests.Client/LoadGeneratorScenario/LoadGeneratorScenarios.cs type ILoadGeneratorScenario (line 5) | public interface ILoadGeneratorScenario method GetStateForWorker (line 9) | TState GetStateForWorker(IClusterClient client, int workerId); method IssueRequest (line 11) | ValueTask IssueRequest(TState state); class PingScenario (line 14) | public class PingScenario : ILoadGeneratorScenario method GetStateForWorker (line 18) | public IPingGrain GetStateForWorker(IClusterClient client, int workerI... method IssueRequest (line 20) | public ValueTask IssueRequest(IPingGrain state) => state.Ping(); class FanOutScenario (line 23) | public class FanOutScenario : ILoadGeneratorScenario method GetStateForWorker (line 27) | public ITreeGrain GetStateForWorker(IClusterClient client, int workerI... method IssueRequest (line 29) | public ValueTask IssueRequest(ITreeGrain root) => root.Ping(); FILE: test/DistributedTests/DistributedTests.Common/GrainInterfaces/IPingGrain.cs type IPingGrain (line 3) | public interface IPingGrain : IGrainWithGuidKey method Ping (line 5) | ValueTask Ping(); FILE: test/DistributedTests/DistributedTests.Common/GrainInterfaces/IStreamingGrains.cs class StreamingConstants (line 3) | public static class StreamingConstants class ReportingOptions (line 11) | public class ReportingOptions type IGrainWithCounter (line 18) | public interface IGrainWithCounter : IGrainWithGuidKey method GetCounterValue (line 20) | Task GetCounterValue(string counterName); type IImplicitSubscriberGrain (line 23) | public interface IImplicitSubscriberGrain : IGrainWithCounter type ICounterGrain (line 27) | public interface ICounterGrain : IGrainWithStringKey method Track (line 29) | Task Track(IGrainWithCounter grain); method GetRunDuration (line 31) | Task GetRunDuration(); method WaitTimeForReport (line 33) | Task WaitTimeForReport(); method GetTotalCounterValue (line 35) | Task GetTotalCounterValue(string counterName); FILE: test/DistributedTests/DistributedTests.Common/GrainInterfaces/ITreeGrain.cs type ITreeGrain (line 3) | public interface ITreeGrain : IGrainWithIntegerCompoundKey method Ping (line 5) | public ValueTask Ping(); FILE: test/DistributedTests/DistributedTests.Common/MessageChannel/Channels.cs type ISendChannel (line 8) | public interface ISendChannel method SendMessages (line 10) | Task> SendMessages(List messages, Canc... type IReceiveChannel (line 13) | public interface IReceiveChannel method WaitForMessage (line 15) | Task WaitForMessage(CancellationToken cancellationToken); method SendAck (line 17) | Task SendAck(ServerMessage message); class SendChannel (line 20) | public class SendChannel : ISendChannel method SendChannel (line 25) | internal SendChannel(QueueClient writeQueue, QueueClient readQueue) method SendMessages (line 31) | public async Task> SendMessages(List m... class ReceiveChannel (line 47) | public class ReceiveChannel : IReceiveChannel method ReceiveChannel (line 53) | internal ReceiveChannel(QueueClient writeQueue, QueueClient readQueue,... method WaitForMessage (line 60) | public async Task WaitForMessage(CancellationToken canc... method SendAck (line 62) | public async Task SendAck(ServerMessage message) class Channels (line 69) | public static class Channels method CreateSendChannel (line 74) | public static Task CreateSendChannel(string clusterId, U... method CreateSendChannel (line 77) | public static async Task CreateSendChannel(string cluste... method CreateReceiveChannel (line 88) | public static Task CreateReceiveChannel(string server... method CreateReceiveChannel (line 91) | public static async Task CreateReceiveChannel(string ... method WaitForMessage (line 102) | internal static async Task WaitForMessage(this QueueClient queue... FILE: test/DistributedTests/DistributedTests.Common/MessageChannel/Messages.cs class ServerMessage (line 3) | public class ServerMessage method ServerMessage (line 11) | public ServerMessage(bool isGraceful, bool restart) class AckMessage (line 19) | public class AckMessage method AckMessage (line 25) | public AckMessage(Guid messageId, string serverName) method CreateAckMessage (line 31) | public static AckMessage CreateAckMessage(ServerMessage msg, string se... FILE: test/DistributedTests/DistributedTests.Common/OptionHelper.cs class OptionHelper (line 6) | public static class OptionHelper method CreateOption (line 8) | public static Option CreateOption(string alias, string descripti... method Validator (line 22) | public static string Validator(OptionResult result, Func v... method OnlyStrictlyPositive (line 32) | public static bool OnlyStrictlyPositive(int value) => value > 0; method OnlyPositiveOrZero (line 33) | public static bool OnlyPositiveOrZero(int value) => value >= 0; FILE: test/DistributedTests/DistributedTests.Common/TokenCredentialHelper.cs class TokenCredentialHelper (line 14) | public static class TokenCredentialHelper method CreateTableServiceClient (line 18) | public static TableServiceClient CreateTableServiceClient(this Uri azu... method CreateQueueServiceClient (line 28) | public static QueueServiceClient CreateQueueServiceClient(this Uri azu... method GetTokenCredential (line 38) | public static TokenCredential GetTokenCredential() method GetManagedIdentityToken (line 64) | public static string GetManagedIdentityToken(string msiClientId, strin... FILE: test/DistributedTests/DistributedTests.Grains/CounterReportingGrain.cs class CounterGrain (line 6) | public class CounterGrain : Grain, ICounterGrain method CounterGrain (line 11) | public CounterGrain(IOptions options) method GetRunDuration (line 16) | public Task GetRunDuration() => Task.FromResult(TimeSpan.Fro... method GetTotalCounterValue (line 18) | public async Task GetTotalCounterValue(string counterName) method Track (line 28) | public Task Track(IGrainWithCounter grain) method WaitTimeForReport (line 34) | public Task WaitTimeForReport() FILE: test/DistributedTests/DistributedTests.Grains/ImplicitSubscriberGrain.cs class ImplicitSubscriberGrain (line 8) | [ImplicitStreamSubscription(StreamingConstants.StreamingNamespace)] method ImplicitSubscriberGrain (line 15) | public ImplicitSubscriberGrain(ILogger logger) method GetCounterValue (line 20) | public Task GetCounterValue(string counterName) method OnCompletedAsync (line 30) | public Task OnCompletedAsync() => Task.CompletedTask; method OnErrorAsync (line 32) | public Task OnErrorAsync(Exception ex) method OnNextAsync (line 39) | public Task OnNextAsync(object item, StreamSequenceToken token = null) method OnSubscribed (line 48) | public async Task OnSubscribed(IStreamSubscriptionHandleFactory handle... FILE: test/DistributedTests/DistributedTests.Grains/PingGrain.cs class PingGrain (line 5) | public class PingGrain : Grain, IPingGrain method Ping (line 7) | public ValueTask Ping() => default; FILE: test/DistributedTests/DistributedTests.Grains/TreeGrain.cs class TreeGrain (line 5) | public class TreeGrain : Grain, ITreeGrain method TreeGrain (line 12) | public TreeGrain() method Ping (line 27) | public async ValueTask Ping() FILE: test/DistributedTests/DistributedTests.Server/Configurator/EventGeneratorStreamingSilo.cs class EventGeneratorStreamingSilo (line 12) | public class EventGeneratorStreamingSilo : ISiloConfigurator method Configure (line 11) | void Configure(ISiloBuilder siloBuilder, T parameters); FILE: test/DistributedTests/DistributedTests.Server/Configurator/SimpleSilo.cs class SimpleSilo (line 5) | public class SimpleSilo : ISiloConfigurator method Configure (line 11) | public void Configure(ISiloBuilder siloBuilder, object parameters) FILE: test/DistributedTests/DistributedTests.Server/ServerCommand.cs class ServerCommand (line 8) | public class ServerCommand : Command method ServerCommand (line 12) | public ServerCommand(ISiloConfigurator siloConfigurator) class Server (line 34) | public static class Server method CreateCommand (line 36) | public static Command CreateCommand(ISiloConfigurator configurat... FILE: test/DistributedTests/DistributedTests.Server/ServerRunner.cs class CommonParameters (line 11) | public class CommonParameters class ServerRunner (line 22) | public class ServerRunner method ServerRunner (line 27) | public ServerRunner(ISiloConfigurator siloConfigurator) method Run (line 33) | public async Task Run(CommonParameters commonParameters, T configurato... method ConfigureOrleans (line 71) | private void ConfigureOrleans(ISiloBuilder siloBuilder, CommonParamete... FILE: test/Extensions/Orleans.AWS.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 12) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 19) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Extensions/Orleans.AWS.Tests/LivenessTests.cs class LivenessTests_DynamoDB (line 22) | [TestCategory("Membership"), TestCategory("AWS"), TestCategory("DynamoDb")] method LivenessTests_DynamoDB (line 25) | public LivenessTests_DynamoDB(ITestOutputHelper output) : base(output) method ConfigureTestCluster (line 31) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 41) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 43) | public void Configure(ISiloBuilder hostBuilder) class ClientBuilderConfigurator (line 54) | public class ClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 56) | public void Configure(IConfiguration configuration, IClientBuilder c... method Liveness_AWS_DynamoDB_1 (line 70) | [SkippableFact, TestCategory("Functional")] method Liveness_AWS_DynamoDB_2_Restart_Primary (line 81) | [SkippableFact, TestCategory("Functional")] method Liveness_AWS_DynamoDB_3_Restart_GW (line 92) | [SkippableFact, TestCategory("Functional")] method Liveness_AWS_DynamoDB_4_Restart_Silo_1 (line 103) | [SkippableFact, TestCategory("Functional")] method Liveness_AWS_DynamoDB_5_Kill_Silo_1_With_Timers (line 114) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.AWS.Tests/MembershipTests/DynamoDBMembershipTableTest.cs class DynamoDBMembershipTableTest (line 17) | [TestCategory("Membership"), TestCategory("AWS"), TestCategory("DynamoDb")] method DynamoDBMembershipTableTest (line 20) | public DynamoDBMembershipTableTest(ConnectionStringFixture fixture, Te... method CreateFilters (line 24) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 33) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 42) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetConnectionString (line 49) | protected override Task GetConnectionString() method MembershipTable_DynamoDB_GetGateways (line 54) | [SkippableFact, TestCategory("Functional")] method MembershipTable_DynamoDB_ReadAll_EmptyTable (line 60) | [SkippableFact, TestCategory("Functional")] method MembershipTable_DynamoDB_InsertRow (line 66) | [SkippableFact, TestCategory("Functional")] method MembershipTable_DynamoDB_ReadRow_Insert_Read (line 72) | [SkippableFact, TestCategory("Functional")] method MembershipTable_DynamoDB_ReadAll_Insert_ReadAll (line 78) | [SkippableFact, TestCategory("Functional")] method MembershipTable_DynamoDB_UpdateRow (line 84) | [SkippableFact, TestCategory("Functional")] method MembershipTable_DynamoDB_CleanupDefunctSiloEntries (line 90) | [SkippableFact, TestCategory("Functional")] method MembershipTable_DynamoDB_UpdateRowInParallel (line 96) | [SkippableFact] method MembershipTable_DynamoDB_UpdateIAmAlive (line 102) | [SkippableFact] FILE: test/Extensions/Orleans.AWS.Tests/MembershipTests/SiloInstanceRecordTests.cs class SiloInstanceRecordTests (line 12) | [TestCategory("Membership"), TestCategory("AWS"), TestCategory("DynamoDb")] method GetKeysTest (line 15) | [Fact] FILE: test/Extensions/Orleans.AWS.Tests/Reminder/DynamoDBRemindersTableTests.cs class DynamoDBRemindersTableTests (line 16) | [TestCategory("Reminders"), TestCategory("AWS"), TestCategory("DynamoDb")] method DynamoDBRemindersTableTests (line 20) | public DynamoDBRemindersTableTests(ConnectionStringFixture fixture, Te... method CreateRemindersTable (line 24) | protected override IReminderTable CreateRemindersTable() method GetConnectionString (line 38) | protected override Task GetConnectionString() method RemindersTable_AWS_Init (line 43) | [SkippableFact] method RemindersTable_AWS_RemindersRange (line 48) | [SkippableFact] method RemindersTable_AWS_RemindersParallelUpsert (line 54) | [SkippableFact] method RemindersTable_AWS_ReminderSimple (line 60) | [SkippableFact] FILE: test/Extensions/Orleans.AWS.Tests/StorageTests/AWSTestConstants.cs class AWSTestConstants (line 11) | public class AWSTestConstants FILE: test/Extensions/Orleans.AWS.Tests/StorageTests/DynamoDBStorageProviderTests.cs class DynamoDBStorageProviderTests (line 21) | [TestCategory("Persistence"), TestCategory("AWS"), TestCategory("DynamoD... method DynamoDBStorageProviderTests (line 30) | public DynamoDBStorageProviderTests(ITestOutputHelper output, TestEnvi... method PersistenceProvider_DynamoDB_WriteRead (line 41) | [SkippableTheory, TestCategory("Functional")] method PersistenceProvider_DynamoDB_WriteClearRead (line 61) | [SkippableTheory, TestCategory("Functional")] method PersistenceProvider_DynamoDB_ChangeReadFormat (line 82) | [SkippableTheory, TestCategory("Functional")] method PersistenceProvider_DynamoDB_ChangeWriteFormat (line 109) | [SkippableTheory, TestCategory("Functional")] method DynamoDBStorage_ConvertToFromStorageFormat (line 139) | [SkippableTheory, TestCategory("Functional")] method InitDynamoDBGrainStorage (line 168) | private async Task InitDynamoDBGrainStorage(Dyna... method InitDynamoDBGrainStorage (line 177) | private Task InitDynamoDBGrainStorage(bool useJs... method Test_PersistenceProvider_Read (line 198) | private async Task Test_PersistenceProvider_Read(string grainTypeName,... method Test_PersistenceProvider_WriteRead (line 223) | private async Task> Test_PersistencePr... method Test_PersistenceProvider_WriteClearRead (line 255) | private async Task> Test_PersistencePr... method EnsureEnvironmentSupportsState (line 290) | private static void EnsureEnvironmentSupportsState(GrainState GetKeys(UnitTestDyn... method GetValues (line 132) | internal static Dictionary GetValues(UnitTestD... FILE: test/Extensions/Orleans.AWS.Tests/StorageTests/PersistenceGrainTests_AWSDynamoDBStore.cs class PersistenceGrainTests_AWSDynamoDBStore (line 19) | [TestCategory("Persistence"), TestCategory("AWS"), TestCategory("DynamoD... class Fixture (line 22) | public class Fixture : TestExtensions.BaseTestClusterFixture method ConfigureTestCluster (line 24) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloBuilderConfigurator (line 33) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 35) | public void Configure(ISiloBuilder hostBuilder) method PersistenceGrainTests_AWSDynamoDBStore (line 44) | public PersistenceGrainTests_AWSDynamoDBStore(ITestOutputHelper output... method AWSDynamoDBStore_ConvertToFromStorageFormat_GrainReference (line 53) | [SkippableFact, TestCategory("Functional")] method AWSDynamoDBStore_ConvertToFromStorageFormat_GrainReference_List (line 70) | [SkippableFact, TestCategory("Functional")] method InitDynamoDBTableStorageProvider (line 104) | private static async Task InitDynamoDBTableStora... FILE: test/Extensions/Orleans.AWS.Tests/StorageTests/UnitTestDynamoDBStorage.cs class UnitTestDynamoDBTableData (line 12) | [Serializable] method UnitTestDynamoDBTableData (line 31) | public UnitTestDynamoDBTableData() method UnitTestDynamoDBTableData (line 36) | public UnitTestDynamoDBTableData(Dictionary fi... method UnitTestDynamoDBTableData (line 64) | public UnitTestDynamoDBTableData(string data, string partitionKey, str... method Clone (line 71) | public UnitTestDynamoDBTableData Clone() method ToString (line 81) | public override string ToString() class UnitTestDynamoDBStorage (line 96) | internal class UnitTestDynamoDBStorage : DynamoDBStorage method UnitTestDynamoDBStorage (line 100) | public UnitTestDynamoDBStorage() FILE: test/Extensions/Orleans.AWS.Tests/Streaming/SQSAdapterTests.cs class SQSAdapterTests (line 23) | [TestCategory("AWS"), TestCategory("SQS")] method SQSAdapterTests (line 34) | public SQSAdapterTests(ITestOutputHelper output, TestEnvironmentFixtur... method InitializeAsync (line 46) | public Task InitializeAsync() => Task.CompletedTask; method DisposeAsync (line 48) | public async Task DisposeAsync() method SendAndReceiveFromSQS (line 60) | [SkippableFact] method SendAndReceiveFromQueueAdapter (line 79) | private async Task SendAndReceiveFromQueueAdapter(IQueueAdapterFactory... method CreateEvents (line 193) | private static List CreateEvents(int count) method MakeClusterId (line 205) | internal static string MakeClusterId() FILE: test/Extensions/Orleans.AWS.Tests/Streaming/SQSClientStreamTests.cs class SQSClientStreamTests (line 18) | public class SQSClientStreamTests : TestClusterPerTest method SQSClientStreamTests (line 27) | public SQSClientStreamTests(ITestOutputHelper output) method InitializeAsync (line 32) | public override async Task InitializeAsync() method ConfigureTestCluster (line 38) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 49) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 51) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 63) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 65) | public void Configure(IConfiguration configuration, IClientBuilder c... method DisposeAsync (line 75) | public override async Task DisposeAsync() method SQSStreamProducerOnDroppedClientTest (line 85) | [SkippableFact, TestCategory("AWS")] FILE: test/Extensions/Orleans.AWS.Tests/Streaming/SQSStreamTests.cs class SQSStreamTests (line 16) | [TestCategory("AWS"), TestCategory("SQS")] method ConfigureTestCluster (line 23) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 33) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 35) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 63) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 65) | public void Configure(IConfiguration configuration, IClientBuilder c... method InitializeAsync (line 75) | public override async Task InitializeAsync() method DisposeAsync (line 81) | public override async Task DisposeAsync() method SQS_01_OneProducerGrainOneConsumerGrain (line 93) | [SkippableFact] method SQS_02_OneProducerGrainOneConsumerClient (line 99) | [SkippableFact] method SQS_03_OneProducerClientOneConsumerGrain (line 105) | [SkippableFact] method SQS_04_OneProducerClientOneConsumerClient (line 111) | [SkippableFact] method SQS_05_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 119) | [SkippableFact] method SQS_06_ManyDifferent_ManyProducerGrainManyConsumerClients (line 125) | [SkippableFact] method SQS_07_ManyDifferent_ManyProducerClientsManyConsumerGrains (line 131) | [SkippableFact] method SQS_08_ManyDifferent_ManyProducerClientsManyConsumerClients (line 137) | [SkippableFact] method SQS_09_ManySame_ManyProducerGrainsManyConsumerGrains (line 144) | [SkippableFact] method SQS_10_ManySame_ManyConsumerGrainsManyProducerGrains (line 150) | [SkippableFact] method SQS_11_ManySame_ManyProducerGrainsManyConsumerClients (line 156) | [SkippableFact] method SQS_12_ManySame_ManyProducerClientsManyConsumerGrains (line 162) | [SkippableFact] method SQS_13_SameGrain_ConsumerFirstProducerLater (line 170) | [SkippableFact] method SQS_14_SameGrain_ProducerFirstConsumerLater (line 176) | [SkippableFact] method SQS_15_ConsumeAtProducersRequest (line 184) | [SkippableFact] method SQS_16_MultipleStreams_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 190) | [SkippableFact] method SQS_17_MultipleStreams_1J_ManyProducerGrainsManyConsumerGrains (line 197) | [SkippableFact] FILE: test/Extensions/Orleans.AWS.Tests/Streaming/SQSSubscriptionMultiplicityTests.cs class SQSSubscriptionMultiplicityTests (line 16) | public class SQSSubscriptionMultiplicityTests : TestClusterPerTest method ConfigureTestCluster (line 23) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 34) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 36) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 47) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 49) | public void Configure(IConfiguration configuration, IClientBuilder c... method InitializeAsync (line 59) | public override async Task InitializeAsync() method DisposeAsync (line 65) | public override async Task DisposeAsync() method SQSMultipleParallelSubscriptionTest (line 75) | [SkippableFact, TestCategory("AWS")] method SQSMultipleLinearSubscriptionTest (line 82) | [SkippableFact, TestCategory("AWS")] method SQSMultipleSubscriptionTest_AddRemove (line 89) | [SkippableFact, TestCategory("AWS")] method SQSResubscriptionTest (line 96) | [SkippableFact, TestCategory("AWS")] method SQSResubscriptionAfterDeactivationTest (line 103) | [SkippableFact, TestCategory("AWS")] method SQSActiveSubscriptionTest (line 110) | [SkippableFact, TestCategory("AWS")] method SQSTwoIntermitentStreamTest (line 117) | [SkippableFact, TestCategory("AWS")] method SQSSubscribeFromClientTest (line 124) | [SkippableFact, TestCategory("AWS")] FILE: test/Extensions/Orleans.AdoNet.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 12) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 19) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Extensions/Orleans.AdoNet.Tests/Fakes/FakeHostApplicationLifetime.cs class FakeHostApplicationLifetime (line 8) | internal sealed class FakeHostApplicationLifetime : IHostApplicationLife... method StartApplication (line 20) | public void StartApplication() => _applicationStarted.Cancel(); method StopApplication (line 22) | public void StopApplication() method Dispose (line 28) | public void Dispose() FILE: test/Extensions/Orleans.AdoNet.Tests/GrainDirectory/AdoNetGrainDirectoryClusterTests.cs class SqlServerAdoNetGrainDirectoryClusterTests (line 15) | [TestCategory("SqlServer")] class PostgreSqlAdoNetGrainDirectoryClusterTests (line 23) | [TestCategory("PostgreSql")] method PostgreSqlAdoNetGrainDirectoryClusterTests (line 26) | public PostgreSqlAdoNetGrainDirectoryClusterTests() : base(AdoNetInvar... class MySqlAdoNetGrainDirectoryClusterTests (line 35) | [TestCategory("MySql")] method MySqlAdoNetGrainDirectoryClusterTests (line 38) | public MySqlAdoNetGrainDirectoryClusterTests() : base(AdoNetInvariants... class AdoNetGrainDirectoryClusterTests (line 47) | [TestCategory("Functional"), TestCategory("AdoNet"), TestCategory("Grain... method AdoNetGrainDirectoryClusterTests (line 55) | public AdoNetGrainDirectoryClusterTests(string invariant) method InitializeAsync (line 60) | public override async Task InitializeAsync() class SiloConfigurator (line 71) | public class SiloConfigurator : ISiloConfigurator method Configure (line 73) | public void Configure(ISiloBuilder siloBuilder) method ConfigureTestCluster (line 83) | protected override void ConfigureTestCluster(TestClusterBuilder builder) FILE: test/Extensions/Orleans.AdoNet.Tests/GrainDirectory/AdoNetGrainDirectoryTests.cs class SqlServerAdoNetGrainDirectoryTests (line 19) | [TestCategory("SqlServer")] class PostgreSqlAdoNetGrainDirectoryTests (line 27) | [TestCategory("PostgreSql")] method PostgreSqlAdoNetGrainDirectoryTests (line 30) | public PostgreSqlAdoNetGrainDirectoryTests() : base(AdoNetInvariants.I... class MySqlAdoNetGrainDirectoryTests (line 39) | [TestCategory("MySql")] method MySqlAdoNetGrainDirectoryTests (line 42) | public MySqlAdoNetGrainDirectoryTests() : base(AdoNetInvariants.Invari... class AdoNetGrainDirectoryTests (line 51) | [Collection(TestEnvironmentFixture.DefaultCollection)] method InitializeAsync (line 60) | public async Task InitializeAsync() method DisposeAsync (line 69) | public Task DisposeAsync() => Task.CompletedTask; method AdoNetGrainDirectory_RegistersActivation (line 74) | [SkippableFact] method AdoNetGrainDirectory_UnregistersActivation (line 120) | [SkippableFact] method AdoNetGrainDirectory_LooksUpActivation (line 158) | [SkippableFact] method AdoNetGrainDirectory_UnregistersActivationsForSilos (line 201) | [SkippableFact] method AdoNetGrainDirectory_ChaosTest (line 247) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/GrainDirectory/RelationalOrleansQueriesTests.cs class SqlServerRelationalOrleansQueriesTests (line 13) | [TestCategory("SqlServer")] class PostgreSqlRelationalOrleansQueriesTests (line 21) | [TestCategory("PostgreSql")] method PostgreSqlRelationalOrleansQueriesTests (line 24) | public PostgreSqlRelationalOrleansQueriesTests() : base(AdoNetInvarian... class MySqlRelationalOrleansQueriesTests (line 33) | [TestCategory("MySql")] method MySqlRelationalOrleansQueriesTests (line 36) | public MySqlRelationalOrleansQueriesTests() : base(AdoNetInvariants.In... class RelationalOrleansQueriesTests (line 45) | [TestCategory("Functional"), TestCategory("AdoNet"), TestCategory("Grain... method InitializeAsync (line 53) | public async Task InitializeAsync() method RandomClusterId (line 63) | private static string RandomClusterId(int max = 10) => $"ClusterId{Ran... method RandomProviderId (line 65) | private static string RandomProviderId(int max = 10) => $"ProviderId{R... method RandomGrainId (line 67) | private static string RandomGrainId(int max = 10) => $"GrainId{Random.... method RandomSiloAddress (line 69) | private static string RandomSiloAddress(int max = 10) => $"SiloAddress... method RandomActivationId (line 71) | private static string RandomActivationId(int max = 10) => $"Activation... method DisposeAsync (line 73) | public Task DisposeAsync() => Task.CompletedTask; method RelationalOrleansQueries_RegistersActivation (line 78) | [SkippableFact] method RelationalOrleansQueries_UnregistersActivation (line 113) | [SkippableFact] method RelationalOrleansQueries_LooksUpActivation (line 140) | [SkippableFact] method RelationalOrleansQueries_UnregistersActivationsForSilos (line 169) | [SkippableFact] method RelationalOrleansQueries_ChaosTest (line 206) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/LivenessTests.cs class LivenessTests_SqlServer (line 12) | [TestCategory("SqlServer"), TestCategory("Functional"), TestCategory("Me... method LivenessTests_SqlServer (line 17) | public LivenessTests_SqlServer(ITestOutputHelper output) : base(output) method CheckPreconditionsOrThrow (line 22) | protected override void CheckPreconditionsOrThrow() => RelationalStora... method ConfigureTestCluster (line 24) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloConfigurator (line 31) | public class SiloConfigurator : IHostConfigurator method Configure (line 33) | public void Configure(IHostBuilder hostBuilder) method Liveness_SqlServer_1 (line 48) | [SkippableFact] method Liveness_SqlServer_2_Restart_Primary (line 54) | [SkippableFact] method Liveness_SqlServer_3_Restartl_GW (line 60) | [SkippableFact] method Liveness_SqlServer_4_Restart_Silo_1 (line 66) | [SkippableFact] method Liveness_SqlServer_5_Kill_Silo_1_With_Timers (line 72) | [SkippableFact] class LivenessTests_PostgreSql (line 82) | [TestCategory("PostgreSql"), TestCategory("Functional"), TestCategory("M... method LivenessTests_PostgreSql (line 87) | public LivenessTests_PostgreSql(ITestOutputHelper output) : base(output) method CheckPreconditionsOrThrow (line 92) | protected override void CheckPreconditionsOrThrow() => RelationalStora... method ConfigureTestCluster (line 94) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloConfigurator (line 101) | public class SiloConfigurator : IHostConfigurator method Configure (line 103) | public void Configure(IHostBuilder hostBuilder) method Liveness_PostgreSql_1 (line 118) | [SkippableFact] method Liveness_PostgreSql_2_Restart_Primary (line 124) | [SkippableFact] method Liveness_PostgreSql_3_Restartl_GW (line 130) | [SkippableFact] method Liveness_PostgreSql_4_Restart_Silo_1 (line 136) | [SkippableFact] method Liveness_PostgreSql_5_Kill_Silo_1_With_Timers (line 142) | [SkippableFact] class LivenessTests_MySql (line 152) | [TestCategory("MySql"), TestCategory("Functional"), TestCategory("Member... method LivenessTests_MySql (line 157) | public LivenessTests_MySql(ITestOutputHelper output) : base(output) method CheckPreconditionsOrThrow (line 162) | protected override void CheckPreconditionsOrThrow() => RelationalStora... method ConfigureTestCluster (line 164) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloConfigurator (line 171) | public class SiloConfigurator : IHostConfigurator method Configure (line 173) | public void Configure(IHostBuilder hostBuilder) method Liveness_MySql_1 (line 188) | [SkippableFact] method Liveness_MySql_2_Restart_Primary (line 194) | [SkippableFact] method Liveness_MySql_3_Restartl_GW (line 200) | [SkippableFact] method Liveness_MySql_4_Restart_Silo_1 (line 206) | [SkippableFact] method Liveness_MySql_5_Kill_Silo_1_With_Timers (line 212) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/MySqlMembershipTableTests.cs class MySqlMembershipTableTests (line 17) | [TestCategory("Membership"), TestCategory("MySql"), TestCategory("Functi... method MySqlMembershipTableTests (line 20) | public MySqlMembershipTableTests(ConnectionStringFixture fixture, Test... method GetAdoInvariant (line 24) | protected override string GetAdoInvariant() => AdoNetInvariants.Invari... method CreateFilters (line 26) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 33) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 43) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetConnectionString (line 53) | protected override async Task GetConnectionString() method MembershipTable_MySql_Init (line 59) | [SkippableFact] method MembershipTable_MySql_GetGateways (line 64) | [SkippableFact] method MembershipTable_MySql_ReadAll_EmptyTable (line 70) | [SkippableFact] method MembershipTable_MySql_InsertRow (line 76) | [SkippableFact] method MembershipTable_MySql_ReadRow_Insert_Read (line 82) | [SkippableFact] method MembershipTable_MySql_ReadAll_Insert_ReadAll (line 88) | [SkippableFact] method MembershipTable_MySql_UpdateRow (line 94) | [SkippableFact] method MembershipTable_MySql_UpdateRowInParallel (line 100) | [SkippableFact] method MembershipTable_MySql_UpdateIAmAlive (line 106) | [SkippableFact] method MembershipTable_MySql_CleanupDefunctSiloEntries (line 112) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/PackageReferences.cs class PackageReferences (line 5) | internal static class PackageReferences FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/PersistenceGrainTests_MySql.cs class PersistenceGrainTests_MySql (line 16) | [TestCategory("Persistence"), TestCategory("MySql")] class Fixture (line 23) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 25) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 33) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 44) | private class MySiloBuilderConfigurator : IHostConfigurator method Configure (line 46) | public void Configure(IHostBuilder hostBuilder) method PersistenceGrainTests_MySql (line 63) | public PersistenceGrainTests_MySql(ITestOutputHelper output, Fixture f... FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/PersistenceGrainTests_MySql_DeleteStateOnClear.cs class PersistenceGrainTests_MySql_DeleteStateOnClear (line 17) | [TestCategory("Persistence"), TestCategory("MySql")] class Fixture (line 24) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 26) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 34) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 45) | private class MySiloBuilderConfigurator : IHostConfigurator method Configure (line 47) | public void Configure(IHostBuilder hostBuilder) method PersistenceGrainTests_MySql_DeleteStateOnClear (line 65) | public PersistenceGrainTests_MySql_DeleteStateOnClear(ITestOutputHelpe... FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/PersistenceGrainTests_Postgres.cs class PersistenceGrainTests_Postgres (line 16) | [TestCategory("Persistence"), TestCategory("PostgreSql")] class Fixture (line 23) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 25) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 33) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 44) | private class MySiloBuilderConfigurator : IHostConfigurator method Configure (line 46) | public void Configure(IHostBuilder hostBuilder) method PersistenceGrainTests_Postgres (line 64) | public PersistenceGrainTests_Postgres(ITestOutputHelper output, Fixtur... FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/PersistenceGrainTests_Postgres_DeleteStateOnClear.cs class PersistenceGrainTests_Postgres_DeleteStateOnClear (line 17) | [TestCategory("Persistence"), TestCategory("PostgreSql")] class Fixture (line 24) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 26) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 34) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 45) | private class MySiloBuilderConfigurator : IHostConfigurator method Configure (line 47) | public void Configure(IHostBuilder hostBuilder) method PersistenceGrainTests_Postgres_DeleteStateOnClear (line 66) | public PersistenceGrainTests_Postgres_DeleteStateOnClear(ITestOutputHe... FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/PersistenceGrainTests_SqlServer.cs class PersistenceGrainTests_SqlServer (line 16) | [TestCategory("Persistence"), TestCategory("SqlServer")] class Fixture (line 22) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 24) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 32) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 43) | private class MySiloBuilderConfigurator : IHostConfigurator method Configure (line 45) | public void Configure(IHostBuilder hostBuilder) method PersistenceGrainTests_SqlServer (line 62) | public PersistenceGrainTests_SqlServer(ITestOutputHelper output, Fixtu... FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/PersistenceGrainTests_SqlServer_DeleteStateOnClear.cs class PersistenceGrainTests_SqlServer_DeleteStateOnClear (line 17) | [TestCategory("Persistence"), TestCategory("SqlServer")] class Fixture (line 24) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 26) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 34) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 45) | private class MySiloBuilderConfigurator : IHostConfigurator method Configure (line 47) | public void Configure(IHostBuilder hostBuilder) method PersistenceGrainTests_SqlServer_DeleteStateOnClear (line 65) | public PersistenceGrainTests_SqlServer_DeleteStateOnClear(ITestOutputH... FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/SqlitePersistenceGrainStorageFixture.cs class SqlitePersistenceGrainStorageFixture (line 17) | public sealed class SqlitePersistenceGrainStorageFixture : TestEnvironme... method SqlitePersistenceGrainStorageFixture (line 21) | public SqlitePersistenceGrainStorageFixture() method InitializeSchemaAsync (line 43) | public async Task InitializeSchemaAsync() method CreateGrainStorageAsync (line 49) | public async Task CreateGrainStorageAsync(string s... method LoadScriptAsync (line 76) | private static async Task LoadScriptAsync(string fileName) FILE: test/Extensions/Orleans.AdoNet.Tests/Persistence/SqlitePersistenceGrainStorageTests.cs class SqlitePersistenceGrainStorageTests (line 12) | [TestCategory("AdoNet"), TestCategory("Persistence"), TestCategory("Sqli... method SqlitePersistenceGrainStorageTests (line 18) | public SqlitePersistenceGrainStorageTests(SqlitePersistenceGrainStorag... method WriteRead (line 24) | [Fact] method WriteClearRead (line 31) | [Fact] method WriteDuplicateFailsWithInconsistentStateException (line 38) | [Fact] method WriteInconsistentFailsWithIncosistentStateException (line 45) | [Fact] method ClearInconsistentFailsWithInconsistentStateException (line 52) | [Fact] method HashCollisionWriteReadWriteRead (line 77) | [Fact] method ExtensionStringIdentityMatching (line 86) | [Fact] method ConcurrentFirstWriteRaceUsesOptimisticConcurrency (line 112) | [Fact] method VersionProgressionAfterWriteClearWrite (line 152) | [Fact] FILE: test/Extensions/Orleans.AdoNet.Tests/PostgreSqlMembershipTableTests.cs class PostgreSqlMembershipTableTests (line 17) | [TestCategory("Membership"), TestCategory("PostgreSql"), TestCategory("F... method PostgreSqlMembershipTableTests (line 20) | public PostgreSqlMembershipTableTests(ConnectionStringFixture fixture,... method CreateFilters (line 24) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 31) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 41) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetAdoInvariant (line 51) | protected override string GetAdoInvariant() method GetConnectionString (line 56) | protected override async Task GetConnectionString() method MembershipTable_PostgreSql_Init (line 62) | [SkippableFact] method MembershipTable_PostgreSql_GetGateways (line 67) | [SkippableFact] method MembershipTable_PostgreSql_ReadAll_EmptyTable (line 73) | [SkippableFact] method MembershipTable_PostgreSql_InsertRow (line 79) | [SkippableFact] method MembershipTable_PostgreSql_ReadRow_Insert_Read (line 85) | [SkippableFact] method MembershipTable_PostgreSql_ReadAll_Insert_ReadAll (line 91) | [SkippableFact] method MembershipTable_PostgreSql_UpdateRow (line 97) | [SkippableFact] method MembershipTable_PostgreSql_UpdateRowInParallel (line 103) | [SkippableFact] method MembershipTable_PostgreSql_UpdateIAmAlive (line 109) | [SkippableFact] method MembershipTablePostgreSql_CleanupDefunctSiloEntries (line 115) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: test/Extensions/Orleans.AdoNet.Tests/RelationalUtilities/MySqlStorageForTesting.cs class MySqlStorageForTesting (line 7) | internal class MySqlStorageForTesting : RelationalStorageForTesting method MySqlStorageForTesting (line 10) | public MySqlStorageForTesting(string connectionString) : base(AdoNetIn... method SplitScript (line 18) | public IEnumerable SplitScript(string setupScript) method ConvertToExecutableBatches (line 39) | protected override IEnumerable ConvertToExecutableBatches(stri... FILE: test/Extensions/Orleans.AdoNet.Tests/RelationalUtilities/PostgreSqlStorageForTesting.cs class PostgreSqlStorageForTesting (line 8) | internal class PostgreSqlStorageForTesting : RelationalStorageForTesting method PostgreSqlStorageForTesting (line 12) | public PostgreSqlStorageForTesting(string connectionString) method ConvertToExecutableBatches (line 41) | protected override IEnumerable ConvertToExecutableBatches(stri... FILE: test/Extensions/Orleans.AdoNet.Tests/RelationalUtilities/RelationalStorageForTesting.cs class RelationalStorageForTesting (line 8) | public abstract class RelationalStorageForTesting method ConvertToExecutableBatches (line 92) | protected abstract IEnumerable ConvertToExecutableBatches(stri... method CheckPreconditionsOrThrow (line 94) | public static void CheckPreconditionsOrThrow(string invariantName, str... method SetupInstance (line 104) | public static async Task SetupInstance(st... method CreateTestInstance (line 160) | private static RelationalStorageForTesting CreateTestInstance(string i... method RelationalStorageForTesting (line 170) | protected RelationalStorageForTesting(string invariantName, string con... method ExecuteSetupScript (line 188) | private async Task ExecuteSetupScript(string setupScript, string dataB... method ExistsDatabaseAsync (line 202) | private async Task ExistsDatabaseAsync(string databaseName) method CreateDatabaseAsync (line 215) | private async Task CreateDatabaseAsync(string databaseName) method DropDatabaseAsync (line 225) | private async Task DropDatabaseAsync(string databaseName) method CopyInstance (line 235) | private RelationalStorageForTesting CopyInstance(string newDatabaseName) FILE: test/Extensions/Orleans.AdoNet.Tests/RelationalUtilities/SqlServerStorageForTesting.cs class SqlServerStorageForTesting (line 7) | public class SqlServerStorageForTesting : RelationalStorageForTesting method SqlServerStorageForTesting (line 11) | public SqlServerStorageForTesting(string connectionString) method ConvertToExecutableBatches (line 54) | protected override IEnumerable ConvertToExecutableBatches(stri... FILE: test/Extensions/Orleans.AdoNet.Tests/Reminders/MySqlRemindersTableTests.cs class MySqlRemindersTableTests (line 15) | [TestCategory("Functional"), TestCategory("Reminders"), TestCategory("Ad... method MySqlRemindersTableTests (line 18) | public MySqlRemindersTableTests(ConnectionStringFixture fixture, TestE... method CreateFilters (line 23) | private static LoggerFilterOptions CreateFilters() method CreateRemindersTable (line 30) | protected override IReminderTable CreateRemindersTable() method GetAdoInvariant (line 42) | protected override string GetAdoInvariant() method GetConnectionString (line 47) | protected override async Task GetConnectionString() method RemindersTable_MySql_Init (line 53) | [SkippableFact] method RemindersTable_MySql_RemindersRange (line 58) | [SkippableFact] method RemindersTable_MySql_RemindersParallelUpsert (line 64) | [SkippableFact] method RemindersTable_MySql_ReminderSimple (line 70) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/Reminders/PostgreSqlRemindersTableTests.cs class PostgreSqlRemindersTableTests (line 14) | [TestCategory("Functional"), TestCategory("Reminders"), TestCategory("Ad... method PostgreSqlRemindersTableTests (line 17) | public PostgreSqlRemindersTableTests(ConnectionStringFixture fixture, ... method CreateFilters (line 21) | private static LoggerFilterOptions CreateFilters() method CreateRemindersTable (line 28) | protected override IReminderTable CreateRemindersTable() method GetAdoInvariant (line 40) | protected override string GetAdoInvariant() method GetConnectionString (line 45) | protected override async Task GetConnectionString() method RemindersTable_PostgreSql_Init (line 51) | [SkippableFact] method RemindersTable_PostgreSql_RemindersRange (line 56) | [SkippableFact] method RemindersTable_PostgreSql_RemindersParallelUpsert (line 62) | [SkippableFact] method RemindersTable_PostgreSql_ReminderSimple (line 68) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/Reminders/ReminderTests_AdoNet_SqlServer.cs class ReminderTests_AdoNet_SqlServer (line 22) | [TestCategory("Reminders"), TestCategory("AdoNet"), TestCategory("SqlSer... class Fixture (line 29) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 31) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 36) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 48) | public class SiloConfigurator : IHostConfigurator method Configure (line 50) | public void Configure(IHostBuilder hostBuilder) method ReminderTests_AdoNet_SqlServer (line 63) | public ReminderTests_AdoNet_SqlServer(Fixture fixture) : base(fixture) method Rem_Sql_Basic_StopByRef (line 73) | [SkippableFact] method Rem_Sql_Basic_ListOps (line 79) | [SkippableFact] method Rem_Sql_1J_MultiGrainMultiReminders (line 87) | [SkippableFact] method Rem_Sql_ReminderNotFound (line 93) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/Reminders/SqlServerRemindersTableTests.cs class SqlServerRemindersTableTests (line 15) | [TestCategory("Functional"), TestCategory("Reminders"), TestCategory("Ad... method SqlServerRemindersTableTests (line 18) | public SqlServerRemindersTableTests(ConnectionStringFixture fixture, T... method CreateFilters (line 22) | private static LoggerFilterOptions CreateFilters() method CreateRemindersTable (line 29) | protected override IReminderTable CreateRemindersTable() method GetAdoInvariant (line 41) | protected override string GetAdoInvariant() method GetConnectionString (line 46) | protected override async Task GetConnectionString() method RemindersTable_SqlServer_Init (line 52) | [SkippableFact] method RemindersTable_SqlServer_RemindersRange (line 57) | [SkippableFact] method RemindersTable_SqlServer_RemindersParallelUpsert (line 63) | [SkippableFact] method RemindersTable_SqlServer_ReminderSimple (line 69) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/SqlServerMembershipTableTests.cs class SqlServerMembershipTableTests (line 16) | [TestCategory("Membership"), TestCategory("SQLServer"), TestCategory("Fu... method SqlServerMembershipTableTests (line 19) | public SqlServerMembershipTableTests(ConnectionStringFixture fixture, ... method CreateFilters (line 23) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 29) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 39) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetAdoInvariant (line 49) | protected override string GetAdoInvariant() method GetConnectionString (line 54) | protected override async Task GetConnectionString() method MembershipTable_SqlServer_Init (line 60) | [SkippableFact] method MembershipTable_SqlServer_GetGateways (line 65) | [SkippableFact] method MembershipTable_SqlServer_ReadAll_EmptyTable (line 71) | [SkippableFact] method MembershipTable_SqlServer_InsertRow (line 77) | [SkippableFact] method MembershipTable_SqlServer_ReadRow_Insert_Read (line 83) | [SkippableFact] method MembershipTable_SqlServer_ReadAll_Insert_ReadAll (line 89) | [SkippableFact] method MembershipTable_SqlServer_UpdateRow (line 95) | [SkippableFact] method MembershipTable_SqlServer_UpdateRowInParallel (line 101) | [SkippableFact] method MembershipTable_SqlServer_UpdateIAmAlive (line 107) | [SkippableFact] method MembershipTableSqlServerSql_CleanupDefunctSiloEntries (line 113) | [SkippableFact] FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/MySqlRelationalStoreTests.cs class MySqlRelationalStoreTests (line 12) | [TestCategory("Persistence"), TestCategory("MySql")] class Fixture (line 20) | public class Fixture method EnsurePreconditionsMet (line 24) | public void EnsurePreconditionsMet() method Fixture (line 29) | public Fixture() method MySqlRelationalStoreTests (line 45) | public MySqlRelationalStoreTests(Fixture fixture) : base(AdoNetInvaria... method Streaming_MySql_Test (line 51) | [SkippableFact, TestCategory("Functional")] method CancellationToken_MySql_Test (line 61) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/PostgreSqlRelationalStoreTests.cs class PostgreSqlRelationalStoreTests (line 10) | [TestCategory("Persistence"), TestCategory("PostgreSql")] class Fixture (line 18) | public class Fixture method Fixture (line 20) | public Fixture() method PostgreSqlRelationalStoreTests (line 35) | public PostgreSqlRelationalStoreTests(Fixture fixture) : base(AdoNetIn... method Streaming_PostgreSql_Test (line 40) | [SkippableFact, TestCategory("Functional")] method CancellationToken_PostgreSql_Test (line 50) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/Relational/AdotNetProviderFunctionalityTests.cs class AdotNetProviderFunctionalityTests (line 12) | public class AdotNetProviderFunctionalityTests method AdoNetStorageProviderGrainTypeHashing (line 14) | [TestCategory("Functional"), TestCategory("Persistence")] method LongGrainIdToN1KeyAreSame (line 31) | [TestCategory("Functional"), TestCategory("Persistence")] method LongGrainIdToStringAreSame (line 41) | [TestCategory("Functional"), TestCategory("Persistence")] method LongGrainIdWithExtensionAreSame (line 51) | [TestCategory("Functional"), TestCategory("Persistence")] method GuidGrainIdWithExtensionAreSame (line 68) | [TestCategory("Functional"), TestCategory("Persistence")] FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/Relational/CommonFixture.cs class CommonFixture (line 22) | public class CommonFixture : TestEnvironmentFixture method CommonFixture (line 54) | public CommonFixture() method GetStorageProvider (line 68) | public async Task GetStorageProvider(string storageInva... method GetStorageProvider (line 80) | public async Task GetStorageProvider(string storageInva... FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/Relational/ConstantHasher.cs class ConstantHasher (line 10) | public class ConstantHasher: IHasher method Hash (line 25) | public int Hash(byte[] data) { return ConstantHash; } FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/Relational/MySqlStorageDeleteOnClearTests.cs class MySqlStorageDeleteOnClearTests (line 10) | [TestCategory("MySql"), TestCategory("Persistence")] method MySqlStorageDeleteOnClearTests (line 15) | public MySqlStorageDeleteOnClearTests(CommonFixture commonFixture) : b... method StorageDataSetPlain_IntegerKey_WriteClearRead (line 20) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetPlain_GuidKey_WriteClearRead (line 28) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetPlain_StringKey_WriteClearRead (line 36) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method DataSet2_Cyrillic_WriteClearRead (line 44) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 52) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 60) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 68) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 80) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 88) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_Json_WriteRead (line 96) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetPlain_StringKey_WriteClearRead (line 128) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/Relational/PostgreSqlStorageDeleteOnClearTests.cs class PostgreSqlStorageDeleteOnClearTests (line 10) | [TestCategory("PostgreSql"), TestCategory("Persistence")] method PostgreSqlStorageDeleteOnClearTests (line 15) | public PostgreSqlStorageDeleteOnClearTests(CommonFixture commonFixture... method StorageDataSetPlain_IntegerKey_WriteClearRead (line 20) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetPlain_GuidKey_WriteClearRead (line 28) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetPlain_StringKey_WriteClearRead (line 36) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method DataSet2_Cyrillic_WriteClearRead (line 44) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 52) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 60) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 68) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetPlain_GuidKey_WriteClearRead (line 70) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method PersistenceStorage_StorageDataSetPlain_StringKey_WriteClearRead (line 78) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method DataSet2_Cyrillic_WriteClearRead (line 86) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 94) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 102) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 110) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetPlain_GuidKey_WriteClearRead (line 28) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetPlain_StringKey_WriteClearRead (line 36) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method DataSet2_Cyrillic_WriteClearRead (line 44) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 52) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 60) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 68) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetPlain_GuidKey_WriteClearRead (line 72) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method PersistenceStorage_StorageDataSetPlain_StringKey_WriteClearRead (line 80) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method DataSet2_Cyrillic_WriteClearRead (line 88) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 96) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 104) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 112) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric CanConnectToStorage(StorageConnection ... FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/RelationalStoreTests.cs class StreamingTest (line 12) | public class StreamingTest class RelationalStoreTestsBase (line 22) | public abstract class RelationalStoreTestsBase method RelationalStoreTestsBase (line 31) | protected RelationalStoreTestsBase(string adoNetInvariantName) method InsertAndReadStreamsAndCheckMatch (line 36) | protected static Task[] InsertAndReadStreamsAndCheckMatch(Relati... method InsertIntoDatabaseUsingStream (line 58) | protected static async Task InsertIntoDatabaseUsingStream(RelationalSt... method ReadFromDatabaseUsingAsyncStream (line 86) | protected static async Task ReadFromDatabaseUsingAsyncS... method CancellationTokenTest (line 111) | protected static Task CancellationTokenTest(RelationalStorageForTestin... FILE: test/Extensions/Orleans.AdoNet.Tests/StorageTests/SqlServerRelationalStoreTests.cs class SqlServerRelationalStoreTests (line 10) | [TestCategory("Persistence"), TestCategory("SqlServer")] class Fixture (line 17) | public class Fixture method Fixture (line 19) | public Fixture() method SqlServerRelationalStoreTests (line 34) | public SqlServerRelationalStoreTests(Fixture fixture) : base(AdoNetInv... method Streaming_SqlServer_Test (line 39) | [SkippableFact, TestCategory("Functional")] method CancellationToken_SqlServer_Test (line 49) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetBatchContainerTests.cs class AdoNetBatchContainerTests (line 11) | [Collection(TestEnvironmentFixture.DefaultCollection)] method AdoNetBatchContainer_Constructs (line 15) | [Fact] method AdoNetBatchContainer_FromMessage_CreatesContainer (line 34) | [Fact] method AdoNetBatchContainer_ToMessagePayload_CreatesPayload (line 57) | [Fact] method AdoNetBatchContainer_GetEvents_ThrowsOnHalfBaked (line 78) | [Fact] method AdoNetBatchContainer_GetEvents_FiltersEvents (line 93) | [Fact] method AdoNetBatchContainer_ImportsRequestContext (line 115) | [Fact] method AdoNetBatchContainer_ToString_Renders (line 134) | [Fact] type TestModel (line 150) | [GenerateSerializer] type OtherModel (line 155) | [GenerateSerializer] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetClientStreamTests.cs class SqlServerAdoNetClientStreamTests (line 17) | public class SqlServerAdoNetClientStreamTests(ITestOutputHelper output) ... class MySqlAdoNetClientStreamTests (line 24) | public class MySqlAdoNetClientStreamTests : AdoNetClientStreamTests method MySqlAdoNetClientStreamTests (line 26) | public MySqlAdoNetClientStreamTests(ITestOutputHelper output) : base(A... class PostgreSqlAdoNetClientStreamTests (line 35) | public class PostgreSqlAdoNetClientStreamTests(ITestOutputHelper output)... class AdoNetClientStreamTests (line 42) | [TestCategory("AdoNet"), TestCategory("Streaming")] method AdoNetClientStreamTests (line 45) | protected AdoNetClientStreamTests(string invariant, ITestOutputHelper ... method InitializeAsync (line 61) | public override async Task InitializeAsync() method ConfigureTestCluster (line 74) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class TestClientBuilderConfigurator (line 80) | private class TestClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 82) | public void Configure(IConfiguration configuration, IClientBuilder c... class TestSiloBuilderConfigurator (line 94) | private class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 96) | public void Configure(ISiloBuilder siloBuilder) method AdoNetStreamProducerOnDroppedClientTest (line 109) | [SkippableFact, TestCategory("Functional")] method AdoNetStreamConsumerOnDroppedClientTest (line 112) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetQueueAdapterFactoryTests.cs class SqlServerAdoNetQueueAdapterFactoryTests (line 18) | public class SqlServerAdoNetQueueAdapterFactoryTests(TestEnvironmentFixt... class MySqlAdoNetQueueAdapterFactoryTests (line 25) | public class MySqlAdoNetQueueAdapterFactoryTests : AdoNetQueueAdapterFac... method MySqlAdoNetQueueAdapterFactoryTests (line 27) | public MySqlAdoNetQueueAdapterFactoryTests(TestEnvironmentFixture fixt... class PostgreSqlAdoNetQueueAdapterFactoryTests (line 36) | public class PostgreSqlAdoNetQueueAdapterFactoryTests(TestEnvironmentFix... class AdoNetQueueAdapterFactoryTests (line 43) | [Collection(TestEnvironmentFixture.DefaultCollection)] method InitializeAsync (line 53) | public async Task InitializeAsync() method AdoNetQueueAdapterFactory_CreatesAdapter (line 65) | [SkippableFact] method AdoNetQueueAdapterFactory_GetsDeliveryFailureHandler (line 100) | [SkippableFact] method AdoNetQueueAdapterFactory_GetsQueueAdapterCache (line 134) | [SkippableFact] method AdoNetQueueAdapterFactory_GetsStreamQueueMapper (line 166) | [SkippableFact] method AdoNetQueueAdapterFactory_ConstructsViaStaticFactory (line 198) | [SkippableFact] method DisposeAsync (line 212) | public Task DisposeAsync() => Task.CompletedTask; FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetQueueAdapterReceiverTests.cs class SqlServerAdoNetQueueAdapterReceiverTests (line 16) | public class SqlServerAdoNetQueueAdapterReceiverTests(TestEnvironmentFix... class MySqlAdoNetQueueAdapterReceiverTests (line 23) | public class MySqlAdoNetQueueAdapterReceiverTests : AdoNetQueueAdapterRe... method MySqlAdoNetQueueAdapterReceiverTests (line 25) | public MySqlAdoNetQueueAdapterReceiverTests(TestEnvironmentFixture fix... class PostgreSqlAdoNetQueueAdapterReceiverTests (line 34) | public class PostgreSqlAdoNetQueueAdapterReceiverTests(TestEnvironmentFi... class AdoNetQueueAdapterReceiverTests (line 41) | [Collection(TestEnvironmentFixture.DefaultCollection)] method InitializeAsync (line 52) | public async Task InitializeAsync() method AdoNetQueueAdapterReceiver_GetsMessages_ConfirmsMessages (line 64) | [SkippableFact] method AdoNetQueueAdapterReceiver_Shutdown_WaitsForOutstandingTask (line 142) | [SkippableFact] method DisposeAsync (line 178) | public Task DisposeAsync() => Task.CompletedTask; type TestModel (line 180) | [GenerateSerializer] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetQueueAdapterTests.cs class SqlServerAdoNetQueueAdapterTests (line 17) | public class SqlServerAdoNetQueueAdapterTests(TestEnvironmentFixture fix... class MySqlAdoNetQueueAdapterTests (line 24) | public class MySqlAdoNetQueueAdapterTests : AdoNetQueueAdapterTests method MySqlAdoNetQueueAdapterTests (line 26) | public MySqlAdoNetQueueAdapterTests(TestEnvironmentFixture fixture) : ... class PostgreSqlAdoNetQueueAdapterTests (line 35) | public class PostgreSqlAdoNetQueueAdapterTests(TestEnvironmentFixture fi... class AdoNetQueueAdapterTests (line 42) | [Collection(TestEnvironmentFixture.DefaultCollection)] method InitializeAsync (line 53) | public async Task InitializeAsync() method AdoNetQueueAdapter_Constructs (line 66) | [SkippableFact] method AdoNetQueueAdapter_EnqueuesMessages (line 98) | [SkippableFact] method AdoNetQueueAdapter_WiresUpReceiver (line 163) | [SkippableFact] method DisposeAsync (line 245) | public Task DisposeAsync() => Task.CompletedTask; type TestModel (line 247) | [GenerateSerializer] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetStreamFailureHandlerTests.cs class SqlServerAdoNetStreamFailureHandlerTests (line 17) | public class SqlServerAdoNetStreamFailureHandlerTests() : AdoNetStreamFa... class MySqlAdoNetStreamFailureHandlerTests (line 24) | public class MySqlAdoNetStreamFailureHandlerTests : AdoNetStreamFailureH... method MySqlAdoNetStreamFailureHandlerTests (line 26) | public MySqlAdoNetStreamFailureHandlerTests() : base(AdoNetInvariants.... class PostgreSqlAdoNetStreamFailureHandlerTests (line 35) | public class PostgreSqlAdoNetStreamFailureHandlerTests() : AdoNetStreamF... class AdoNetStreamFailureHandlerTests (line 42) | [TestCategory("AdoNet"), TestCategory("Streaming")] method InitializeAsync (line 51) | public async Task InitializeAsync() method AdoNetStreamFailureHandler_Constructs (line 64) | [SkippableFact] method AdoNetStreamFailureHandler_OnDeliveryFailure_MovesPoisonedMessageToDeadLetters (line 91) | [SkippableFact] method AdoNetStreamFailureHandler_OnDeliveryFailure_DoesNotMoveHealthyMessageToDeadLetters (line 167) | [SkippableFact] method DisposeAsync (line 213) | public Task DisposeAsync() => Task.CompletedTask; FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetStreamFilteringTests.cs class SqlServerAdoNetStreamFilteringTests (line 15) | public class SqlServerAdoNetStreamFilteringTests() : AdoNetStreamFilteri... class MySqlAdoNetStreamFilteringTests (line 22) | public class MySqlAdoNetStreamFilteringTests : AdoNetStreamFilteringTests method MySqlAdoNetStreamFilteringTests (line 24) | public MySqlAdoNetStreamFilteringTests() : base(new Fixture(AdoNetInva... class PostgreSqlAdoNetStreamFilteringTests (line 33) | public class PostgreSqlAdoNetStreamFilteringTests() : AdoNetStreamFilter... class AdoNetStreamFilteringTests (line 40) | [TestCategory("AdoNet"), TestCategory("Streaming")] method AdoNetStreamFilteringTests (line 48) | protected AdoNetStreamFilteringTests(Fixture fixture) : base(fixture) method InitializeAsync (line 53) | public Task InitializeAsync() => fixture.InitializeAsync(); method DisposeAsync (line 55) | public Task DisposeAsync() => fixture.DisposeAsync(); class Fixture (line 57) | public class Fixture : BaseTestClusterFixture method Fixture (line 61) | public Fixture(string invariant) method InitializeAsync (line 66) | public override async Task InitializeAsync() method ConfigureTestCluster (line 76) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestSiloConfigurator (line 82) | public class TestSiloConfigurator : ISiloConfigurator method Configure (line 84) | public void Configure(ISiloBuilder siloBuilder) class TestClientConfigurator (line 98) | public class TestClientConfigurator : IClientBuilderConfigurator method Configure (line 100) | public void Configure(IConfiguration configuration, IClientBuilder... method IgnoreBadFilter (line 117) | [SkippableFact, TestCategory("BVT"), TestCategory("Filters")] method OnlyEvenItems (line 120) | [SkippableFact, TestCategory("BVT"), TestCategory("Filters")] method MultipleSubscriptionsDifferentFilterData (line 123) | [SkippableFact, TestCategory("BVT"), TestCategory("Filters")] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetStreamingTests.cs class SqlServerAdoNetStreamingTests (line 16) | public class SqlServerAdoNetStreamingTests() : AdoNetStreamingTests(AdoN... class MySqlAdoNetStreamingTests (line 23) | public class MySqlAdoNetStreamingTests : AdoNetStreamingTests method MySqlAdoNetStreamingTests (line 25) | public MySqlAdoNetStreamingTests() : base(AdoNetInvariants.InvariantNa... class PostgreSqlAdoNetStreamingTests (line 34) | public class PostgreSqlAdoNetStreamingTests() : AdoNetStreamingTests(Ado... class AdoNetStreamingTests (line 41) | [TestCategory("AdoNet"), TestCategory("Streaming")] method AdoNetStreamingTests (line 49) | protected AdoNetStreamingTests(string invariant) method InitializeAsync (line 58) | public override async Task InitializeAsync() method ConfigureTestCluster (line 72) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class TestSiloBuilderConfigurator (line 78) | private class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 80) | public void Configure(ISiloBuilder siloBuilder) class TestClientBuilderConfigurator (line 93) | private class TestClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 95) | public void Configure(IConfiguration configuration, IClientBuilder c... method AdoNet_01_OneProducerGrainOneConsumerGrain (line 107) | [SkippableFact, TestCategory("Functional")] method AdoNet_02_OneProducerGrainOneConsumerClient (line 110) | [SkippableFact, TestCategory("Functional")] method AdoNet_03_OneProducerClientOneConsumerGrain (line 113) | [SkippableFact, TestCategory("Functional")] method AdoNet_04_OneProducerClientOneConsumerClient (line 116) | [SkippableFact, TestCategory("Functional")] method AdoNet_05_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 121) | [SkippableFact, TestCategory("Functional")] method AdoNet_06_ManyDifferent_ManyProducerGrainManyConsumerClients (line 124) | [SkippableFact, TestCategory("Functional")] method AdoNet_07_ManyDifferent_ManyProducerClientsManyConsumerGrains (line 127) | [SkippableFact, TestCategory("Functional")] method AdoNet_08_ManyDifferent_ManyProducerClientsManyConsumerClients (line 130) | [SkippableFact, TestCategory("Functional")] method AdoNet_09_ManySame_ManyProducerGrainsManyConsumerGrains (line 135) | [SkippableFact, TestCategory("Functional")] method AdoNet_10_ManySame_ManyConsumerGrainsManyProducerGrains (line 138) | [SkippableFact, TestCategory("Functional")] method AdoNet_11_ManySame_ManyProducerGrainsManyConsumerClients (line 141) | [SkippableFact, TestCategory("Functional")] method AdoNet_12_ManySame_ManyProducerClientsManyConsumerGrains (line 144) | [SkippableFact, TestCategory("Functional")] method AdoNet_13_SameGrain_ConsumerFirstProducerLater (line 149) | [SkippableFact, TestCategory("Functional")] method AdoNet_14_SameGrain_ProducerFirstConsumerLater (line 152) | [SkippableFact, TestCategory("Functional")] method AdoNet_15_ConsumeAtProducersRequest (line 157) | [SkippableFact, TestCategory("Functional")] method AdoNet_16_MultipleStreams_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 160) | [SkippableFact, TestCategory("Functional")] method AdoNet_17_MultipleStreams_1J_ManyProducerGrainsManyConsumerGrains (line 168) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetStreamsBatchingTests.cs class SqlServerAdoNetStreamsBatchingTests (line 20) | public class SqlServerAdoNetStreamsBatchingTests(ITestOutputHelper outpu... class MySqlAdoNetStreamsBatchingTests (line 27) | public class MySqlAdoNetStreamsBatchingTests : AdoNetStreamsBatchingTests method MySqlAdoNetStreamsBatchingTests (line 29) | public MySqlAdoNetStreamsBatchingTests(ITestOutputHelper output) : bas... class PostgreSqlAdoNetStreamsBatchingTests (line 38) | public class PostgreSqlAdoNetStreamsBatchingTests(ITestOutputHelper outp... class AdoNetStreamsBatchingTests (line 45) | [TestCategory("AdoNet"), TestCategory("Streaming")] method AdoNetStreamsBatchingTests (line 51) | protected AdoNetStreamsBatchingTests(Fixture fixture, ITestOutputHelpe... method InitializeAsync (line 56) | public Task InitializeAsync() => fixture.InitializeAsync(); method DisposeAsync (line 58) | public Task DisposeAsync() => fixture.DisposeAsync(); class Fixture (line 60) | public class Fixture : BaseTestClusterFixture method Fixture (line 64) | public Fixture(string invariant) method InitializeAsync (line 69) | public override async Task InitializeAsync() method ConfigureTestCluster (line 79) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestSiloBuilderConfigurator (line 85) | private class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 87) | public void Configure(ISiloBuilder siloBuilder) class TestClientBuilderConfigurator (line 103) | private class TestClientBuilderConfigurator : IClientBuilderConfigur... method Configure (line 105) | public void Configure(IConfiguration configuration, IClientBuilder... FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetSubscriptionMultiplicityTests.cs class SqlServerAdoNetSubscriptionMultiplicityTests (line 15) | public class SqlServerAdoNetSubscriptionMultiplicityTests() : AdoNetSubs... class MySqlAdoNetSubscriptionMultiplicityTests (line 22) | public class MySqlAdoNetSubscriptionMultiplicityTests : AdoNetSubscripti... method MySqlAdoNetSubscriptionMultiplicityTests (line 24) | public MySqlAdoNetSubscriptionMultiplicityTests() : base(AdoNetInvaria... class PostgreSqlAdoNetSubscriptionMultiplicityTests (line 33) | public class PostgreSqlAdoNetSubscriptionMultiplicityTests() : AdoNetSub... class AdoNetSubscriptionMultiplicityTests (line 40) | [TestCategory("AdoNet"), TestCategory("Streaming")] method AdoNetSubscriptionMultiplicityTests (line 52) | protected AdoNetSubscriptionMultiplicityTests(string invariant) method InitializeAsync (line 58) | public override async Task InitializeAsync() method ConfigureTestCluster (line 72) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class TestClientBuilderConfigurator (line 78) | private class TestClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 80) | public void Configure(IConfiguration configuration, IClientBuilder c... class TestSiloBuilderConfigurator (line 91) | private class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 93) | public void Configure(ISiloBuilder siloBuilder) method AdoNetMultipleParallelSubscriptionTest (line 105) | [SkippableFact, TestCategory("Functional")] method AdoNetMultipleLinearSubscriptionTest (line 108) | [SkippableFact, TestCategory("Functional")] method AdoNetMultipleSubscriptionTest_AddRemove (line 111) | [SkippableFact, TestCategory("Functional")] method AdoNetResubscriptionTest (line 114) | [SkippableFact, TestCategory("Functional")] method AdoNetResubscriptionAfterDeactivationTest (line 117) | [SkippableFact, TestCategory("Functional")] method AdoNetActiveSubscriptionTest (line 120) | [SkippableFact, TestCategory("Functional")] method AdoNetTwoIntermittentStreamTest (line 123) | [SkippableFact, TestCategory("Functional")] method AdoNetSubscribeFromClientTest (line 126) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/AdoNetSubscriptionObserverWithImplicitSubscribingTests.cs class SqlServerAdoNetSubscriptionObserverWithImplicitSubscribingTests (line 18) | public class SqlServerAdoNetSubscriptionObserverWithImplicitSubscribingT... class MySqlAdoNetSubscriptionObserverWithImplicitSubscribingTests (line 25) | public class MySqlAdoNetSubscriptionObserverWithImplicitSubscribingTests... method MySqlAdoNetSubscriptionObserverWithImplicitSubscribingTests (line 27) | public MySqlAdoNetSubscriptionObserverWithImplicitSubscribingTests() :... class PostgreSqlAdoNetSubscriptionObserverWithImplicitSubscribingTests (line 36) | public class PostgreSqlAdoNetSubscriptionObserverWithImplicitSubscribing... class AdoNetSubscriptionObserverWithImplicitSubscribingTests (line 43) | [TestCategory("AdoNet"), TestCategory("Streaming"), TestCategory("Functi... method InitializeAsync (line 50) | public async Task InitializeAsync() method DisposeAsync (line 57) | public Task DisposeAsync() => _fixture.DisposeAsync(); class Fixture (line 59) | public class Fixture : BaseTestClusterFixture method Fixture (line 63) | public Fixture(string invariant) method InitializeAsync (line 68) | public override async Task InitializeAsync() method ConfigureTestCluster (line 78) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestClusterConfigurator (line 84) | private class TestClusterConfigurator : ISiloConfigurator, IClientBu... method Configure (line 86) | public void Configure(ISiloBuilder siloBuilder) method Configure (line 111) | public void Configure(IConfiguration configuration, IClientBuilder... FILE: test/Extensions/Orleans.AdoNet.Tests/Streaming/RelationalOrleansQueriesTests.cs class SqlServerRelationalOrleansQueriesTests (line 15) | public class SqlServerRelationalOrleansQueriesTests() : RelationalOrlean... class MySqlRelationalOrleansQueriesTests (line 22) | public class MySqlRelationalOrleansQueriesTests : RelationalOrleansQueri... method MySqlRelationalOrleansQueriesTests (line 24) | public MySqlRelationalOrleansQueriesTests() : base(AdoNetInvariants.In... class PostgreSqlRelationalOrleansQueriesTests (line 33) | public class PostgreSqlRelationalOrleansQueriesTests : RelationalOrleans... method PostgreSqlRelationalOrleansQueriesTests (line 35) | public PostgreSqlRelationalOrleansQueriesTests() : base(AdoNetInvarian... class RelationalOrleansQueriesTests (line 44) | [TestCategory("AdoNet"), TestCategory("Streaming")] method InitializeAsync (line 52) | public async Task InitializeAsync() method RandomServiceId (line 62) | private static string RandomServiceId(int max = 10) => $"ServiceId{Ran... method RandomProviderId (line 64) | private static string RandomProviderId(int max = 10) => $"ProviderId{R... method RandomQueueId (line 66) | private static string RandomQueueId(int max = 10) => $"QueueId{Random.... method RandomExpiryTimeout (line 68) | private static int RandomExpiryTimeout(int max = 100) => Random.Shared... method RandomPayload (line 70) | private static byte[] RandomPayload(int size = 1_000_000) method DisposeAsync (line 77) | public Task DisposeAsync() => Task.CompletedTask; method RelationalOrleansQueries_QueuesMessage (line 82) | [SkippableFact] method RelationalOrleansQueries_QueuesManyMessagesInParallel (line 124) | [SkippableFact] method RelationalOrleansQueries_QueuesManyMessagesInParallelOnManyQueues (line 200) | [SkippableFact] method RelationalOrleansQueries_DequeuesSingleMessage (line 278) | [SkippableFact] method RelationalOrleansQueries_DequeuesMessageBatches (line 347) | [SkippableFact] method RelationalOrleansQueries_DequeuesSingleMessageAgainAfterVisibilityTimeout (line 431) | [SkippableFact] method RelationalOrleansQueries_DoesNotDequeueSingleMessageBeforeVisibilityTimeout (line 503) | [SkippableFact] method RelationalOrleansQueries_DoesNotDequeueSingleMessageAfterExpiry (line 552) | [SkippableFact] method RelationalOrleansQueries_ConfirmsMessages (line 600) | [SkippableFact] method RelationalOrleansQueries_DoesNotConfirmMessagesWithWrongReceipt (line 648) | [SkippableFact] method RelationalOrleansQueries_ConfirmsSomeMessagesAndNotOthers (line 690) | [SkippableFact] method RelationalOrleansQueries_ChaosTest (line 751) | [SkippableFact] method RelationalOrleansQueries_MovesPoisonedMessageToDeadLetters (line 894) | [SkippableFact] method RelationalOrleansQueries_DoesNotMoveHealthyMessageToDeadLetters (line 947) | [SkippableFact] method Randomize (line 983) | private static List Randomize(IEnumerable source) FILE: test/Extensions/Orleans.Azure.Tests/AzureGrainDirectoryTests.cs class AzureTableGrainDirectoryTests (line 15) | [TestCategory("AzureStorage"), TestCategory("Directory")] method CreateGrainDirectory (line 18) | protected override AzureTableGrainDirectory CreateGrainDirectory() method UnregisterMany (line 43) | [SkippableFact] method ConversionTest (line 97) | [Fact] FILE: test/Extensions/Orleans.Azure.Tests/AzureLivenessTests.cs class LivenessTests_AzureTable (line 12) | [TestCategory("Membership"), TestCategory("AzureStorage")] method LivenessTests_AzureTable (line 15) | public LivenessTests_AzureTable(ITestOutputHelper output) : base(output) method ConfigureTestCluster (line 19) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class Configurator (line 27) | public class Configurator : ISiloConfigurator, IClientBuilderConfigurator method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 34) | public void Configure(IConfiguration configuration, IClientBuilder c... method Liveness_Azure_1 (line 40) | [SkippableFact, TestCategory("Functional")] method Liveness_Azure_2_Restart_Primary (line 46) | [SkippableFact, TestCategory("Functional")] method Liveness_Azure_3_Restart_GW (line 52) | [SkippableFact, TestCategory("Functional")] method Liveness_Azure_4_Restart_Silo_1 (line 58) | [SkippableFact, TestCategory("Functional")] method Liveness_Azure_5_Kill_Silo_1_With_Timers (line 64) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/AzureMembershipTableTests.cs class AzureMembershipTableTests (line 27) | [TestCategory("Membership"), TestCategory("AzureStorage")] method AzureMembershipTableTests (line 30) | public AzureMembershipTableTests(ConnectionStringFixture fixture, Test... method CreateFilters (line 35) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 49) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 62) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetConnectionString (line 69) | protected override Task GetConnectionString() method MembershipTable_Azure_Init (line 75) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_GetGateways (line 80) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_ReadAll_EmptyTable (line 86) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_InsertRow (line 97) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_ReadRow_Insert_Read (line 103) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_ReadAll_Insert_ReadAll (line 109) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_UpdateRow (line 115) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_UpdateRowInParallel (line 126) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Azure_UpdateIAmAlive (line 137) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/AzureQueueDataManagerTests.cs class AzureQueueDataManagerTests (line 14) | [TestCategory("AzureStorage"), TestCategory("Storage"), TestCategory("Az... method AzureQueueDataManagerTests (line 22) | public AzureQueueDataManagerTests() method InitializeAsync (line 31) | public Task InitializeAsync() => Task.CompletedTask; method DisposeAsync (line 33) | public async Task DisposeAsync() method GetTableManager (line 39) | private async Task GetTableManager(string qName... method AQ_Standalone_1 (line 46) | [SkippableFact, TestCategory("Functional")] method AQ_Standalone_2 (line 80) | [SkippableFact, TestCategory("Functional")] method AQ_Standalone_3_Init_MultipleThreads (line 111) | [SkippableFact, TestCategory("Functional")] method AQ_Standalone_4 (line 130) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/9552")... method PrintQueueMessage (line 158) | private static string PrintQueueMessage(QueueMessage message) method PrintQueueMessage (line 168) | private static string PrintQueueMessage(PeekedMessage message) FILE: test/Extensions/Orleans.Azure.Tests/AzureRemindersTableTests.cs class AzureRemindersTableTests (line 15) | [TestCategory("Reminders"), TestCategory("AzureStorage")] method AzureRemindersTableTests (line 18) | public AzureRemindersTableTests(ConnectionStringFixture fixture, TestE... method CreateFilters (line 23) | private static LoggerFilterOptions CreateFilters() method DisposeAsync (line 32) | public override Task DisposeAsync() method CreateRemindersTable (line 38) | protected override IReminderTable CreateRemindersTable() method GetConnectionString (line 46) | protected override Task GetConnectionString() method RemindersTable_Azure_Init (line 52) | [SkippableFact] method RemindersTable_Azure_RemindersRange (line 57) | [SkippableFact, TestCategory("Functional")] method RemindersTable_Azure_RemindersParallelUpsert (line 63) | [SkippableFact, TestCategory("Functional")] method RemindersTable_Azure_ReminderSimple (line 69) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/AzureStorageBasicTests.cs class AzureStorageBasicTests (line 6) | public abstract class AzureStorageBasicTests method AzureStorageBasicTests (line 8) | public AzureStorageBasicTests() FILE: test/Extensions/Orleans.Azure.Tests/AzureStorageOperationOptionsExtensions.cs class AzureStorageOperationOptionsExtensions (line 9) | public static class AzureStorageOperationOptionsExtensions method ConfigureTestDefaults (line 13) | public static Orleans.Clustering.AzureStorage.AzureStorageOperationOpt... method GetTableServiceClient (line 20) | public static TableServiceClient GetTableServiceClient() method ConfigureTestDefaults (line 27) | public static Orleans.GrainDirectory.AzureStorage.AzureStorageOperatio... method ConfigureTestDefaults (line 34) | public static Orleans.Persistence.AzureStorage.AzureStorageOperationOp... method ConfigureTestDefaults (line 41) | public static Orleans.Reminders.AzureStorage.AzureStorageOperationOpti... method ConfigureTestDefaults (line 48) | public static Orleans.Configuration.AzureBlobStorageOptions ConfigureT... method ConfigureTestDefaults (line 62) | public static AzureStorageJobShardOptions ConfigureTestDefaults(this A... method ConfigureTestDefaults (line 76) | public static Orleans.Configuration.AzureQueueOptions ConfigureTestDef... method ConfigureTestDefaults (line 90) | public static Orleans.Configuration.AzureBlobLeaseProviderOptions Conf... FILE: test/Extensions/Orleans.Azure.Tests/AzureTableDataManagerStressTests.cs class AzureTableDataManagerStressTests (line 14) | [TestCategory("AzureStorage"), TestCategory("Storage"), TestCategory("St... method AzureTableDataManagerStressTests (line 21) | public AzureTableDataManagerStressTests(ITestOutputHelper output) method AzureTableDataManagerStressTests_WriteAlot_SinglePartition (line 31) | [SkippableFact] method AzureTableDataManagerStressTests_WriteAlot_MultiPartition (line 43) | [SkippableFact] method AzureTableDataManagerStressTests_ReadAll_SinglePartition (line 55) | [SkippableFact] method AzureTableDataManagerStressTests_ReadAllTableEntities (line 76) | [SkippableFact] method WriteAlot_Async (line 102) | private async Task WriteAlot_Async(string testName, int numPartitions,... FILE: test/Extensions/Orleans.Azure.Tests/AzureTableDataManagerTests.cs class AzureTableDataManagerTests (line 13) | [TestCategory("AzureStorage"), TestCategory("Storage")] method GenerateNewData (line 19) | private UnitTestAzureTableData GenerateNewData() method AzureTableDataManagerTests (line 24) | public AzureTableDataManagerTests() method AzureTableDataManager_CreateTableEntryAsync (line 31) | [SkippableFact, TestCategory("Functional")] method AzureTableDataManager_UpsertTableEntryAsync (line 56) | [SkippableFact, TestCategory("Functional")] method AzureTableDataManager_UpdateTableEntryAsync (line 71) | [SkippableFact, TestCategory("Functional")] method AzureTableDataManager_DeleteTableAsync (line 123) | [SkippableFact, TestCategory("Functional")] method AzureTableDataManager_MergeTableAsync (line 160) | [SkippableFact, TestCategory("Functional")] method AzureTableDataManager_ReadSingleTableEntryAsync (line 204) | [SkippableFact, TestCategory("Functional")] method AzureTableDataManager_InsertTwoTableEntriesConditionallyAsync (line 212) | [SkippableFact, TestCategory("Functional")] method AzureTableDataManager_UpdateTwoTableEntriesConditionallyAsync (line 266) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/AzureTableErrorCodeTests.cs class AzureTableErrorCodeTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Storage")] method AzureTableErrorCode_IsRetriableHttpError (line 14) | [Fact, TestCategory("Functional")] method AzureTableErrorCode_IsContentionError (line 29) | [Fact, TestCategory("Functional")] method AzureTableErrorCode_BadTableName (line 46) | [Fact, TestCategory("Functional")] method AzureStorageUtils_ContainerName (line 55) | [Fact, TestCategory("Functional")] method AzureStorageUtils_BlobName (line 69) | [Fact, TestCategory("Functional")] method AzureStorageUtils_TablePropertyShouldBeSanitized (line 80) | [Fact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 12) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 19) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Extensions/Orleans.Azure.Tests/DurableJobs/AzureStorageBlobDurableJobsTests.cs class AzureStorageBlobDurableJobsTests (line 14) | public class AzureStorageBlobDurableJobsTests : TestClusterPerTest method CheckPreconditionsOrThrow (line 18) | protected override void CheckPreconditionsOrThrow() => TestUtils.Check... method InitializeAsync (line 20) | public override async Task InitializeAsync() method ConfigureTestCluster (line 26) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloHostConfigurator (line 31) | public class SiloHostConfigurator : ISiloConfigurator method Configure (line 33) | public void Configure(ISiloBuilder hostBuilder) method DurableJobGrain (line 41) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method JobExecutionOrder (line 48) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method PastDueTime (line 55) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method JobWithMetadata (line 62) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method MultipleGrains (line 69) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method DuplicateJobNames (line 76) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method CancelNonExistentJob (line 83) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method CancelAlreadyExecutedJob (line 90) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method ConcurrentScheduling (line 97) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method JobPropertiesVerification (line 104) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method DequeueCount (line 111) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method ScheduleJobOnAnotherGrain (line 118) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] method JobRetry (line 125) | [SkippableFact, TestCategory("Azure"), TestCategory("DurableJobs")] FILE: test/Extensions/Orleans.Azure.Tests/DurableJobs/AzureStorageJobShardBatchingTests.cs class AzureStorageJobShardBatchingTests (line 23) | [TestCategory("DurableJobs")] method AzureStorageJobShardBatchingTests (line 37) | public AzureStorageJobShardBatchingTests() method DisposeAsync (line 46) | public async ValueTask DisposeAsync() class TestLocalSiloDetails (line 54) | public class TestLocalSiloDetails : ILocalSiloDetails method TestLocalSiloDetails (line 56) | public TestLocalSiloDetails(SiloAddress siloAddress) method CreateManager (line 72) | internal AzureStorageJobShardManager CreateManager(SiloAddress siloAdd... method SetSiloStatus (line 78) | internal void SetSiloStatus(SiloAddress siloAddress, SiloStatus status) method AzureStorageJobShard_MultipleOperationsBatched (line 83) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShard_PartialBatchFlushesOnTimeout (line 136) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShard_MaxBatchSizeEnforced (line 185) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShard_MetadataOperationsBreakBatches (line 239) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] class InMemoryClusterMembershipService (line 307) | public class InMemoryClusterMembershipService : IClusterMembershipService method SetSiloStatus (line 317) | public void SetSiloStatus(SiloAddress address, SiloStatus status) method Refresh (line 323) | public ValueTask Refresh(MembershipVersion minimumVersion = default,... method TryKill (line 326) | public Task TryKill(SiloAddress siloAddress) => throw new NotI... FILE: test/Extensions/Orleans.Azure.Tests/DurableJobs/AzureStorageJobShardManagerTestFixture.cs class AzureStorageJobShardManagerTestFixture (line 19) | internal sealed class AzureStorageJobShardManagerTestFixture : IJobShard... method AzureStorageJobShardManagerTestFixture (line 24) | public AzureStorageJobShardManagerTestFixture() method CreateManager (line 32) | public JobShardManager CreateManager(ILocalSiloDetails localSiloDetail... method DisposeAsync (line 42) | public async ValueTask DisposeAsync() FILE: test/Extensions/Orleans.Azure.Tests/DurableJobs/AzureStorageJobShardManagerTests.cs class AzureStorageJobShardManagerTests (line 28) | [TestCategory("DurableJobs")] method AzureStorageJobShardManagerTests (line 36) | public AzureStorageJobShardManagerTests() method DisposeAsync (line 47) | public async ValueTask DisposeAsync() method AzureStorageJobShardManager_Creation_Assignation (line 64) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_ReadFrozenShard (line 75) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_LiveShard (line 86) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_JobMetadata (line 97) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_ConcurrentShardAssignment_OwnershipConflicts (line 108) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_ShardMetadataMerge (line 119) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_StopProcessingShard (line 132) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_RetryJobLater (line 143) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_JobCancellation (line 154) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_ShardRegistrationRetry_IdCollisions (line 165) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] method AzureStorageJobShardManager_UnregisterShard_WithJobsRemaining (line 176) | [SkippableFact, TestCategory("Azure"), TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/DurableJobs/NetstringJsonSerializerTests.cs class NetstringJsonSerializerTests (line 16) | [TestCategory("DurableJobs"), TestCategory("BVT")] method EncodeToBytes (line 19) | private static byte[] EncodeToBytes(JobOperation operation) method Encode_RemoveOperation_ProducesCorrectFormat (line 25) | [Fact] method Encode_AddOperation_ProducesCorrectFormat (line 38) | [Fact] method Encode_RetryOperation_ProducesCorrectFormat (line 53) | [Fact] method Encode_AddOperationWithMetadata_ProducesCorrectFormat (line 67) | [Fact] method Encode_VerifiesNetstringFormat (line 83) | [Fact] method DecodeAsync_RemoveOperation_DecodesCorrectly (line 106) | [Fact] method DecodeAsync_AddOperation_DecodesCorrectly (line 124) | [Fact] method DecodeAsync_MultipleOperations_DecodesCorrectly (line 147) | [Fact] method DecodeAsync_AddOperationWithMetadata_DecodesCorrectly (line 177) | [Fact] method DecodeAsync_EmptyStream_ReturnsEmpty (line 199) | [Fact] method DecodeAsync_InvalidLength_ThrowsInvalidDataException (line 213) | [Fact] method DecodeAsync_ExcessiveLength_ThrowsInvalidDataException (line 231) | [Fact] method DecodeAsync_MissingTrailingNewline_ThrowsInvalidDataException (line 249) | [Fact] method DecodeAsync_IncompleteData_ThrowsEndOfStreamException (line 269) | [Fact] method DecodeAsync_WrongTrailingCharacter_ThrowsInvalidDataException (line 286) | [Fact] method DecodeAsync_InvalidJson_ThrowsJsonException (line 306) | [Fact] method EncodeAndDecode_RoundTrip_PreservesData (line 325) | [Fact] method EncodeAndDecode_MultipleOperations_RoundTrip (line 367) | [Fact] method DecodeAsync_StreamPosition_IsPreserved (line 404) | [Fact] method EncodeAndDecode_LargeMetadata_HandlesCorrectly (line 419) | [Fact] FILE: test/Extensions/Orleans.Azure.Tests/GenericGrainsInAzureStorageTests.cs class GenericGrainsInAzureTableStorageTests (line 13) | [TestCategory("AzureStorage"), TestCategory("Generics")] class Fixture (line 18) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 20) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method CheckPreconditionsOrThrow (line 25) | protected override void CheckPreconditionsOrThrow() class SiloBuilderConfigurator (line 31) | private class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 33) | public void Configure(ISiloBuilder hostBuilder) method GenericGrainsInAzureTableStorageTests (line 44) | public GenericGrainsInAzureTableStorageTests(Fixture fixture) method Generic_OnAzureTableStorage_LongNamedGrain_EchoValue (line 50) | [SkippableFact, TestCategory("Functional")] method Generic_OnAzureTableStorage_ShortNamedGrain_EchoValue (line 59) | [SkippableFact, TestCategory("Functional")] class GenericGrainsInAzureBlobStorageTests (line 72) | [TestCategory("AzureStorage"), TestCategory("Generics")] class Fixture (line 77) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 79) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class StorageSiloBuilderConfigurator (line 84) | private class StorageSiloBuilderConfigurator : ISiloConfigurator method Configure (line 86) | public void Configure(ISiloBuilder hostBuilder) method CheckPreconditionsOrThrow (line 95) | protected override void CheckPreconditionsOrThrow() method GenericGrainsInAzureBlobStorageTests (line 102) | public GenericGrainsInAzureBlobStorageTests(Fixture fixture) method Generic_OnAzureBlobStorage_LongNamedGrain_EchoValue (line 108) | [SkippableFact, TestCategory("Functional")] method Generic_OnAzureBlobStorage_ShortNamedGrain_EchoValue (line 117) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/GrainDirectory/AzureMultipleGrainDirectoriesTests.cs class AzureMultipleGrainDirectoriesTests (line 11) | [TestCategory("AzureStorage")] class SiloConfigurator (line 14) | public class SiloConfigurator : ISiloConfigurator method Configure (line 16) | public void Configure(ISiloBuilder siloBuilder) method CheckPreconditionsOrThrow (line 24) | protected override void CheckPreconditionsOrThrow() => TestUtils.Check... method ConfigureTestCluster (line 26) | protected override void ConfigureTestCluster(TestClusterBuilder builder) FILE: test/Extensions/Orleans.Azure.Tests/Lease/AzureBlobLeaseProviderTests.cs class AzureBlobLeaseProviderTests (line 9) | [TestCategory("Functional"), TestCategory("AzureStorage"), TestCategory(... method AzureBlobLeaseProviderTests (line 12) | public AzureBlobLeaseProviderTests(ITestOutputHelper output) method CreateLeaseProvider (line 17) | private static ILeaseProvider CreateLeaseProvider() FILE: test/Extensions/Orleans.Azure.Tests/Lease/LeaseBasedQueueBalancerTests.cs class LeaseBasedQueueBalancerTests (line 16) | [TestCategory("Functional"), TestCategory("AzureStorage"), TestCategory(... method ConfigureTestCluster (line 26) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 33) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 35) | public void Configure(ISiloBuilder hostBuilder) method LeaseBalancedQueueBalancer_SupportAutoScaleScenario (line 59) | [SkippableFact] method LeaseBalancedQueueBalancer_SupportUnexpectedNodeFailureScenerio (line 76) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/9559")] method AgentManagerOwnCorrectAmountOfAgents (line 93) | private static async Task AgentManagerOwnCorrectAmountOfAgents(i... FILE: test/Extensions/Orleans.Azure.Tests/Persistence/PersistenceGrainTests_AzureBlobStore.cs class PersistenceGrainTests_AzureBlobStore (line 13) | [TestCategory("Persistence"), TestCategory("AzureStorage")] class Fixture (line 16) | public class Fixture : BaseAzureTestClusterFixture class StorageSiloBuilderConfigurator (line 18) | private class StorageSiloBuilderConfigurator : ISiloConfigurator method Configure (line 20) | public void Configure(ISiloBuilder hostBuilder) method ConfigureTestCluster (line 47) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method PersistenceGrainTests_AzureBlobStore (line 57) | public PersistenceGrainTests_AzureBlobStore(ITestOutputHelper output, ... method Persistence_Silo_StorageProvider_AzureBlobStore (line 62) | [SkippableTheory, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/Persistence/PersistenceGrainTests_AzureBlobStore_Json.cs class PersistenceGrainTests_AzureBlobStore_Json (line 11) | [TestCategory("Persistence"), TestCategory("AzureStorage")] class Fixture (line 14) | public class Fixture : BaseAzureTestClusterFixture class StorageSiloBuilderConfigurator (line 16) | private class StorageSiloBuilderConfigurator : ISiloConfigurator method Configure (line 18) | public void Configure(ISiloBuilder hostBuilder) method ConfigureTestCluster (line 30) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method PersistenceGrainTests_AzureBlobStore_Json (line 40) | public PersistenceGrainTests_AzureBlobStore_Json(ITestOutputHelper out... FILE: test/Extensions/Orleans.Azure.Tests/Persistence/PersistenceGrainTests_AzureStore.cs class Base_PersistenceGrainTests_AzureStore (line 12) | public abstract class Base_PersistenceGrainTests_AzureStore : GrainPersi... class SiloBuilderConfigurator (line 14) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 16) | public void Configure(ISiloBuilder hostBuilder) class ClientBuilderConfigurator (line 25) | public class ClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 27) | public void Configure(IConfiguration configuration, IClientBuilder c... method Base_PersistenceGrainTests_AzureStore (line 33) | protected Base_PersistenceGrainTests_AzureStore(ITestOutputHelper outp... FILE: test/Extensions/Orleans.Azure.Tests/Persistence/PersistenceGrainTests_AzureTableGrainStorage.cs class PersistenceGrainTests_AzureTableGrainStorage (line 13) | [TestCategory("Persistence"), TestCategory("AzureStorage")] class Fixture (line 16) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 18) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 27) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) method PersistenceGrainTests_AzureTableGrainStorage (line 53) | public PersistenceGrainTests_AzureTableGrainStorage(ITestOutputHelper ... class PersistenceGrainTests_AzureTableGrainStorage_DeleteStateOnClear (line 60) | [TestCategory("Persistence"), TestCategory("AzureStorage")] class Fixture (line 63) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 65) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 74) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 76) | public void Configure(ISiloBuilder hostBuilder) method PersistenceGrainTests_AzureTableGrainStorage_DeleteStateOnClear (line 101) | public PersistenceGrainTests_AzureTableGrainStorage_DeleteStateOnClear... FILE: test/Extensions/Orleans.Azure.Tests/Persistence/PersistenceProviderTests.cs class PersistenceProviderTests_Local (line 27) | [Collection(TestEnvironmentFixture.DefaultCollection)] method PersistenceProviderTests_Local (line 36) | public PersistenceProviderTests_Local(ITestOutputHelper output, TestEn... method PersistenceProvider_Mock_WriteRead (line 47) | [Fact, TestCategory("Functional")] method PersistenceProvider_FileStore_WriteRead (line 57) | [Fact, TestCategory("Functional")] method PersistenceProvider_Azure_Read (line 66) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")] method PersistenceProvider_Azure_WriteRead (line 76) | [SkippableTheory, TestCategory("Functional"), TestCategory("AzureStora... method PersistenceProvider_Azure_WriteClearRead (line 96) | [SkippableTheory, TestCategory("Functional"), TestCategory("AzureStora... method PersistenceProvider_Azure_ChangeReadFormat (line 117) | [SkippableTheory, TestCategory("Functional"), TestCategory("AzureStora... method PersistenceProvider_Azure_ChangeWriteFormat (line 144) | [SkippableTheory, TestCategory("Functional"), TestCategory("AzureStora... method PersistenceProvider_Azure_ChangeStorageDataFormat_WhenJsonSerializerIsUsed (line 174) | [SkippableTheory, TestCategory("Functional"), TestCategory("AzureStora... method AzureTableStorage_ConvertToFromStorageFormat (line 208) | [SkippableTheory, TestCategory("Functional"), TestCategory("AzureStora... method AzureTableStorage_ConvertJsonToFromStorageFormatWithCustomJsonProperties (line 237) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")] method PersistenceProvider_Memory_FixedLatency_WriteRead (line 255) | [Fact, TestCategory("Functional"), TestCategory("MemoryStore")] method LoadClassByName (line 289) | [Fact, TestCategory("Functional")] method InitAzureTableGrainStorage (line 298) | private async Task InitAzureTableGrainStorage(... method Test_PersistenceProvider_Read (line 332) | private async Task Test_PersistenceProvider_Read(string grainTypeName,... method Test_PersistenceProvider_WriteRead (line 357) | private async Task> Test_PersistencePr... method Test_PersistenceProvider_WriteClearRead (line 389) | private async Task> Test_PersistencePr... method EnsureEnvironmentSupportsState (line 424) | private static void EnsureEnvironmentSupportsState(GrainState await StandaloneSiloHo... FILE: test/Extensions/Orleans.Azure.Tests/Reminder/ReminderTests_AzureTable.cs class ReminderTests_AzureTable (line 17) | [TestCategory("Reminders"), TestCategory("AzureStorage")] class Fixture (line 20) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 28) | public class SiloConfigurator : ISiloConfigurator method Configure (line 30) | public void Configure(ISiloBuilder hostBuilder) method ReminderTests_AzureTable (line 39) | public ReminderTests_AzureTable(Fixture fixture) : base(fixture) method Rem_Azure_Basic_StopByRef (line 46) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_Basic_ListOps (line 52) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/9337")... method Rem_Azure_1J_MultiGrainMultiReminders (line 60) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_ReminderNotFound (line 66) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_Basic (line 72) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/9344")... method Rem_Azure_Basic_Restart (line 93) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/9557")... method Rem_Azure_MultipleReminders (line 119) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_2J_MultiGrainMultiReminders (line 126) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_MultiGrainMultiReminders (line 158) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_1F_Basic (line 180) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_2F_MultiGrain (line 197) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_1F1J_MultiGrain (line 231) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_RegisterSameReminderTwice (line 270) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_GT_Basic (line 282) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/9557")... method Rem_Azure_GT_1F1J_MultiGrain (line 307) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4319")... method Rem_Azure_Wrong_LowerThanAllowedPeriod (line 340) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_Wrong_Grain (line 348) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/Reminder/ReminderTests_Azure_Standalone.cs class ReminderTests_Azure_Standalone (line 21) | [Collection(TestEnvironmentFixture.DefaultCollection)] method ReminderTests_Azure_Standalone (line 31) | public ReminderTests_Azure_Standalone(ITestOutputHelper output, TestEn... method Reminders_AzureTable_InsertRate (line 41) | [SkippableFact, TestCategory("Reminders"), TestCategory("Performance")] method Reminders_AzureTable_InsertNewRowAndReadBack (line 55) | [SkippableFact, TestCategory("Reminders")] method TestTableInsertRate (line 82) | private async Task TestTableInsertRate(IReminderTable reminderTable, d... method NewReminderEntry (line 128) | private ReminderEntry NewReminderEntry() method NewClusterId (line 140) | private static string NewClusterId() method GetAllRows (line 145) | private static async Task> GetAllRows(IRemi... FILE: test/Extensions/Orleans.Azure.Tests/SiloInstanceTableManagerTests.cs class SiloInstanceTableManagerTests (line 19) | [TestCategory("AzureStorage"), TestCategory("Storage")] class Fixture (line 22) | public class Fixture : IDisposable method Dispose (line 27) | public void Dispose() method SiloInstanceTableManagerTests (line 40) | public SiloInstanceTableManagerTests(ITestOutputHelper output, Fixture... method Dispose (line 59) | public void Dispose() method SiloInstanceTable_Op_RegisterSiloInstance (line 74) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_Op_ActivateSiloInstance (line 80) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_Op_UnregisterSiloInstance (line 88) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_Op_CleanDeadSiloInstance (line 96) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_Op_CreateSiloEntryConditionally (line 125) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_Register_CheckData (line 134) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_Activate_CheckData (line 155) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_Unregister_CheckData (line 176) | [SkippableFact, TestCategory("Functional")] method SiloInstanceTable_FindAllGatewayProxyEndpoints (line 195) | [SkippableFact, TestCategory("Functional")] method SiloAddress_ToFrom_RowKey (line 213) | [SkippableFact, TestCategory("Functional")] method RegisterSiloInstance (line 236) | private SiloInstanceTableEntry RegisterSiloInstance() method FindSiloEntry (line 269) | private async Task<(SiloInstanceTableEntry Entity, string ETag)> FindS... method CheckSiloInstanceTableEntry (line 282) | private static void CheckSiloInstanceTableEntry(SiloInstanceTableEntry... FILE: test/Extensions/Orleans.Azure.Tests/StorageEmulatorUtilities.cs class StorageEmulatorUtilities (line 6) | public static class StorageEmulatorUtilities method EnsureEmulatorIsNotUsed (line 8) | public static void EnsureEmulatorIsNotUsed() FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AQClientStreamTests.cs class AQClientStreamTests (line 19) | public class AQClientStreamTests : TestClusterPerTest method AQClientStreamTests (line 27) | public AQClientStreamTests(ITestOutputHelper output) method InitializeAsync (line 32) | public override async Task InitializeAsync() method ConfigureTestCluster (line 38) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MyClientBuilderConfigurator (line 45) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 47) | public void Configure(IConfiguration configuration, IClientBuilder c... class MySiloBuilderConfigurator (line 59) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 61) | public void Configure(ISiloBuilder hostBuilder) method DisposeAsync (line 73) | public override async Task DisposeAsync() method AQStreamProducerOnDroppedClientTest (line 90) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5639")... method AQStreamConsumerOnDroppedClientTest (line 97) | [SkippableFact(Skip = "AzureQueue has unpredictable event delivery cou... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AQProgrammaticSubscribeTest.cs class AQProgrammaticSubscribeTest (line 17) | [TestCategory("BVT"), TestCategory("Streaming"), TestCategory("AQStreami... class Fixture (line 21) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 23) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestClusterConfigurator (line 29) | private class TestClusterConfigurator : ISiloConfigurator, IClientBu... method Configure (line 31) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 51) | public void Configure(IConfiguration configuration, IClientBuilder... method DisposeAsync (line 54) | public override async Task DisposeAsync() method AQProgrammaticSubscribeTest (line 74) | public AQProgrammaticSubscribeTest(ITestOutputHelper output, Fixture f... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AQStreamFilteringTests.cs class AQStreamFilteringTests (line 17) | public class AQStreamFilteringTests : StreamFilteringTestsBase, IClassFi... method AQStreamFilteringTests (line 21) | public AQStreamFilteringTests(Fixture fixture) : base(fixture) class Fixture (line 26) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 28) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 35) | public class SiloConfigurator : ISiloConfigurator method Configure (line 37) | public void Configure(ISiloBuilder hostBuilder) class ClientConfigurator (line 52) | public class ClientConfigurator : IClientBuilderConfigurator method Configure (line 54) | public void Configure(IConfiguration configuration, IClientBuilder... method CheckPreconditionsOrThrow (line 67) | protected override void CheckPreconditionsOrThrow() method IgnoreBadFilter (line 77) | [SkippableFact, TestCategory("BVT"), TestCategory("Streaming"), TestCa... method OnlyEvenItems (line 80) | [SkippableFact, TestCategory("BVT"), TestCategory("Streaming"), TestCa... method MultipleSubscriptionsDifferentFilterData (line 83) | [SkippableFact, TestCategory("BVT"), TestCategory("Streaming"), TestCa... method InitializeAsync (line 86) | public Task InitializeAsync() => Task.CompletedTask; method DisposeAsync (line 88) | public async Task DisposeAsync() FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AQStreamingTests.cs class AQStreamingTests (line 18) | [TestCategory("Streaming"), TestCategory("AzureStorage"), TestCategory("... class Fixture (line 25) | public sealed class Fixture : IAsyncLifetime method Fixture (line 29) | public Fixture() method DisposeAsync (line 106) | public async Task DisposeAsync() method InitializeAsync (line 128) | public async Task InitializeAsync() method AQ_01_OneProducerGrainOneConsumerGrain (line 138) | [SkippableFact, TestCategory("Functional")] method AQ_02_OneProducerGrainOneConsumerClient (line 144) | [SkippableFact, TestCategory("Functional")] method AQ_03_OneProducerClientOneConsumerGrain (line 150) | [SkippableFact, TestCategory("Functional")] method AQ_04_OneProducerClientOneConsumerClient (line 156) | [SkippableFact, TestCategory("Functional")] method AQ_05_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 164) | [SkippableFact, TestCategory("Functional")] method AQ_06_ManyDifferent_ManyProducerGrainManyConsumerClients (line 170) | [SkippableFact, TestCategory("Functional")] method AQ_07_ManyDifferent_ManyProducerClientsManyConsumerGrains (line 176) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5648")... method AQ_08_ManyDifferent_ManyProducerClientsManyConsumerClients (line 182) | [SkippableFact, TestCategory("Functional")] method AQ_09_ManySame_ManyProducerGrainsManyConsumerGrains (line 189) | [SkippableFact, TestCategory("Functional")] method AQ_10_ManySame_ManyConsumerGrainsManyProducerGrains (line 195) | [SkippableFact, TestCategory("Functional")] method AQ_11_ManySame_ManyProducerGrainsManyConsumerClients (line 201) | [SkippableFact, TestCategory("Functional")] method AQ_12_ManySame_ManyProducerClientsManyConsumerGrains (line 207) | [SkippableFact, TestCategory("Functional")] method AQ_13_SameGrain_ConsumerFirstProducerLater (line 215) | [SkippableFact, TestCategory("Functional")] method AQ_14_SameGrain_ProducerFirstConsumerLater (line 221) | [SkippableFact, TestCategory("Functional")] method AQ_15_ConsumeAtProducersRequest (line 229) | [SkippableFact, TestCategory("Functional")] method AQ_16_MultipleStreams_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 235) | [SkippableFact, TestCategory("Functional")] method AQ_17_MultipleStreams_1J_ManyProducerGrainsManyConsumerGrains (line 242) | [SkippableFact, TestCategory("Functional")] method AQ_19_ConsumerImplicitlySubscribedToProducerClient (line 259) | [SkippableFact] method AQ_20_ConsumerImplicitlySubscribedToProducerGrain (line 266) | [SkippableFact] method AQ_21_GenericConsumerImplicitlySubscribedToProducerGrain (line 273) | [SkippableFact(Skip = "Ignored"), TestCategory("Failures")] FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AQStreamsBatchingTests.cs class AQStreamsBatchingTests (line 16) | [TestCategory("AQStreaming"), TestCategory("AzureStorage")] class Fixture (line 20) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloBuilderConfigurator (line 28) | private class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 30) | public void Configure(ISiloBuilder hostBuilder) class ClientBuilderConfigurator (line 50) | private class ClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 52) | public void Configure(IConfiguration configuration, IClientBuilder... method DisposeAsync (line 68) | public override async Task DisposeAsync() method AQStreamsBatchingTests (line 85) | public AQStreamsBatchingTests(Fixture fixture, ITestOutputHelper output) FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AQSubscriptionMultiplicityTests.cs class AQSubscriptionMultiplicityTests (line 15) | [TestCategory("AzureStorage"), TestCategory("Storage"), TestCategory("St... method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MyClientBuilderConfigurator (line 29) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 31) | public void Configure(IConfiguration configuration, IClientBuilder c... class MySiloBuilderConfigurator (line 43) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 45) | public void Configure(ISiloBuilder hostBuilder) method InitializeAsync (line 58) | public override async Task InitializeAsync() method DisposeAsync (line 64) | public override async Task DisposeAsync() method AQMultipleParallelSubscriptionTest (line 78) | [SkippableFact, TestCategory("Functional")] method AQMultipleLinearSubscriptionTest (line 85) | [SkippableFact, TestCategory("Functional")] method AQMultipleSubscriptionTest_AddRemove (line 92) | [SkippableFact, TestCategory("Functional")] method AQResubscriptionTest (line 99) | [SkippableFact, TestCategory("Functional")] method AQResubscriptionAfterDeactivationTest (line 106) | [SkippableFact, TestCategory("Functional")] method AQActiveSubscriptionTest (line 113) | [SkippableFact, TestCategory("Functional")] method AQTwoIntermitentStreamTest (line 120) | [SkippableFact, TestCategory("Functional")] method AQSubscribeFromClientTest (line 127) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AQSubscriptionObserverWithImplicitSubscribingTests.cs class AQSubscriptionObserverWithImplicitSubscribingTests (line 15) | [TestCategory("Functional")] class Fixture (line 19) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 21) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method DisposeAsync (line 27) | public override async Task DisposeAsync() class TestClusterConfigurator (line 48) | private class TestClusterConfigurator : ISiloConfigurator, IClientBuil... method Configure (line 50) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 75) | public void Configure(IConfiguration configuration, IClientBuilder c... method AQSubscriptionObserverWithImplicitSubscribingTests (line 78) | public AQSubscriptionObserverWithImplicitSubscribingTests(ITestOutputH... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AzureQueueAdapterTests.cs class AzureQueueAdapterTests (line 17) | [Collection(TestEnvironmentFixture.DefaultCollection)] method AzureQueueAdapterTests (line 29) | public AzureQueueAdapterTests(ITestOutputHelper output, TestEnvironmen... method InitializeAsync (line 36) | public Task InitializeAsync() => Task.CompletedTask; method DisposeAsync (line 38) | public async Task DisposeAsync() method SendAndReceiveFromAzureQueue (line 48) | [SkippableFact, TestCategory("Functional"), TestCategory("Halo")] method SendAndReceiveFromQueueAdapter (line 70) | private async Task SendAndReceiveFromQueueAdapter(IQueueAdapterFactory... method CreateEvents (line 184) | private List CreateEvents(int count) method MakeClusterId (line 196) | internal static string MakeClusterId() FILE: test/Extensions/Orleans.Azure.Tests/Streaming/AzureQueueStreamProviderBuilderTests.cs class AzureQueueStreamProviderBuilderTests (line 12) | public class AzureQueueStreamProviderBuilderTests method Missing_ConnectionString (line 17) | [Fact] method Minimal_Configuration (line 43) | [Fact] method Full_Configuration (line 73) | [Fact] method ConfigureSilo (line 102) | static TestSiloBuilder ConfigureSilo(string json) class TestSiloBuilder (line 110) | class TestSiloBuilder(string json) : ISiloBuilder method GetConfig (line 117) | static IConfigurationRoot GetConfig(string json) => new ConfigurationB... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/DelayedQueueRebalancingTests.cs class DelayedQueueRebalancingTests (line 16) | [TestCategory("Streaming")] method ConfigureTestCluster (line 26) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class ClientConfigurator (line 36) | private class ClientConfigurator : IClientBuilderConfigurator method Configure (line 38) | public void Configure(IConfiguration configuration, IClientBuilder c... class MySiloBuilderConfigurator (line 44) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 46) | public void Configure(ISiloBuilder hostBuilder) method DisposeAsync (line 66) | public override async Task DisposeAsync() method DelayedQueueRebalancingTests_1 (line 79) | [SkippableFact, TestCategory("Functional")] method DelayedQueueRebalancingTests_2 (line 89) | [SkippableFact, TestCategory("Functional")] method ValidateAgentsState (line 102) | private async Task ValidateAgentsState(int numExpectedSilos, int numEx... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/HaloStreamSubscribeTests.cs class HaloStreamSubscribeTests (line 19) | [TestCategory("Streaming"), TestCategory("Halo")] class Fixture (line 24) | public class Fixture : BaseAzureTestClusterFixture method ConfigureTestCluster (line 29) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloBuilderConfigurator (line 34) | private class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 36) | public void Configure(ISiloBuilder hostBuilder) method DisposeAsync (line 68) | public override async Task DisposeAsync() method HaloStreamSubscribeTests (line 94) | public HaloStreamSubscribeTests(Fixture fixture) method Halo_AzureQueue_ResubscribeTest_ConsumerProducer (line 102) | [SkippableFact, TestCategory("Functional")] method Halo_AzureQueue_ResubscribeTest_ProducerConsumer (line 114) | [SkippableFact, TestCategory("Functional")] method ConsumerProducerTest (line 126) | private async Task ConsumerProducerTest(Guid consumerGuid, Guid produc... method ProducerConsumerTest (line 144) | private async Task ProducerConsumerTest(Guid producerGuid, Guid consum... method CheckCounters (line 162) | private async Task CheckCounters(IProducerEventCountingGrain pro... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/PullingAgentManagementTests.cs class PullingAgentManagementTests (line 13) | public class PullingAgentManagementTests : OrleansTestingBase, IClassFix... class Fixture (line 16) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 18) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 23) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 25) | public void Configure(ISiloBuilder hostBuilder) method CheckPreconditionsOrThrow (line 39) | protected override void CheckPreconditionsOrThrow() method PullingAgentManagementTests (line 51) | public PullingAgentManagementTests(Fixture fixture) method PullingAgents_ControlCmd_1 (line 57) | [SkippableFact, TestCategory("Functional"), TestCategory("Streaming")] method ValidateAgentsState (line 76) | private async Task ValidateAgentsState(StreamLifecycleOptions.RunState... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/SampleAzureQueueStreamingTests.cs class SampleAzureQueueStreamingTests (line 14) | [TestCategory("Streaming")] method ConfigureTestCluster (line 19) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 25) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 27) | public void Configure(ISiloBuilder hostBuilder) method DisposeAsync (line 40) | public override async Task DisposeAsync() method SampleStreamingTests_4 (line 53) | [SkippableFact, TestCategory("Functional")] method SampleStreamingTests_5 (line 61) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Azure.Tests/Streaming/StreamReliabilityTests.cs method ConfigureTestCluster (line 43) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class ClientBuilderConfigurator (line 56) | public class ClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 58) | public void Configure(IConfiguration configuration, IClientBuilder cli... class SiloBuilderConfigurator (line 75) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 77) | public void Configure(ISiloBuilder hostBuilder) method StreamReliabilityTests (line 110) | public StreamReliabilityTests(ITestOutputHelper output) method InitializeAsync (line 118) | public override async Task InitializeAsync() method DisposeAsync (line 124) | public override async Task DisposeAsync() method Baseline_StreamRel (line 150) | [SkippableFact, TestCategory("Functional")] method Baseline_StreamRel_RestartSilos (line 159) | [SkippableFact, TestCategory("Functional")] method SMS_Baseline_StreamRel (line 177) | [SkippableFact, TestCategory("Functional")] method AQ_Baseline_StreamRel (line 197) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")] method SMS_AddMany_Consumers (line 215) | [SkippableFact(Skip ="Ignore"), TestCategory("Failures"), TestCategory("... method AQ_AddMany_Consumers (line 222) | [SkippableFact(Skip = "Ignore"), TestCategory("Failures"), TestCategory(... method SMS_PubSub_MultiConsumerSameGrain (line 229) | [SkippableFact, TestCategory("Functional")] method SMS_PubSub_MultiProducerSameGrain (line 237) | [SkippableFact, TestCategory("Functional")] method SMS_PubSub_Unsubscribe (line 245) | [SkippableFact, TestCategory("Functional")] method SMS_StreamRel_AllSilosRestart_PubSubCounts (line 254) | [SkippableFact, TestCategory("Functional"), TestCategory("Failures")] method SMS_StreamRel_AllSilosRestart (line 262) | [SkippableFact, TestCategory("Functional")] method AQ_StreamRel_AllSilosRestart (line 269) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")... method AQ_StreamRel_SiloJoins (line 277) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")... method SMS_StreamRel_SiloDies_Consumer (line 285) | [SkippableFact, TestCategory("Functional")] method AQ_StreamRel_SiloDies_Consumer (line 291) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")... method SMS_StreamRel_SiloDies_Producer (line 298) | [SkippableFact, TestCategory("Functional")] method AQ_StreamRel_SiloDies_Producer (line 304) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")... method SMS_StreamRel_SiloRestarts_Consumer (line 311) | [SkippableFact, TestCategory("Functional")] method AQ_StreamRel_SiloRestarts_Consumer (line 317) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")... method SMS_StreamRel_SiloRestarts_Producer (line 324) | [SkippableFact, TestCategory("Functional")] method AQ_StreamRel_SiloRestarts_Producer (line 330) | [SkippableFact, TestCategory("Functional"), TestCategory("AzureStorage")... method Do_BaselineTest (line 341) | private async Task> Do_BaselineTest(lon... method Do_BaselineTest (line 343) | private async Task Do_BaselineTest(long con... method Do_AddConsumerGrains (line 379) | private async Task[]> Do_AddConsumerGra... method Do_AddConsumerGrains (line 381) | private async Task Do_AddConsumerGrains(l... method Test_AddMany_Consumers (line 411) | private async Task Test_AddMany_Consumers(string testName, string stream... method Test_PubSub_MultiConsumerSameGrain (line 470) | private async Task Test_PubSub_MultiConsumerSameGrain(string testName, s... method Test_PubSub_MultiProducerSameGrain (line 507) | private async Task Test_PubSub_MultiProducerSameGrain(string testName, s... method Test_PubSub_Unsubscribe (line 548) | private async Task Test_PubSub_Unsubscribe(string testName, string strea... method SMS_AllSilosRestart_UnsubscribeConsumer (line 609) | [SkippableFact, TestCategory("Functional")] method Test_AllSilosRestart (line 651) | private async Task Test_AllSilosRestart(string testName, string streamPr... FILE: test/Extensions/Orleans.Azure.Tests/Streaming/TestAzureTableStorageStreamFailureHandler.cs class TestAzureTableStorageStreamFailureHandler (line 10) | public static class TestAzureTableStorageStreamFailureHandler method GetDeliveryFailureCount (line 15) | public static async Task GetDeliveryFailureCount(string streamPro... method DeleteAll (line 25) | public static async Task DeleteAll() method GetDataManager (line 32) | private static AzureTableDataManager GetDataManager() FILE: test/Extensions/Orleans.Azure.Tests/UnitTestAzureTableDataManager.cs class UnitTestAzureTableData (line 11) | public class UnitTestAzureTableData : ITableEntity method UnitTestAzureTableData (line 20) | public UnitTestAzureTableData() method UnitTestAzureTableData (line 25) | public UnitTestAzureTableData(string data, string partitionKey, string... method Clone (line 32) | public UnitTestAzureTableData Clone() method ToString (line 42) | public override string ToString() class UnitTestAzureTableDataManager (line 53) | internal class UnitTestAzureTableDataManager : AzureTableDataManager GenerateQueueNames(string queueNamePrefix, ... FILE: test/Extensions/Orleans.Clustering.Cassandra.Tests/Clustering/CassandraClusteringTableTests.cs class CassandraClusteringTableTests (line 17) | [TestCategory("Cassandra"), TestCategory("Clustering")] method CassandraClusteringTableTests (line 26) | public CassandraClusteringTableTests(CassandraContainer cassandraConta... method MembershipTable_GetGateways (line 33) | [Fact] method MembershipTable_ReadAll_EmptyTable (line 69) | [Fact] method MembershipTable_InsertRow (line 84) | [Fact] method MembershipTable_ReadRow_Insert_Read (line 107) | [Fact] method MembershipTable_ReadAll_Insert_ReadAll (line 161) | [Fact] method MembershipTable_UpdateRow (line 194) | [Fact] method MembershipTable_ManyMembershipTables (line 288) | [Fact] method MembershipTable_UpdateRowInParallel (line 303) | [Fact] method MembershipTable_UpdateIAmAlive (line 350) | [Theory] method MembershipTable_CleanupDefunctSiloEntries (line 550) | [Fact] method CreateMembershipEntryForTest (line 616) | private static MembershipEntry CreateMembershipEntryForTest() method GetUtcNowWithSecondsResolution (line 634) | private static DateTime GetUtcNowWithSecondsResolution() method CreateSiloAddressForTest (line 640) | private static SiloAddress CreateSiloAddressForTest() method CreateNewMembershipTableAsync (line 647) | private async Task<(IMembershipTable, IGatewayListProvider)> CreateNew... method CreateSession (line 680) | private async Task CreateSession() method CreateNewMembershipTableAsync (line 687) | private Task<(IMembershipTable, IGatewayListProvider)> CreateNewMember... method A_Test (line 695) | [Fact] FILE: test/Extensions/Orleans.Clustering.Cassandra.Tests/Clustering/CassandraContainer.cs class CassandraContainer (line 8) | public class CassandraContainer method RunImage (line 10) | public Task<(IContainer container, ushort exposedPort, Cluster cluster... FILE: test/Extensions/Orleans.Clustering.Cassandra.Tests/Clustering/SiloAddressUtils.cs class SiloAddressUtils (line 6) | public static class SiloAddressUtils method NewLocalSiloAddress (line 10) | public static SiloAddress NewLocalSiloAddress(int gen) FILE: test/Extensions/Orleans.Clustering.Cassandra.Tests/Utility/TestExtensions.cs class TestExtensions (line 3) | public static class TestExtensions method WithTimeout (line 5) | public static async Task WithTimeout(this Task taskToComplete, TimeSpa... method WithTimeout (line 27) | public static async Task WithTimeout(this Task taskToComplete... FILE: test/Extensions/Orleans.Clustering.Consul.Tests/CollectionFixtures.cs class TestEnvironmentFixtureCollection (line 12) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Extensions/Orleans.Clustering.Consul.Tests/ConsulClusteringOptionsTests.cs class ConsulClusteringOptionsTests (line 6) | public class ConsulClusteringOptionsTests method DefaultCreationBehaviorIsRetained (line 8) | [Fact, TestCategory("BVT"), TestCategory("Consul")] method ThrowsArgumentNullExceptionIfCallbackIsNull (line 19) | [Fact, TestCategory("BVT"), TestCategory("Consul")] method WeCanInjectAConsulClient (line 31) | [Fact, TestCategory("BVT"), TestCategory("Consul")] method WeCanUseConfigureToSetupTheDefaultClient (line 45) | [Fact, TestCategory("BVT"), TestCategory("Consul")] method WeCanUseConfigureToSetupTheDefaultClientWithoutAAclToken (line 62) | [Fact, TestCategory("BVT"), TestCategory("Consul")] class FakeConsul (line 80) | private class FakeConsul : IConsulClient method AcquireLock (line 119) | public Task AcquireLock(LockOptions opts, Cancella... method AcquireLock (line 120) | public Task AcquireLock(string key, CancellationTo... method AcquireSemaphore (line 121) | public Task AcquireSemaphore(SemaphoreOptions... method AcquireSemaphore (line 122) | public Task AcquireSemaphore(string prefix, i... method CreateLock (line 123) | public IDistributedLock CreateLock(LockOptions opts) => throw new No... method CreateLock (line 124) | public IDistributedLock CreateLock(string key) => throw new NotImple... method Dispose (line 125) | public void Dispose() => throw new NotImplementedException(); method ExecuteInSemaphore (line 126) | public Task ExecuteInSemaphore(SemaphoreOptions opts, Action a, Canc... method ExecuteInSemaphore (line 127) | public Task ExecuteInSemaphore(string prefix, int limit, Action a, C... method ExecuteLocked (line 128) | public Task ExecuteLocked(LockOptions opts, Action action, Cancellat... method ExecuteLocked (line 129) | public Task ExecuteLocked(LockOptions opts, CancellationToken ct, Ac... method ExecuteLocked (line 130) | public Task ExecuteLocked(string key, Action action, CancellationTok... method ExecuteLocked (line 131) | public Task ExecuteLocked(string key, CancellationToken ct, Action a... method Semaphore (line 132) | public IDistributedSemaphore Semaphore(SemaphoreOptions opts) => thr... method Semaphore (line 133) | public IDistributedSemaphore Semaphore(string prefix, int limit) => ... FILE: test/Extensions/Orleans.Clustering.Consul.Tests/ConsulMembershipTableTest.cs class ConsulMembershipTableTest (line 28) | [TestCategory("Membership"), TestCategory("Consul")] method ConsulMembershipTableTest (line 31) | public ConsulMembershipTableTest(ConnectionStringFixture fixture, Test... method CreateFilters (line 35) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 48) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 64) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetConnectionString (line 75) | protected override async Task GetConnectionString() method MembershipTable_Consul_GetGateways (line 85) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_ReadAll_EmptyTable (line 96) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_InsertRow (line 102) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_ReadRow_Insert_Read (line 108) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_ReadAll_Insert_ReadAll (line 114) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_UpdateRow (line 120) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_UpdateRowInParallel (line 126) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_UpdateIAmAlive (line 137) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Consul_CleanupDefunctSiloEntries (line 149) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Clustering.Consul.Tests/ConsulTestUtils.cs class ConsulTestUtils (line 11) | public static class ConsulTestUtils method EnsureConsul (line 40) | public static void EnsureConsul() method EnsureConsulAsync (line 47) | public static Task EnsureConsulAsync() method EnsureConsulAndGetSkipReasonAsync (line 52) | private static async Task EnsureConsulAndGetSkipReasonAsync() method GetDockerSkipReason (line 75) | private static string GetDockerSkipReason() method IsWindowsDockerDaemon (line 91) | private static bool IsWindowsDockerDaemon() method GetDockerDaemonOsType (line 96) | private static string GetDockerDaemonOsType() FILE: test/Extensions/Orleans.Clustering.Consul.Tests/LivenessTests.cs class LivenessTests_Consul (line 12) | [TestCategory("Membership"), TestCategory("Consul")] method LivenessTests_Consul (line 15) | public LivenessTests_Consul(ITestOutputHelper output) : base(output) method ConfigureTestCluster (line 19) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 26) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 28) | public void Configure(ISiloBuilder hostBuilder) class ClientBuilderConfigurator (line 38) | public class ClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 40) | public void Configure(IConfiguration configuration, IClientBuilder c... method Liveness_Consul_1 (line 51) | [SkippableFact, TestCategory("Functional")] method Liveness_Consul_2_Restart_Primary (line 57) | [SkippableFact, TestCategory("Functional")] method Liveness_Consul_3_Restart_GW (line 63) | [SkippableFact, TestCategory("Functional")] method Liveness_Consul_4_Restart_Silo_1 (line 69) | [SkippableFact, TestCategory("Functional")] method Liveness_Consul_5_Kill_Silo_1_With_Timers (line 75) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Clustering.ZooKeeper.Tests/CollectionFixtures.cs class TestEnvironmentFixtureCollection (line 12) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Extensions/Orleans.Clustering.ZooKeeper.Tests/LivenessTests.cs class LivenessTests_ZK (line 9) | [TestCategory("Membership"), TestCategory("ZooKeeper")] method LivenessTests_ZK (line 12) | public LivenessTests_ZK(ITestOutputHelper output) : base(output) method ConfigureTestCluster (line 16) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 23) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 25) | public void Configure(ISiloBuilder hostBuilder) method Liveness_ZooKeeper_1 (line 31) | [SkippableFact] method Liveness_ZooKeeper_2_Restart_Primary (line 37) | [SkippableFact] method Liveness_ZooKeeper_3_Restart_GW (line 43) | [SkippableFact] method Liveness_ZooKeeper_4_Restart_Silo_1 (line 49) | [SkippableFact] method Liveness_ZooKeeper_5_Kill_Silo_1_With_Timers (line 55) | [SkippableFact] FILE: test/Extensions/Orleans.Clustering.ZooKeeper.Tests/ZookeeperMembershipTableTests.cs class ZookeeperMembershipTableTests (line 26) | [TestCategory("Membership"), TestCategory("ZooKeeper")] method ZookeeperMembershipTableTests (line 29) | public ZookeeperMembershipTableTests(ConnectionStringFixture fixture, ... method CreateFilters (line 34) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 46) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 59) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetConnectionString (line 67) | protected override async Task GetConnectionString() method MembershipTable_ZooKeeper_Init (line 73) | [SkippableFact] method MembershipTable_ZooKeeper_GetGateways (line 78) | [SkippableFact] method MembershipTable_ZooKeeper_ReadAll_EmptyTable (line 84) | [SkippableFact] method MembershipTable_ZooKeeper_InsertRow (line 95) | [SkippableFact] method MembershipTable_ZooKeeper_ReadRow_Insert_Read (line 101) | [SkippableFact] method MembershipTable_ZooKeeper_ReadAll_Insert_ReadAll (line 107) | [SkippableFact] method MembershipTable_ZooKeeper_UpdateRow (line 113) | [SkippableFact] method MembershipTable_ZooKeeper_UpdateRowInParallel (line 124) | [SkippableFact] method MembershipTable_ZooKeeper_UpdateIAmAlive (line 135) | [SkippableFact] FILE: test/Extensions/Orleans.Clustering.ZooKeeper.Tests/ZookeeperTestUtils.cs class ZookeeperTestUtils (line 7) | public static class ZookeeperTestUtils method EnsureZooKeeper (line 11) | public static void EnsureZooKeeper() method EnsureZooKeeperAsync (line 17) | public static async Task EnsureZooKeeperAsync() class ZooKeeperWatcher (line 39) | private class ZooKeeperWatcher : Watcher method process (line 41) | public override Task process(WatchedEvent @event) => Task.CompletedT... FILE: test/Extensions/Orleans.Cosmos.Tests/CollectionFixtures.cs class TestEnvironmentFixtureCollection (line 12) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Extensions/Orleans.Cosmos.Tests/CosmosMembershipTableTests.cs class CosmosMembershipTableTests (line 23) | [TestCategory("Membership"), TestCategory("Cosmos")] method CosmosMembershipTableTests (line 26) | public CosmosMembershipTableTests(ConnectionStringFixture fixture, Tes... method CreateFilters (line 30) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 43) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 56) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetConnectionString (line 63) | protected override Task GetConnectionString() method MembershipTable_Cosmos_Init (line 68) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_GetGateways (line 73) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_ReadAll_EmptyTable (line 79) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_InsertRow (line 90) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_ReadRow_Insert_Read (line 96) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_ReadAll_Insert_ReadAll (line 102) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_UpdateRow (line 108) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_UpdateRowInParallel (line 119) | [SkippableFact, TestCategory("Functional")] method MembershipTable_Cosmos_UpdateIAmAlive (line 130) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Cosmos.Tests/CosmosOptionsExtensions.cs class CosmosOptionsExtensions (line 10) | public static class CosmosOptionsExtensions method ConfigureTestDefaults (line 12) | public static void ConfigureTestDefaults(this CosmosClusteringOptions ... method ConfigureTestDefaults (line 26) | public static void ConfigureTestDefaults(this CosmosGrainStorageOption... method ConfigureTestDefaults (line 40) | public static void ConfigureTestDefaults(this CosmosReminderTableOptio... method GetCosmosClientUsingAccountKey (line 54) | private static Func> GetCosm... FILE: test/Extensions/Orleans.Cosmos.Tests/CosmosTestUtils.cs class CosmosTestUtils (line 5) | public class CosmosTestUtils method CheckCosmosStorage (line 7) | public static void CheckCosmosStorage() FILE: test/Extensions/Orleans.Cosmos.Tests/PersistenceGrainTests_CosmosGrainStorage.cs class PersistenceGrainTests_CosmosGrainStorage (line 14) | [TestCategory("Persistence"), TestCategory("Cosmos")] class Fixture (line 17) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 19) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 25) | private class SiloConfigurator : ISiloConfigurator method Configure (line 27) | public void Configure(ISiloBuilder hostBuilder) method CheckPreconditionsOrThrow (line 38) | protected override void CheckPreconditionsOrThrow() method PersistenceGrainTests_CosmosGrainStorage (line 45) | public PersistenceGrainTests_CosmosGrainStorage(ITestOutputHelper outp... class PersistenceGrainTests_CosmosGrainStorage_DeleteStateOnClear (line 52) | [TestCategory("Persistence"), TestCategory("Cosmos")] class Fixture (line 55) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 57) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 63) | private class SiloConfigurator : ISiloConfigurator method Configure (line 65) | public void Configure(ISiloBuilder hostBuilder) method CheckPreconditionsOrThrow (line 77) | protected override void CheckPreconditionsOrThrow() method PersistenceGrainTests_CosmosGrainStorage_DeleteStateOnClear (line 84) | public PersistenceGrainTests_CosmosGrainStorage_DeleteStateOnClear(ITe... FILE: test/Extensions/Orleans.Cosmos.Tests/PersistenceProviderTests_Cosmos.cs class PersistenceProviderTests_Cosmos (line 20) | [Collection(TestEnvironmentFixture.DefaultCollection)] method PersistenceProviderTests_Cosmos (line 31) | public PersistenceProviderTests_Cosmos(ITestOutputHelper output, TestE... method InitializeStorage (line 46) | private async Task InitializeStorage() method PersistenceProvider_Azure_Read (line 62) | [SkippableFact, TestCategory("Functional")] method PersistenceProvider_Azure_WriteRead (line 71) | [SkippableTheory, TestCategory("Functional")] method PersistenceProvider_Azure_WriteClearRead (line 88) | [SkippableTheory, TestCategory("Functional")] method PersistenceProvider_Azure_ChangeReadFormat (line 105) | [SkippableTheory, TestCategory("Functional")] method PersistenceProvider_Azure_ChangeWriteFormat (line 126) | [SkippableTheory, TestCategory("Functional")] method Test_PersistenceProvider_Read (line 151) | private async Task Test_PersistenceProvider_Read(string grainTypeName,... method Test_PersistenceProvider_WriteRead (line 171) | private async Task> Test_PersistencePr... method Test_PersistenceProvider_WriteClearRead (line 198) | private async Task> Test_PersistencePr... class TestStoreGrainStateWithCustomJsonProperties (line 233) | public class TestStoreGrainStateWithCustomJsonProperties method NewRandomState (line 238) | internal static GrainState CosmosTestUti... method ConfigureTestCluster (line 21) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 27) | public class SiloConfigurator : ISiloConfigurator method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) method ReminderTests_Cosmos (line 38) | public ReminderTests_Cosmos(Fixture fixture) : base(fixture) method Rem_Azure_Basic_StopByRef (line 45) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_Basic_ListOps (line 51) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_1J_MultiGrainMultiReminders (line 59) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_ReminderNotFound (line 65) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_Basic (line 71) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_Basic_Restart (line 92) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_MultipleReminders (line 118) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_2J_MultiGrainMultiReminders (line 125) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_MultiGrainMultiReminders (line 157) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_1F_Basic (line 179) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_2F_MultiGrain (line 196) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_1F1J_MultiGrain (line 230) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_RegisterSameReminderTwice (line 269) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_GT_Basic (line 281) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_GT_1F1J_MultiGrain (line 306) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4319")... method Rem_Azure_Wrong_LowerThanAllowedPeriod (line 339) | [SkippableFact, TestCategory("Functional")] method Rem_Azure_Wrong_Grain (line 347) | [SkippableFact, TestCategory("Functional")] FILE: test/Extensions/Orleans.Cosmos.Tests/ReminderTests_Cosmos_Standalone.cs class ReminderTests_Cosmos_Standalone (line 16) | [Collection(TestEnvironmentFixture.DefaultCollection)] method ReminderTests_Cosmos_Standalone (line 26) | public ReminderTests_Cosmos_Standalone(ITestOutputHelper output, TestE... method Reminders_AzureTable_InsertRate (line 38) | [SkippableFact, TestCategory("Reminders"), TestCategory("Performance")] method Reminders_AzureTable_InsertNewRowAndReadBack (line 53) | [SkippableFact, TestCategory("Reminders")] method TestTableInsertRate (line 81) | private async Task TestTableInsertRate(IReminderTable reminderTable, d... method NewReminderEntry (line 127) | private ReminderEntry NewReminderEntry() method NewClusterId (line 139) | private static string NewClusterId() method GetAllRows (line 144) | private static async Task> GetAllRows(IRemi... FILE: test/Extensions/Orleans.Redis.Tests/Clustering/RedisMembershipTableTests.cs class RedisMembershipTableTests (line 16) | [TestCategory("Redis"), TestCategory("Clustering"), TestCategory("Functi... method RedisMembershipTableTests (line 20) | public RedisMembershipTableTests(ConnectionStringFixture fixture, Comm... method CreateFilters (line 24) | private static LoggerFilterOptions CreateFilters() method CreateMembershipTable (line 32) | protected override IMembershipTable CreateMembershipTable(ILogger logger) method CreateGatewayListProvider (line 47) | protected override IGatewayListProvider CreateGatewayListProvider(ILog... method GetConnectionString (line 55) | protected override Task GetConnectionString() => Task.FromResu... method GetGateways (line 57) | [SkippableFact] method ReadAll_EmptyTable (line 63) | [SkippableFact] method InsertRow (line 69) | [SkippableFact] method ReadRow_Insert_Read (line 75) | [SkippableFact] method ReadAll_Insert_ReadAll (line 81) | [SkippableFact] method UpdateRow (line 87) | [SkippableFact] method UpdateRowInParallel (line 93) | [SkippableFact] method UpdateIAmAlive (line 99) | [SkippableFact] method CleanupDefunctSiloEntries (line 105) | [SkippableFact] FILE: test/Extensions/Orleans.Redis.Tests/CollectionFixtures.cs class TestEnvironmentFixtureCollection (line 12) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Extensions/Orleans.Redis.Tests/GrainDirectory/RedisGrainDirectoryTests.cs class RedisGrainDirectoryTests (line 16) | [TestCategory("Redis"), TestCategory("Directory"), TestCategory("Functio... method RedisGrainDirectoryTests (line 20) | public RedisGrainDirectoryTests(ITestOutputHelper testOutput) : base(t... method CreateGrainDirectory (line 24) | protected override RedisGrainDirectory CreateGrainDirectory() FILE: test/Extensions/Orleans.Redis.Tests/GrainDirectory/RedisMultipleGrainDirectoriesTests.cs class RedisMultipleGrainDirectoriesTests (line 15) | [TestCategory("Redis"), TestCategory("Directory"), TestCategory("Functio... class SiloConfigurator (line 19) | public class SiloConfigurator : ISiloConfigurator method Configure (line 21) | public void Configure(ISiloBuilder siloBuilder) method CheckPreconditionsOrThrow (line 37) | protected override void CheckPreconditionsOrThrow() => TestUtils.Check... method ConfigureTestCluster (line 39) | protected override void ConfigureTestCluster(TestClusterBuilder builder) FILE: test/Extensions/Orleans.Redis.Tests/Persistence/GrainState.cs class GrainState (line 5) | [GenerateSerializer] FILE: test/Extensions/Orleans.Redis.Tests/Persistence/RedisPersistenceGrainTests.cs class RedisPersistenceGrainTests (line 19) | [TestCategory("Redis"), TestCategory("Persistence")] class Fixture (line 25) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 27) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 41) | private class MySiloBuilderConfigurator : IHostConfigurator method Configure (line 43) | public void Configure(IHostBuilder hostBuilder) method CheckPreconditionsOrThrow (line 59) | protected override void CheckPreconditionsOrThrow() => TestUtils.Che... method RedisPersistenceGrainTests (line 64) | public RedisPersistenceGrainTests(ITestOutputHelper output, Fixture fi... method Redis_InitializeWithNoStateTest (line 93) | [SkippableFact] method Redis_TestStaticIdentifierGrains (line 108) | [SkippableFact] method Redis_TestRedisScriptCacheClearBeforeGrainWriteState (line 123) | [SkippableFact] method Redis_DoubleActivationETagConflictSimulation (line 150) | [SkippableFact] FILE: test/Extensions/Orleans.Redis.Tests/Persistence/RedisPersistenceSetupTests.cs class RedisPersistenceSetupTests (line 14) | [TestCategory("Redis"), TestCategory("Persistence"), TestCategory("Funct... method StorageOptionsValidator (line 18) | [SkippableTheory] FILE: test/Extensions/Orleans.Redis.Tests/Persistence/RedisStorageTests.cs class RedisStorageTests (line 12) | [TestCategory("Redis"), TestCategory("Persistence"), TestCategory("Funct... method RedisStorageTests (line 19) | public RedisStorageTests(ITestOutputHelper output, CommonFixture commo... method WriteInconsistentFailsWithIncosistentStateException (line 26) | [SkippableFact] method WriteRead100StatesInParallel (line 33) | [SkippableFact] method Relational_WriteReadWriteRead100StatesInParallel (line 39) | internal Task Relational_WriteReadWriteRead100StatesInParallel() method WriteReadCyrillic (line 44) | [SkippableFact] method DataSet2_Cyrillic_WriteClearRead (line 51) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method PersistenceStorage_StorageDataSetPlain_IntegerKey_WriteClearRead (line 59) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 67) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 75) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 83) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetPlain_StringKey_WriteClearRead (line 107) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method PersistenceStorage_WriteDuplicateFailsWithInconsistentStateException (line 115) | [SkippableFact] method Relational_WriteDuplicateFailsWithInconsistentStateException (line 122) | internal async Task Relational_WriteDuplicateFailsWithInconsistentStat... method Relational_WriteInconsistentFailsWithIncosistentStateException (line 128) | internal async Task Relational_WriteInconsistentFailsWithIncosistentSt... FILE: test/Extensions/Orleans.Redis.Tests/Persistence/RedisStorageTests_DeleteStateOnClear.cs class RedisStorageTests_DeleteStateOnClear (line 12) | [TestCategory("Redis"), TestCategory("Persistence"), TestCategory("Funct... method RedisStorageTests_DeleteStateOnClear (line 19) | public RedisStorageTests_DeleteStateOnClear(ITestOutputHelper output, ... method DataSet2_Cyrillic_WriteClearRead (line 26) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method PersistenceStorage_StorageDataSetPlain_IntegerKey_WriteClearRead (line 34) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 42) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 50) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 58) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetPlain_StringKey_WriteClearRead (line 74) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] FILE: test/Extensions/Orleans.Redis.Tests/Persistence/RedisStorageTests_OrleansSerializer.cs class RedisStorageTests_OrleansSerializer (line 12) | [TestCategory("Redis"), TestCategory("Persistence"), TestCategory("Funct... method RedisStorageTests_OrleansSerializer (line 19) | public RedisStorageTests_OrleansSerializer(ITestOutputHelper output, C... method WriteInconsistentFailsWithIncosistentStateException (line 27) | [SkippableFact] method WriteRead100StatesInParallel (line 34) | [SkippableFact] method Relational_WriteReadWriteRead100StatesInParallel (line 40) | internal Task Relational_WriteReadWriteRead100StatesInParallel() method WriteReadCyrillic (line 45) | [SkippableFact] method DataSet2_Cyrillic_WriteClearRead (line 52) | [SkippableTheory, ClassData(typeof(StorageDataSet2CyrillicIdsAndGrainN... method PersistenceStorage_StorageDataSetPlain_IntegerKey_WriteClearRead (line 60) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method StorageDataSetGeneric_GuidKey_Generic_WriteClearRead (line 68) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_IntegerKey_Generic_WriteClearRead (line 76) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetGeneric_StringKey_Generic_WriteClearRead (line 84) | [SkippableTheory, ClassData(typeof(StorageDataSetGeneric))] method StorageDataSetPlain_StringKey_WriteClearRead (line 108) | [SkippableTheory, ClassData(typeof(StorageDataSetPlain))] method PersistenceStorage_WriteDuplicateFailsWithInconsistentStateException (line 116) | [SkippableFact] method Relational_WriteDuplicateFailsWithInconsistentStateException (line 123) | internal async Task Relational_WriteDuplicateFailsWithInconsistentStat... method Relational_WriteInconsistentFailsWithIncosistentStateException (line 129) | internal async Task Relational_WriteInconsistentFailsWithIncosistentSt... FILE: test/Extensions/Orleans.Redis.Tests/Reminders/RedisReminderTableTests.cs class RedisRemindersTableTests (line 16) | [TestCategory("Redis"), TestCategory("Reminders"), TestCategory("Functio... method RedisRemindersTableTests (line 20) | public RedisRemindersTableTests(ConnectionStringFixture fixture, Commo... method CreateFilters (line 25) | private static LoggerFilterOptions CreateFilters() method CreateRemindersTable (line 32) | protected override IReminderTable CreateRemindersTable() method GetConnectionString (line 53) | protected override Task GetConnectionString() => Task.FromResu... method RemindersTable_Redis_Init (line 55) | [SkippableFact] method RemindersTable_Redis_RemindersRange (line 60) | [SkippableFact] method RemindersTable_Redis_RemindersParallelUpsert (line 66) | [SkippableFact] method RemindersTable_Redis_ReminderSimple (line 72) | [SkippableFact] FILE: test/Extensions/Orleans.Redis.Tests/Utility/CommonFixture.cs class CommonFixture (line 16) | public class CommonFixture : TestEnvironmentFixture method CommonFixture (line 26) | public CommonFixture() method CreateRedisGrainStorage (line 40) | public async Task CreateRedisGrainStorage(bool useOrlea... FILE: test/Extensions/Orleans.Redis.Tests/Utility/TestExtensions.cs class TestExtensions (line 6) | public static class TestExtensions method WithTimeout (line 8) | public static async Task WithTimeout(this Task taskToComplete, TimeSpa... class SiloAddressUtils (line 31) | public static class SiloAddressUtils method NewLocalSiloAddress (line 35) | public static SiloAddress NewLocalSiloAddress(int gen) FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 14) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 22) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] class BaseEventHubTestClusterFixture (line 29) | public abstract class BaseEventHubTestClusterFixture : BaseTestClusterFi... method CheckPreconditionsOrThrow (line 31) | protected override void CheckPreconditionsOrThrow() method InitializeAsync (line 37) | public override async Task InitializeAsync() FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/EventHubConfigurationExtensions.cs class EventHubConfigurationExtensions (line 8) | public static class EventHubConfigurationExtensions method ConfigureTestDefaults (line 10) | public static EventHubOptions ConfigureTestDefaults(this EventHubOptio... method ConfigureTestDefaults (line 24) | public static AzureTableStreamCheckpointerOptions ConfigureTestDefault... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/EvictionStrategyTests/EHPurgeLogicTests.cs class EHPurgeLogicTests (line 21) | [TestCategory("EventHub"), TestCategory("Streaming")] method EHPurgeLogicTests (line 36) | public EHPurgeLogicTests() method EventHubQueueCache_WontPurge_WhenUnderPressure (line 62) | [Fact, TestCategory("BVT")] method EventHubQueueCache_WontPurge_WhenTimePurgePredicateSaysDontPurge (line 85) | [Fact, TestCategory("BVT")] method EventHubQueueCache_WillPurge_WhenTimePurgePredicateSaysPurge_And_NotUnderPressure (line 110) | [Fact, TestCategory("BVT")] method EventHubQueueCache_EvictionStrategy_Behavior (line 136) | [Fact, TestCategory("BVT")] method InitForTesting (line 194) | private void InitForTesting() method GetItemCountInAllCache (line 212) | private int GetItemCountInAllCache(ConcurrentBag> CheckPointerFactory(str... method CacheFactory (line 247) | private IEventHubQueueCache CacheFactory(string partition, IStreamQueu... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/EvictionStrategyTests/TestMocks.cs class EventHubQueueCacheForTesting (line 10) | public class EventHubQueueCacheForTesting : EventHubQueueCache method EventHubQueueCacheForTesting (line 12) | public EventHubQueueCacheForTesting(IObjectPool buffe... class EHEvictionStrategyForTesting (line 19) | public class EHEvictionStrategyForTesting : ChronologicalEvictionStrategy method EHEvictionStrategyForTesting (line 21) | public EHEvictionStrategyForTesting(ILogger logger, ICacheMonitor cach... class MockEventHubCacheAdaptor (line 28) | public class MockEventHubCacheAdaptor : EventHubDataAdapter method MockEventHubCacheAdaptor (line 33) | public MockEventHubCacheAdaptor(Orleans.Serialization.Serializer seria... method GetStreamPosition (line 36) | public override StreamPosition GetStreamPosition(string partition, Eve... class CachePressureInjectionMonitor (line 44) | internal class CachePressureInjectionMonitor : ICachePressureMonitor method CachePressureInjectionMonitor (line 48) | public CachePressureInjectionMonitor() method RecordCachePressureContribution (line 53) | public void RecordCachePressureContribution(double cachePressureContri... method IsUnderPressure (line 58) | public bool IsUnderPressure(DateTime utcNow) class PurgeDecisionInjectionPredicate (line 64) | internal class PurgeDecisionInjectionPredicate : TimePurgePredicate method PurgeDecisionInjectionPredicate (line 67) | public PurgeDecisionInjectionPredicate(TimeSpan minTimeInCache, TimeSp... method ShouldPurgeFromTime (line 73) | public override bool ShouldPurgeFromTime(TimeSpan timeInCache, TimeSpa... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/PluggableQueueBalancerTests.cs class PluggableQueueBalancerTestsWithEHStreamProvider (line 14) | [TestCategory("EventHub"), TestCategory("Streaming")] class Fixture (line 22) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 24) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 31) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 33) | public void Configure(ISiloBuilder hostBuilder) method PluggableQueueBalancerTestsWithEHStreamProvider (line 52) | public PluggableQueueBalancerTestsWithEHStreamProvider(Fixture fixture) method PluggableQueueBalancerTest_ShouldUseInjectedQueueBalancerAndBalanceCorrectly (line 57) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/4317"), TestCat... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/SlowConsumingTests/EHSlowConsumingTests.cs class EHSlowConsumingTests (line 18) | [TestCategory("EventHub"), TestCategory("Streaming")] class Fixture (line 30) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 32) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 37) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 39) | public void Configure(ISiloBuilder hostBuilder) method EHSlowConsumingTests (line 62) | public EHSlowConsumingTests(Fixture fixture) method EHSlowConsuming_ShouldFavorSlowConsumer (line 69) | [Fact, TestCategory("Functional")] method SetUpHealthyConsumerGrain (line 103) | public static async Task> SetUpHe... method StopHealthyConsumerGrainComing (line 118) | private static async Task StopHealthyConsumerGrainComing(List AssertCacheBackPressureTriggered(bool expecte... method IsBackPressureTriggered (line 142) | private async Task IsBackPressureTriggered() FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/StatisticMonitorTests/BlockPoolMonitorForTesting.cs class BlockPoolMonitorForTesting (line 5) | public class BlockPoolMonitorForTesting : IBlockPoolMonitor method TrackMemoryAllocated (line 9) | public void TrackMemoryAllocated(long allocatedMemoryInByte) method TrackMemoryReleased (line 14) | public void TrackMemoryReleased(long releasedMemoryInByte) method Report (line 19) | public void Report(long totalMemoryInByte, long availableMemoryInByte,... class ObjectPoolMonitorCounters (line 25) | [Serializable] FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/StatisticMonitorTests/CacheMonitorForTesting.cs class CacheMonitorForTesting (line 5) | public class CacheMonitorForTesting : ICacheMonitor method TrackCachePressureMonitorStatusChange (line 9) | public void TrackCachePressureMonitorStatusChange(string pressureMonit... method ReportCacheSize (line 15) | public void ReportCacheSize(long totalCacheSizeInByte) method ReportMessageStatistics (line 20) | public void ReportMessageStatistics(DateTime? oldestMessageEnqueueTime... method TrackMemoryAllocated (line 25) | public void TrackMemoryAllocated(int memoryInByte) method TrackMemoryReleased (line 30) | public void TrackMemoryReleased(int memoryInByte) method TrackMessagesAdded (line 35) | public void TrackMessagesAdded(long mesageAdded) method TrackMessagesPurged (line 40) | public void TrackMessagesPurged(long messagePurged) class CacheMonitorCounters (line 46) | [Serializable] FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/StatisticMonitorTests/EHStatisticMonitorTests.cs class EHStatisticMonitorTests (line 19) | [TestCategory("EventHub"), TestCategory("Streaming")] class Fixture (line 30) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 32) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 39) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 41) | public void Configure(ISiloBuilder hostBuilder) method EHStatisticMonitorTests (line 66) | public EHStatisticMonitorTests(Fixture fixture) method EHStatistics_MonitorCalledAccordingly (line 73) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/4594"), TestCat... method AssertCacheMonitorCallCounters (line 117) | private static void AssertCacheMonitorCallCounters(CacheMonitorCounter... method AssertReceiverMonitorCallCounters (line 128) | private static void AssertReceiverMonitorCallCounters(EventHubReceiver... method AssertObjectPoolMonitorCallCounters (line 137) | private static void AssertObjectPoolMonitorCallCounters(ObjectPoolMoni... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/StatisticMonitorTests/EventHubReceiverMonitorForTesting.cs class EventHubReceiverMonitorForTesting (line 5) | public class EventHubReceiverMonitorForTesting : IQueueAdapterReceiverMo... method TrackInitialization (line 9) | public void TrackInitialization(bool success, TimeSpan callTime, Excep... method TrackRead (line 14) | public void TrackRead(bool success, TimeSpan callTime, Exception excep... method TrackMessagesReceived (line 19) | public void TrackMessagesReceived(long count, DateTime? oldestEnqueueT... method TrackShutdown (line 24) | public void TrackShutdown(bool success, TimeSpan callTime, Exception e... class EventHubReceiverMonitorCounters (line 30) | [Serializable] FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHBatchedSubscriptionMultiplicityTests.cs class EHBatchedSubscriptionMultiplicityTests (line 12) | public class EHBatchedSubscriptionMultiplicityTests : OrleansTestingBase... class Fixture (line 22) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 24) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 29) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 31) | public void Configure(ISiloBuilder hostBuilder) method EHBatchedSubscriptionMultiplicityTests (line 58) | public EHBatchedSubscriptionMultiplicityTests(Fixture fixture) method EHBatchedMultipleParallelSubscriptionTest (line 64) | [Fact, TestCategory("EventHub"), TestCategory("Streaming")] method EHBatchedMultipleLinearSubscriptionTest (line 71) | [Fact, TestCategory("EventHub"), TestCategory("Streaming")] method EHBatchedMultipleSubscriptionTest_AddRemove (line 78) | [Fact, TestCategory("EventHub"), TestCategory("Streaming")] method EHBatchedResubscriptionTest (line 85) | [Fact, TestCategory("EventHub"), TestCategory("Streaming")] method EHBatchedResubscriptionAfterDeactivationTest (line 92) | [Fact, TestCategory("EventHub"), TestCategory("Streaming")] method EHBatchedActiveSubscriptionTest (line 99) | [Fact, TestCategory("EventHub"), TestCategory("Streaming")] method EHBatchedTwoIntermitentStreamTest (line 106) | [Fact, TestCategory("EventHub"), TestCategory("Streaming")] FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHClientStreamTests.cs class EHClientStreamTests (line 20) | [TestCategory("EventHub"), TestCategory("Streaming"), TestCategory("Func... method EHClientStreamTests (line 30) | public EHClientStreamTests(ITestOutputHelper output) method InitializeAsync (line 35) | public override async Task InitializeAsync() method ConfigureTestCluster (line 41) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 48) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 50) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 73) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 75) | public void Configure(IConfiguration configuration, IClientBuilder c... method EHStreamProducerOnDroppedClientTest (line 87) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5657")] method EHStreamConsumerOnDroppedClientTest (line 94) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5634")] FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHImplicitSubscriptionStreamRecoveryTests.cs class EHImplicitSubscriptionStreamRecoveryTests (line 19) | [TestCategory("EventHub"), TestCategory("Streaming"), TestCategory("Func... class Fixture (line 29) | public class Fixture : BaseEventHubTestClusterFixture method ConfigureTestCluster (line 31) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 39) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 41) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 63) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 65) | public void Configure(IConfiguration configuration, IClientBuilder... method EHImplicitSubscriptionStreamRecoveryTests (line 79) | public EHImplicitSubscriptionStreamRecoveryTests(Fixture fixture) method Recoverable100EventStreamsWithTransientErrorsTest (line 86) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5633")] method Recoverable100EventStreamsWith1NonTransientErrorTest (line 93) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5638")] method GenerateEvents (line 100) | private async Task GenerateEvents(string streamNamespace, int streamCo... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHProgrammaticSubscribeTests.cs class EHProgrammaticSubscribeTest (line 13) | [TestCategory("EventHub"), TestCategory("Streaming"), TestCategory("Func... class Fixture (line 19) | public class Fixture : BaseEventHubTestClusterFixture method ConfigureTestCluster (line 21) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestClusterConfigurator (line 27) | private class TestClusterConfigurator : ISiloConfigurator, IClientBu... method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 64) | public void Configure(IConfiguration configuration, IClientBuilder... method EHProgrammaticSubscribeTest (line 68) | public EHProgrammaticSubscribeTest(ITestOutputHelper output, Fixture f... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHStreamBatchingTests.cs class EHStreamBatchingTests (line 15) | [TestCategory("EventHub")] class Fixture (line 18) | public class Fixture : BaseEventHubTestClusterFixture method ConfigureTestCluster (line 23) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 29) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 31) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 57) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 59) | public void Configure(IConfiguration configuration, IClientBuilder... method EHStreamBatchingTests (line 73) | public EHStreamBatchingTests(Fixture fixture, ITestOutputHelper output) FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHStreamCacheMissTests.cs class EHStreamCacheMissTests (line 15) | [TestCategory("EventHub"), TestCategory("Streaming"), TestCategory("Func... method EHStreamCacheMissTests (line 21) | public EHStreamCacheMissTests(ITestOutputHelper output) method ConfigureTestCluster (line 26) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 35) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 37) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 65) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 67) | public void Configure(IConfiguration configuration, IClientBuilder c... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHStreamPerPartitionTests.cs class EHStreamPerPartitionTests (line 17) | [TestCategory("EventHub"), TestCategory("Streaming"), TestCategory("Func... class Fixture (line 25) | public class Fixture : BaseEventHubTestClusterFixture method ConfigureTestCluster (line 27) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 33) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 35) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 57) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 59) | public void Configure(IConfiguration configuration, IClientBuilder... method EHStreamPerPartitionTests (line 74) | public EHStreamPerPartitionTests(Fixture fixture) method EH100StreamsTo4PartitionStreamsTest (line 80) | [SkippableFact(Skip = "Not sure what this test is testing, also the ha... method GenerateEvents (line 106) | private async Task GenerateEvents(int streamCount, int eventsInStream) method CheckCounters (line 124) | private static async Task CheckCounters(List CheckCounters(string streamNamespace, int str... method RestartAgents (line 162) | private async Task RestartAgents() method GenerateEvents (line 170) | private async Task GenerateEvents(string streamNamespace, List s... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHStreamingResumeTests.cs class EHStreamingResumeTests (line 14) | [TestCategory("Functional"), TestCategory("Streaming"), TestCategory("St... class MySiloBuilderConfigurator (line 20) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 22) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 53) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 55) | public void Configure(IConfiguration configuration, IClientBuilder c... method CheckPreconditionsOrThrow (line 68) | protected override void CheckPreconditionsOrThrow() => TestUtils.Check... method ConfigureTestCluster (line 70) | protected override void ConfigureTestCluster(TestClusterBuilder builder) FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHSubscriptionMultiplicityTests.cs class EHSubscriptionMultiplicityTests (line 14) | [TestCategory("Functional")] class Fixture (line 25) | public class Fixture : BaseEventHubTestClusterFixture method ConfigureTestCluster (line 27) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 32) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 34) | public void Configure(ISiloBuilder hostBuilder) method EHSubscriptionMultiplicityTests (line 56) | public EHSubscriptionMultiplicityTests(Fixture fixture) method EHMultipleParallelSubscriptionTest (line 63) | [SkippableFact, TestCategory("EventHub"), TestCategory("Streaming")] method EHMultipleLinearSubscriptionTest (line 70) | [SkippableFact, TestCategory("EventHub"), TestCategory("Streaming")] method EHMultipleSubscriptionTest_AddRemove (line 77) | [SkippableFact, TestCategory("EventHub"), TestCategory("Streaming")] method EHResubscriptionTest (line 84) | [SkippableFact, TestCategory("EventHub"), TestCategory("Streaming")] method EHResubscriptionAfterDeactivationTest (line 91) | [SkippableFact, TestCategory("EventHub"), TestCategory("Streaming")] method EHActiveSubscriptionTest (line 98) | [SkippableFact, TestCategory("EventHub"), TestCategory("Streaming")] method EHTwoIntermitentStreamTest (line 105) | [SkippableFact, TestCategory("EventHub"), TestCategory("Streaming")] FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/EHSubscriptionObserverWithImplicitSubscribingTests.cs class EHSubscriptionObserverWithImplicitSubscribingTests (line 14) | [TestCategory("EventHub"), TestCategory("Streaming"), TestCategory("Func... class Fixture (line 21) | public class Fixture : BaseEventHubTestClusterFixture method ConfigureTestCluster (line 23) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestClusterConfigurator (line 30) | private class TestClusterConfigurator : ISiloConfigurator, IClientBuil... method Configure (line 32) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 69) | public void Configure(IConfiguration configuration, IClientBuilder c... method EHSubscriptionObserverWithImplicitSubscribingTests (line 72) | public EHSubscriptionObserverWithImplicitSubscribingTests(ITestOutputH... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/Streaming/TimePurgePredicateTests.cs class TimePurgePredicateTests (line 6) | public class TimePurgePredicateTests method TimePurgePredicate_NoPurgeThreshold_Tests (line 17) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method TimePurgePredicate_PurgeDataThreshold_Tests (line 30) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method TimePurgePredicate_NoPurgeAgeThreshold_Tests (line 43) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method TimePurgePredicate_NoPurgeTimeInCacheThreshold_Tests (line 56) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/TestStreamProviders/EHStreamProviderForMonitorTests.cs class EHStreamProviderForMonitorTestsAdapterFactory (line 13) | public class EHStreamProviderForMonitorTestsAdapterFactory : EventDataGe... method EHStreamProviderForMonitorTestsAdapterFactory (line 25) | public EHStreamProviderForMonitorTestsAdapterFactory( method Create (line 45) | public new static EHStreamProviderForMonitorTestsAdapterFactory Create... method Init (line 62) | public override void Init() method ChangeCachePressure (line 69) | private void ChangeCachePressure() method CreateCacheFactory (line 74) | protected override IEventHubQueueCacheFactory CreateCacheFactory(Event... class CacheFactoryForMonitorTesting (line 93) | private class CacheFactoryForMonitorTesting : EventHubQueueCacheFactory method CacheFactoryForMonitorTesting (line 96) | public CacheFactoryForMonitorTesting( method AddCachePressureMonitors (line 111) | protected override void AddCachePressureMonitors(IEventHubQueueCache... type QueryCommands (line 117) | public enum QueryCommands method ExecuteCommand (line 125) | public override Task ExecuteCommand(int command, object arg) class CachePressureInjectionMonitor (line 149) | public class CachePressureInjectionMonitor : ICachePressureMonitor method CachePressureInjectionMonitor (line 154) | public CachePressureInjectionMonitor() method RecordCachePressureContribution (line 160) | public void RecordCachePressureContribution(double cachePressureContri... method IsUnderPressure (line 165) | public bool IsUnderPressure(DateTime utcNow) FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/TestStreamProviders/EHStreamProviderWithCreatedCacheList.cs class EHStreamProviderWithCreatedCacheListAdapterFactory (line 13) | public class EHStreamProviderWithCreatedCacheListAdapterFactory : EventD... method EHStreamProviderWithCreatedCacheListAdapterFactory (line 20) | public EHStreamProviderWithCreatedCacheListAdapterFactory( method CreateCacheFactory (line 42) | protected override IEventHubQueueCacheFactory CreateCacheFactory(Event... class CacheFactoryForTesting (line 49) | private class CacheFactoryForTesting : EventHubQueueCacheFactory method CacheFactoryForTesting (line 54) | public CacheFactoryForTesting(string name, EventHubStreamCachePressu... method CreateCache (line 65) | protected override IEventHubQueueCache CreateCache( class QueueCacheForTesting (line 89) | private class QueueCacheForTesting : EventHubQueueCache, IQueueFlowCon... method QueueCacheForTesting (line 93) | public QueueCacheForTesting(int defaultMaxAddCount, IObjectPool ExecuteCommand(int command, object arg) method Create (line 126) | public new static EHStreamProviderWithCreatedCacheListAdapterFactory C... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/TestStreamProviders/StreamPerPartitionEventHubStreamProvider.cs class StreamPerPartitionDataAdapter (line 9) | public class StreamPerPartitionDataAdapter : EventHubDataAdapter method StreamPerPartitionDataAdapter (line 11) | public StreamPerPartitionDataAdapter(Orleans.Serialization.Serializer ... method GetStreamPosition (line 13) | public override StreamPosition GetStreamPosition(string partition, Eve... method GetPartitionGuid (line 22) | public static Guid GetPartitionGuid(string partition) FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/TestStreamProviders/TestAzureTableStorageStreamFailureHandler.cs class TestAzureTableStorageStreamFailureHandler (line 13) | public class TestAzureTableStorageStreamFailureHandler : AzureTableStora... method TestAzureTableStorageStreamFailureHandler (line 17) | private TestAzureTableStorageStreamFailureHandler(Serializer Create(Serializer GetDeliveryFailureCount(string streamPro... method GetDataManager (line 39) | private static AzureTableDataManager GetDataManager() method GetAzureStorageOperationOptions (line 45) | private static AzureStorageOperationOptions GetAzureStorageOperationOp... method GetStreamingAzureStorageOperationOptions (line 53) | private static Orleans.Streaming.AzureStorage.AzureStorageOperationOpt... FILE: test/Extensions/Orleans.Streaming.EventHubs.Tests/TestStreamProviders/TestEventHubStreamProvider.cs class TestEventHubStreamAdapterFactory (line 11) | public class TestEventHubStreamAdapterFactory : EventHubAdapterFactory method TestEventHubStreamAdapterFactory (line 13) | public TestEventHubStreamAdapterFactory( method Create (line 29) | public static new TestEventHubStreamAdapterFactory Create(IServiceProv... FILE: test/Extensions/Orleans.Streaming.NATS.Tests/NatsAdapterTests.cs class NatsAdapterTests (line 17) | [TestCategory("NATS")] method NatsAdapterTests (line 30) | public NatsAdapterTests(ITestOutputHelper output, TestEnvironmentFixtu... method InitializeAsync (line 46) | public async Task InitializeAsync() method DisposeAsync (line 62) | public async Task DisposeAsync() method SendAndReceiveFromNats (line 74) | [SkippableFact] method SendAndReceiveFromQueueAdapter (line 90) | private async Task SendAndReceiveFromQueueAdapter(IQueueAdapterFactory... method CreateEvents (line 215) | private static List CreateEvents(int count) FILE: test/Extensions/Orleans.Streaming.NATS.Tests/NatsClientStreamTests.cs class NatsClientStreamTests (line 14) | public class NatsClientStreamTests : TestClusterPerTest method NatsClientStreamTests (line 23) | public NatsClientStreamTests() method InitializeAsync (line 34) | public override async Task InitializeAsync() method DisposeAsync (line 53) | public override async Task DisposeAsync() method ConfigureTestCluster (line 68) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 79) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 81) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 93) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 95) | public void Configure(IConfiguration configuration, IClientBuilder c... method StreamProducerOnDroppedClientTest (line 106) | [SkippableFact, TestCategory("NATS")] FILE: test/Extensions/Orleans.Streaming.NATS.Tests/NatsStreamTests.cs class NatsStreamTests (line 13) | [TestCategory("NATS")] method NatsStreamTests (line 23) | public NatsStreamTests() method ConfigureTestCluster (line 34) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 45) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 47) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 64) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 66) | public void Configure(IConfiguration configuration, IClientBuilder c... method InitializeAsync (line 76) | public override async Task InitializeAsync() method DisposeAsync (line 106) | public override async Task DisposeAsync() method Nats_01_OneProducerGrainOneConsumerGrain (line 134) | [SkippableFact] method Nats_02_OneProducerGrainOneConsumerClient (line 140) | [SkippableFact] method Nats_03_OneProducerClientOneConsumerGrain (line 146) | [SkippableFact] method Nats_04_OneProducerClientOneConsumerClient (line 152) | [SkippableFact] method Nats_05_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 160) | [SkippableFact] method Nats_06_ManyDifferent_ManyProducerGrainManyConsumerClients (line 166) | [SkippableFact] method Nats_07_ManyDifferent_ManyProducerClientsManyConsumerGrains (line 172) | [SkippableFact] method Nats_08_ManyDifferent_ManyProducerClientsManyConsumerClients (line 178) | [SkippableFact] method Nats_09_ManySame_ManyProducerGrainsManyConsumerGrains (line 185) | [SkippableFact] method Nats_10_ManySame_ManyConsumerGrainsManyProducerGrains (line 191) | [SkippableFact] method Nats_11_ManySame_ManyProducerGrainsManyConsumerClients (line 197) | [SkippableFact] method Nats_12_ManySame_ManyProducerClientsManyConsumerGrains (line 203) | [SkippableFact] method Nats_13_SameGrain_ConsumerFirstProducerLater (line 211) | [SkippableFact] method Nats_14_SameGrain_ProducerFirstConsumerLater (line 217) | [SkippableFact] method Nats_15_ConsumeAtProducersRequest (line 225) | [SkippableFact] method Nats_16_MultipleStreams_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 231) | [SkippableFact] method Nats_17_MultipleStreams_1J_ManyProducerGrainsManyConsumerGrains (line 238) | [SkippableFact] FILE: test/Extensions/Orleans.Streaming.NATS.Tests/NatsSubscriptionMultiplicityTests.cs class NatsSubscriptionMultiplicityTests (line 13) | public class NatsSubscriptionMultiplicityTests : TestClusterPerTest method NatsSubscriptionMultiplicityTests (line 22) | public NatsSubscriptionMultiplicityTests() method ConfigureTestCluster (line 33) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 44) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 46) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 57) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 59) | public void Configure(IConfiguration configuration, IClientBuilder c... method InitializeAsync (line 69) | public override async Task InitializeAsync() method DisposeAsync (line 88) | public override async Task DisposeAsync() method NatsMultipleLinearSubscriptionTest (line 106) | [SkippableFact, TestCategory("NATS")] method NatsMultipleSubscriptionTest_AddRemove (line 114) | [SkippableFact, TestCategory("NATS")] method NatsResubscriptionTest (line 122) | [SkippableFact, TestCategory("NATS")] method NatsResubscriptionAfterDeactivationTest (line 129) | [SkippableFact, TestCategory("NATS")] method NatsActiveSubscriptionTest (line 137) | [SkippableFact, TestCategory("NATS")] method NatsTwoIntermitentStreamTest (line 144) | [SkippableFact, TestCategory("NATS")] method NatsSubscribeFromClientTest (line 151) | [SkippableFact, TestCategory("NATS")] FILE: test/Extensions/Orleans.Streaming.NATS.Tests/NatsTestConstants.cs class NatsTestConstants (line 5) | public static class NatsTestConstants FILE: test/Grains/BenchmarkGrainInterfaces/GrainStorage/IPersistentGrain.cs class Report (line 3) | [GenerateSerializer] type IPersistentGrain (line 13) | public interface IPersistentGrain : IGrainWithGuidKey method Init (line 15) | Task Init(int payloadSize); method TrySet (line 16) | Task TrySet(int index); FILE: test/Grains/BenchmarkGrainInterfaces/MapReduce/DataflowGrainsInterfaces.cs type IDataflowGrain (line 3) | public interface IDataflowGrain : IGrain method Complete (line 5) | Task Complete(); method Fault (line 7) | Task Fault(); method Completion (line 9) | Task Completion(); type ITargetGrain (line 12) | public interface ITargetGrain : IDataflowGrain, IGrainWithGui... method OfferMessage (line 14) | Task OfferMessage(TInput messageValue, boo... method SendAsync (line 16) | Task SendAsync(TInput t); method SendAsync (line 18) | Task SendAsync(TInput t, GrainCancellationToken gct); type ISourceGrain (line 21) | public interface ISourceGrain : IDataflowGrain, IGrainWithGuidKey method LinkTo (line 23) | Task LinkTo(ITargetGrain t); method ConsumeMessage (line 25) | Task ConsumeMessage(); type IProcessor (line 28) | public interface IProcessor method Initialize (line 30) | Task Initialize(TProcessor processor); type ITargetProcessor (line 33) | public interface ITargetProcessor method Process (line 35) | void Process(TInput t); type ITransformProcessor (line 38) | public interface ITransformProcessor method Process (line 40) | TOutput Process(TInput input); type IPropagatorGrain (line 43) | public interface IPropagatorGrain : ITargetGrain> ReceiveAll(); type ITransformGrain (line 48) | public interface ITransformGrain : IPropagatorGrain : IPropagatorGrain FILE: test/Grains/BenchmarkGrainInterfaces/MapReduce/GrainDataflowMessageStatus.cs type GrainDataflowMessageStatus (line 3) | public enum GrainDataflowMessageStatus FILE: test/Grains/BenchmarkGrainInterfaces/Ping/ILoadGrain.cs class Report (line 3) | [GenerateSerializer] type ILoadGrain (line 14) | public interface ILoadGrain : IGrainWithGuidKey method Generate (line 16) | Task Generate(int run, int conncurrent); method TryGetReport (line 17) | Task TryGetReport(); FILE: test/Grains/BenchmarkGrainInterfaces/Ping/IPingGrain.cs type IPingGrain (line 5) | public interface IPingGrain : IGrainWithIntegerKey method Run (line 7) | ValueTask Run(); method PingPongInterleave (line 9) | [AlwaysInterleave] FILE: test/Grains/BenchmarkGrainInterfaces/Ping/ITreeGrain.cs type ITreeGrain (line 3) | public interface ITreeGrain : IGrainWithIntegerCompoundKey method Ping (line 5) | public ValueTask Ping(); FILE: test/Grains/BenchmarkGrainInterfaces/Ping/MyType.cs class UserProfile (line 3) | [GenerateSerializer] FILE: test/Grains/BenchmarkGrainInterfaces/Transaction/ILoadGrain.cs class Report (line 3) | [GenerateSerializer] type ILoadGrain (line 19) | public interface ILoadGrain : IGrainWithGuidKey method Generate (line 21) | Task Generate(int run, int transactions, int conncurrent); method TryGetReport (line 22) | Task TryGetReport(); FILE: test/Grains/BenchmarkGrainInterfaces/Transaction/ITransactionGrain.cs type ITransactionGrain (line 3) | public interface ITransactionGrain : IGrainWithIntegerKey method Run (line 5) | [Transaction(TransactionOption.CreateOrJoin)] FILE: test/Grains/BenchmarkGrainInterfaces/Transaction/ITransactionRootGrain.cs type ITransactionRootGrain (line 3) | public interface ITransactionRootGrain : IGrainWithGuidKey method Run (line 5) | [Transaction(TransactionOption.Create)] FILE: test/Grains/BenchmarkGrains/GrainStorage/PersistentGrain.cs class PersistentGrainState (line 8) | [Serializable] class PersistentGrain (line 14) | public class PersistentGrain : Grain, IPersistentGrain method PersistentGrain (line 19) | public PersistentGrain( method Init (line 28) | public async Task Init(int payloadSize) method TrySet (line 34) | public async Task TrySet(int index) FILE: test/Grains/BenchmarkGrains/MapReduce/BufferGrain.cs class BufferGrain (line 5) | public class BufferGrain : DataflowGrain, IBufferGrain method OfferMessage (line 8) | public Task OfferMessage(T messageValue, b... method SendAsync (line 13) | public Task SendAsync(T t) method SendAsync (line 19) | public Task SendAsync(T t, GrainCancellationToken gct) method LinkTo (line 24) | public Task LinkTo(ITargetGrain t) method ConsumeMessage (line 29) | public Task ConsumeMessage() method ReceiveAll (line 34) | public Task> ReceiveAll() FILE: test/Grains/BenchmarkGrains/MapReduce/DataflowGrain.cs class DataflowGrain (line 5) | public abstract class DataflowGrain : Grain, IDataflowGrain method Complete (line 7) | public Task Complete() method Fault (line 12) | public Task Fault() method Completion (line 17) | public Task Completion() FILE: test/Grains/BenchmarkGrains/MapReduce/Processors.cs class MapProcessor (line 5) | [Serializable] method Process (line 11) | public List Process(string input) class ReduceProcessor (line 19) | [Serializable] method Process (line 23) | public Dictionary Process(List input) class EmptyProcessor (line 33) | [Serializable] method Process (line 37) | public Dictionary Process(Dictionary input) FILE: test/Grains/BenchmarkGrains/MapReduce/TargetGrain.cs class TargetGrain (line 5) | public class TargetGrain : DataflowGrain, ITargetGrain method Init (line 9) | public Task Init(ITargetProcessor processor) method OfferMessage (line 15) | public Task OfferMessage(TInput messageVal... method SendAsync (line 20) | public Task SendAsync(TInput t) method SendAsync (line 25) | public Task SendAsync(TInput t, GrainCancellationToken gct) FILE: test/Grains/BenchmarkGrains/MapReduce/TransformGrain.cs class TransformGrain (line 6) | public class TransformGrain : DataflowGrain, ITransform... method Initialize (line 22) | public Task Initialize(ITransformProcessor processor) method ConsumeMessage (line 29) | public Task ConsumeMessage() method LinkTo (line 34) | public Task LinkTo(ITargetGrain t) method OfferMessage (line 40) | public Task OfferMessage(TInput messageVal... method SendAsync (line 45) | public Task SendAsync(TInput t) method SendAsync (line 52) | public Task SendAsync(TInput t, GrainCancellationToken gct) method NotifyOfPendingWork (line 57) | private void NotifyOfPendingWork() method OnDeactivateAsync (line 85) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method ReceiveAll (line 92) | public Task> ReceiveAll() FILE: test/Grains/BenchmarkGrains/Ping/LoadGrain.cs class LoadGrain (line 6) | public class LoadGrain : Grain, ILoadGrain method Generate (line 11) | public Task Generate(int run, int conncurrent) method TryGetReport (line 17) | public async Task TryGetReport() method RunGeneration (line 23) | private async Task RunGeneration(int run, int conncurrent) method ResolvePending (line 42) | private static async Task ResolvePending(List pendingWork, Re... class Pending (line 70) | private class Pending FILE: test/Grains/BenchmarkGrains/Ping/PingGrain.cs class PingGrain (line 6) | public class PingGrain : IGrainBase, IPingGrain method PingGrain (line 10) | public PingGrain(IGrainContext context) method OnActivateAsync (line 17) | public Task OnActivateAsync(CancellationToken cancellationToken) method Run (line 24) | public ValueTask Run() => default; method PingPongInterleave (line 26) | public ValueTask PingPongInterleave(IPingGrain other, int count) FILE: test/Grains/BenchmarkGrains/Ping/TreeGrain.cs class TreeGrain (line 5) | public class TreeGrain : Grain, ITreeGrain method TreeGrain (line 12) | public TreeGrain() method Ping (line 27) | public async ValueTask Ping() FILE: test/Grains/BenchmarkGrains/Transaction/LoadGrain.cs class LoadGrain (line 7) | [GrainType("txload")] method Generate (line 12) | public Task Generate(int run, int transactions, int conncurrent) method TryGetReport (line 19) | public async Task TryGetReport() method RunGeneration (line 25) | private async Task RunGeneration(int run, int transactions, in... method ResolvePending (line 46) | private static async Task> ResolvePending(List pendin... method StartTransaction (line 85) | private async Task StartTransaction(int index) FILE: test/Grains/BenchmarkGrains/Transaction/TransactionGrain.cs class Info (line 6) | [Serializable] class TransactionGrain (line 14) | public class TransactionGrain : Grain, ITransactionGrain method TransactionGrain (line 18) | public TransactionGrain( method Run (line 24) | public Task Run() FILE: test/Grains/BenchmarkGrains/Transaction/TransactionRootGrain.cs class TransactionRootGrain (line 6) | [Reentrant] method Run (line 10) | public Task Run(List grains) FILE: test/Grains/TestFSharpGrainInterfaces/IFSharpParametersGrain.cs type IFSharpParametersGrain (line 8) | public interface IFSharpParametersGrain : IGrainWithGuidKey, IFShar... FILE: test/Grains/TestFSharpGrainInterfaces/IGeneratorTestDerivedFromFSharpInterfaceInExternalAssemblyGrain.cs type IGeneratorTestDerivedFromFSharpInterfaceInExternalAssemblyGrain (line 7) | public interface IGeneratorTestDerivedFromFSharpInterfaceInExternalAssem... FILE: test/Grains/TestGrainInterfaces/AdoNet/ICustomerGrain.cs type ICustomerGrain (line 3) | public interface ICustomerGrain : IGrainWithIntegerKey method IntroduceSelf (line 5) | Task IntroduceSelf(); method Set (line 7) | Task Set(int customerId, string firstName, string lastName); method AddDevice (line 9) | Task AddDevice(IDeviceGrain device); method SetRandomState (line 11) | Task SetRandomState(); FILE: test/Grains/TestGrainInterfaces/AdoNet/IDeviceGrain.cs type IDeviceGrain (line 3) | public interface IDeviceGrain : IGrainWithGuidKey method GetSerialNumber (line 5) | Task GetSerialNumber(); method SetOwner (line 7) | Task SetOwner(ICustomerGrain customer); FILE: test/Grains/TestGrainInterfaces/ClassNotReferencingOrleansTypeDto.cs class ClassNotReferencingOrleansTypeDto (line 3) | [Serializable] FILE: test/Grains/TestGrainInterfaces/ClassReferencingOrleansTypeDto.cs class ClassReferencingOrleansTypeDto (line 3) | [Serializable] method ClassReferencingOrleansTypeDto (line 7) | static ClassReferencingOrleansTypeDto() FILE: test/Grains/TestGrainInterfaces/CodegenTestInterfaces.cs class Command (line 9) | [GenerateSerializer] class Command (line 17) | [GenerateSerializer] type ISameNameParameterTypeGrain (line 29) | internal interface ISameNameParameterTypeGrain : IGrainWithIntegerKey method ExecuteCommand (line 31) | Task ExecuteCommand(One.Command command); method ExecuteCommand (line 32) | Task ExecuteCommand(Two.Command command); type IInternalPingGrain (line 35) | internal interface IInternalPingGrain : IGrainWithIntegerKey method Ping (line 37) | Task Ping(); type ISomeGrain (line 40) | public interface ISomeGrain : IGrainWithIntegerKey method Do (line 42) | Task Do(Outsider o); type ISerializationGenerationGrain (line 45) | public interface ISerializationGenerationGrain : IGrainWithIntegerKey method RoundTripObject (line 47) | Task RoundTripObject(object input); method RoundTripStruct (line 48) | Task RoundTripStruct(SomeStruct input); method RoundTripClass (line 49) | Task RoundTripClass(SomeAbstractClass input); method RoundTripInterface (line 50) | Task RoundTripInterface(ISomeInterface input); method RoundTripEnum (line 51) | Task RoundTripEnum(SomeAbstractClass.SomeE... method SetState (line 53) | Task SetState(SomeAbstractClass input); method GetState (line 54) | Task GetState(); class Outsider (line 58) | [GenerateSerializer] class CaseInsensitiveStringEquality (line 63) | [Serializable] method Equals (line 67) | public override bool Equals(string x, string y) method GetHashCode (line 72) | public override int GetHashCode(string obj) class Mod5IntegerComparer (line 78) | [Serializable] method Equals (line 82) | public override bool Equals(int x, int y) method GetHashCode (line 87) | public override int GetHashCode(int obj) class CaseInsensitiveStringComparer (line 93) | [Serializable] method Compare (line 97) | public override int Compare(string x, string y) class RootType (line 105) | [Serializable] method RootType (line 109) | public RootType() method Equals (line 121) | public override bool Equals(object obj) method GetHashCode (line 137) | public override int GetHashCode() type SomeStruct (line 143) | [Serializable] method SomeStruct (line 164) | public SomeStruct(int readonlyField) method GetValueWithPrivateGetter (line 170) | public readonly int GetValueWithPrivateGetter() method GetPrivateValue (line 175) | public readonly int GetPrivateValue() method SetPrivateValue (line 180) | public void SetPrivateValue(int value) method SetValueWithPrivateSetter (line 185) | public void SetValueWithPrivateSetter(int value) type ISomeInterface (line 191) | public interface ISomeInterface { int Int { get; set; } } class SomeAbstractClass (line 193) | [Serializable] method GetObsoleteInt (line 220) | public int GetObsoleteInt() => this.ObsoleteInt; method SetObsoleteInt (line 221) | public void SetObsoleteInt(int value) type SomeEnum (line 243) | [Serializable] class AnotherConcreteClass (line 254) | [Serializable] class InnerType (line 265) | [Serializable] method InnerType (line 269) | public InnerType() method Equals (line 280) | public override bool Equals(object obj) method GetHashCode (line 290) | public override int GetHashCode() class ClassWithStructConstraint (line 296) | [Serializable] class ClassWithNestedPrivateClassInListField (line 307) | [Serializable] class NestedPrivateClass (line 317) | private class NestedPrivateClass type ReadOnlyStructWithReadOnlyArray (line 325) | [Serializable] method ReadOnlyStructWithReadOnlyArray (line 334) | public ReadOnlyStructWithReadOnlyArray(byte[] value) => this._value = ... FILE: test/Grains/TestGrainInterfaces/CustomPlacement.cs type ICustomPlacementTestGrain (line 7) | public interface ICustomPlacementTestGrain : IGrainWithGuidKey method GetRuntimeInstanceId (line 9) | Task GetRuntimeInstanceId(); type IHashBasedPlacementGrain (line 12) | public interface IHashBasedPlacementGrain : IGrainWithGuidKey method GetSiloAddress (line 14) | Task GetSiloAddress(); type CustomPlacementScenario (line 18) | public enum CustomPlacementScenario class TestCustomPlacementStrategy (line 25) | [Serializable] method TestCustomPlacementStrategy (line 38) | internal TestCustomPlacementStrategy(CustomPlacementScenario scenario) method TestCustomPlacementStrategy (line 43) | public TestCustomPlacementStrategy() { } method Initialize (line 45) | public override void Initialize(GrainProperties properties) method PopulateGrainProperties (line 55) | public override void PopulateGrainProperties(IServiceProvider services... class TestPlacementStrategyAttribute (line 62) | [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] method TestPlacementStrategyAttribute (line 67) | public TestPlacementStrategyAttribute(CustomPlacementScenario scenario) : method GetCustomPlacementStrategy (line 73) | private static TestCustomPlacementStrategy GetCustomPlacementStrategy(... FILE: test/Grains/TestGrainInterfaces/Directories/ICommonDirectoryGrain.cs type ICommonDirectoryGrain (line 3) | public interface ICommonDirectoryGrain : IGrainWithGuidKey method Ping (line 5) | Task Ping(); method Reset (line 7) | Task Reset(); method GetRuntimeInstanceId (line 9) | Task GetRuntimeInstanceId(); method ProxyPing (line 11) | Task ProxyPing(ICommonDirectoryGrain grain); FILE: test/Grains/TestGrainInterfaces/Directories/ICustomDirectoryGrain.cs type ICustomDirectoryGrain (line 3) | public interface ICustomDirectoryGrain : ICommonDirectoryGrain FILE: test/Grains/TestGrainInterfaces/Directories/IDefaultDirectoryGrain.cs type IDefaultDirectoryGrain (line 3) | public interface IDefaultDirectoryGrain : ICommonDirectoryGrain FILE: test/Grains/TestGrainInterfaces/EventSourcing/IAccountGrain.cs type IAccountGrain (line 6) | public interface IAccountGrain : IGrainWithStringKey method Balance (line 8) | Task Balance(); method Deposit (line 10) | Task Deposit(uint amount, Guid guid, string desc); method Withdraw (line 12) | Task Withdraw(uint amount, Guid guid, string desc); method GetTransactionLog (line 14) | Task> GetTransactionLog(); class Transaction (line 22) | [Serializable] class DepositTransaction (line 39) | [Serializable] class WithdrawalTransaction (line 47) | [Serializable] FILE: test/Grains/TestGrainInterfaces/EventSourcing/IChatGrain.cs type IChatGrain (line 11) | public interface IChatGrain : IGrainWithStringKey method GetChat (line 14) | Task GetChat(); method Post (line 17) | Task Post(Guid guid, string user, string text); method Delete (line 20) | Task Delete(Guid guid); method Edit (line 23) | Task Edit(Guid guid, string text); class XDocumentSerialization (line 29) | [RegisterSerializer] method XDocumentSerialization (line 33) | public XDocumentSerialization(IValueSerializer sur... method ConvertFromSurrogate (line 37) | public override XDocument ConvertFromSurrogate(ref XDocumentSurrogate ... method ConvertToSurrogate (line 38) | public override void ConvertToSurrogate(XDocument value, ref XDocument... method DeepCopy (line 39) | public XDocument DeepCopy(XDocument input, CopyContext context) => new... type XDocumentSurrogate (line 42) | [GenerateSerializer] FILE: test/Grains/TestGrainInterfaces/EventSourcing/ICountersGrain.cs type ICountersGrain (line 7) | public interface ICountersGrain : Orleans.IGrainWithIntegerKey method Add (line 10) | Task Add(string key, int amount, bool wait_for_confirmation); method Reset (line 13) | Task Reset(bool wait_for_confirmation); method GetTentativeCount (line 16) | Task GetTentativeCount(string key); method GetTentativeState (line 19) | Task> GetTentativeState(); method GetConfirmedState (line 22) | Task> GetConfirmedState(); method ConfirmAllPreviouslyRaisedEvents (line 25) | Task ConfirmAllPreviouslyRaisedEvents(); FILE: test/Grains/TestGrainInterfaces/EventSourcing/IPersonGrain.cs type GenderType (line 3) | public enum GenderType class PersonAttributes (line 9) | [Serializable] type IPersonGrain (line 24) | public interface IPersonGrain : Orleans.IGrainWithGuidKey method RegisterBirth (line 26) | Task RegisterBirth(PersonAttributes person); method Marry (line 27) | Task Marry(IPersonGrain spouse); method GetTentativePersonalAttributes (line 29) | Task GetTentativePersonalAttributes(); method RunTentativeConfirmedStateTest (line 33) | Task RunTentativeConfirmedStateTest(); FILE: test/Grains/TestGrainInterfaces/EventSourcing/ISeatReservationGrain.cs type ISeatReservationGrain (line 4) | public interface ISeatReservationGrain : IGrainWithIntegerKey method Reserve (line 7) | Task Reserve(int seatnumber, string userid); FILE: test/Grains/TestGrainInterfaces/GetGrainInterfaces.cs type IBase (line 3) | public interface IBase : IGrainWithIntegerKey method Foo (line 5) | Task Foo(); type IDerivedFromBase (line 8) | public interface IDerivedFromBase : IBase method Bar (line 10) | Task Bar(); type IBase1 (line 13) | public interface IBase1 : IGrainWithIntegerKey method Foo (line 15) | Task Foo(); type IBase2 (line 18) | public interface IBase2 : IGrainWithIntegerKey method Bar (line 20) | Task Bar(); type IBase3 (line 23) | public interface IBase3 : IGrainWithIntegerKey method Foo (line 25) | Task Foo(); type IBase4 (line 28) | public interface IBase4 : IGrainWithIntegerKey method Foo (line 30) | Task Foo(); type IStringGrain (line 33) | public interface IStringGrain : IGrainWithStringKey method Foo (line 35) | Task Foo(); type IGuidGrain (line 38) | public interface IGuidGrain : IGrainWithGuidKey method Foo (line 40) | Task Foo(); FILE: test/Grains/TestGrainInterfaces/GrainInterfaceHierarchyIGrains.cs type IDoSomething (line 3) | public interface IDoSomething method DoIt (line 5) | Task DoIt(); method SetA (line 7) | Task SetA(int a); method IncrementA (line 9) | Task IncrementA(); method GetA (line 11) | Task GetA(); type IDoSomethingWithMoreGrain (line 14) | public interface IDoSomethingWithMoreGrain : IDoSomething, IGrainWithInt... method DoThat (line 16) | Task DoThat(); method SetB (line 18) | Task SetB(int a); method IncrementB (line 20) | Task IncrementB(); method GetB (line 22) | Task GetB(); type IDoSomethingEmptyGrain (line 25) | public interface IDoSomethingEmptyGrain : IDoSomething, IGrainWithIntege... type IDoSomethingEmptyWithMoreGrain (line 29) | public interface IDoSomethingEmptyWithMoreGrain : IDoSomethingEmptyGrain method DoMore (line 31) | Task DoMore(); type IDoSomethingWithMoreEmptyGrain (line 34) | public interface IDoSomethingWithMoreEmptyGrain : IDoSomethingEmptyWithM... type IDoSomethingCombinedGrain (line 38) | public interface IDoSomethingCombinedGrain : IDoSomethingWithMoreGrain, ... method SetC (line 40) | Task SetC(int a); method IncrementC (line 42) | Task IncrementC(); method GetC (line 44) | Task GetC(); FILE: test/Grains/TestGrainInterfaces/IActivateDeactivateTestGrain.cs type ISimpleActivateDeactivateTestGrain (line 5) | public interface ISimpleActivateDeactivateTestGrain : IGrainWithIntegerKey method DoSomething (line 7) | Task DoSomething(); method DoDeactivate (line 8) | Task DoDeactivate(); type ITailCallActivateDeactivateTestGrain (line 11) | public interface ITailCallActivateDeactivateTestGrain : IGrainWithIntege... method DoSomething (line 13) | Task DoSomething(); method DoDeactivate (line 14) | Task DoDeactivate(); type ILongRunningActivateDeactivateTestGrain (line 17) | public interface ILongRunningActivateDeactivateTestGrain : IGrainWithInt... method DoSomething (line 19) | Task DoSomething(); method DoDeactivate (line 20) | Task DoDeactivate(); type IBadActivateDeactivateTestGrain (line 23) | public interface IBadActivateDeactivateTestGrain : IGrainWithIntegerKey method ThrowSomething (line 25) | Task ThrowSomething(); method GetKey (line 26) | Task GetKey(); type IBadConstructorTestGrain (line 29) | public interface IBadConstructorTestGrain : IGrainWithIntegerKey method DoSomething (line 31) | Task DoSomething(); type ITaskActionActivateDeactivateTestGrain (line 34) | public interface ITaskActionActivateDeactivateTestGrain : IGrainWithInte... method DoSomething (line 36) | Task DoSomething(); method DoDeactivate (line 37) | Task DoDeactivate(); type ICreateGrainReferenceTestGrain (line 40) | public interface ICreateGrainReferenceTestGrain : IGrainWithIntegerKey method DoSomething (line 42) | Task DoSomething(); method ForwardCall (line 44) | Task ForwardCall(IBadActivateDeactivateTestGrain otherGrain); type IDeactivatingWhileActivatingTestGrain (line 47) | public interface IDeactivatingWhileActivatingTestGrain : IGrainWithInteg... method DoSomething (line 49) | Task DoSomething(); FILE: test/Grains/TestGrainInterfaces/IActivateDeactivateWatcherGrain.cs type IActivateDeactivateWatcherGrain (line 3) | public interface IActivateDeactivateWatcherGrain : IGrainWithIntegerKey method GetActivateCalls (line 5) | Task GetActivateCalls(); method GetDeactivateCalls (line 6) | Task GetDeactivateCalls(); method Clear (line 8) | Task Clear(); method RecordActivateCall (line 10) | Task RecordActivateCall(string activation); method RecordDeactivateCall (line 11) | Task RecordDeactivateCall(string activation); FILE: test/Grains/TestGrainInterfaces/IActivationCancellationTestGrain.cs type IActivationCancellationTestGrain (line 9) | public interface IActivationCancellationTestGrain : IGrainWithGuidKey method GetActivationId (line 14) | Task GetActivationId(); method IsActivated (line 19) | Task IsActivated(); FILE: test/Grains/TestGrainInterfaces/IActivityGrain.cs type IActivityGrain (line 3) | public interface IActivityGrain : IGrainWithIntegerKey method GetActivityId (line 5) | Task GetActivityId(); type IAsyncEnumerableActivityGrain (line 11) | public interface IAsyncEnumerableActivityGrain : IGrainWithIntegerKey method GetActivityDataStream (line 20) | IAsyncEnumerable GetActivityDataStream(int count, Cancel... class ActivityData (line 23) | [GenerateSerializer] FILE: test/Grains/TestGrainInterfaces/ICSharpBaseInterface.cs type ICSharpBaseInterface (line 3) | public interface ICSharpBaseInterface method Echo (line 5) | Task Echo(int x); FILE: test/Grains/TestGrainInterfaces/ICancellationTestSystemTarget.cs type ICancellationTestSystemTarget (line 8) | public interface ICancellationTestSystemTarget : ISystemTarget method GetRuntimeInstanceId (line 13) | Task GetRuntimeInstanceId(); method LongWait (line 21) | Task LongWait(CancellationToken cancellationToken, TimeSpan delay, Gui... method CallOtherLongRunningTask (line 30) | Task CallOtherLongRunningTask(ICancellationTestSystemTarget target, Ca... method CallOtherLongRunningTaskWithLocalCancellation (line 40) | Task CallOtherLongRunningTaskWithLocalCancellation(ICancellationTestSy... method CancellationTokenCallbackResolve (line 48) | Task CancellationTokenCallbackResolve(CancellationToken cancella... method CallOtherCancellationTokenCallbackResolve (line 56) | Task CallOtherCancellationTokenCallbackResolve(ICancellationTest... method CancellationTokenCallbackThrow (line 63) | Task CancellationTokenCallbackThrow(CancellationToken cancellationToke... method WasCallCancelled (line 70) | Task WasCallCancelled(Guid callId); method WaitForCancellation (line 78) | Task<(bool WasCancelled, Exception? Error)> WaitForCancellation(Guid c... FILE: test/Grains/TestGrainInterfaces/ICatalogTestGrain.cs type ICatalogTestGrain (line 3) | public interface ICatalogTestGrain : IGrainWithIntegerKey method Initialize (line 5) | Task Initialize(); method BlastCallNewGrains (line 6) | Task BlastCallNewGrains(int nGrains, long startingKey, int nCallsToEach); FILE: test/Grains/TestGrainInterfaces/IChainedGrain.cs type IChainedGrain (line 3) | public interface IChainedGrain : IGrainWithIntegerKey method GetId (line 5) | Task GetId(); method GetX (line 6) | Task GetX(); method GetNext (line 7) | Task GetNext(); method GetCalculatedValue (line 9) | Task GetCalculatedValue(); method SetNext (line 10) | Task SetNext(IChainedGrain next); method SetNextNested (line 11) | Task SetNextNested(ChainGrainHolder next); method Validate (line 13) | Task Validate(bool nextIsSet); method PassThis (line 14) | Task PassThis(IChainedGrain next); method PassNull (line 15) | Task PassNull(IChainedGrain next); method PassThisNested (line 16) | Task PassThisNested(ChainGrainHolder next); method PassNullNested (line 17) | Task PassNullNested(ChainGrainHolder next); class ChainGrainHolder (line 20) | [GenerateSerializer] FILE: test/Grains/TestGrainInterfaces/ICircularStateTestGrain.cs type ICircularStateTestGrain (line 3) | public interface ICircularStateTestGrain : IGrainWithGuidCompoundKey method GetState (line 5) | Task GetState(); class CircularStateTestState (line 8) | [Serializable] class CircularTest1 (line 16) | [Serializable] class CircularTest2 (line 24) | [Serializable] method CircularTest2 (line 28) | public CircularTest2() FILE: test/Grains/TestGrainInterfaces/IClientAddressableTestConsumer.cs type IClientAddressableTestConsumer (line 3) | public interface IClientAddressableTestConsumer : IGrainWithIntegerKey method PollProducer (line 5) | Task PollProducer(); method Setup (line 6) | Task Setup(); FILE: test/Grains/TestGrainInterfaces/IClusterTestGrains.cs type IClusterTestGrain (line 3) | public interface IClusterTestGrain : IGrainWithIntegerKey method SayHelloAsync (line 5) | Task SayHelloAsync(); method Deactivate (line 6) | Task Deactivate(); method GetRuntimeId (line 7) | Task GetRuntimeId(); method Subscribe (line 8) | Task Subscribe(IClusterTestListener listener); method EnableStreamNotifications (line 9) | Task EnableStreamNotifications(); type IClusterTestListener (line 12) | public interface IClusterTestListener : IGrainObserver method GotHello (line 14) | void GotHello(int number); FILE: test/Grains/TestGrainInterfaces/ICollectionTestGrain.cs type ICollectionTestGrain (line 3) | public interface ICollectionTestGrain : IGrainWithIntegerKey method GetAge (line 5) | Task GetAge(); method IncrCounter (line 7) | Task IncrCounter(); method DeactivateSelf (line 9) | Task DeactivateSelf(); method SetOther (line 11) | Task SetOther(ICollectionTestGrain other); method GetOtherAge (line 13) | Task GetOtherAge(); method GetGrainReference (line 15) | Task GetGrainReference(); method GetRuntimeInstanceId (line 17) | Task GetRuntimeInstanceId(); method StartTimer (line 19) | Task StartTimer(TimeSpan timerPeriod, TimeSpan delayPeriod); FILE: test/Grains/TestGrainInterfaces/IConcurrentGrain.cs type IConcurrentGrain (line 3) | public interface IConcurrentGrain : IGrainWithIntegerKey method Initialize (line 5) | Task Initialize(int index); method A (line 8) | Task A(); method B (line 10) | Task B(int time); method ModifyReturnList_Test (line 12) | Task> ModifyReturnList_Test(); method Initialize_2 (line 14) | Task Initialize_2(int index); method TailCall_Caller (line 15) | Task TailCall_Caller(IConcurrentReentrantGrain another, bool doCW); method TailCall_Resolver (line 16) | Task TailCall_Resolver(IConcurrentReentrantGrain another); type IConcurrentReentrantGrain (line 19) | public interface IConcurrentReentrantGrain : IGrainWithIntegerKey method Initialize_2 (line 21) | Task Initialize_2(int index); method TailCall_Called (line 22) | Task TailCall_Called(); method TailCall_Resolve (line 23) | Task TailCall_Resolve(); FILE: test/Grains/TestGrainInterfaces/IConsumerEventCountingGrain.cs type IConsumerEventCountingGrain (line 6) | public interface IConsumerEventCountingGrain : IGrainWithGuidKey method BecomeConsumer (line 8) | Task BecomeConsumer(Guid streamId, string providerToUse); method StopConsuming (line 10) | Task StopConsuming(); method GetNumberConsumed (line 12) | Task GetNumberConsumed(); FILE: test/Grains/TestGrainInterfaces/IDeadlockGrain.cs type IDeadlockNonReentrantGrain (line 5) | public interface IDeadlockNonReentrantGrain : IGrainWithIntegerKey method CallNext_1 (line 7) | Task CallNext_1(List<(long GrainId, bool Blocking)> callChain, int cur... method CallNext_2 (line 8) | Task CallNext_2(List<(long GrainId, bool Blocking)> callChain, int cur... type IDeadlockReentrantGrain (line 11) | public interface IDeadlockReentrantGrain : IGrainWithIntegerKey method CallNext_1 (line 13) | Task CallNext_1(List<(long GrainId, bool Blocking)> callChain, int cur... method CallNext_2 (line 14) | Task CallNext_2(List<(long GrainId, bool Blocking)> callChain, int cur... type ICallChainObserver (line 17) | public interface ICallChainObserver : IGrainObserver method OnEnter (line 19) | Task OnEnter(string grain, int callIndex); method OnExit (line 20) | Task OnExit(string grain, int callIndex); type ICallChainReentrancyGrain (line 23) | public interface ICallChainReentrancyGrain : IGrainWithStringKey method CallChain (line 25) | Task CallChain(ICallChainObserver observer, List<(string TargetGrain, ... method UnblockWaiters (line 27) | [AlwaysInterleave] type ReentrancyCallType (line 31) | [GenerateSerializer] FILE: test/Grains/TestGrainInterfaces/IDurableJobGrain.cs type IDurableJobGrain (line 11) | public interface IDurableJobGrain : IGrainWithStringKey method ScheduleJobAsync (line 13) | Task ScheduleJobAsync(string jobName, DateTimeOffset sched... method TryCancelJobAsync (line 15) | Task TryCancelJobAsync(DurableJob job); method HasJobRan (line 17) | Task HasJobRan(string jobId); method WaitForJobToRun (line 19) | [AlwaysInterleave] method GetJobExecutionTime (line 22) | Task GetJobExecutionTime(string jobId); method GetJobRun (line 24) | Task GetJobRun(string jobId); method WasCancellationTokenCancelled (line 26) | Task WasCancellationTokenCancelled(string jobId); FILE: test/Grains/TestGrainInterfaces/IEchoTaskGrain.cs type IEchoGrain (line 8) | public interface IEchoGrain : IGrainWithGuidKey method GetLastEcho (line 10) | Task GetLastEcho(); method Echo (line 12) | Task Echo(string data); method EchoError (line 13) | Task EchoError(string data); method EchoNullable (line 14) | Task> EchoNullable(Nullable value); type IEchoTaskGrain (line 17) | [GenerateMethodSerializers(typeof(GrainReference))] method GetMyIdAsync (line 20) | Task GetMyIdAsync(); method GetLastEchoAsync (line 22) | Task GetLastEchoAsync(); method EchoAsync (line 24) | Task EchoAsync(string data); method EchoErrorAsync (line 25) | Task EchoErrorAsync(string data); method BlockingCallTimeoutAsync (line 27) | [ResponseTimeout("00:00:05")] method BlockingCallTimeoutNoResponseTimeoutOverrideAsync (line 30) | Task BlockingCallTimeoutNoResponseTimeoutOverrideAsync(TimeSpan d... method PingAsync (line 32) | Task PingAsync(); method PingLocalSiloAsync (line 34) | Task PingLocalSiloAsync(); method PingRemoteSiloAsync (line 35) | Task PingRemoteSiloAsync(SiloAddress siloAddress); method PingOtherSiloAsync (line 36) | Task PingOtherSiloAsync(); method PingClusterMemberAsync (line 37) | Task PingClusterMemberAsync(); type IBlockingEchoTaskGrain (line 40) | public interface IBlockingEchoTaskGrain : IGrainWithIntegerKey method GetMyId (line 42) | Task GetMyId(); method GetLastEcho (line 44) | Task GetLastEcho(); method Echo (line 46) | Task Echo(string data); method CallMethodTask_Await (line 47) | Task CallMethodTask_Await(string data); method CallMethodAV_Await (line 48) | Task CallMethodAV_Await(string data); method CallMethodTask_Block (line 49) | Task CallMethodTask_Block(string data); method CallMethodAV_Block (line 50) | Task CallMethodAV_Block(string data); type IReentrantBlockingEchoTaskGrain (line 53) | public interface IReentrantBlockingEchoTaskGrain : IGrainWithIntegerKey method GetMyId (line 55) | Task GetMyId(); method GetLastEcho (line 57) | Task GetLastEcho(); method Echo (line 59) | Task Echo(string data); method CallMethodTask_Await (line 60) | Task CallMethodTask_Await(string data); method CallMethodAV_Await (line 61) | Task CallMethodAV_Await(string data); method CallMethodTask_Block (line 62) | Task CallMethodTask_Block(string data); method CallMethodAV_Block (line 63) | Task CallMethodAV_Block(string data); type IDebuggerHelperTestGrain (line 66) | public interface IDebuggerHelperTestGrain : IGrain method OrleansDebuggerHelper_GetGrainInstance_Test (line 68) | Task OrleansDebuggerHelper_GetGrainInstance_Test(); FILE: test/Grains/TestGrainInterfaces/IErrorGrain.cs type IErrorGrain (line 3) | public interface IErrorGrain : ISimpleGrain method LogMessage (line 5) | Task LogMessage(string msg); method SetAError (line 6) | Task SetAError(int a); method SetBError (line 7) | Task SetBError(int a); method GetAxBError (line 8) | Task GetAxBError(); method GetAxBError (line 9) | Task GetAxBError(int a, int b); method LongMethod (line 10) | Task LongMethod(int waitTime); method LongMethodWithError (line 11) | Task LongMethodWithError(int waitTime); method DelayMethod (line 12) | Task DelayMethod(int milliseconds); method Dispose (line 13) | Task Dispose(); method UnobservedErrorImmediate (line 14) | Task UnobservedErrorImmediate(); method UnobservedErrorDelayed (line 15) | Task UnobservedErrorDelayed(); method UnobservedErrorContinuation2 (line 16) | Task UnobservedErrorContinuation2(); method UnobservedErrorContinuation3 (line 17) | Task UnobservedErrorContinuation3(); method UnobservedIgnoredError (line 18) | Task UnobservedIgnoredError(); method AddChildren (line 19) | Task AddChildren(List children); method ExecuteDelayed (line 20) | Task ExecuteDelayed(TimeSpan delay); FILE: test/Grains/TestGrainInterfaces/IExceptionGrain.cs type IExceptionGrain (line 13) | public interface IExceptionGrain : IGrainWithIntegerKey method Canceled (line 15) | Task Canceled(); method ThrowsInvalidOperationException (line 17) | Task ThrowsInvalidOperationException(); method ThrowsNullReferenceException (line 19) | Task ThrowsNullReferenceException(); method ThrowsAggregateExceptionWrappingInvalidOperationException (line 21) | Task ThrowsAggregateExceptionWrappingInvalidOperationException(); method ThrowsNestedAggregateExceptionsWrappingInvalidOperationException (line 23) | Task ThrowsNestedAggregateExceptionsWrappingInvalidOperationException(); method GrainCallToThrowsInvalidOperationException (line 25) | Task GrainCallToThrowsInvalidOperationException(long otherGrainId); method GrainCallToThrowsAggregateExceptionWrappingInvalidOperationException (line 27) | Task GrainCallToThrowsAggregateExceptionWrappingInvalidOperationExcept... method ThrowsSynchronousInvalidOperationException (line 29) | Task ThrowsSynchronousInvalidOperationException(); method ThrowsSynchronousExceptionObjectTask (line 31) | Task ThrowsSynchronousExceptionObjectTask(); method ThrowsMultipleExceptionsAggregatedInFaultedTask (line 33) | Task ThrowsMultipleExceptionsAggregatedInFaultedTask(); method ThrowsSynchronousAggregateExceptionWithMultipleInnerExceptions (line 35) | Task ThrowsSynchronousAggregateExceptionWithMultipleInnerExceptions(); type IMessageSerializationGrain (line 38) | public interface IMessageSerializationGrain : IGrainWithIntegerKey method SendUnserializable (line 40) | Task SendUnserializable(UnserializableType input); method SendUndeserializable (line 41) | Task SendUndeserializable(UndeserializableType input); method GetUnserializable (line 42) | Task GetUnserializable(); method GetUndeserializable (line 43) | Task GetUndeserializable(); method SendUnserializableToOtherSilo (line 45) | Task SendUnserializableToOtherSilo(); method SendUndeserializableToOtherSilo (line 46) | Task SendUndeserializableToOtherSilo(); method GetUnserializableFromOtherSilo (line 47) | Task GetUnserializableFromOtherSilo(); method GetUndeserializableFromOtherSilo (line 48) | Task GetUndeserializableFromOtherSilo(); method SendUnserializableToClient (line 50) | Task SendUnserializableToClient(IMessageSerializationClientObject obj); method SendUndeserializableToClient (line 51) | Task SendUndeserializableToClient(IMessageSerializationClientObject obj); method GetUnserializableFromClient (line 52) | Task GetUnserializableFromClient(IMessageSerializationClientObject obj); method GetUndeserializableFromClient (line 53) | Task GetUndeserializableFromClient(IMessageSerializationClientObject o... method GetSiloIdentity (line 55) | Task GetSiloIdentity(); type IMessageSerializationClientObject (line 58) | public interface IMessageSerializationClientObject : IAddressable method SendUnserializable (line 60) | Task SendUnserializable(UnserializableType input); method SendUndeserializable (line 61) | Task SendUndeserializable(UndeserializableType input); method GetUnserializable (line 62) | Task GetUnserializable(); method GetUndeserializable (line 63) | Task GetUndeserializable(); type UndeserializableType (line 66) | public struct UndeserializableType method UndeserializableType (line 70) | public UndeserializableType(int num) class UnserializableType (line 78) | public class UnserializableType class UndeserializableTypeCodec (line 82) | [RegisterSerializer] method DeepCopy (line 86) | public UndeserializableType DeepCopy(UndeserializableType input, CopyC... method ReadValue (line 88) | public UndeserializableType ReadValue(ref Reader reade... method WriteField (line 89) | public void WriteField(ref Writer writer... class UnserializableTypeCodec (line 95) | [RegisterSerializer] method DeepCopy (line 99) | public UnserializableType DeepCopy(UnserializableType input, CopyConte... method ReadValue (line 101) | public UnserializableType ReadValue(ref Reader reader,... method WriteField (line 102) | public void WriteField(ref Writer writer... FILE: test/Grains/TestGrainInterfaces/IExtensionTestGrain.cs type IExtensionTestGrain (line 3) | public interface IExtensionTestGrain : IGrainWithIntegerKey method InstallExtension (line 5) | Task InstallExtension(string name); type IGenericExtensionTestGrain (line 8) | public interface IGenericExtensionTestGrain : IGrainWithIntegerKey method InstallExtension (line 10) | Task InstallExtension(T name); type IGenericGrainWithNonGenericExtension (line 13) | public interface IGenericGrainWithNonGenericExtension : IGrainWith... method DoSomething (line 15) | Task DoSomething(); type INoOpTestGrain (line 18) | public interface INoOpTestGrain : IGrainWithIntegerKey FILE: test/Grains/TestGrainInterfaces/IExternalTypeGrain.cs class EnumClass (line 5) | [Serializable] type IExternalTypeGrain (line 13) | public interface IExternalTypeGrain : IGrainWithIntegerKey method GetAbstractModel (line 15) | Task GetAbstractModel(IEnumerable list); method GetEnumModel (line 17) | Task GetEnumModel(); FILE: test/Grains/TestGrainInterfaces/IFaultableConsumerGrain.cs type IFaultableConsumerGrain (line 3) | public interface IFaultableConsumerGrain : IGrainWithGuidKey method BecomeConsumer (line 5) | Task BecomeConsumer(Guid streamId, string streamNamespace, string prov... method SetFailPeriod (line 7) | Task SetFailPeriod(TimeSpan failPeriod); method StopConsuming (line 9) | Task StopConsuming(); method GetNumberConsumed (line 11) | Task GetNumberConsumed(); method GetNumberFailed (line 13) | Task GetNumberFailed(); method GetErrorCount (line 15) | Task GetErrorCount(); FILE: test/Grains/TestGrainInterfaces/IFilteredImplicitSubscriptionGrain.cs type IFilteredImplicitSubscriptionGrain (line 3) | public interface IFilteredImplicitSubscriptionGrain : IGrainWithGuidKey method GetCounter (line 5) | Task GetCounter(string streamNamespace); FILE: test/Grains/TestGrainInterfaces/IFilteredImplicitSubscriptionWithExtensionGrain.cs type IFilteredImplicitSubscriptionWithExtensionGrain (line 3) | public interface IFilteredImplicitSubscriptionWithExtensionGrain : IGrai... method GetCounter (line 5) | Task GetCounter(); FILE: test/Grains/TestGrainInterfaces/IGeneratedEventCollectorGrain.cs type IGeneratedEventCollectorGrain (line 3) | public interface IGeneratedEventCollectorGrain : IGrainWithGuidKey FILE: test/Grains/TestGrainInterfaces/IGeneratedEventReporterGrain.cs type IGeneratedEventReporterGrain (line 5) | public interface IGeneratedEventReporterGrain : IGrainWithGuidKey method ReportResult (line 7) | Task ReportResult(Guid streamGuid, string streamProvider, string strea... method GetReport (line 9) | Task> GetReport(string streamProvider, string st... method Reset (line 11) | Task Reset(); method IsLocatedOnSilo (line 13) | Task IsLocatedOnSilo(SiloAddress siloAddress); FILE: test/Grains/TestGrainInterfaces/IGeneratorTestDerivedDerivedGrain.cs class ReplaceArguments (line 3) | [Serializable] method ReplaceArguments (line 12) | public ReplaceArguments(string oldStr, string newStr) type IGeneratorTestDerivedDerivedGrain (line 19) | public interface IGeneratorTestDerivedDerivedGrain : IGeneratorTestDeriv... method StringNConcat (line 21) | Task StringNConcat(string[] strArray); method StringReplace (line 22) | Task StringReplace(ReplaceArguments strs); FILE: test/Grains/TestGrainInterfaces/IGeneratorTestDerivedFromCSharpInterfaceInExternalAssemblyGrain.cs type IGeneratorTestDerivedFromCSharpInterfaceInExternalAssemblyGrain (line 5) | public interface IGeneratorTestDerivedFromCSharpInterfaceInExternalAssem... FILE: test/Grains/TestGrainInterfaces/IGeneratorTestDerivedGrain1.cs type IGeneratorTestDerivedGrain1 (line 3) | public interface IGeneratorTestDerivedGrain1 : IGeneratorTestGrain method ByteAppend (line 5) | Task ByteAppend(byte[] data); FILE: test/Grains/TestGrainInterfaces/IGeneratorTestDerivedGrain2.cs type IGeneratorTestDerivedGrain2 (line 3) | public interface IGeneratorTestDerivedGrain2 : IGeneratorTestGrain method StringConcat (line 5) | Task StringConcat(string str1, string str2, string str3); FILE: test/Grains/TestGrainInterfaces/IGeneratorTestGrain.cs type ReturnCode (line 3) | public enum ReturnCode type MemberVariables (line 9) | [Serializable] method MemberVariables (line 20) | public MemberVariables(byte[] bytes, string str, ReturnCode codeInput) type IGeneratorTestGrain (line 28) | public interface IGeneratorTestGrain : IGrainWithIntegerKey method ByteSet (line 30) | Task ByteSet(byte[] data); method StringSet (line 31) | Task StringSet(string str); method StringIsNullOrEmpty (line 32) | Task StringIsNullOrEmpty(); method GetMemberVariables (line 33) | Task GetMemberVariables(); method SetMemberVariables (line 34) | Task SetMemberVariables(MemberVariables x); FILE: test/Grains/TestGrainInterfaces/IGenericInterfaces.cs type IGenericGrainWithGenericState (line 5) | public interface IGenericGrainWithGenericState GetStateType(); class GenericGrainWithGenericState (line 10) | public class GenericGrainWithGenericState GetStateType() => Task.FromResult(this.State.GetType... type IGenericGrain (line 16) | public interface IGenericGrain : IGrainWithIntegerKey method SetT (line 18) | Task SetT(T a); method MapT2U (line 19) | Task MapT2U(); type ISimpleGenericGrain1 (line 22) | public interface ISimpleGenericGrain1 : IGrainWithIntegerKey method GetA (line 24) | Task GetA(); method GetAxB (line 25) | Task GetAxB(); method GetAxB (line 26) | Task GetAxB(T a, T b); method SetA (line 27) | Task SetA(T a); method SetB (line 28) | Task SetB(T b); type ISimpleGenericGrainUsingAzureStorageAndLongGrainName (line 35) | public interface ISimpleGenericGrainUsingAzureStorageAndLongGrainName... method EchoAsync (line 37) | Task EchoAsync(T entity); method ClearState (line 39) | Task ClearState(); type ITinyNameGrain (line 46) | public interface ITinyNameGrain : IGrainWithGuidKey method EchoAsync (line 48) | Task EchoAsync(T entity); method ClearState (line 50) | Task ClearState(); type ISimpleGenericGrainU (line 53) | public interface ISimpleGenericGrainU : IGrainWithIntegerKey method GetA (line 55) | Task GetA(); method GetAxB (line 56) | Task GetAxB(); method GetAxB (line 57) | Task GetAxB(U a, U b); method SetA (line 58) | Task SetA(U a); method SetB (line 59) | Task SetB(U b); type ISimpleGenericGrain2 (line 62) | public interface ISimpleGenericGrain2 : IGrainWithIntegerKey method GetA (line 64) | Task GetA(); method GetAxB (line 65) | Task GetAxB(); method GetAxB (line 66) | Task GetAxB(T a, U b); method SetA (line 67) | Task SetA(T a); method SetB (line 68) | Task SetB(U b); type IGenericGrainWithNoProperties (line 71) | public interface IGenericGrainWithNoProperties : IGrainWithIntegerKey method GetAxB (line 73) | Task GetAxB(T a, T b); type IGrainWithNoProperties (line 75) | public interface IGrainWithNoProperties : IGrainWithIntegerKey method GetAxB (line 77) | Task GetAxB(int a, int b); type IGrainWithListFields (line 80) | public interface IGrainWithListFields : IGrainWithIntegerKey method AddItem (line 82) | Task AddItem(string item); method GetItems (line 83) | Task> GetItems(); type IGenericGrainWithListFields (line 85) | public interface IGenericGrainWithListFields : IGrainWithIntegerKey method AddItem (line 87) | Task AddItem(T item); method GetItems (line 88) | Task> GetItems(); type IGenericReader1 (line 91) | public interface IGenericReader1 : IGrainWithIntegerKey method GetValue (line 93) | Task GetValue(); type IGenericWriter1 (line 95) | public interface IGenericWriter1 : IGrainWithIntegerKey method SetValue (line 97) | Task SetValue(T value); type IGenericReaderWriterGrain1 (line 99) | public interface IGenericReaderWriterGrain1 : IGenericWriter1, IGe... type IGenericReader2 (line 103) | public interface IGenericReader2 : IGrainWithIntegerKey method GetValue1 (line 105) | Task GetValue1(); method GetValue2 (line 106) | Task GetValue2(); type IGenericWriter2 (line 108) | public interface IGenericWriter2 : IGrainWithIntegerKey method SetValue1 (line 110) | Task SetValue1(TOne value); method SetValue2 (line 111) | Task SetValue2(TTwo value); type IGenericReaderWriterGrain2 (line 113) | public interface IGenericReaderWriterGrain2 : IGenericWriter... type IGenericReader3 (line 117) | public interface IGenericReader3 : IGenericReader2 GetValue3(); type IGenericWriter3 (line 121) | public interface IGenericWriter3 : IGeneric... method SetValue3 (line 123) | Task SetValue3(TThree value); type IGenericReaderWriterGrain3 (line 125) | public interface IGenericReaderWriterGrain3 : IGener... type IBasicGenericGrain (line 129) | public interface IBasicGenericGrain : IGrainWithIntegerKey method GetA (line 131) | Task GetA(); method GetAxB (line 132) | Task GetAxB(); method GetAxB (line 133) | Task GetAxB(T a, U b); method SetA (line 134) | Task SetA(T a); method SetB (line 135) | Task SetB(U b); type IHubGrain (line 138) | public interface IHubGrain : IGrainWithIntegerKey method Bar (line 140) | Task Bar(TKey key, T1 message1, T2 message2); type IEchoHubGrain (line 144) | public interface IEchoHubGrain : IHubGrain GetX(); type IEchoGenericChainGrain (line 150) | public interface IEchoGenericChainGrain : IGrainWithIntegerKey method Echo (line 152) | Task Echo(T item); method Echo2 (line 153) | Task Echo2(T item); method Echo3 (line 154) | Task Echo3(T item); method Echo4 (line 155) | Task Echo4(T item); method Echo5 (line 156) | Task Echo5(T item); method Echo6 (line 157) | Task Echo6(T item); type INonGenericBase (line 160) | public interface INonGenericBase : IGrainWithGuidKey method Ping (line 162) | Task Ping(); type IGeneric1Argument (line 165) | public interface IGeneric1Argument : IGrainWithGuidKey method Ping (line 167) | Task Ping(T t); type IGeneric2Arguments (line 170) | public interface IGeneric2Arguments : IGrainWithIntegerKey method Ping (line 172) | Task> Ping(T t, U u); type IDbGrain (line 175) | public interface IDbGrain : IGrainWithIntegerKey method SetValue (line 177) | Task SetValue(T value); method GetValue (line 178) | Task GetValue(); type IGenericPingSelf (line 181) | public interface IGenericPingSelf : IGrainWithGuidKey method Ping (line 183) | Task Ping(T t); method PingSelf (line 184) | Task PingSelf(T t); method PingOther (line 185) | Task PingOther(IGenericPingSelf target, T t); method PingSelfThroughOther (line 186) | Task PingSelfThroughOther(IGenericPingSelf target, T t); method GetLastValue (line 187) | Task GetLastValue(); method ScheduleDelayedPing (line 188) | Task ScheduleDelayedPing(IGenericPingSelf target, T t, TimeSpan del... method ScheduleDelayedPingToSelfAndDeactivate (line 189) | Task ScheduleDelayedPingToSelfAndDeactivate(IGenericPingSelf target... type ILongRunningTaskGrain (line 192) | public interface ILongRunningTaskGrain : IGrainWithGuidKey method GetRuntimeInstanceId (line 194) | Task GetRuntimeInstanceId(); method GetRuntimeInstanceIdWithDelay (line 195) | Task GetRuntimeInstanceIdWithDelay(TimeSpan delay); method LongRunningTask (line 196) | Task LongRunningTask(T t, TimeSpan delay); method CallOtherLongRunningTask (line 197) | Task CallOtherLongRunningTask(ILongRunningTaskGrain target, T t,... method FanOutOtherLongRunningTask (line 198) | Task FanOutOtherLongRunningTask(ILongRunningTaskGrain target, T ... method LongWaitGrainCancellation (line 200) | Task LongWaitGrainCancellation(GrainCancellationToken tc, TimeSpan del... method LongWaitGrainCancellationInterleaving (line 201) | [AlwaysInterleave] method LongWait (line 203) | Task LongWait(CancellationToken tc, TimeSpan delay, Guid callId); method LongWaitInterleaving (line 204) | [AlwaysInterleave] method CallOtherLongRunningTask (line 206) | Task CallOtherLongRunningTask(ILongRunningTaskGrain target, Cancell... method CallOtherLongRunningTaskGrainCancellation (line 207) | Task CallOtherLongRunningTaskGrainCancellation(ILongRunningTaskGrain GrainCancellationTokenCallbackResolve(GrainCancellationToke... method CancellationTokenCallbackResolve (line 211) | Task CancellationTokenCallbackResolve(CancellationToken tc, Guid... method CallOtherGrainCancellationTokenCallbackResolve (line 212) | Task CallOtherGrainCancellationTokenCallbackResolve(ILongRunning... method CallOtherCancellationTokenCallbackResolve (line 213) | Task CallOtherCancellationTokenCallbackResolve(ILongRunningTaskG... method GrainCancellationTokenCallbackThrow (line 214) | Task GrainCancellationTokenCallbackThrow(GrainCancellationToken tc, Gu... method CancellationTokenCallbackThrow (line 215) | Task CancellationTokenCallbackThrow(CancellationToken tc, Guid callId); method GetLastValue (line 216) | Task GetLastValue(); method WatchCancellations (line 218) | IAsyncEnumerable<(Guid CallId, Exception Error)> WatchCancellations(Ca... type IGenericGrainWithConstraints (line 221) | [Alias("IGenericGrainWithConstraints`3")] method GetCount (line 225) | [Alias("GetCount")] method Add (line 228) | Task Add(B item); method RoundTrip (line 230) | Task RoundTrip(C value); type INonGenericCastableGrain (line 233) | public interface INonGenericCastableGrain : IGrainWithGuidKey method DoSomething (line 235) | Task DoSomething(); type IGenericCastableGrain (line 239) | public interface IGenericCastableGrain : IGrainWithGuidKey type IGenericRegisterGrain (line 242) | public interface IGenericRegisterGrain : IGrainWithIntegerKey method Set (line 244) | Task Set(T value); method Get (line 245) | Task Get(); type IGenericArrayRegisterGrain (line 248) | public interface IGenericArrayRegisterGrain : IGenericRegisterGrain type IGrainSayingHello (line 252) | public interface IGrainSayingHello : IGrainWithGuidKey method Hello (line 254) | Task Hello(); type ISomeGenericGrain (line 257) | public interface ISomeGenericGrain : IGrainSayingHello type INonGenericCastGrain (line 260) | public interface INonGenericCastGrain : IGrainSayingHello type IIndependentlyConcretizedGrain (line 265) | public interface IIndependentlyConcretizedGrain : ISomeGenericGrain type IIndependentlyConcretizedGenericGrain (line 268) | public interface IIndependentlyConcretizedGenericGrain : ISomeGeneric... type IBasicGrain (line 274) | public interface IBasicGrain : IGrainWithGuidKey method Hello (line 276) | Task Hello(); method ConcreteGenArgTypeNames (line 277) | Task ConcreteGenArgTypeNames(); type IGrainWithTwoGenArgs (line 281) | public interface IGrainWithTwoGenArgs : IBasicGrain type IGrainWithThreeGenArgs (line 284) | public interface IGrainWithThreeGenArgs : IBasicGrain type IGrainReceivingRepeatedGenArgs (line 287) | public interface IGrainReceivingRepeatedGenArgs : IBasicGrain type IPartiallySpecifyingInterface (line 290) | public interface IPartiallySpecifyingInterface : IGrainWithTwoGenArgs... type IReceivingRepeatedGenArgsAmongstOthers (line 293) | public interface IReceivingRepeatedGenArgsAmongstOthers : IB... type IReceivingRepeatedGenArgsFromOtherInterface (line 296) | public interface IReceivingRepeatedGenArgsFromOtherInterface... type ISpecifyingGenArgsRepeatedlyToParentInterface (line 299) | public interface ISpecifyingGenArgsRepeatedlyToParentInterface : IRec... type IReceivingRearrangedGenArgs (line 302) | public interface IReceivingRearrangedGenArgs : IBasicGrain type IReceivingRearrangedGenArgsViaCast (line 305) | public interface IReceivingRearrangedGenArgsViaCast : IBasicGrain type ISpecifyingRearrangedGenArgsToParentInterface (line 308) | public interface ISpecifyingRearrangedGenArgsToParentInterface :... type IArbitraryInterface (line 311) | public interface IArbitraryInterface : IBasicGrain type IInterfaceUnrelatedToConcreteGenArgs (line 314) | public interface IInterfaceUnrelatedToConcreteGenArgs : IBasicGrain type IInterfaceTakingFurtherSpecializedGenArg (line 317) | public interface IInterfaceTakingFurtherSpecializedGenArg : IBasicGrain type IAnotherReceivingFurtherSpecializedGenArg (line 321) | public interface IAnotherReceivingFurtherSpecializedGenArg : IBasicGrain type IYetOneMoreReceivingFurtherSpecializedGenArg (line 324) | public interface IYetOneMoreReceivingFurtherSpecializedGenArg : IBasi... type IG2 (line 328) | public interface IG2 : IGrainWithGuidKey class HalfOpenGrain1 (line 331) | public class HalfOpenGrain1 : IG2 class HalfOpenGrain2 (line 333) | public class HalfOpenGrain2 : IG2 class OpenGeneric (line 336) | public class OpenGeneric : IG2 class ClosedGeneric (line 339) | public class ClosedGeneric : IG2 class ClosedGenericWithManyInterfaces (line 342) | public class ClosedGenericWithManyInterfaces : IG2, IG2<... class Dummy1 (line 345) | [GenerateSerializer] class Dummy2 (line 348) | [GenerateSerializer] type IG (line 351) | public interface IG : IGrain class G1 (line 355) | public class G1 : Grain, Root.IA class Root (line 359) | public class Root type IA (line 361) | public interface IA : IGrainWithIntegerKey class G (line 366) | public class G : Grain, IG> FILE: test/Grains/TestGrainInterfaces/IGrainServiceTestGrain.cs type IGrainServiceTestGrain (line 5) | public interface IGrainServiceTestGrain : IGrainWithIntegerKey method GetHelloWorldUsingCustomService (line 8) | Task GetHelloWorldUsingCustomService(); method CallHasStarted (line 9) | Task CallHasStarted(); method CallHasStartedInBackground (line 10) | Task CallHasStartedInBackground(); method CallHasInit (line 11) | Task CallHasInit(); method GetServiceConfigProperty (line 12) | Task GetServiceConfigProperty(); method EchoViaExtension (line 13) | Task EchoViaExtension(string what); type IEchoExtension (line 16) | public interface IEchoExtension : IGrainExtension method Echo (line 18) | Task Echo(string what); FILE: test/Grains/TestGrainInterfaces/IImplicitSubscriptionCounterGrain.cs type IImplicitSubscriptionCounterGrain (line 3) | public interface IImplicitSubscriptionCounterGrain : IGrainWithGuidKey method GetEventCounter (line 5) | Task GetEventCounter(); method GetErrorCounter (line 7) | Task GetErrorCounter(); method Deactivate (line 9) | Task Deactivate(); method DeactivateOnEvent (line 11) | Task DeactivateOnEvent(bool deactivate); type IFastImplicitSubscriptionCounterGrain (line 14) | public interface IFastImplicitSubscriptionCounterGrain : IImplicitSubscr... type ISlowImplicitSubscriptionCounterGrain (line 17) | public interface ISlowImplicitSubscriptionCounterGrain : IImplicitSubscr... FILE: test/Grains/TestGrainInterfaces/IImplicitSubscriptionKeyTypeGrain.cs type IImplicitSubscriptionKeyTypeGrain (line 3) | public interface IImplicitSubscriptionKeyTypeGrain method GetValue (line 5) | Task GetValue(); type IImplicitSubscriptionLongKeyGrain (line 8) | public interface IImplicitSubscriptionLongKeyGrain : IImplicitSubscripti... FILE: test/Grains/TestGrainInterfaces/IInitialStateGrain.cs type IInitialStateGrain (line 3) | public interface IInitialStateGrain : IGrainWithIntegerKey method GetNames (line 5) | Task> GetNames(); method AddName (line 6) | Task AddName(string name); FILE: test/Grains/TestGrainInterfaces/IKeyExtensionTestGrain.cs type IKeyExtensionTestGrain (line 3) | public interface IKeyExtensionTestGrain : IGrainWithGuidCompoundKey method GetGrainReference (line 5) | Task GetGrainReference(); method GetActivationId (line 6) | Task GetActivationId(); FILE: test/Grains/TestGrainInterfaces/ILivenessTestGrain.cs type ILivenessTestGrain (line 3) | public interface ILivenessTestGrain : IGrainWithIntegerKey method GetLabel (line 6) | Task GetLabel(); method SetLabel (line 8) | Task SetLabel(string label); method GetRuntimeInstanceId (line 10) | Task GetRuntimeInstanceId(); method GetUniqueId (line 12) | Task GetUniqueId(); method GetGrainReference (line 14) | Task GetGrainReference(); method StartTimer (line 16) | Task StartTimer(); FILE: test/Grains/TestGrainInterfaces/ILogTestGrain.cs type ILogTestGrain (line 9) | public interface ILogTestGrain: IGrainWithIntegerKey method GetAGlobal (line 13) | Task GetAGlobal(); method GetALocal (line 15) | Task GetALocal(); method GetBothGlobal (line 19) | Task GetBothGlobal(); method GetBothLocal (line 21) | Task GetBothLocal(); method GetReservationsGlobal (line 25) | Task GetReservationsGlobal(); method GetConfirmedVersion (line 29) | Task GetConfirmedVersion(); method SetAGlobal (line 33) | Task SetAGlobal(int a); method SetAConditional (line 35) | Task> SetAConditional(int a); method SetALocal (line 37) | Task SetALocal(int a); method IncrementALocal (line 39) | Task IncrementALocal(); method IncrementAGlobal (line 41) | Task IncrementAGlobal(); method SetBGlobal (line 45) | Task SetBGlobal(int b); method SetBLocal (line 47) | Task SetBLocal(int b); method AddReservationLocal (line 51) | Task AddReservationLocal(int x); method RemoveReservationLocal (line 53) | Task RemoveReservationLocal(int x); method Read (line 56) | Task> Read(); method Update (line 57) | Task Update(IReadOnlyList updates, int expectedversion); method GetEventLog (line 59) | Task> GetEventLog(); method SynchronizeGlobalState (line 64) | Task SynchronizeGlobalState(); method Clear (line 65) | Task Clear(); method Deactivate (line 66) | Task Deactivate(); type AB (line 74) | [GenerateSerializer] FILE: test/Grains/TestGrainInterfaces/ILongRunningObserver.cs type ILongRunningObserver (line 9) | public interface ILongRunningObserver : IGrainObserver method LongWait (line 14) | Task LongWait(TimeSpan delay, Guid callId, CancellationToken cancellat... method CancellationTokenCallbackResolve (line 19) | Task CancellationTokenCallbackResolve(Guid callId, CancellationT... method InterleavingLongWait (line 25) | [AlwaysInterleave] type IObserverWithCancellationGrain (line 32) | public interface IObserverWithCancellationGrain : IGrainWithGuidKey method Subscribe (line 37) | Task Subscribe(ILongRunningObserver observer); method Unsubscribe (line 42) | Task Unsubscribe(ILongRunningObserver observer); method NotifyLongWait (line 47) | Task NotifyLongWait(TimeSpan delay, Guid callId, CancellationToken can... method NotifyCancellationTokenCallbackResolve (line 52) | Task NotifyCancellationTokenCallbackResolve(Guid callId, Cancell... method NotifyInterleavingLongWait (line 57) | [AlwaysInterleave] method GetProcessedCancellations (line 63) | Task> GetProcessedCancellations(); method ClearProcessedCancellations (line 68) | Task ClearProcessedCancellations(); FILE: test/Grains/TestGrainInterfaces/IMethodInterceptionGrain.cs type IMethodInterceptionGrain (line 7) | [GrainInterfaceType("method-interception-custom-name")] method One (line 10) | [Id(14142)] method Echo (line 13) | [Id(4142)] method NotIntercepted (line 15) | Task NotIntercepted(); method Throw (line 16) | Task Throw(); method IncorrectResultType (line 17) | Task IncorrectResultType(); method FilterThrows (line 18) | Task FilterThrows(); method SystemWideCallFilterMarker (line 20) | Task SystemWideCallFilterMarker(); type IMethodInterceptionGrainObserver (line 23) | [GrainInterfaceType("obs-method-interception-custom-name")] method One (line 26) | [Id(14142)] method Echo (line 29) | [Id(4142)] method NotIntercepted (line 31) | Task NotIntercepted(); method Throw (line 32) | Task Throw(); method IncorrectResultType (line 33) | Task IncorrectResultType(); method FilterThrows (line 34) | Task FilterThrows(); method SystemWideCallFilterMarker (line 36) | Task SystemWideCallFilterMarker(); type IOutgoingMethodInterceptionGrain (line 39) | [GrainInterfaceType("custom-outgoing-interception-grain")] method EchoViaOtherGrain (line 42) | Task> EchoViaOtherGrain(IMethodInterception... method ThrowIfGreaterThanZero (line 43) | Task ThrowIfGreaterThanZero(int value); type IGenericMethodInterceptionGrain (line 46) | [Alias("UnitTests.GrainInterfaces.IGenericMethodInterceptionGrain`1")] method GetInputAsString (line 49) | [Alias("GetInputAsString")] type IGenericMethodInterceptionGrainObserver (line 53) | [Alias("UnitTests.GrainInterfaces.IGenericMethodInterceptionGrainObserve... method GetInputAsString (line 56) | [Alias("GetInputAsString")] type IMethodFromAnotherInterface (line 60) | public interface IMethodFromAnotherInterface method SayHello (line 62) | Task SayHello(); type ITrickyMethodInterceptionGrain (line 65) | [Alias("UnitTests.GrainInterfaces.ITrickyMethodInterceptionGrain")] method GetBestNumber (line 68) | [Alias("GetBestNumber")] type ITrickyMethodInterceptionGrainObserver (line 72) | [Alias("UnitTests.GrainInterfaces.ITrickyMethodInterceptionGrainObserver")] method GetBestNumber (line 75) | [Alias("GetBestNumber")] type ITrickierMethodInterceptionGrain (line 79) | [Alias("UnitTests.GrainInterfaces.ITrickierMethodInterceptionGrain")] class GrainCallFilterTestConstants (line 84) | public static class GrainCallFilterTestConstants type IGrainCallFilterTestGrain (line 89) | public interface IGrainCallFilterTestGrain : IGrainWithIntegerKey method ThrowIfGreaterThanZero (line 91) | Task ThrowIfGreaterThanZero(int value); method GetRequestContext (line 92) | Task GetRequestContext(); method SumSet (line 94) | Task SumSet(HashSet numbers); method SystemWideCallFilterMarker (line 96) | Task SystemWideCallFilterMarker(); method GrainSpecificCallFilterMarker (line 97) | Task GrainSpecificCallFilterMarker(); type IGrainCallFilterTestGrainObserver (line 100) | public interface IGrainCallFilterTestGrainObserver : IGrainObserver method ThrowIfGreaterThanZero (line 102) | Task ThrowIfGreaterThanZero(int value); method GetRequestContext (line 103) | Task GetRequestContext(); method SumSet (line 105) | Task SumSet(HashSet numbers); method SystemWideCallFilterMarker (line 107) | Task SystemWideCallFilterMarker(); method GrainSpecificCallFilterMarker (line 108) | Task GrainSpecificCallFilterMarker(); type IHungryGrain (line 111) | public interface IHungryGrain : IGrainWithIntegerKey method Eat (line 113) | [TestMethodTag("hungry-eat")] method EatWith (line 116) | [TestMethodTag("hungry-eatwith")] type IOmnivoreGrain (line 120) | public interface IOmnivoreGrain : IGrainWithIntegerKey method Eat (line 122) | [TestMethodTag("omnivore-eat")] class Apple (line 126) | [Serializable] type ICaterpillarGrain (line 130) | public interface ICaterpillarGrain : IHungryGrain, IOmnivoreGrain method Eat (line 132) | [TestMethodTag("caterpillar-eat")] class TestMethodTagAttribute (line 136) | [AttributeUsage(AttributeTargets.Method)] method TestMethodTagAttribute (line 139) | public TestMethodTagAttribute(string tag) => this.Tag = tag; FILE: test/Grains/TestGrainInterfaces/IMultifacetReader.cs type IMultifacetReader (line 4) | public interface IMultifacetReader : IGrainWithIntegerKey method GetValue (line 6) | Task GetValue(); FILE: test/Grains/TestGrainInterfaces/IMultifacetWriter.cs type IMultifacetWriter (line 4) | public interface IMultifacetWriter : IGrainWithIntegerKey method SetValue (line 6) | Task SetValue(int x); FILE: test/Grains/TestGrainInterfaces/IMultipleImplicitSubscriptionGrain.cs type IMultipleImplicitSubscriptionGrain (line 3) | public interface IMultipleImplicitSubscriptionGrain : IGrainWithGuidKey method GetCounters (line 5) | Task> GetCounters(); FILE: test/Grains/TestGrainInterfaces/IMultipleSubscriptionConsumerGrain.cs type IMultipleSubscriptionConsumerGrain (line 5) | public interface IMultipleSubscriptionConsumerGrain : IGrainWithGuidKey method BecomeConsumer (line 7) | Task> BecomeConsumer(Guid streamId, stri... method Resume (line 9) | Task> Resume(StreamSubscriptionHandle handle); method GetAllSubscriptions (line 13) | Task>> GetAllSubscriptions(Guid st... method GetNumberConsumed (line 15) | Task, Tuple>> GetNum... method ClearNumberConsumed (line 17) | Task ClearNumberConsumed(); method Deactivate (line 19) | Task Deactivate(); FILE: test/Grains/TestGrainInterfaces/INullStateGrain.cs class NullableState (line 3) | [GenerateSerializer] type INullStateGrain (line 10) | public interface INullStateGrain : IGrainWithIntegerKey method SetStateAndDeactivate (line 12) | Task SetStateAndDeactivate(NullableState state); method GetState (line 13) | Task GetState(); FILE: test/Grains/TestGrainInterfaces/IObservableGrain.cs type IObservableGrain (line 8) | public interface IObservableGrain : IGrainWithGuidKey method Complete (line 10) | ValueTask Complete(); method Fail (line 11) | ValueTask Fail(); method Deactivate (line 12) | ValueTask Deactivate(); method OnNext (line 13) | ValueTask OnNext(string data); method GetValues (line 14) | IAsyncEnumerable GetValues(CancellationToken cancellationToken... method GetValuesWithError (line 15) | IAsyncEnumerable GetValuesWithError(int errorIndex, bool waitAfte... method SleepyEnumerable (line 16) | IAsyncEnumerable SleepyEnumerable(Guid id, TimeSpan delay, Cancel... method GetCanceledCalls (line 18) | [AlwaysInterleave] method WaitForCall (line 21) | [AlwaysInterleave] method GetIncomingCalls (line 24) | [AlwaysInterleave] FILE: test/Grains/TestGrainInterfaces/IObserverGrain.cs type IObserverGrain (line 3) | public interface IObserverGrain : IGrainWithIntegerKey method SetTarget (line 5) | Task SetTarget(ISimpleObserverableGrain target); method Subscribe (line 6) | Task Subscribe(ISimpleGrainObserver observer); FILE: test/Grains/TestGrainInterfaces/IPersistenceTestGrains.cs type IServiceIdGrain (line 5) | public interface IServiceIdGrain : IGrainWithGuidKey method GetServiceId (line 7) | Task GetServiceId(); type IPersistenceTestGrain (line 10) | public interface IPersistenceTestGrain : IGrainWithGuidKey method CheckStateInit (line 12) | Task CheckStateInit(); method CheckProviderType (line 13) | Task CheckProviderType(); method DoSomething (line 14) | Task DoSomething(); method DoWrite (line 15) | Task DoWrite(int val); method DoRead (line 16) | Task DoRead(); method GetValue (line 17) | Task GetValue(); method DoDelete (line 18) | Task DoDelete(); type IPersistenceTestGenericGrain (line 21) | public interface IPersistenceTestGenericGrain : IPersistenceTestGrain... type IMemoryStorageTestGrain (line 32) | public interface IMemoryStorageTestGrain : IGrainWithGuidKey method GetValue (line 34) | Task GetValue(); method DoWrite (line 35) | Task DoWrite(int val); method DoRead (line 36) | Task DoRead(); method DoDelete (line 37) | Task DoDelete(); class PersistenceTestGrainState (line 40) | [Serializable] method PersistenceTestGrainState (line 44) | public PersistenceTestGrainState() type IGrainStorageTestGrain (line 57) | public interface IGrainStorageTestGrain : IGrainWithGuidKey method GetValue (line 59) | Task GetValue(); method DoWrite (line 60) | Task DoWrite(int val); method DoRead (line 61) | Task DoRead(); method DoDelete (line 62) | Task DoDelete(); method GetStateAsync (line 63) | ValueTask> GetStateAsync(); type IGrainStorageGenericGrain (line 66) | public interface IGrainStorageGenericGrain : IGrainWithIntegerKey method GetValue (line 68) | Task GetValue(); method DoWrite (line 69) | Task DoWrite(T val); method DoRead (line 70) | Task DoRead(); method DoDelete (line 71) | Task DoDelete(); type IGrainStorageTestGrain_GuidExtendedKey (line 74) | public interface IGrainStorageTestGrain_GuidExtendedKey : IGrainWithGuid... method GetExtendedKeyValue (line 76) | Task GetExtendedKeyValue(); method GetValue (line 77) | Task GetValue(); method DoWrite (line 78) | Task DoWrite(int val); method DoRead (line 79) | Task DoRead(); method DoDelete (line 80) | Task DoDelete(); type IGrainStorageTestGrain_LongKey (line 83) | public interface IGrainStorageTestGrain_LongKey : IGrainWithIntegerKey method GetValue (line 85) | Task GetValue(); method DoWrite (line 86) | Task DoWrite(int val); method DoRead (line 87) | Task DoRead(); method DoDelete (line 88) | Task DoDelete(); type IGrainStorageTestGrain_LongExtendedKey (line 91) | public interface IGrainStorageTestGrain_LongExtendedKey : IGrainWithInte... method GetExtendedKeyValue (line 93) | Task GetExtendedKeyValue(); method GetValue (line 94) | Task GetValue(); method DoWrite (line 95) | Task DoWrite(int val); method DoRead (line 96) | Task DoRead(); method DoDelete (line 97) | Task DoDelete(); type IPersistenceErrorGrain (line 100) | public interface IPersistenceErrorGrain : IGrainWithGuidKey method GetValue (line 102) | Task GetValue(); method DoWrite (line 103) | Task DoWrite(int val); method DoWriteError (line 104) | Task DoWriteError(int val, bool errorBeforeWrite); method DoRead (line 105) | Task DoRead(); method DoReadError (line 106) | Task DoReadError(bool errorBeforeRead); type IPersistenceProviderErrorGrain (line 109) | public interface IPersistenceProviderErrorGrain : IGrainWithGuidKey method GetValue (line 111) | Task GetValue(); method DoWrite (line 112) | Task DoWrite(int val); method DoRead (line 113) | Task DoRead(); method GetActivationId (line 114) | Task GetActivationId(); type IPersistenceProviderErrorProxyGrain (line 117) | public interface IPersistenceProviderErrorProxyGrain : IGrainWithGuidKey method GetValue (line 119) | Task GetValue(IPersistenceProviderErrorGrain other); method DoWrite (line 120) | Task DoWrite(int val, IPersistenceProviderErrorGrain other); method DoRead (line 121) | Task DoRead(IPersistenceProviderErrorGrain other); method GetActivationId (line 122) | Task GetActivationId(); type IPersistenceUserHandledErrorGrain (line 125) | public interface IPersistenceUserHandledErrorGrain : IGrainWithGuidKey method GetValue (line 127) | Task GetValue(); method DoWrite (line 128) | Task DoWrite(int val, bool recover); method DoRead (line 129) | Task DoRead(bool recover); type IBadProviderTestGrain (line 132) | public interface IBadProviderTestGrain : IGrainWithGuidKey method DoSomething (line 134) | Task DoSomething(); type IPersistenceNoStateTestGrain (line 137) | public interface IPersistenceNoStateTestGrain : IGrainWithGuidKey method DoSomething (line 139) | Task DoSomething(); type IUser (line 142) | public interface IUser : IGrainWithGuidKey method GetName (line 144) | Task GetName(); method GetStatus (line 145) | Task GetStatus(); method UpdateStatus (line 147) | Task UpdateStatus(string status); method SetName (line 148) | Task SetName(string name); method AddFriend (line 149) | Task AddFriend(IUser friend); method GetFriends (line 150) | Task> GetFriends(); method GetFriendsStatuses (line 151) | Task GetFriendsStatuses(); type IReentrentGrainWithState (line 154) | public interface IReentrentGrainWithState : IGrainWithGuidKey method Setup (line 156) | Task Setup(IReentrentGrainWithState other); method Test1 (line 157) | Task Test1(); method Test2 (line 158) | Task Test2(); method SetOne (line 159) | Task SetOne(int val); method SetTwo (line 160) | Task SetTwo(int val); method Task_Delay (line 161) | Task Task_Delay(bool doStart); type INonReentrantStressGrainWithoutState (line 164) | public interface INonReentrantStressGrainWithoutState : IGrainWithGuidKey method Test1 (line 166) | Task Test1(); method Task_Delay (line 167) | Task Task_Delay(bool doStart); type IInternalGrainWithState (line 170) | public interface IInternalGrainWithState : IGrainWithIntegerKey method SetOne (line 172) | Task SetOne(int val); type IStateInheritanceTestGrain (line 175) | public interface IStateInheritanceTestGrain : IGrainWithGuidKey method GetValue (line 177) | Task GetValue(); method SetValue (line 178) | Task SetValue(int val); type IMyPredicate (line 181) | public interface IMyPredicate method FilterFunc (line 183) | bool FilterFunc(int i); class MyPredicate (line 186) | [Serializable] method MyPredicate (line 193) | public MyPredicate(int filter) method FilterFunc (line 198) | public bool FilterFunc(int i) type ISurrogateStateForTypeWithoutPublicConstructorGrain (line 205) | public interface ISurrogateStateForTypeWithoutPublicConstructorGrain ... method SetState (line 208) | Task SetState(T state); method GetState (line 209) | Task GetState(); type IRecordTypeWithoutPublicParameterlessConstructorGrain (line 212) | public interface IRecordTypeWithoutPublicParameterlessConstructorGrain GetState(); FILE: test/Grains/TestGrainInterfaces/IPlacementTestGrain.cs type IPlacementTestGrain (line 6) | public interface IPlacementTestGrain : IGrainWithGuidKey method GetEndpoint (line 8) | Task GetEndpoint(); method GetRuntimeInstanceId (line 9) | Task GetRuntimeInstanceId(); method GetActivationId (line 10) | Task GetActivationId(); method StartLocalGrains (line 11) | Task StartLocalGrains(List keys); method StartPreferLocalGrain (line 12) | Task StartPreferLocalGrain(Guid key); method SampleLocalGrainEndpoint (line 13) | Task> SampleLocalGrainEndpoint(Guid key, int sampleSi... method Nop (line 14) | Task Nop(); method EnableOverloadDetection (line 15) | Task EnableOverloadDetection(bool enabled); method LatchOverloaded (line 16) | Task LatchOverloaded(); method UnlatchOverloaded (line 17) | Task UnlatchOverloaded(); method LatchCpuUsage (line 18) | Task LatchCpuUsage(float value); method UnlatchCpuUsage (line 19) | Task UnlatchCpuUsage(); method GetLocation (line 20) | Task GetLocation(); type IActivationCountBasedPlacementTestGrain (line 23) | public interface IActivationCountBasedPlacementTestGrain : IPlacementTes... type IRandomPlacementTestGrain (line 26) | public interface IRandomPlacementTestGrain : IPlacementTestGrain type IPreferLocalPlacementTestGrain (line 29) | public interface IPreferLocalPlacementTestGrain : IPlacementTestGrain type IStatelessWorkerPlacementTestGrain (line 32) | public interface IStatelessWorkerPlacementTestGrain : IPlacementTestGrain method GetWorkerLimit (line 34) | ValueTask GetWorkerLimit(); type IOtherStatelessWorkerPlacementTestGrain (line 37) | public interface IOtherStatelessWorkerPlacementTestGrain : IStatelessWor... type IDefaultPlacementTestGrain (line 41) | internal interface IDefaultPlacementTestGrain method IsDefaultPlacementRandom (line 43) | bool IsDefaultPlacementRandom(); type ILocalContentGrain (line 49) | public interface ILocalContentGrain : IGrainWithGuidKey method Init (line 51) | Task Init(); method GetContent (line 52) | Task GetContent(); type ITestContentGrain (line 55) | public interface ITestContentGrain : IGrainWithIntegerKey method GetRuntimeInstanceId (line 57) | Task GetRuntimeInstanceId(); method FetchContentFromLocalGrain (line 58) | Task FetchContentFromLocalGrain(); FILE: test/Grains/TestGrainInterfaces/IPolymorphicTestGrain.cs type IPolymorphicTestGrain (line 3) | public interface IPolymorphicTestGrain : IF FILE: test/Grains/TestGrainInterfaces/IProducerEventCountingGrain.cs type IProducerEventCountingGrain (line 6) | public interface IProducerEventCountingGrain : IGrainWithGuidKey method BecomeProducer (line 8) | Task BecomeProducer(Guid streamId, string providerToUse); method SendEvent (line 14) | Task SendEvent(); method GetNumberProduced (line 16) | Task GetNumberProduced(); FILE: test/Grains/TestGrainInterfaces/IPromiseForwardGrain.cs type IPromiseForwardGrain (line 3) | public interface IPromiseForwardGrain : ISimpleGrain, ISimpleGrainAsync FILE: test/Grains/TestGrainInterfaces/IProxyGrain.cs type IProxyGrain (line 3) | public interface IProxyGrain : IGrainWithIntegerKey method CreateProxy (line 5) | Task CreateProxy(long key); method GetRuntimeInstanceId (line 7) | Task GetRuntimeInstanceId(); method GetProxyRuntimeInstanceId (line 9) | Task GetProxyRuntimeInstanceId(); FILE: test/Grains/TestGrainInterfaces/IReentrancyCorrelationIdGrains.cs type IFirstGrain (line 3) | public interface IFirstGrain : IGrainWithGuidKey method Start (line 5) | Task Start(Guid guid1, Guid guid2); type ISecondGrain (line 8) | public interface ISecondGrain : IGrainWithGuidKey method SecondGrainMethod (line 10) | Task SecondGrainMethod(Guid guid); type IThirdGrain (line 13) | public interface IThirdGrain : IGrainWithStringKey method ThirdGrainMethod (line 15) | Task ThirdGrainMethod(Guid userId); FILE: test/Grains/TestGrainInterfaces/IReentrancyGrain.cs type IReentrantGrain (line 5) | public interface IReentrantGrain : IGrainWithIntegerKey method One (line 7) | Task One(); method Two (line 9) | Task Two(); method SetSelf (line 11) | Task SetSelf(IReentrantGrain self); type INonReentrantGrain (line 14) | public interface INonReentrantGrain : IGrainWithIntegerKey method One (line 16) | Task One(); method Two (line 18) | Task Two(); method SetSelf (line 20) | Task SetSelf(INonReentrantGrain self); type IMayInterleaveStaticPredicateGrain (line 23) | public interface IMayInterleaveStaticPredicateGrain : IGrainWithIntegerKey method One (line 25) | Task One(string arg); method Two (line 27) | Task Two(); method TwoReentrant (line 28) | Task TwoReentrant(); method Exceptional (line 30) | Task Exceptional(); method SubscribeToStream (line 32) | Task SubscribeToStream(); method PushToStream (line 33) | Task PushToStream(string item); method SetSelf (line 35) | Task SetSelf(IMayInterleaveStaticPredicateGrain self); type IMayInterleaveInstancedPredicateGrain (line 38) | public interface IMayInterleaveInstancedPredicateGrain : IGrainWithInteg... method One (line 40) | Task One(string arg); method Two (line 42) | Task Two(); method TwoReentrant (line 43) | Task TwoReentrant(); method Exceptional (line 45) | Task Exceptional(); method SubscribeToStream (line 47) | Task SubscribeToStream(); method PushToStream (line 48) | Task PushToStream(string item); method SetSelf (line 50) | Task SetSelf(IMayInterleaveInstancedPredicateGrain self); type IReentrantSelfManagedGrain (line 53) | public interface IReentrantSelfManagedGrain : IGrainWithIntegerKey method GetCounter (line 55) | Task GetCounter(); method Ping (line 57) | Task Ping(int seconds); method SetDestination (line 59) | Task SetDestination(long id); type INonReentrantSelfManagedGrain (line 62) | public interface INonReentrantSelfManagedGrain : IGrainWithIntegerKey method GetCounter (line 64) | Task GetCounter(); method Ping (line 66) | Task Ping(int seconds); method SetDestination (line 68) | Task SetDestination(long id); type IReentrantTaskGrain (line 71) | public interface IReentrantTaskGrain : IGrainWithIntegerKey method SetDestination (line 73) | Task SetDestination(long id); method Ping (line 74) | Task Ping(TimeSpan wait); method GetCounter (line 75) | Task GetCounter(); type INonReentrantTaskGrain (line 78) | public interface INonReentrantTaskGrain : IGrainWithIntegerKey method SetDestination (line 80) | Task SetDestination(long id); method Ping (line 81) | Task Ping(TimeSpan wait); method GetCounter (line 82) | Task GetCounter(); type ICallOrderingGrain (line 85) | public interface ICallOrderingGrain : IGrainWithStringKey method Reset (line 87) | Task Reset(); method MethodA (line 88) | Task MethodA(); method MethodB (line 89) | Task MethodB(); method Unblock (line 90) | Task Unblock(); method GetLog (line 91) | Task> GetLog(); type IFanOutGrain (line 94) | public interface IFanOutGrain : IGrainWithIntegerKey method FanOutReentrant (line 96) | Task FanOutReentrant(int offset, int num); method FanOutNonReentrant (line 97) | Task FanOutNonReentrant(int offset, int num); method FanOutReentrant_Chain (line 98) | Task FanOutReentrant_Chain(int offset, int num); method FanOutNonReentrant_Chain (line 99) | Task FanOutNonReentrant_Chain(int offset, int num); type IFanOutACGrain (line 102) | public interface IFanOutACGrain : IGrainWithIntegerKey method FanOutACReentrant (line 104) | Task FanOutACReentrant(int offset, int num); method FanOutACNonReentrant (line 105) | Task FanOutACNonReentrant(int offset, int num); method FanOutACReentrant_Chain (line 106) | Task FanOutACReentrant_Chain(int offset, int num); method FanOutACNonReentrant_Chain (line 107) | Task FanOutACNonReentrant_Chain(int offset, int num); FILE: test/Grains/TestGrainInterfaces/IReentrantStressTestGrain.cs type IReentrantStressTestGrain (line 5) | public interface IReentrantStressTestGrain : IGrainWithIntegerKey method Echo (line 7) | Task Echo(byte[] data); method GetRuntimeInstanceId (line 9) | Task GetRuntimeInstanceId(); method Ping (line 11) | Task Ping(byte[] data); method PingWithDelay (line 13) | Task PingWithDelay(byte[] data, TimeSpan delay); method PingMutableArray (line 15) | Task PingMutableArray(byte[] data, long nextGrain, bool nextGrainIsRem... method PingImmutableArray (line 17) | Task PingImmutableArray(Immutable data, long nextGrain, bool n... method PingMutableDictionary (line 19) | Task PingMutableDictionary(Dictionary data, long nextGrai... method PingImmutableDictionary (line 21) | Task PingImmutableDictionary(Immutable> data, ... method InterleavingConsistencyTest (line 23) | Task InterleavingConsistencyTest(int numItems); type IReentrantLocalStressTestGrain (line 26) | public interface IReentrantLocalStressTestGrain : IGrainWithIntegerKey method Echo (line 28) | Task Echo(byte[] data); method GetRuntimeInstanceId (line 30) | Task GetRuntimeInstanceId(); method Ping (line 32) | Task Ping(byte[] data); method PingWithDelay (line 34) | Task PingWithDelay(byte[] data, TimeSpan delay); method PingMutableArray (line 36) | Task PingMutableArray(byte[] data, long nextGrain, bool nextGrainIsRem... method PingImmutableArray (line 38) | Task PingImmutableArray(Immutable data, long nextGrain, bool n... method PingMutableDictionary (line 40) | Task PingMutableDictionary(Dictionary data, long nextGrai... method PingImmutableDictionary (line 42) | Task PingImmutableDictionary(Immutable> data, ... FILE: test/Grains/TestGrainInterfaces/IReminderTestGrain.cs type IReminderTestGrain (line 3) | public interface IReminderTestGrain : IGrainWithIntegerKey method IsReminderExists (line 5) | Task IsReminderExists(string reminderName); method AddReminder (line 6) | Task AddReminder(string reminderName); method RemoveReminder (line 7) | Task RemoveReminder(string reminderName); FILE: test/Grains/TestGrainInterfaces/IReminderTestGrain2.cs type ReminderState (line 5) | [GenerateSerializer] type IReminderTestGrain2 (line 14) | public interface IReminderTestGrain2 : IGrainWithGuidKey method StartReminder (line 16) | Task StartReminder(string reminderName, TimeSpan? peri... method StopReminder (line 18) | Task StopReminder(string reminderName); method StopReminder (line 19) | Task StopReminder(IGrainReminder reminder); method GetReminderPeriod (line 21) | Task GetReminderPeriod(string reminderName); method GetReminderDueTimeAndPeriod (line 22) | Task<(TimeSpan DueTime, TimeSpan Period)> GetReminderDueTimeAndPeriod(... method GetCounter (line 23) | Task GetCounter(string name); method GetReminderObject (line 24) | Task GetReminderObject(string reminderName); method GetRemindersList (line 25) | Task> GetRemindersList(); method EraseReminderTable (line 27) | Task EraseReminderTable(); method GetReminderStates (line 29) | Task> GetReminderStates(); type IReminderTestCopyGrain (line 33) | public interface IReminderTestCopyGrain : IGrainWithGuidKey method StartReminder (line 35) | Task StartReminder(string reminderName, TimeSpan? peri... method StopReminder (line 36) | Task StopReminder(string reminderName); method GetReminderPeriod (line 38) | Task GetReminderPeriod(string reminderName); method GetCounter (line 39) | Task GetCounter(string name); type IReminderGrainWrong (line 42) | public interface IReminderGrainWrong : IGrainWithIntegerKey method StartReminder (line 46) | Task StartReminder(string reminderName); FILE: test/Grains/TestGrainInterfaces/IRequestContextTestGrain.cs type IRequestContextTestGrain (line 3) | public interface IRequestContextTestGrain : IGrainWithIntegerKey method TraceIdEcho (line 5) | Task TraceIdEcho(); method TraceIdDoubleEcho (line 7) | Task TraceIdDoubleEcho(); method TraceIdDelayedEcho1 (line 9) | Task TraceIdDelayedEcho1(); method TraceIdDelayedEcho2 (line 11) | Task TraceIdDelayedEcho2(); method E2EActivityId (line 13) | Task E2EActivityId(); type IRequestContextTaskGrain (line 16) | public interface IRequestContextTaskGrain : IGrainWithIntegerKey method TraceIdEcho (line 18) | Task TraceIdEcho(); method TraceIdDoubleEcho (line 20) | Task TraceIdDoubleEcho(); method TraceIdDelayedEcho1 (line 22) | Task TraceIdDelayedEcho1(); method TraceIdDelayedEcho2 (line 24) | Task TraceIdDelayedEcho2(); method TraceIdDelayedEchoAwait (line 26) | Task TraceIdDelayedEchoAwait(); method TraceIdDelayedEchoTaskRun (line 28) | Task TraceIdDelayedEchoTaskRun(); method E2EActivityId (line 30) | Task E2EActivityId(); method TestRequestContext (line 32) | Task> TestRequestContext(); type IRequestContextProxyGrain (line 35) | public interface IRequestContextProxyGrain : IGrainWithIntegerKey method E2EActivityId (line 37) | Task E2EActivityId(); FILE: test/Grains/TestGrainInterfaces/IRetryTestGrain.cs type IRetryTestGrain (line 9) | public interface IRetryTestGrain : IGrainWithStringKey method ScheduleJobAsync (line 11) | Task ScheduleJobAsync(string jobName, DateTimeOffset sched... method HasJobSucceeded (line 13) | Task HasJobSucceeded(string jobId); method WaitForJobToSucceed (line 15) | [AlwaysInterleave] method GetJobExecutionAttemptCount (line 18) | Task GetJobExecutionAttemptCount(string jobId); method GetJobDequeueCountHistory (line 20) | Task> GetJobDequeueCountHistory(string jobId); method GetFinalJobRun (line 22) | Task GetFinalJobRun(string jobId); FILE: test/Grains/TestGrainInterfaces/ISampleStreamingGrain.cs type ISampleStreaming_ProducerGrain (line 3) | public interface ISampleStreaming_ProducerGrain : IGrainWithGuidKey method BecomeProducer (line 5) | Task BecomeProducer(Guid streamId, string streamNamespace, string prov... method StartPeriodicProducing (line 7) | Task StartPeriodicProducing(); method StopPeriodicProducing (line 9) | Task StopPeriodicProducing(); method GetNumberProduced (line 11) | Task GetNumberProduced(); method ClearNumberProduced (line 13) | Task ClearNumberProduced(); method Produce (line 14) | Task Produce(); type ISampleStreaming_ConsumerGrain (line 17) | public interface ISampleStreaming_ConsumerGrain : IGrainWithGuidKey method BecomeConsumer (line 19) | Task BecomeConsumer(Guid streamId, string streamNamespace, string prov... method StopConsuming (line 21) | Task StopConsuming(); method GetNumberConsumed (line 23) | Task GetNumberConsumed(); type ISampleStreaming_InlineConsumerGrain (line 26) | public interface ISampleStreaming_InlineConsumerGrain : ISampleStreaming... type IGrainWithGenericMethodsValue (line 30) | public interface IGrainWithGenericMethodsValue : IGrainWithGuidKey method ValueTaskMethod (line 32) | ValueTask ValueTaskMethod(bool useCache); FILE: test/Grains/TestGrainInterfaces/ISchedulerGrain.cs type ISchedulerGrain (line 7) | public interface ISchedulerGrain : IGrainWithStringKey method ScheduleJobOnAnotherGrainAsync (line 9) | Task ScheduleJobOnAnotherGrainAsync(string targetGrainKey,... FILE: test/Grains/TestGrainInterfaces/ISiloRoleBasedPlacementGrain.cs type ISiloRoleBasedPlacementGrain (line 3) | public interface ISiloRoleBasedPlacementGrain : IGrainWithStringKey method Ping (line 5) | Task Ping(); FILE: test/Grains/TestGrainInterfaces/ISimpleDIGrain.cs type ISimpleDIGrain (line 3) | public interface ISimpleDIGrain : IGrainWithIntegerKey method GetLongValue (line 5) | Task GetLongValue(); method GetStringValue (line 6) | Task GetStringValue(); method DoDeactivate (line 7) | Task DoDeactivate(); type IDIGrainWithInjectedServices (line 10) | public interface IDIGrainWithInjectedServices : ISimpleDIGrain method GetGrainFactoryId (line 12) | Task GetGrainFactoryId(); method GetInjectedSingletonServiceValue (line 13) | Task GetInjectedSingletonServiceValue(); method GetInjectedScopedServiceValue (line 14) | Task GetInjectedScopedServiceValue(); method AssertCanResolveSameServiceInstances (line 15) | Task AssertCanResolveSameServiceInstances(); FILE: test/Grains/TestGrainInterfaces/ISimpleGenericGrain.cs type ISimpleGenericGrain (line 3) | public interface ISimpleGenericGrain : IGrainWithIntegerKey method Set (line 5) | Task Set(T t); method Transform (line 7) | Task Transform(); method Get (line 9) | Task Get(); method CompareGrainReferences (line 11) | Task CompareGrainReferences(ISimpleGenericGrain clientRef); FILE: test/Grains/TestGrainInterfaces/ISimpleGrain.cs type ISimpleGrain (line 3) | public interface ISimpleGrain : IGrainWithIntegerKey method SetA (line 5) | Task SetA(int a); method SetB (line 6) | Task SetB(int b); method IncrementA (line 7) | Task IncrementA(); method GetAxB (line 8) | Task GetAxB(); method GetAxB (line 9) | Task GetAxB(int a, int b); method GetA (line 10) | Task GetA(); FILE: test/Grains/TestGrainInterfaces/ISimpleGrainWithAsyncMethods.cs type ISimpleGrainAsync (line 3) | public interface ISimpleGrainAsync : IGrainWithIntegerKey method SetA_Async (line 5) | Task SetA_Async(int a); method SetB_Async (line 6) | Task SetB_Async(int b); method GetAxB_Async (line 7) | Task GetAxB_Async(); method GetAxB_Async (line 8) | Task GetAxB_Async(int a, int b); method GetA_Async (line 9) | Task GetA_Async(); method IncrementA_Async (line 10) | Task IncrementA_Async(); type ISimpleGrainWithAsyncMethods (line 13) | public interface ISimpleGrainWithAsyncMethods : ISimpleGrainAsync method GetX (line 15) | Task GetX(); method SetX (line 16) | Task SetX(int x); FILE: test/Grains/TestGrainInterfaces/ISimpleObserverableGrain.cs type ISimpleObserverableGrain (line 3) | public interface ISimpleObserverableGrain : ISimpleGrain method Subscribe (line 5) | Task Subscribe(ISimpleGrainObserver observer); method Unsubscribe (line 6) | Task Unsubscribe(ISimpleGrainObserver observer); method GetRuntimeInstanceId (line 7) | Task GetRuntimeInstanceId(); type ISimpleGrainObserver (line 10) | public interface ISimpleGrainObserver : IGrainObserver method StateChanged (line 12) | void StateChanged(int a, int b); FILE: test/Grains/TestGrainInterfaces/ISimplePersistentGrain.cs type ISimplePersistentGrain (line 3) | public interface ISimplePersistentGrain : ISimpleGrain method SetA (line 5) | Task SetA(int a, bool deactivate); method GetVersion (line 6) | Task GetVersion(); method GetRequestContext (line 7) | Task GetRequestContext(); method SetRequestContext (line 8) | Task SetRequestContext(int data); FILE: test/Grains/TestGrainInterfaces/IStatelessWorkerExceptionGrain.cs type IStatelessWorkerExceptionGrain (line 3) | public interface IStatelessWorkerExceptionGrain : IGrainWithIntegerKey method Ping (line 5) | Task Ping(); FILE: test/Grains/TestGrainInterfaces/IStatelessWorkerGrain.cs type IStatelessWorkerGrain (line 3) | public interface IStatelessWorkerGrain : IGrainWithIntegerKey method LongCall (line 5) | Task LongCall(); method GetCallStats (line 6) | Task>>> GetCallStat... method DummyCall (line 8) | Task DummyCall(); FILE: test/Grains/TestGrainInterfaces/IStatelessWorkerScalingGrain.cs type IStatelessWorkerScalingGrain (line 5) | public interface IStatelessWorkerScalingGrain : IGrainWithIntegerKey method Wait (line 7) | Task Wait(); method Release (line 9) | [AlwaysInterleave] method GetActivationCount (line 12) | [AlwaysInterleave] method GetWaitingCount (line 15) | [AlwaysInterleave] FILE: test/Grains/TestGrainInterfaces/IStatelessWorkerStreamConsumerGrain.cs type IStatelessWorkerStreamConsumerGrain (line 3) | public interface IStatelessWorkerStreamConsumerGrain : IGrainWithIntegerKey method BecomeConsumer (line 5) | Task BecomeConsumer(Guid streamId, string providerToUse); FILE: test/Grains/TestGrainInterfaces/IStatelessWorkerStreamProducerGrain.cs type IStatelessWorkerStreamProducerGrain (line 3) | public interface IStatelessWorkerStreamProducerGrain : IGrainWithIntegerKey method Produce (line 5) | Task Produce(Guid streamId, string providerToUse, string message); FILE: test/Grains/TestGrainInterfaces/IStatelessWorkerWithMayInterleaveGrain.cs type IStatelessWorkerWithMayInterleaveGrain (line 3) | public interface IStatelessWorkerWithMayInterleaveGrain : IGrainWithInte... method GoSlow (line 5) | Task GoSlow(ICallbackGrainObserver callback); method GoFast (line 6) | Task GoFast(ICallbackGrainObserver callback); type ICallbackGrainObserver (line 9) | public interface ICallbackGrainObserver : IGrainObserver method WaitAsync (line 11) | Task WaitAsync(); FILE: test/Grains/TestGrainInterfaces/IStatsCollectorGrain.cs type IStatsCollectorGrain (line 3) | public interface IStatsCollectorGrain : IGrainWithIntegerKey method ReportStatsCalled (line 5) | Task ReportStatsCalled(); method GetReportStatsCallCount (line 7) | Task GetReportStatsCallCount(); FILE: test/Grains/TestGrainInterfaces/IStreamBatchingTestConsumerGrain.cs class StreamBatchingTestConst (line 3) | public static class StreamBatchingTestConst class ConsumptionReport (line 10) | [GenerateSerializer] type IStreamBatchingTestConsumerGrain (line 20) | public interface IStreamBatchingTestConsumerGrain : IGrainWithGuidKey method GetConsumptionReport (line 22) | Task GetConsumptionReport(); FILE: test/Grains/TestGrainInterfaces/IStreamInterceptionGrain.cs type IStreamInterceptionGrain (line 3) | public interface IStreamInterceptionGrain : IGrainWithGuidKey method GetLastStreamValue (line 5) | Task GetLastStreamValue(); FILE: test/Grains/TestGrainInterfaces/IStreamLifecycleTestGrains.cs type IStreamLifecycleConsumerGrain (line 6) | public interface IStreamLifecycleConsumerGrain : IGrainWithGuidKey method GetReceivedCount (line 8) | Task GetReceivedCount(); method GetErrorsCount (line 9) | Task GetErrorsCount(); method Ping (line 11) | Task Ping(); method BecomeConsumer (line 12) | Task BecomeConsumer(StreamId streamId, string providerName); method TestBecomeConsumerSlim (line 13) | Task TestBecomeConsumerSlim(StreamId streamId, string providerName); method RemoveConsumer (line 14) | Task RemoveConsumer(StreamId streamId, string providerName, StreamSubs... method ClearGrain (line 15) | Task ClearGrain(); type IFilteredStreamConsumerGrain (line 18) | public interface IFilteredStreamConsumerGrain : IStreamLifecycleConsumer... method BecomeConsumer (line 20) | Task BecomeConsumer(StreamId streamId, string providerName, bool sendE... method SubscribeWithBadFunc (line 21) | Task SubscribeWithBadFunc(StreamId streamId, string providerName); type IStreamLifecycleProducerGrain (line 24) | public interface IStreamLifecycleProducerGrain : IGrainWithGuidKey method GetSendCount (line 26) | Task GetSendCount(); method GetErrorsCount (line 27) | Task GetErrorsCount(); method Ping (line 29) | Task Ping(); method BecomeProducer (line 31) | Task BecomeProducer(StreamId streamId, string providerName); method ClearGrain (line 32) | Task ClearGrain(); method DoDeactivateNoClose (line 34) | Task DoDeactivateNoClose(); method SendItem (line 36) | Task SendItem(int item); class StreamLifecycleConsumerGrainExtensions (line 39) | public static class StreamLifecycleConsumerGrainExtensions method BecomeConsumer (line 41) | public static Task BecomeConsumer(this IStreamLifecycleConsumerGrain g... method TestBecomeConsumerSlim (line 47) | public static Task TestBecomeConsumerSlim(this IStreamLifecycleConsume... method RemoveConsumer (line 53) | public static Task RemoveConsumer(this IStreamLifecycleConsumerGrain ... method BecomeConsumer (line 59) | public static Task BecomeConsumer(this IFilteredStreamConsumerGrain gr... method SubscribeWithBadFunc (line 65) | public static Task SubscribeWithBadFunc(this IFilteredStreamConsumerGr... method BecomeProducer (line 71) | public static Task BecomeProducer(this IStreamLifecycleProducerGrain g... FILE: test/Grains/TestGrainInterfaces/IStreamLifecycleTestInternalGrains.cs type IStreamLifecycleProducerInternalGrain (line 4) | public interface IStreamLifecycleProducerInternalGrain : IStreamLifecycl... method DoBadDeactivateNoClose (line 6) | Task DoBadDeactivateNoClose(); method TestInternalRemoveProducer (line 7) | Task TestInternalRemoveProducer(Guid streamId, string providerName); type IStreamLifecycleConsumerInternalGrain (line 10) | public interface IStreamLifecycleConsumerInternalGrain : IStreamLifecycl... method TestBecomeConsumerSlim (line 12) | Task TestBecomeConsumerSlim(Guid streamId, string providerName); FILE: test/Grains/TestGrainInterfaces/IStreamReliabilityTestGrains.cs type IStreamReliabilityTestGrain (line 9) | public interface IStreamReliabilityTestGrain : IGrainWithIntegerKey method GetReceivedCount (line 14) | Task GetReceivedCount(); method GetErrorsCount (line 15) | Task GetErrorsCount(); method GetConsumerCount (line 16) | Task GetConsumerCount(); method Ping (line 18) | Task Ping(); method AddConsumer (line 20) | Task> AddConsumer(Guid streamId, string pr... method RemoveConsumer (line 21) | Task RemoveConsumer(Guid streamId, string providerName, StreamSubscrip... method AddConsumer (line 23) | Task> AddConsumer(Guid streamId, string ... method RemoveConsumer (line 24) | Task RemoveConsumer(Guid streamId, string providerName, StreamSubscrip... method BecomeProducer (line 27) | Task BecomeProducer(Guid streamId, string providerName); method RemoveProducer (line 28) | Task RemoveProducer(Guid streamId, string providerName); method ClearGrain (line 29) | Task ClearGrain(); method RemoveAllConsumers (line 30) | Task RemoveAllConsumers(); method IsConsumer (line 32) | Task IsConsumer(); method IsProducer (line 33) | Task IsProducer(); method GetConsumerHandlesCount (line 34) | Task GetConsumerHandlesCount(); method GetConsumerObserversCount (line 35) | Task GetConsumerObserversCount(); method SendItem (line 38) | Task SendItem(T item); method SendItem (line 40) | Task SendItem(int item); method GetLocation (line 43) | Task GetLocation(); type IStreamUnsubscribeTestGrain (line 47) | public interface IStreamUnsubscribeTestGrain : IGrainWithIntegerKey method Subscribe (line 49) | Task Subscribe(Guid streamId, string providerName); method UnSubscribeFromAllStreams (line 50) | Task UnSubscribeFromAllStreams(); FILE: test/Grains/TestGrainInterfaces/IStreamingGrain.cs type IStreaming_ConsumerGrain (line 6) | public interface IStreaming_ConsumerGrain : IGrainWithGuidKey method BecomeConsumer (line 8) | Task BecomeConsumer(Guid streamId, string providerToUse, string stream... method StopBeingConsumer (line 9) | Task StopBeingConsumer(); method GetItemsConsumed (line 10) | Task GetItemsConsumed(); method GetConsumerCount (line 11) | Task GetConsumerCount(); method DeactivateConsumerOnIdle (line 12) | Task DeactivateConsumerOnIdle(); type IPersistentStreaming_ProducerGrain (line 15) | public interface IPersistentStreaming_ProducerGrain : IStreaming_Produce... type IPersistentStreaming_ConsumerGrain (line 19) | public interface IPersistentStreaming_ConsumerGrain : IStreaming_Consume... type IStreaming_ProducerConsumerGrain (line 23) | public interface IStreaming_ProducerConsumerGrain : IGrainWithIntegerKey... type IStreaming_Reentrant_ProducerConsumerGrain (line 27) | public interface IStreaming_Reentrant_ProducerConsumerGrain : IGrainWith... type IStreaming_ImplicitlySubscribedConsumerGrain (line 31) | public interface IStreaming_ImplicitlySubscribedConsumerGrain : IGrainWi... type IStreaming_ImplicitlySubscribedGenericConsumerGrain (line 35) | public interface IStreaming_ImplicitlySubscribedGenericConsumerGrain ... class Streaming_ProducerGrain_State (line 42) | [Serializable] class Streaming_ConsumerGrain_State (line 50) | [Serializable] class Streaming_ProducerConsumerGrain_State (line 58) | [Serializable] type IProducerObserver (line 70) | public interface IProducerObserver method BecomeProducer (line 72) | void BecomeProducer(Guid streamId, IStreamProvider streamProvider, str... method RenewProducer (line 73) | void RenewProducer(ILogger logger, IStreamProvider streamProvider); method StopBeingProducer (line 74) | Task StopBeingProducer(); method ProduceSequentialSeries (line 75) | Task ProduceSequentialSeries(int count); method ProduceParallelSeries (line 76) | Task ProduceParallelSeries(int count); method ProducePeriodicSeries (line 77) | Task ProducePeriodicSeries(Func, IDisposable> creat... method AddNewConsumerGrain (line 80) | Task AddNewConsumerGrain(Guid consumerGrainId); method VerifyFinished (line 82) | Task VerifyFinished(); type IConsumerObserver (line 86) | public interface IConsumerObserver method BecomeConsumer (line 88) | Task BecomeConsumer(Guid streamId, IStreamProvider streamProvider, str... method RenewConsumer (line 89) | Task RenewConsumer(ILogger logger, IStreamProvider streamProvider); method StopBeingConsumer (line 90) | Task StopBeingConsumer(IStreamProvider streamProvider); FILE: test/Grains/TestGrainInterfaces/IStreamingHistoryGrain.cs type IStreamingHistoryGrain (line 5) | public interface IStreamingHistoryGrain : IGrainWithStringKey method BecomeConsumer (line 7) | Task BecomeConsumer(StreamId streamId, string provider, string filterD... method StopBeingConsumer (line 9) | Task StopBeingConsumer(); method GetReceivedItems (line 11) | Task> GetReceivedItems(); FILE: test/Grains/TestGrainInterfaces/IStreamingImmutabilityTestGrain.cs type IStreamingImmutabilityTestGrain (line 3) | public interface IStreamingImmutabilityTestGrain : IGrainWithGuidKey method SubscribeToStream (line 5) | Task SubscribeToStream(Guid guid, string providerName); method UnsubscribeFromStream (line 6) | Task UnsubscribeFromStream(); method SendTestObject (line 7) | Task SendTestObject(string providerName); method SetTestObjectStringProperty (line 8) | Task SetTestObjectStringProperty(string value); method GetTestObjectStringProperty (line 9) | Task GetTestObjectStringProperty(); method GetSiloIdentifier (line 10) | Task GetSiloIdentifier(); FILE: test/Grains/TestGrainInterfaces/IStreaming_ProducerGrain.cs type IStreaming_ProducerGrain (line 6) | public interface IStreaming_ProducerGrain : IGrainWithGuidKey method BecomeProducer (line 8) | Task BecomeProducer(Guid streamId, string providerToUse, string stream... method StopBeingProducer (line 9) | Task StopBeingProducer(); method ProduceSequentialSeries (line 10) | Task ProduceSequentialSeries(int count); method ProduceParallelSeries (line 11) | Task ProduceParallelSeries(int count); method ProducePeriodicSeries (line 12) | Task ProducePeriodicSeries(int count); method GetExpectedItemsProduced (line 13) | Task GetExpectedItemsProduced(); method GetItemsProduced (line 14) | Task GetItemsProduced(); method AddNewConsumerGrain (line 15) | Task AddNewConsumerGrain(Guid consumerGrainId); method GetProducerCount (line 16) | Task GetProducerCount(); method DeactivateProducerOnIdle (line 17) | Task DeactivateProducerOnIdle(); method VerifyFinished (line 19) | [AlwaysInterleave] FILE: test/Grains/TestGrainInterfaces/IStuckGrain.cs type IStuckGrain (line 5) | public interface IStuckGrain : IGrainWithGuidKey method RunForever (line 7) | Task RunForever(); method NonBlockingCall (line 9) | Task NonBlockingCall(); method GetNonBlockingCallCounter (line 11) | Task GetNonBlockingCallCounter(); method DidActivationTryToStart (line 13) | Task DidActivationTryToStart(GrainId id); method BlockingDeactivation (line 15) | Task BlockingDeactivation(); type IStuckCleanGrain (line 18) | public interface IStuckCleanGrain : IGrainWithGuidKey method Release (line 20) | Task Release(Guid key); method IsActivated (line 22) | Task IsActivated(Guid key); FILE: test/Grains/TestGrainInterfaces/ITestExtension.cs type ITestExtension (line 5) | public interface ITestExtension : IGrainExtension method CheckExtension_1 (line 7) | Task CheckExtension_1(); method CheckExtension_2 (line 9) | Task CheckExtension_2(); type IGenericTestExtension (line 12) | public interface IGenericTestExtension : IGrainExtension method CheckExtension_1 (line 14) | Task CheckExtension_1(); method CheckExtension_2 (line 16) | Task CheckExtension_2(); type ISimpleExtension (line 19) | public interface ISimpleExtension : IGrainExtension method CheckExtension_1 (line 21) | Task CheckExtension_1(); type IAutoExtension (line 24) | public interface IAutoExtension : IGrainExtension method CheckExtension (line 26) | Task CheckExtension(); FILE: test/Grains/TestGrainInterfaces/ITestGrain.cs type ITestGrain (line 6) | public interface ITestGrain : IGrainWithIntegerKey method GetKey (line 9) | Task GetKey(); method GetLabel (line 12) | Task GetLabel(); method SetLabel (line 14) | Task SetLabel(string label); method GetRuntimeInstanceId (line 16) | Task GetRuntimeInstanceId(); method GetActivationId (line 18) | Task GetActivationId(); method GetGrainReference (line 20) | Task GetGrainReference(); method TestRequestContext (line 22) | Task> TestRequestContext(); method GetMultipleGrainInterfaces_Array (line 24) | Task GetMultipleGrainInterfaces_Array(); method GetMultipleGrainInterfaces_List (line 26) | Task> GetMultipleGrainInterfaces_List(); method StartTimer (line 28) | Task StartTimer(); method DoLongAction (line 30) | [ResponseTimeout("00:00:01")] type ITestGrainLongOnActivateAsync (line 34) | public interface ITestGrainLongOnActivateAsync : IGrainWithIntegerKey method GetKey (line 36) | Task GetKey(); type IGuidTestGrain (line 39) | public interface IGuidTestGrain : IGrainWithGuidKey method GetKey (line 42) | Task GetKey(); method GetLabel (line 45) | Task GetLabel(); method SetLabel (line 47) | Task SetLabel(string label); method GetRuntimeInstanceId (line 49) | Task GetRuntimeInstanceId(); method GetActivationId (line 51) | Task GetActivationId(); method GetSiloAddress (line 53) | Task GetSiloAddress(); type IOneWayGrain (line 56) | public interface IOneWayGrain : IGrainWithGuidKey method Notify (line 58) | [OneWay] method NotifyValueTask (line 61) | [OneWay] method ThrowsOneWay (line 64) | [OneWay] method ThrowsOneWayValueTask (line 67) | [OneWay] method NotifyOtherGrain (line 70) | Task NotifyOtherGrain(IOneWayGrain otherGrain, ISimpleGrainObser... method NotifyOtherGrainValueTask (line 72) | Task NotifyOtherGrainValueTask(IOneWayGrain otherGrain, ISimpleG... method GetOtherGrain (line 74) | Task GetOtherGrain(); method NotifyOtherGrain (line 76) | Task NotifyOtherGrain(); method GetCount (line 78) | Task GetCount(); method Deactivate (line 80) | Task Deactivate(); method GetSiloAddress (line 82) | Task GetSiloAddress(); method GetPrimaryForGrain (line 84) | Task GetPrimaryForGrain(); method GetActivationId (line 86) | Task GetActivationId(); method GetActivationAddress (line 88) | Task GetActivationAddress(IGrain grain); method SignalSelfViaOther (line 90) | Task SignalSelfViaOther(); method SendSignalTo (line 92) | [OneWay] method WaitForSignal (line 95) | [AlwaysInterleave] method Signal (line 98) | [AlwaysInterleave] type ICanBeOneWayGrain (line 102) | public interface ICanBeOneWayGrain : IGrainWithGuidKey method Notify (line 104) | Task Notify(ISimpleGrainObserver observer); method NotifyValueTask (line 106) | ValueTask NotifyValueTask(ISimpleGrainObserver observer); method Throws (line 108) | Task Throws(); method ThrowsValueTask (line 110) | ValueTask ThrowsValueTask(); method GetCount (line 112) | Task GetCount(); FILE: test/Grains/TestGrainInterfaces/ITimerGrain.cs type ITimerGrain (line 3) | public interface ITimerGrain : IGrainWithIntegerKey method StopDefaultTimer (line 5) | Task StopDefaultTimer(); method GetTimerPeriod (line 6) | Task GetTimerPeriod(); method GetCounter (line 7) | Task GetCounter(); method SetCounter (line 8) | Task SetCounter(int value); method StartTimer (line 9) | Task StartTimer(string timerName); method StopTimer (line 10) | Task StopTimer(string timerName); method LongWait (line 11) | Task LongWait(TimeSpan time); method Deactivate (line 12) | Task Deactivate(); type IPocoTimerGrain (line 15) | public interface IPocoTimerGrain : ITimerGrain type ITimerCallGrain (line 19) | public interface ITimerCallGrain : IGrainWithIntegerKey method GetTickCount (line 21) | Task GetTickCount(); method GetException (line 22) | Task GetException(); method StartTimer (line 24) | Task StartTimer(string name, TimeSpan dueTime); method StartTimer (line 25) | Task StartTimer(string name, TimeSpan dueTime, string operationType); method RestartTimer (line 26) | Task RestartTimer(string name, TimeSpan dueTime); method RestartTimer (line 27) | Task RestartTimer(string name, TimeSpan dueTime, TimeSpan period); method StopTimer (line 28) | Task StopTimer(string name); method RunSelfDisposingTimer (line 29) | Task RunSelfDisposingTimer(); type IPocoTimerCallGrain (line 32) | public interface IPocoTimerCallGrain : ITimerCallGrain type ITimerRequestGrain (line 36) | public interface ITimerRequestGrain : IGrainWithIntegerKey method StartAndWaitTimerTick (line 38) | Task StartAndWaitTimerTick(TimeSpan dueTime); method StartStuckTimer (line 40) | Task StartStuckTimer(TimeSpan dueTime); method GetRuntimeInstanceId (line 42) | Task GetRuntimeInstanceId(); method TestAllTimerOverloads (line 43) | Task TestAllTimerOverloads(); method PollCompletedTimers (line 44) | Task PollCompletedTimers(); method TestCompletedTimerResults (line 45) | Task TestCompletedTimerResults(); type IPocoTimerRequestGrain (line 48) | public interface IPocoTimerRequestGrain : ITimerRequestGrain type INonReentrantTimerCallGrain (line 52) | public interface INonReentrantTimerCallGrain : IGrainWithIntegerKey method GetTickCount (line 54) | Task GetTickCount(); method GetException (line 55) | Task GetException(); method StartTimer (line 57) | Task StartTimer(string name, TimeSpan delay, bool keepAlive = true); method StopTimer (line 58) | Task StopTimer(string name); method ExternalTick (line 59) | Task ExternalTick(string name); type IPocoNonReentrantTimerCallGrain (line 62) | public interface IPocoNonReentrantTimerCallGrain : INonReentrantTimerCal... FILE: test/Grains/TestGrainInterfaces/IValueTypeTestGrain.cs type ValueTypeTestData (line 7) | [Serializable] method ValueTypeTestData (line 15) | public ValueTypeTestData(int i) type TestEnum (line 21) | [Serializable] type CampaignEnemyTestType (line 30) | [Serializable] class ClassWithEnumTestData (line 41) | [GenerateSerializer] class LargeTestData (line 51) | [ProtoContract] method LargeTestData (line 75) | public LargeTestData() method SetBit (line 86) | public void SetBit(int n, bool value = true) method GetBit (line 90) | public bool GetBit(int n) method SetEnemy (line 94) | public void SetEnemy(int n, CampaignEnemyTestType enemy) method GetEnemy (line 98) | public CampaignEnemyTestType GetEnemy(int n) method SetNumber (line 102) | public void SetNumber(string name, int value) method GetNumber (line 106) | public int GetNumber(string name) class NestedGeneric (line 113) | [Serializable] method NestedGeneric (line 122) | public NestedGeneric(T t) method ToString (line 128) | public override string ToString() method SetT (line 133) | public void SetT(T t) type IValueTypeTestGrain (line 141) | public interface IValueTypeTestGrain : IGrainWithGuidKey method GetStateData (line 143) | Task GetStateData(); method SetStateData (line 145) | Task SetStateData(ValueTypeTestData d); type IRoundtripSerializationGrain (line 148) | public interface IRoundtripSerializationGrain : IGrainWithIntegerKey method GetEnemyType (line 150) | Task GetEnemyType(); method GetClosedGenericValue (line 152) | Task GetClosedGenericValue(); method GetRetValForParamVal (line 154) | Task GetRetValForParamVal(ParamVal param); type ParamVal (line 157) | [GenerateSerializer] type RetVal (line 160) | [GenerateSerializer] class ImmutableType (line 163) | [Serializable] method ImmutableType (line 176) | public ImmutableType(int aval, int bval) class EmbeddedImmutable (line 183) | [Serializable] method EmbeddedImmutable (line 194) | public EmbeddedImmutable(string a, params int[] listOfInts) class ClassWithEmbeddedImmutable (line 203) | [GenerateSerializer] type StructWithEmbeddedImmutable (line 210) | [GenerateSerializer] type DefaultActivatorValueTypeWithRequiredField (line 217) | [Serializable] method DefaultActivatorValueTypeWithRequiredField (line 223) | [SetsRequiredMembers] type WithGrainIdType (line 230) | public struct WithGrainIdType method WithGrainIdType (line 234) | public WithGrainIdType(GrainId grainId) type WithGrainIdMapType (line 240) | public struct WithGrainIdMapType method WithGrainIdMapType (line 244) | public WithGrainIdMapType(IDictionary map) type WithGrainIdSetType (line 250) | public struct WithGrainIdSetType method WithGrainIdSetType (line 254) | public WithGrainIdSetType(ISet set) type DefaultActivatorValueTypeWithUseActivator (line 260) | [UseActivator] method DefaultActivatorValueTypeWithUseActivator (line 267) | [SetsRequiredMembers] FILE: test/Grains/TestGrainInterfaces/IsExternalInit.cs class IsExternalInit (line 4) | internal static class IsExternalInit {} FILE: test/Grains/TestGrainInterfaces/ProgramaticStreamSubscribe/IPassive_ConsumerGrain.cs type IPassive_ConsumerGrain (line 7) | public interface IPassive_ConsumerGrain: IGrainWithGuidKey method StopConsuming (line 9) | Task StopConsuming(); method GetCountOfOnAddFuncCalled (line 10) | Task GetCountOfOnAddFuncCalled(); method GetNumberConsumed (line 11) | Task GetNumberConsumed(); type IJerk_ConsumerGrain (line 15) | public interface IJerk_ConsumerGrain : IGrainWithGuidKey type IImplicitSubscribeGrain (line 19) | public interface IImplicitSubscribeGrain: IPassive_ConsumerGrain type ITypedProducerGrain (line 23) | public interface ITypedProducerGrain: IGrainWithGuidKey method BecomeProducer (line 25) | Task BecomeProducer(Guid streamId, string streamNamespace, string prov... method StartPeriodicProducing (line 27) | Task StartPeriodicProducing(TimeSpan? firePeriod = null); method StopPeriodicProducing (line 29) | Task StopPeriodicProducing(); method GetNumberProduced (line 31) | Task GetNumberProduced(); method ClearNumberProduced (line 33) | Task ClearNumberProduced(); method Produce (line 34) | Task Produce(); type ITypedProducerGrainProducingInt (line 37) | public interface ITypedProducerGrainProducingInt : ITypedProducerGrain type ITypedProducerGrainProducingApple (line 40) | public interface ITypedProducerGrainProducingApple : ITypedProducerGrain type IFruit (line 43) | public interface IFruit method GetNumber (line 45) | int GetNumber(); FILE: test/Grains/TestGrainInterfaces/RecursiveType.cs type IReferenceRecursiveTypeGrain (line 3) | public interface IReferenceRecursiveTypeGrain : IGrainWithGuidKey method Echo (line 5) | Task Echo(RecursiveType arg); class RecursiveType (line 12) | [Serializable] class SelfTyped (line 18) | [GenerateSerializer] FILE: test/Grains/TestGrainInterfaces/RedStreamNamespacePredicate.cs class RedStreamNamespacePredicate (line 5) | public class RedStreamNamespacePredicate : IStreamNamespacePredicate method IsMatch (line 9) | public bool IsMatch(string streamNamespace) FILE: test/Grains/TestGrainInterfaces/SerializerExclusions.cs class MyTypeWithAnInternalTypeField (line 3) | [Serializable] method MyTypeWithAnInternalTypeField (line 10) | public MyTypeWithAnInternalTypeField() class MyInternalDependency (line 15) | [GenerateSerializer] type IInternalReturnType (line 22) | public interface IInternalReturnType : IGrainWithIntegerKey method Foo (line 24) | Task Foo(); FILE: test/Grains/TestGrainInterfaces/SerializerTestTypes.cs class TypeWithOnDeserializedHook (line 8) | [Serializable] method OnDeserialized (line 19) | void IOnDeserialized.OnDeserialized(DeserializationContext context) class BaseClassWithAutoProp (line 25) | [Serializable] class SubClassOverridingAutoProp (line 37) | [Serializable] FILE: test/Grains/TestGrainInterfaces/SlowConsumingGrains/ISlowConsumingGrain.cs type ISlowConsumingGrain (line 3) | public interface ISlowConsumingGrain : IGrainWithGuidKey method BecomeConsumer (line 5) | Task BecomeConsumer(Guid streamId, string streamNamespace, string prov... method StopConsuming (line 7) | Task StopConsuming(); method GetNumberConsumed (line 9) | Task GetNumberConsumed(); FILE: test/Grains/TestGrainInterfaces/TestTypeA.cs class TestTypeA (line 3) | [Serializable] FILE: test/Grains/TestGrainInterfaces/UnitTestGrainInterfaces.cs type IA (line 3) | public interface IA : IGrainWithIntegerKey method CommonMethod (line 5) | Task CommonMethod(); method A1Method (line 6) | Task A1Method(); method A2Method (line 7) | Task A2Method(); method A3Method (line 8) | Task A3Method(); type IB (line 11) | public interface IB : IGrainWithIntegerKey method CommonMethod (line 13) | Task CommonMethod(); method B1Method (line 14) | Task B1Method(); method B2Method (line 15) | Task B2Method(); method B3Method (line 16) | Task B3Method(); type IC (line 19) | public interface IC : IA, IB method CommonMethod (line 21) | new Task CommonMethod(); method C1Method (line 22) | Task C1Method(); method C2Method (line 23) | Task C2Method(); method C3Method (line 24) | Task C3Method(); type ID (line 27) | public interface ID : IC method D1Method (line 29) | Task D1Method(); method D2Method (line 30) | Task D2Method(); method D3Method (line 31) | Task D3Method(); type IE (line 34) | public interface IE : IGrainWithIntegerKey method E1Method (line 36) | Task E1Method(); method E2Method (line 37) | Task E2Method(); method E3Method (line 38) | Task E3Method(); type IF (line 41) | public interface IF : ID, IE method F1Method (line 43) | Task F1Method(); method F2Method (line 44) | Task F2Method(); method F3Method (line 45) | Task F3Method(); type IG (line 48) | public interface IG : IGrainWithIntegerKey method AmbiguousMethod (line 50) | Task AmbiguousMethod(); type IH (line 52) | public interface IH : IGrainWithIntegerKey method H1Method (line 54) | Task H1Method(); method H2Method (line 55) | Task H2Method(); method H3Method (line 56) | Task H3Method(); type IServiceType (line 59) | public interface IServiceType : IF method ServiceTypeMethod1 (line 61) | Task ServiceTypeMethod1(); method ServiceTypeMethod2 (line 62) | Task ServiceTypeMethod2(); method ServiceTypeMethod3 (line 63) | Task ServiceTypeMethod3(); type IDerivedServiceType (line 66) | public interface IDerivedServiceType : IServiceType, IH method DerivedServiceTypeMethod1 (line 68) | Task DerivedServiceTypeMethod1(); FILE: test/Grains/TestGrainInterfaces/VersionAwarePlacementDirector.cs class VersionAwareStrategyAttribute (line 6) | [AttributeUsage(AttributeTargets.Class)] method VersionAwareStrategyAttribute (line 9) | public VersionAwareStrategyAttribute() class VersionAwarePlacementStrategy (line 15) | [Serializable] FILE: test/Grains/TestGrains/ActivateDeactivateWatcherGrain.cs class ActivateDeactivateWatcherGrain (line 6) | internal class ActivateDeactivateWatcherGrain : IActivateDeactivateWatch... method ActivateDeactivateWatcherGrain (line 13) | public ActivateDeactivateWatcherGrain(ILogger GetActivateCalls() { return Task.FromResult(acti... method GetDeactivateCalls (line 19) | public Task GetDeactivateCalls() { return Task.FromResult(de... method Clear (line 21) | public Task Clear() method RecordActivateCall (line 28) | public Task RecordActivateCall(string activation) method RecordDeactivateCall (line 35) | public Task RecordDeactivateCall(string activation) FILE: test/Grains/TestGrains/ActivationCancellationTestGrains.cs class ActivationCancellationTestGrainBase (line 11) | public abstract class ActivationCancellationTestGrainBase : Grain method ActivationCancellationTestGrainBase (line 18) | protected ActivationCancellationTestGrainBase(ILogger logger, IGrainRu... method GetActivationId (line 29) | public Task GetActivationId() => Task.FromResult(ActivationId); method IsActivated (line 31) | public Task IsActivated() => Task.FromResult(IsActivatedSuccessf... class ActivationCancellation_ThrowsOperationCancelledGrain (line 38) | public class ActivationCancellation_ThrowsOperationCancelledGrain method ActivationCancellation_ThrowsOperationCancelledGrain (line 41) | public ActivationCancellation_ThrowsOperationCancelledGrain(ILogger GetActivityId() class AsyncEnumerableActivityGrain (line 31) | public class AsyncEnumerableActivityGrain : Grain, IAsyncEnumerableActiv... method GetActivityDataStream (line 33) | public async IAsyncEnumerable GetActivityDataStream(int ... FILE: test/Grains/TestGrains/AdoNet/CustomerGrain.cs class CustomerGrain (line 6) | [StorageProvider(ProviderName = "SqlStore")] method OnActivateAsync (line 11) | public override async Task OnActivateAsync(CancellationToken cancellat... method IntroduceSelf (line 16) | public Task IntroduceSelf() method Set (line 21) | public async Task Set(int customerId, string firstName, string lastName) method AddDevice (line 30) | public async Task AddDevice(IDeviceGrain device) method SetRandomState (line 47) | public async Task SetRandomState() FILE: test/Grains/TestGrains/AdoNet/DeviceGrain.cs class DeviceGrain (line 6) | [StorageProvider(ProviderName = "MemoryStore")] method GetSerialNumber (line 9) | public Task GetSerialNumber() method SetOwner (line 14) | public async Task SetOwner(ICustomerGrain customer) FILE: test/Grains/TestGrains/AdoNet/ICustomerState.cs class CustomerState (line 5) | [Serializable] FILE: test/Grains/TestGrains/AdoNet/IDeviceState.cs class DeviceState (line 5) | [Serializable] FILE: test/Grains/TestGrains/AsyncSimpleGrain.cs class AsyncSimpleGrain (line 9) | public class AsyncSimpleGrain : SimpleGrain, ISimpleGrainWithAsyncMethods method AsyncSimpleGrain (line 13) | public AsyncSimpleGrain(ILoggerFactory loggerFactory) : base(loggerFac... method GetAxB_Async (line 17) | public async Task GetAxB_Async() method GetAxB_Async (line 23) | public async Task GetAxB_Async(int a, int b) method SetA_Async (line 28) | public async Task SetA_Async(int a) method SetB_Async (line 33) | public async Task SetB_Async(int b) method IncrementA_Async (line 39) | public async Task IncrementA_Async() method GetA_Async (line 45) | public async Task GetA_Async() method GetX (line 51) | public Task GetX() method SetX (line 57) | public Task SetX(int x) FILE: test/Grains/TestGrains/CatalogTestGrain.cs class CatalogTestGrain (line 5) | public class CatalogTestGrain : Grain, ICatalogTestGrain method OnActivateAsync (line 7) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Initialize (line 12) | public Task Initialize() method BlastCallNewGrains (line 17) | public Task BlastCallNewGrains(int nGrains, long startingKey, int nCal... FILE: test/Grains/TestGrains/ChainedGrain.cs class ChainedGrainState (line 8) | [Serializable] class ChainedGrain (line 25) | [StorageProvider(ProviderName = "MemoryStore")] method ChainedGrain (line 30) | public ChainedGrain(ILoggerFactory loggerFactory) method GetNext (line 35) | Task IChainedGrain.GetNext() { return Task.FromResult(S... method GetId (line 37) | Task IChainedGrain.GetId() { return Task.FromResult(State.Id); } method GetX (line 39) | Task IChainedGrain.GetX() { return Task.FromResult(State.X); } method GetCalculatedValue (line 41) | public async Task GetCalculatedValue() method SetNext (line 57) | public Task SetNext(IChainedGrain next) method SetNextNested (line 63) | public Task SetNextNested(ChainGrainHolder next) method Validate (line 69) | public Task Validate(bool nextIsSet) method PassThis (line 81) | public Task PassThis(IChainedGrain next) method PassNull (line 86) | public Task PassNull(IChainedGrain next) method PassThisNested (line 91) | public Task PassThisNested(ChainGrainHolder next) method PassNullNested (line 96) | public Task PassNullNested(ChainGrainHolder next) FILE: test/Grains/TestGrains/CircularStateTestGrain.cs class CircularStateTestGrain (line 5) | public class CircularStateTestGrain : Grain, ICi... method OnActivateAsync (line 7) | public override async Task OnActivateAsync(CancellationToken cancellat... method GetState (line 17) | public Task GetState() FILE: test/Grains/TestGrains/ConcreteGrainsWithGenericInterfaces.cs class ConcreteGrainWithGenericInterfaceOfIntFloat (line 5) | internal class ConcreteGrainWithGenericInterfaceOfIntFloat : Grain, IGen... method SetT (line 9) | public Task SetT(int t) method MapT2U (line 15) | public Task MapT2U() class ConcreteGrainWithGenericInterfaceOfFloatString (line 21) | internal class ConcreteGrainWithGenericInterfaceOfFloatString : Grain, I... method SetT (line 25) | public Task SetT(float t) method MapT2U (line 31) | public Task MapT2U() class ConcreteGrainWith2GenericInterfaces (line 37) | internal class ConcreteGrainWith2GenericInterfaces : Grain, IGenericGrai... method SetT (line 43) | public Task SetT(int t) method MapT2U (line 49) | public Task MapT2U() method Set (line 56) | public Task Set(int t) method Transform (line 61) | public Task Transform() method Get (line 67) | public Task Get() method CompareGrainReferences (line 72) | public Task CompareGrainReferences(ISimpleGenericGrain clientRefe... FILE: test/Grains/TestGrains/ConcurrentGrain.cs class ConcurrentGrain (line 7) | public class ConcurrentGrain : Grain, IConcurrentGrain method ConcurrentGrain (line 14) | public ConcurrentGrain(ILoggerFactory loggerFactory) method Initialize (line 19) | public async Task Initialize(int ind) method A (line 35) | public async Task A() method B (line 52) | public Task B(int number) method ModifyReturnList_Test (line 62) | public Task> ModifyReturnList_Test() method Initialize_2 (line 80) | public Task Initialize_2(int ind) method TailCall_Caller (line 88) | public async Task TailCall_Caller(IConcurrentReentrantGrain anoth... method TailCall_Resolver (line 102) | public Task TailCall_Resolver(IConcurrentReentrantGrain another) class ConcurrentReentrantGrain (line 109) | [Reentrant] method ConcurrentReentrantGrain (line 116) | public ConcurrentReentrantGrain(ILoggerFactory loggerFactory) method Initialize_2 (line 121) | public Task Initialize_2(int ind) method TailCall_Called (line 128) | public Task TailCall_Called() method TailCall_Resolve (line 135) | public Task TailCall_Resolve() FILE: test/Grains/TestGrains/ConsumerEventCountingGrain.cs class ConsumerEventCountingGrain (line 7) | public class ConsumerEventCountingGrain : Grain, IConsumerEventCountingG... method ConsumerEventCountingGrain (line 15) | public ConsumerEventCountingGrain(ILoggerFactory loggerFactory) class AsyncObserver (line 20) | private class AsyncObserver : IAsyncObserver method AsyncObserver (line 24) | public AsyncObserver(Func onNext) method OnNextAsync (line 29) | public Task OnNextAsync(T item, StreamSequenceToken token = null) method OnCompletedAsync (line 34) | public Task OnCompletedAsync() method OnErrorAsync (line 39) | public Task OnErrorAsync(Exception ex) method OnActivateAsync (line 45) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 53) | public override async Task OnDeactivateAsync(DeactivationReason reason... method BecomeConsumer (line 61) | public async Task BecomeConsumer(Guid streamId, string providerToUse) method EventArrived (line 74) | private Task EventArrived(int evt) method StopConsuming (line 81) | public async Task StopConsuming() method GetNumberConsumed (line 92) | public Task GetNumberConsumed() FILE: test/Grains/TestGrains/CustomPlacementGrains.cs class CustomPlacementBaseGrain (line 5) | public abstract class CustomPlacementBaseGrain : Grain, ICustomPlacement... method GetRuntimeInstanceId (line 7) | public Task GetRuntimeInstanceId() class CustomPlacement_FixedSiloGrain (line 13) | [TestPlacementStrategy(CustomPlacementScenario.FixedSilo)] class CustomPlacement_ExcludeOneGrain (line 18) | [TestPlacementStrategy(CustomPlacementScenario.ExcludeOne)] class CustomPlacement_RequestContextBased (line 23) | [TestPlacementStrategy(CustomPlacementScenario.RequestContextBased)] FILE: test/Grains/TestGrains/DeadlockGrain.cs class DeadlockGrain (line 10) | internal class DeadlockGrain method CallNext (line 12) | internal static Task CallNext(IGrainFactory grainFactory, List<(long G... class DeadlockNonReentrantGrain (line 36) | public class DeadlockNonReentrantGrain : Grain, IDeadlockNonReentrantGrain method DeadlockNonReentrantGrain (line 39) | public DeadlockNonReentrantGrain(ILoggerFactory loggerFactory) => this... method CallNext_1 (line 42) | public async Task CallNext_1(List<(long GrainId, bool Blocking)> callC... method CallNext_2 (line 49) | public async Task CallNext_2(List<(long GrainId, bool Blocking)> callC... class DeadlockReentrantGrain (line 57) | [Reentrant] method DeadlockReentrantGrain (line 61) | public DeadlockReentrantGrain(ILoggerFactory loggerFactory) => this.lo... method CallNext_1 (line 64) | public async Task CallNext_1(List<(long GrainId, bool Blocking)> callC... method CallNext_2 (line 71) | public async Task CallNext_2(List<(long GrainId, bool Blocking)> callC... class CallChainReentrancyGrain (line 79) | public class CallChainReentrancyGrain : Grain, ICallChainReentrancyGrain method CallChain (line 85) | public async Task CallChain(ICallChainObserver observer, List<(string ... method UnblockWaiters (line 127) | public Task UnblockWaiters(CancellationToken cancellationToken = default) FILE: test/Grains/TestGrains/DerivedServiceType.cs class DerivedServiceType (line 5) | public class DerivedServiceType : ServiceType, IDerivedServiceType method DerivedServiceTypeMethod1 (line 7) | public Task DerivedServiceTypeMethod1() method H1Method (line 12) | public Task H1Method() method H2Method (line 17) | public Task H2Method() method H3Method (line 22) | public Task H3Method() FILE: test/Grains/TestGrains/Directories/CustomDirectoryGrain.cs class CustomDirectoryGrain (line 7) | [GrainDirectory(GrainDirectoryName = DIRECTORY), GrainType(DIRECTORY)] method CustomDirectoryGrain (line 15) | public CustomDirectoryGrain(ILocalSiloDetails siloDetails) method Ping (line 20) | public Task Ping() => Task.FromResult(++this.counter); method Reset (line 22) | public Task Reset() method GetRuntimeInstanceId (line 28) | public Task GetRuntimeInstanceId() method ProxyPing (line 33) | public Task ProxyPing(ICommonDirectoryGrain grain) FILE: test/Grains/TestGrains/Directories/DefaultDirectoryGrain.cs class DefaultDirectoryGrain (line 5) | [GrainType(DIRECTORY)] method Ping (line 12) | public Task Ping() => Task.FromResult(++this.counter); method Reset (line 14) | public Task Reset() method GetRuntimeInstanceId (line 20) | public Task GetRuntimeInstanceId() method ProxyPing (line 25) | public Task ProxyPing(ICommonDirectoryGrain grain) FILE: test/Grains/TestGrains/DurableJobGrain.cs class DurableJobGrain (line 13) | public class DurableJobGrain : Grain, IDurableJobGrain, IDurableJobHandler method DurableJobGrain (line 22) | public DurableJobGrain(ILocalDurableJobManager localDurableJobManager,... method HasJobRan (line 28) | public Task HasJobRan(string jobId) method ExecuteJobAsync (line 33) | public Task ExecuteJobAsync(IJobRunContext ctx, CancellationToken canc... method ScheduleJobAsync (line 43) | public async Task ScheduleJobAsync(string jobName, DateTim... method WaitForJobToRun (line 57) | public async Task WaitForJobToRun(string jobId) method TryCancelJobAsync (line 69) | public async Task TryCancelJobAsync(DurableJob job) method GetJobExecutionTime (line 74) | public Task GetJobExecutionTime(string jobId) method GetJobRun (line 84) | public Task GetJobRun(string jobId) method WasCancellationTokenCancelled (line 94) | public Task WasCancellationTokenCancelled(string jobId) FILE: test/Grains/TestGrains/EventSourcing/AccountGrain.cs class AccountGrain (line 16) | [StorageProvider(ProviderName = "Default")] class GrainState (line 24) | [Serializable] method Apply (line 31) | public void Apply(DepositTransaction d) method Apply (line 36) | public void Apply(WithdrawalTransaction d) method Balance (line 45) | public Task Balance() method Deposit (line 50) | public Task Deposit(uint amount, Guid guid, string description) method Withdraw (line 63) | public Task Withdraw(uint amount, Guid guid, string description) method GetTransactionLog (line 83) | public Task> GetTransactionLog() class AccountGrain_PersistStateOnly (line 92) | [LogConsistencyProvider(ProviderName = "StateStorage")] FILE: test/Grains/TestGrains/EventSourcing/ChatEvents.cs type IChatEvent (line 8) | public interface IChatEvent method Update (line 10) | void Update(XDocument document); class CreatedEvent (line 13) | [Serializable] method Update (line 22) | public void Update(XDocument document) class PostedEvent (line 29) | [Serializable] method Update (line 42) | public void Update(XDocument document) class DeletedEvent (line 50) | [Serializable] method Update (line 57) | public void Update(XDocument document) class EditedEvent (line 63) | [Serializable] method Update (line 72) | public void Update(XDocument document) FILE: test/Grains/TestGrains/EventSourcing/ChatFormat.cs class ChatFormat (line 10) | public static class ChatFormat method Initialize (line 12) | public static void Initialize(this XDocument document, DateTime timest... method GetPostsContainer (line 23) | public static XElement GetPostsContainer(this XDocument document) method MakePost (line 28) | public static XElement MakePost(Guid guid, string user, DateTime times... method FindPost (line 37) | public static XElement FindPost(this XDocument document, string guid) method ReplaceText (line 44) | public static void ReplaceText(this XElement post, string text) method EnforceLimit (line 49) | public static void EnforceLimit(this XDocument document) FILE: test/Grains/TestGrains/EventSourcing/ChatGrain.cs class ChatGrain (line 20) | [StorageProvider(ProviderName = "Default")] method OnActivateAsync (line 26) | public override async Task OnActivateAsync(CancellationToken cancellat... method TransitionState (line 49) | protected override void TransitionState(XDocument state, IChatEvent @e... method GetChat (line 54) | public Task GetChat() method Post (line 59) | public Task Post(Guid guid, string user, string text) method Delete (line 65) | public Task Delete(Guid guid) method Edit (line 71) | public Task Edit(Guid guid, string text) FILE: test/Grains/TestGrains/EventSourcing/CountersGrain.cs class CountersGrain (line 11) | [GrainType("simple-counters-grain")] class GrainState (line 18) | [Serializable] method GrainState (line 26) | public GrainState() method Apply (line 31) | public void Apply(UpdatedEvent e) method Apply (line 39) | public void Apply(ResetAllEvent e) class UpdatedEvent (line 48) | [Serializable] class ResetAllEvent (line 61) | [Serializable] method OnActivateAsync (line 67) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Add (line 73) | public async Task Add(string key, int amount, bool wait_for_confirmation) method Reset (line 82) | public async Task Reset(bool wait_for_confirmation) method ConfirmAllPreviouslyRaisedEvents (line 91) | public Task ConfirmAllPreviouslyRaisedEvents() method GetTentativeCount (line 97) | public Task GetTentativeCount(string key) method GetTentativeState (line 102) | public Task> GetTentativeState() method GetConfirmedState (line 107) | public Task> GetConfirmedState() method GetAllEvents (line 114) | public Task> GetAllEvents() FILE: test/Grains/TestGrains/EventSourcing/CountersGrainVariations.cs class CountersGrain_StateStore_NonReentrant (line 22) | [LogConsistencyProvider(ProviderName = "StateStorage")] class CountersGrain_StateStore_Reentrant (line 28) | [LogConsistencyProvider(ProviderName = "StateStorage")] class CountersGrain_LogStore_NonReentrant (line 35) | [LogConsistencyProvider(ProviderName = "LogStorage")] class CountersGrain_LogStore_Reentrant (line 41) | [LogConsistencyProvider(ProviderName = "LogStorage")] FILE: test/Grains/TestGrains/EventSourcing/PersonEvents.cs type IPersonEvent (line 9) | public interface IPersonEvent { } class PersonRegistered (line 11) | [Serializable] method PersonRegistered (line 22) | public PersonRegistered(string firstName, string lastName, GenderType ... class PersonMarried (line 30) | [Serializable] method PersonMarried (line 41) | public PersonMarried(Guid spouseId, string spouseFirstName, string spo... class PersonLastNameChanged (line 49) | [Serializable] method PersonLastNameChanged (line 56) | public PersonLastNameChanged(string lastName) FILE: test/Grains/TestGrains/EventSourcing/PersonGrain.cs class PersonGrain (line 7) | public class PersonGrain : JournaledGrain, IPe... method RegisterBirth (line 10) | public Task RegisterBirth(PersonAttributes props) method Marry (line 22) | public async Task Marry(IPersonGrain spouse) method ChangeLastName (line 43) | public Task ChangeLastName(string lastName) method ConfirmChanges (line 53) | public Task ConfirmChanges() method GetTentativePersonalAttributes (line 58) | public Task GetTentativePersonalAttributes() method GetConfirmedPersonalAttributes (line 68) | public Task GetConfirmedPersonalAttributes() method GetConfirmedVersion (line 78) | public Task GetConfirmedVersion() method GetTentativeVersion (line 83) | public Task GetTentativeVersion() method AssertEqual (line 99) | private static void AssertEqual(T a, T b) method RunTentativeConfirmedStateTest (line 106) | public async Task RunTentativeConfirmedStateTest() FILE: test/Grains/TestGrains/EventSourcing/PersonState.cs class PersonState (line 5) | [Serializable] method Apply (line 18) | public void Apply(PersonRegistered @event) method Apply (line 25) | public void Apply(PersonMarried @event) method Apply (line 30) | public void Apply(PersonLastNameChanged @event) FILE: test/Grains/TestGrains/EventSourcing/SeatReservationGrain.cs class SeatReservationGrain (line 19) | [StorageProvider(ProviderName = "Default")] method Reserve (line 24) | public async Task Reserve(int seatnumber, string userid) class ReservationState (line 44) | [Serializable] method ReservationState (line 51) | public ReservationState() method Apply (line 56) | private void Apply(SeatReservation reservation) class SeatReservation (line 69) | [Serializable] FILE: test/Grains/TestGrains/ExceptionGrain.cs class ExceptionGrain (line 5) | public class ExceptionGrain : Grain, IExceptionGrain method Canceled (line 11) | public Task Canceled() method ThrowsInvalidOperationException (line 18) | public async Task ThrowsInvalidOperationException() method ThrowsNullReferenceException (line 24) | public Task ThrowsNullReferenceException() method ThrowsAggregateExceptionWrappingInvalidOperationException (line 29) | public async Task ThrowsAggregateExceptionWrappingInvalidOperationExce... method ThrowsNestedAggregateExceptionsWrappingInvalidOperationException (line 35) | public async Task ThrowsNestedAggregateExceptionsWrappingInvalidOperat... method GrainCallToThrowsInvalidOperationException (line 41) | public Task GrainCallToThrowsInvalidOperationException(long otherGrainId) method GrainCallToThrowsAggregateExceptionWrappingInvalidOperationException (line 47) | public Task GrainCallToThrowsAggregateExceptionWrappingInvalidOperatio... method ThrowsSynchronousInvalidOperationException (line 53) | public Task ThrowsSynchronousInvalidOperationException() method ThrowsSynchronousExceptionObjectTask (line 58) | public Task ThrowsSynchronousExceptionObjectTask() method ThrowsMultipleExceptionsAggregatedInFaultedTask (line 63) | public Task ThrowsMultipleExceptionsAggregatedInFaultedTask() method ThrowsSynchronousAggregateExceptionWithMultipleInnerExceptions (line 75) | public Task ThrowsSynchronousAggregateExceptionWithMultipleInnerExcept... FILE: test/Grains/TestGrains/ExternalTypeGrain.cs class ExternalTypeGrain (line 7) | public class ExternalTypeGrain : Grain, IExternalTypeGrain method ExternalTypeGrain (line 11) | public ExternalTypeGrain(ILogger logger) method GetAbstractModel (line 16) | public Task GetAbstractModel(IEnumerable list) method GetEnumModel (line 22) | public Task GetEnumModel() FILE: test/Grains/TestGrains/FaultableConsumerGrain.cs class FaultableConsumerGrain (line 8) | public class FaultableConsumerGrain : Grain, IFaultableConsumerGrain method FaultableConsumerGrain (line 19) | public FaultableConsumerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 24) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Reset (line 31) | private void Reset() method OnDeactivateAsync (line 40) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method BecomeConsumer (line 46) | public async Task BecomeConsumer(Guid streamId, string streamNamespace... method SetFailPeriod (line 61) | public Task SetFailPeriod(TimeSpan failurePeriod) method StopConsuming (line 68) | public async Task StopConsuming() method GetNumberConsumed (line 78) | public Task GetNumberConsumed() method GetNumberFailed (line 83) | public Task GetNumberFailed() method GetErrorCount (line 88) | public Task GetErrorCount() method OnNextAsync (line 93) | public Task OnNextAsync(int item, StreamSequenceToken token = null) method OnCompletedAsync (line 114) | public Task OnCompletedAsync() method OnErrorAsync (line 120) | public Task OnErrorAsync(Exception ex) FILE: test/Grains/TestGrains/FilteredImplicitSubscriptionGrain.cs class FilteredImplicitSubscriptionGrain (line 7) | [ImplicitStreamSubscription(typeof(RedStreamNamespacePredicate))] method FilteredImplicitSubscriptionGrain (line 13) | public FilteredImplicitSubscriptionGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 18) | public override async Task OnActivateAsync(CancellationToken cancellat... method GetCounter (line 38) | public Task GetCounter(string streamNamespace) FILE: test/Grains/TestGrains/FilteredImplicitSubscriptionWithExtensionGrain.cs class FilteredImplicitSubscriptionWithExtensionGrain (line 7) | [ImplicitStreamSubscription(typeof(RedStreamNamespacePredicate))] method FilteredImplicitSubscriptionWithExtensionGrain (line 13) | public FilteredImplicitSubscriptionWithExtensionGrain(ILoggerFactory l... method OnActivateAsync (line 18) | public override async Task OnActivateAsync(CancellationToken cancellat... method GetCounter (line 34) | public Task GetCounter() FILE: test/Grains/TestGrains/GeneratedEventCollectorGrain.cs class GeneratedEventCollectorGrain (line 9) | [RegexImplicitStreamSubscription("THIS.WONT.MATCH.ONLY.FOR.TESTING.SERIA... method GeneratedEventCollectorGrain (line 19) | public GeneratedEventCollectorGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 24) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnNextAsync (line 45) | public Task OnNextAsync(IList> items) FILE: test/Grains/TestGrains/GeneratedEventReporterGrain.cs class GeneratedEventReporterGrain (line 7) | internal class GeneratedEventReporterGrain : Grain, IGeneratedEventRepor... method GeneratedEventReporterGrain (line 13) | public GeneratedEventReporterGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 18) | public override Task OnActivateAsync(CancellationToken cancellationToken) method ReportResult (line 26) | public Task ReportResult(Guid streamGuid, string streamProvider, strin... method GetReport (line 46) | public Task> GetReport(string streamProvider, s... method Reset (line 57) | public Task Reset() method IsLocatedOnSilo (line 63) | public Task IsLocatedOnSilo(SiloAddress siloAddress) FILE: test/Grains/TestGrains/GeneratedStreamTestConstants.cs class GeneratedStreamTestConstants (line 3) | public class GeneratedStreamTestConstants FILE: test/Grains/TestGrains/GeneratorTestDerivedDerivedGrain.cs class GeneratorTestDerivedDerivedGrain (line 5) | public class GeneratorTestDerivedDerivedGrain : GeneratorTestDerivedGrai... method StringNConcat (line 7) | public Task StringNConcat(string[] strArray) method StringReplace (line 16) | public Task StringReplace(ReplaceArguments strs) FILE: test/Grains/TestGrains/GeneratorTestDerivedFromCSharpInterfaceInExternalAssemblyGrain.cs class GeneratorTestDerivedFromCSharpInterfaceInExternalAssemblyGrain (line 5) | public class GeneratorTestDerivedFromCSharpInterfaceInExternalAssemblyGr... method Echo (line 7) | public Task Echo(int x) FILE: test/Grains/TestGrains/GeneratorTestDerivedFromFSharpInterfaceInExternalAssemblyGrain.cs class GeneratorTestDerivedFromFSharpInterfaceInExternalAssemblyGrain (line 9) | public class GeneratorTestDerivedFromFSharpInterfaceInExternalAssemblyGr... method Echo (line 11) | public Task Echo(int x) method MultipleParameterEcho (line 16) | public Task> MultipleParameterEcho(string s, int x) FILE: test/Grains/TestGrains/GeneratorTestDerivedGrain1.cs class GeneratorTestDerivedGrain1 (line 5) | public class GeneratorTestDerivedGrain1 : GeneratorTestGrain, IGenerator... method ByteAppend (line 7) | public Task ByteAppend(byte[] data) FILE: test/Grains/TestGrains/GeneratorTestDerivedGrain2.cs class GeneratorTestDerivedGrain2 (line 5) | public class GeneratorTestDerivedGrain2 : GeneratorTestGrain, IGenerator... method StringConcat (line 7) | public Task StringConcat(string str1, string str2, string str3) FILE: test/Grains/TestGrains/GeneratorTestGrain.cs class GeneratorTestGrain (line 5) | public class GeneratorTestGrain : Grain, IGeneratorTestGrain method ByteSet (line 11) | public Task ByteSet(byte[] data) method StringSet (line 18) | public Task StringSet(string str) method StringIsNullOrEmpty (line 25) | public Task StringIsNullOrEmpty() method GetMemberVariables (line 30) | public Task GetMemberVariables() method SetMemberVariables (line 36) | public Task SetMemberVariables(MemberVariables x) FILE: test/Grains/TestGrains/GenericGrains.cs class SimpleGenericGrainState (line 12) | [Serializable] class SimpleGenericGrain1 (line 22) | [StorageProvider(ProviderName = "MemoryStore")] method GetA (line 25) | public Task GetA() method SetA (line 30) | public Task SetA(T a) method SetB (line 36) | public Task SetB(T b) method GetAxB (line 42) | public Task GetAxB() method GetAxB (line 48) | public Task GetAxB(T a, T b) class SimpleGenericGrainUsingAzureStorageAndLongGrainName (line 55) | [StorageProvider(ProviderName = "AzureStore")] method EchoAsync (line 58) | public async Task EchoAsync(T entity) method ClearState (line 65) | public async Task ClearState() class TinyNameGrain (line 71) | [StorageProvider(ProviderName = "AzureStore")] method EchoAsync (line 74) | public async Task EchoAsync(T entity) method ClearState (line 81) | public async Task ClearState() class SimpleGenericGrainUState (line 87) | [Serializable] class SimpleGenericGrainU (line 97) | [StorageProvider(ProviderName = "MemoryStore")] method GetA (line 100) | public Task GetA() method SetA (line 105) | public Task SetA(U a) method SetB (line 111) | public Task SetB(U b) method GetAxB (line 117) | public Task GetAxB() method GetAxB (line 123) | public Task GetAxB(U a, U b) class SimpleGenericGrain2State (line 130) | [Serializable] class SimpleGenericGrain2 (line 140) | [StorageProvider(ProviderName = "MemoryStore")] method GetA (line 143) | public Task GetA() method SetA (line 148) | public Task SetA(T a) method SetB (line 154) | public Task SetB(U b) method GetAxB (line 160) | public Task GetAxB() method GetAxB (line 166) | public Task GetAxB(T a, U b) class GenericGrainWithNoProperties (line 173) | public class GenericGrainWithNoProperties : Grain, IGenericGrainWithN... method GetAxB (line 175) | public Task GetAxB(T a, T b) class GrainWithNoProperties (line 181) | public class GrainWithNoProperties : Grain, IGrainWithNoProperties method GetAxB (line 183) | public Task GetAxB(int a, int b) class IGrainWithListFieldsState (line 190) | [Serializable] class GrainWithListFields (line 198) | [StorageProvider(ProviderName = "MemoryStore")] method OnActivateAsync (line 201) | public override Task OnActivateAsync(CancellationToken cancellationToken) method AddItem (line 208) | public Task AddItem(string item) method GetItems (line 214) | public Task> GetItems() class GenericGrainWithListFieldsState (line 220) | [Serializable] class GenericGrainWithListFields (line 228) | [StorageProvider(ProviderName = "MemoryStore")] method OnActivateAsync (line 231) | public override Task OnActivateAsync(CancellationToken cancellationToken) method AddItem (line 239) | public Task AddItem(T item) method GetItems (line 245) | public Task> GetItems() class GenericReaderWriterState (line 251) | [Serializable] class GenericReader2State (line 259) | [Serializable] class GenericReaderWriterGrain2State (line 269) | [Serializable] class GenericReader3State (line 279) | [Serializable] class GenericReaderWriterGrain1 (line 292) | [StorageProvider(ProviderName = "MemoryStore")] method SetValue (line 295) | public Task SetValue(T value) method GetValue (line 301) | public Task GetValue() class GenericReaderWriterGrain2 (line 307) | [StorageProvider(ProviderName = "MemoryStore")] method SetValue1 (line 310) | public Task SetValue1(TOne value) method SetValue2 (line 315) | public Task SetValue2(TTwo value) method GetValue1 (line 321) | public Task GetValue1() method GetValue2 (line 326) | public Task GetValue2() class GenericReaderWriterGrain3 (line 332) | [StorageProvider(ProviderName = "MemoryStore")] method SetValue1 (line 335) | public Task SetValue1(TOne value) method SetValue2 (line 340) | public Task SetValue2(TTwo value) method SetValue3 (line 345) | public Task SetValue3(TThree value) method GetValue3 (line 351) | public Task GetValue3() method GetValue1 (line 356) | public Task GetValue1() method GetValue2 (line 361) | public Task GetValue2() class BasicGenericGrain (line 367) | public class BasicGenericGrain : Grain, IBasicGenericGrain method GetA (line 372) | public Task GetA() method GetAxB (line 377) | public Task GetAxB() method GetAxB (line 383) | public Task GetAxB(T a, U b) method SetA (line 389) | public Task SetA(T a) method SetB (line 395) | public Task SetB(U b) class HubGrain (line 402) | public class HubGrain : Grain, IHubGrain method Bar (line 404) | public virtual Task Bar(TKey key, T1 message1, T2 message2) class EchoHubGrain (line 410) | public class EchoHubGrain : HubGrain GetX() class EchoGenericChainGrain (line 431) | public class EchoGenericChainGrain : Grain, IEchoGenericChainGrain method Echo (line 433) | public async Task Echo(T item) method Echo2 (line 441) | public async Task Echo2(T item) method Echo3 (line 448) | public async Task Echo3(T item) method Echo4 (line 455) | public async Task Echo4(T item) method Echo5 (line 463) | public async Task Echo5(T item) method Echo6 (line 470) | public async Task Echo6(T item) class NonGenericBaseGrain (line 478) | public class NonGenericBaseGrain : Grain, INonGenericBase method Ping (line 480) | public Task Ping() class Generic1ArgumentGrain (line 486) | public class Generic1ArgumentGrain : NonGenericBaseGrain, IGeneric1Ar... method Ping (line 488) | public Task Ping(T t) class Generic1ArgumentDerivedGrain (line 494) | public class Generic1ArgumentDerivedGrain : NonGenericBaseGrain, IGen... method Ping (line 496) | public Task Ping(T t) class Generic2ArgumentGrain (line 502) | public class Generic2ArgumentGrain : Grain, IGeneric2Arguments method Ping (line 504) | public Task> Ping(T t, U u) method Ping (line 509) | public Task Ping() class Generic2ArgumentsDerivedGrain (line 515) | public class Generic2ArgumentsDerivedGrain : NonGenericBaseGrain, ... method Ping (line 517) | public Task> Ping(T t, U u) class DbGrain (line 523) | public class DbGrain : Grain, IDbGrain method SetValue (line 527) | public Task SetValue(T value) method GetValue (line 533) | public Task GetValue() class PingSelfGrain (line 539) | [Reentrant] method PingSelfGrain (line 546) | public PingSelfGrain(ILogger> logger, IGrainContext c... method Ping (line 555) | public Task Ping(T t) method PingOther (line 561) | public Task PingOther(IGenericPingSelf target, T t) method PingSelf (line 567) | public Task PingSelf(T t) method PingSelfThroughOther (line 573) | public Task PingSelfThroughOther(IGenericPingSelf target, T t) method ScheduleDelayedPing (line 578) | public Task ScheduleDelayedPing(IGenericPingSelf target, T t, TimeS... method GetLastValue (line 592) | public Task GetLastValue() method ScheduleDelayedPingToSelfAndDeactivate (line 597) | public async Task ScheduleDelayedPingToSelfAndDeactivate(IGenericPingS... method OnActivateAsync (line 603) | public Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 609) | public Task OnDeactivateAsync(DeactivationReason deactivationReason, C... class LongRunningTaskGrain (line 616) | public class LongRunningTaskGrain : Grain, ILongRunningTaskGrain method GrainCancellationTokenCallbackThrow (line 621) | public async Task GrainCancellationTokenCallbackThrow(GrainCancellatio... method CancellationTokenCallbackThrow (line 632) | public async Task CancellationTokenCallbackThrow(CancellationToken ct,... method GetLastValue (line 643) | public Task GetLastValue() method CallOtherCancellationTokenCallbackResolve (line 648) | public async Task CallOtherCancellationTokenCallbackResolve(ILon... method CallOtherGrainCancellationTokenCallbackResolve (line 656) | public async Task CallOtherGrainCancellationTokenCallbackResolve... method GrainCancellationTokenCallbackResolve (line 665) | public Task GrainCancellationTokenCallbackResolve(GrainCancellat... method CancellationTokenCallbackResolve (line 687) | public Task CancellationTokenCallbackResolve(CancellationToken t... method CallOtherLongRunningTask (line 709) | public async Task CallOtherLongRunningTask(ILongRunningTaskGrain... method FanOutOtherLongRunningTask (line 714) | public async Task FanOutOtherLongRunningTask(ILongRunningTaskGrain<... method CallOtherLongRunningTaskGrainCancellation (line 725) | public async Task CallOtherLongRunningTaskGrainCancellation(ILongRunni... method CallOtherLongRunningTask (line 730) | public async Task CallOtherLongRunningTask(ILongRunningTaskGrain ta... method CallOtherLongRunningTaskWithLocalCancellation (line 735) | public async Task CallOtherLongRunningTaskWithLocalCancellation(ILongR... method CallOtherLongRunningTaskWithLocalGrainCancellationToken (line 743) | public async Task CallOtherLongRunningTaskWithLocalGrainCancellationTo... method LongWaitGrainCancellationInterleaving (line 752) | public Task LongWaitGrainCancellationInterleaving(GrainCancellationTok... method LongWaitGrainCancellation (line 754) | public async Task LongWaitGrainCancellation(GrainCancellationToken ct,... method LongWaitInterleaving (line 767) | public Task LongWaitInterleaving(CancellationToken ct, TimeSpan delay,... method LongWait (line 768) | public async Task LongWait(CancellationToken ct, TimeSpan delay, Guid ... method LongRunningTask (line 781) | public async Task LongRunningTask(T t, TimeSpan delay) method GetRuntimeInstanceId (line 788) | public Task GetRuntimeInstanceId() method GetRuntimeInstanceIdWithDelay (line 793) | public async Task GetRuntimeInstanceIdWithDelay(TimeSpan delay) method WatchCancellations (line 799) | public async IAsyncEnumerable<(Guid CallId, Exception Error)> WatchCan... class GenericGrainWithContraints (line 808) | public class GenericGrainWithContraints: Grain, IGenericGrainWi... method OnActivateAsync (line 815) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetCount (line 821) | [Alias("GenericGrainWithConstraints.GetCount")] method Add (line 824) | public Task Add(B item) method RoundTrip (line 830) | public Task RoundTrip(C value) class NonGenericCastableGrain (line 836) | public class NonGenericCastableGrain : Grain, INonGenericCastableGrain, ... method DoSomething (line 838) | public Task DoSomething() { method Hello (line 842) | public Task Hello() { class GenericCastableGrain (line 847) | public class GenericCastableGrain : Grain, IGenericCastableGrain, ... method Hello (line 849) | public Task Hello() { class GenericArrayRegisterGrain (line 854) | public class GenericArrayRegisterGrain : Grain, IGenericArrayRegister... method Get (line 857) | public Task Get() => Task.FromResult(_value); method Set (line 858) | public Task Set(T[] value) class IndependentlyConcretizedGenericGrain (line 865) | public class IndependentlyConcretizedGenericGrain : Grain, IIndependentl... method Hello (line 867) | public Task Hello() => Task.FromResult("I have been independen... type IReducer (line 870) | public interface IReducer method Handle (line 872) | Task Handle(TState prevState, TAction act); class Reducer1Action (line 875) | [Serializable] class Reducer2Action (line 879) | [Serializable] class Reducer1 (line 883) | public class Reducer1 : IReducer method Handle (line 885) | public Task Handle(string prevState, Reducer1Action act) => Ta... class Reducer2 (line 888) | public class Reducer2 : IReducer method Handle (line 890) | public Task Handle(int prevState, Reducer2Action act) => Task.Fro... type IUnmanagedArgGrain (line 893) | public interface IUnmanagedArgGrain : IGrainWithGuidKey where T : unm... method Echo (line 895) | ValueTask Echo(T value); method EchoNonNullable (line 896) | ValueTask EchoNonNullable(U value) where U : notnull; method EchoReference (line 897) | ValueTask EchoReference(U value) where U : class; method EchoValue (line 898) | ValueTask EchoValue(U value) where U : struct; class UnmanagedArgGrain (line 901) | public class UnmanagedArgGrain : IUnmanagedArgGrain where T : unma... method Echo (line 903) | public ValueTask Echo(T value) => new(value); method EchoNonNullable (line 904) | public ValueTask EchoNonNullable(U value) where U : notnull => ... method EchoReference (line 905) | public ValueTask EchoReference(U value) where U : class => new(v... method EchoValue (line 906) | public ValueTask EchoValue(U value) where U : struct => new(value); type IReducerGameGrain (line 909) | public interface IReducerGameGrain : IGrainWithStringKey method Go (line 911) | Task Go(TState prevState, TAction act); class ReducerGameGrain (line 914) | public class ReducerGameGrain : Grain, IReducerGameGrai... method ReducerGameGrain (line 918) | public ReducerGameGrain(IReducer reducer) method Go (line 923) | public Task Go(TState prevState, TAction act) => this.reducer.... class BasicGrain (line 931) | public abstract class BasicGrain : Grain method Hello (line 933) | public Task Hello() method ConcreteGenArgTypeNames (line 938) | public Task ConcreteGenArgTypeNames() method GetImmediateSubclass (line 944) | private Type GetImmediateSubclass(Type subject) class PartiallySpecifyingGrain (line 955) | public class PartiallySpecifyingGrain : BasicGrain, IGrainWithTwoGenA... class GrainWithPartiallySpecifyingInterface (line 958) | public class GrainWithPartiallySpecifyingInterface : BasicGrain, IPar... class GrainSpecifyingSameGenArgTwice (line 961) | public class GrainSpecifyingSameGenArgTwice : BasicGrain, IGrainRecei... class SpecifyingRepeatedGenArgsAmongstOthers (line 964) | public class SpecifyingRepeatedGenArgsAmongstOthers : BasicGrain... class GrainForTestingCastingBetweenInterfacesWithReusedGenArgs (line 967) | public class GrainForTestingCastingBetweenInterfacesWithReusedGenArgs : ... class SpecifyingSameGenArgsButRearranged (line 970) | public class SpecifyingSameGenArgsButRearranged : BasicGrain, IR... class GrainForTestingCastingWithRearrangedGenArgs (line 973) | public class GrainForTestingCastingWithRearrangedGenArgs : Basic... class GrainWithGenArgsUnrelatedToFullySpecifiedGenericInterface (line 976) | public class GrainWithGenArgsUnrelatedToFullySpecifiedGenericInterface : BasicGrain, IIn... class GrainSupplyingGenArgSpecializedIntoArray (line 982) | public class GrainSupplyingGenArgSpecializedIntoArray : BasicGrain, I... class GrainForCastingBetweenInterfacesOfFurtherSpecializedGenArgs (line 985) | public class GrainForCastingBetweenInterfacesOfFurtherSpecializedGenArgs FILE: test/Grains/TestGrains/GetGrainGrains.cs class BaseGrain (line 5) | public class BaseGrain : Grain, IBase method Foo (line 9) | public Task Foo() class DerivedFromBaseGrain (line 15) | public class DerivedFromBaseGrain : Grain, IDerivedFromBase method Bar (line 17) | public Task Bar() method Foo (line 22) | public Task Foo() class BaseGrain1 (line 28) | public class BaseGrain1 : Grain, IBase1 method Foo (line 30) | public Task Foo() class BaseGrain1And2 (line 36) | public class BaseGrain1And2 : Grain, IBase3, IBase2 method Foo (line 38) | public Task Foo() method Bar (line 43) | public Task Bar() class Base4 (line 49) | public class Base4 : Grain, IBase4 method Foo (line 51) | public Task Foo() class Base4_ (line 57) | public class Base4_ : Grain, IBase4 method Foo (line 59) | public Task Foo() class StringGrain (line 65) | public class StringGrain : Grain, IStringGrain method Foo (line 67) | public Task Foo() class GuidGrain (line 73) | public class GuidGrain : Grain, IGuidGrain method Foo (line 75) | public Task Foo() FILE: test/Grains/TestGrains/GrainInterfaceHierarchyGrains.cs class DoSomethingEmptyGrain (line 5) | public class DoSomethingEmptyGrain : Grain, IDoSomethingEmptyGrain method DoIt (line 9) | public Task DoIt() method SetA (line 14) | public Task SetA(int a) method IncrementA (line 20) | public Task IncrementA() method GetA (line 26) | public Task GetA() class DoSomethingEmptyWithMoreGrain (line 32) | public class DoSomethingEmptyWithMoreGrain : Grain, IDoSomethingEmptyWit... method DoIt (line 36) | public Task DoIt() method DoMore (line 41) | public Task DoMore() method SetA (line 46) | public Task SetA(int a) method IncrementA (line 52) | public Task IncrementA() method GetA (line 58) | public Task GetA() class DoSomethingWithMoreGrain (line 64) | public class DoSomethingWithMoreGrain : Grain, IDoSomethingWithMoreGrain method DoIt (line 69) | public Task DoIt() method DoThat (line 74) | public Task DoThat() method SetA (line 79) | public Task SetA(int a) method IncrementA (line 85) | public Task IncrementA() method GetA (line 91) | public Task GetA() method SetB (line 96) | public Task SetB(int b) method IncrementB (line 102) | public Task IncrementB() method GetB (line 108) | public Task GetB() class DoSomethingWithMoreEmptyGrain (line 115) | public class DoSomethingWithMoreEmptyGrain : Grain, IDoSomethingWithMore... method DoIt (line 119) | public Task DoIt() method SetA (line 124) | public Task SetA(int a) method IncrementA (line 130) | public Task IncrementA() method GetA (line 136) | public Task GetA() method DoMore (line 141) | public Task DoMore() class DoSomethingCombinedGrain (line 149) | public class DoSomethingCombinedGrain : Grain, IDoSomethingCombinedGrain method DoIt (line 155) | public Task DoIt() method DoMore (line 160) | public Task DoMore() method DoThat (line 165) | public Task DoThat() method SetA (line 170) | public Task SetA(int a) method IncrementA (line 176) | public Task IncrementA() method GetA (line 182) | public Task GetA() method SetB (line 187) | public Task SetB(int b) method IncrementB (line 193) | public Task IncrementB() method GetB (line 199) | public Task GetB() method SetC (line 204) | public Task SetC(int c) method IncrementC (line 210) | public Task IncrementC() method GetC (line 216) | public Task GetC() FILE: test/Grains/TestGrains/GrainService/GrainServiceTestGrain.cs class GrainServiceTestGrain (line 6) | public class GrainServiceTestGrain : Grain, IGrainServiceTestGrain method GrainServiceTestGrain (line 10) | public GrainServiceTestGrain(ITestGrainServiceClient testGrainServiceC... method GetHelloWorldUsingCustomService (line 15) | public Task GetHelloWorldUsingCustomService() method CallHasStarted (line 20) | public Task CallHasStarted() method CallHasStartedInBackground (line 25) | public Task CallHasStartedInBackground() method CallHasInit (line 30) | public Task CallHasInit() method GetServiceConfigProperty (line 35) | public Task GetServiceConfigProperty() method EchoViaExtension (line 40) | public Task EchoViaExtension(string what) FILE: test/Grains/TestGrains/GrainService/ITestGrainService.cs type ITestGrainService (line 6) | public interface ITestGrainService : IGrainService method GetHelloWorldUsingCustomService (line 8) | Task GetHelloWorldUsingCustomService(GrainReference reference); method HasStarted (line 9) | Task HasStarted(); method HasStartedInBackground (line 10) | Task HasStartedInBackground(); method HasInit (line 11) | Task HasInit(); method GetServiceConfigProperty (line 12) | Task GetServiceConfigProperty(); type ITestGrainServiceClient (line 15) | public interface ITestGrainServiceClient : IGrainServiceClient GetHelloWorldUsingCustomService(); method HasStarted (line 18) | Task HasStarted(); method HasStartedInBackground (line 19) | Task HasStartedInBackground(); method HasInit (line 20) | Task HasInit(); method GetServiceConfigProperty (line 21) | Task GetServiceConfigProperty(); method EchoViaExtension (line 22) | Task EchoViaExtension(string what); FILE: test/Grains/TestGrains/ImplicitStreamTestConstants.cs class ImplicitStreamTestConstants (line 3) | public sealed class ImplicitStreamTestConstants FILE: test/Grains/TestGrains/ImplicitSubscriptionCounterGrain.cs class ImplicitSubscriptionCounterGrain (line 8) | [ImplicitStreamSubscription(nameof(IImplicitSubscriptionCounterGrain))] class MyState (line 14) | [GenerateSerializer] method ImplicitSubscriptionCounterGrain (line 25) | public ImplicitSubscriptionCounterGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 30) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 36) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method GetErrorCounter (line 42) | public Task GetErrorCounter() => Task.FromResult(this.State.Error... method GetEventCounter (line 44) | public Task GetEventCounter() => Task.FromResult(this.State.Event... method Deactivate (line 46) | public Task Deactivate() method OnSubscribed (line 52) | public async Task OnSubscribed(IStreamSubscriptionHandleFactory handle... method DeactivateOnEvent (line 80) | public Task DeactivateOnEvent(bool deactivate) class FastImplicitSubscriptionCounterGrain (line 87) | [ImplicitStreamSubscription("FastSlowImplicitSubscriptionCounterGrain")] method FastImplicitSubscriptionCounterGrain (line 90) | public FastImplicitSubscriptionCounterGrain(ILoggerFactory loggerFacto... class SlowImplicitSubscriptionCounterGrain (line 95) | [ImplicitStreamSubscription("FastSlowImplicitSubscriptionCounterGrain")] method SlowImplicitSubscriptionCounterGrain (line 98) | public SlowImplicitSubscriptionCounterGrain(ILoggerFactory loggerFacto... method OnActivateAsync (line 102) | public override async Task OnActivateAsync(CancellationToken cancellat... FILE: test/Grains/TestGrains/ImplicitSubscriptionWithKeyTypeGrain.cs class ImplicitSubscriptionWithLongKeyGrain (line 7) | [ImplicitStreamSubscription(nameof(IImplicitSubscriptionLongKeyGrain))] method ImplicitSubscriptionWithLongKeyGrain (line 13) | public ImplicitSubscriptionWithLongKeyGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 18) | public override async Task OnActivateAsync(CancellationToken cancellat... method GetValue (line 35) | public Task GetValue() => Task.FromResult(value); FILE: test/Grains/TestGrains/ImplicitSubscription_NonTransientError_RecoverableStream_CollectorGrain.cs class ImplicitSubscription_NonTransientError_RecoverableStream_CollectorGrain (line 12) | [ImplicitStreamSubscription(StreamNamespace)] class FaultsState (line 22) | private class FaultsState method ImplicitSubscription_NonTransientError_RecoverableStream_CollectorGrain (line 30) | public ImplicitSubscription_NonTransientError_RecoverableStream_Collec... method OnActivateAsync (line 35) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnNextAsync (line 55) | private async Task OnNextAsync(GeneratedEvent evt, StreamSequenceToken... method OnErrorAsync (line 106) | private Task OnErrorAsync(Exception ex) method InjectFault (line 117) | private void InjectFault() FILE: test/Grains/TestGrains/ImplicitSubscription_RecoverableStream_CollectorGrain.cs class ImplicitSubscription_RecoverableStream_CollectorGrain (line 10) | [ImplicitStreamSubscription(StreamNamespace)] method ImplicitSubscription_RecoverableStream_CollectorGrain (line 21) | public ImplicitSubscription_RecoverableStream_CollectorGrain(ILoggerFa... method OnActivateAsync (line 26) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnNextAsync (line 46) | private async Task OnNextAsync(GeneratedEvent evt, StreamSequenceToken... method OnErrorAsync (line 81) | private Task OnErrorAsync(Exception ex) FILE: test/Grains/TestGrains/ImplicitSubscription_TransientError_RecoverableStream_CollectorGrain.cs class ImplicitSubscription_TransientError_RecoverableStream_CollectorGrain (line 12) | [ImplicitStreamSubscription(StreamNamespace)] class FireOnNthTry (line 27) | private class FireOnNthTry method FireOnNthTry (line 32) | public FireOnNthTry(int attemptToFireOn) method TryFire (line 37) | public bool TryFire(Action fireAction) class FaultsState (line 46) | private class FaultsState method FaultsState (line 54) | public FaultsState() method ImplicitSubscription_TransientError_RecoverableStream_CollectorGrain (line 73) | public ImplicitSubscription_TransientError_RecoverableStream_Collector... method OnActivateAsync (line 78) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnNextAsync (line 101) | private async Task OnNextAsync(GeneratedEvent evt, StreamSequenceToken... method OnErrorAsync (line 152) | private Task OnErrorAsync(Exception ex) method InjectFault (line 158) | private void InjectFault() => InjectFault(activating: false); method InjectFault (line 160) | private void InjectFault(bool activating) FILE: test/Grains/TestGrains/InitialStateGrain.cs class Initialized_State (line 5) | [Serializable] method Initialized_State (line 11) | public Initialized_State() class InitialStateGrain (line 17) | public class InitialStateGrain : Grain, IInitialState... method GetNames (line 19) | public Task> GetNames() method AddName (line 24) | public Task AddName(string name) FILE: test/Grains/TestGrains/KeyExtensionTestGrain.cs class KeyExtensionTestGrain (line 5) | internal class KeyExtensionTestGrain : Grain, IKeyExtensionTestGrain method GetGrainReference (line 9) | public Task GetGrainReference() method GetActivationId (line 14) | public Task GetActivationId() FILE: test/Grains/TestGrains/LivenessTestGrain.cs class LivenessTestGrain (line 6) | internal class LivenessTestGrain : Grain, ILivenessTestGrain method LivenessTestGrain (line 12) | public LivenessTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 17) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 29) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method GetLabel (line 35) | public Task GetLabel() method SetLabel (line 40) | public Task SetLabel(string label) method StartTimer (line 47) | public Task StartTimer() method TimerTick (line 55) | private Task TimerTick() method GetRuntimeInstanceId (line 61) | public Task GetRuntimeInstanceId() method GetUniqueId (line 66) | public Task GetUniqueId() method GetGrainReference (line 71) | public Task GetGrainReference() FILE: test/Grains/TestGrains/LogTestGrain.cs class MyGrainState (line 12) | [Serializable] method MyGrainState (line 23) | public MyGrainState() method ToString (line 28) | public override string ToString() method Apply (line 34) | public void Apply(UpdateA x) { A = x.Val; } method Apply (line 35) | public void Apply(UpdateB x) { B = x.Val; } method Apply (line 36) | public void Apply(IncrementA x) { A++; } method Apply (line 38) | public void Apply(AddReservation x) { Reservations[x.Val.ToString()] =... method Apply (line 39) | public void Apply(RemoveReservation x) { Reservations.Remove(x.Val.ToS... class UpdateA (line 43) | [Serializable] class UpdateB (line 46) | [Serializable] class IncrementA (line 49) | [Serializable] class AddReservation (line 52) | [Serializable] class RemoveReservation (line 55) | [Serializable] class LogTestGrain (line 67) | public abstract class LogTestGrain : JournaledGrain... method OnActivateAsync (line 70) | public override Task OnActivateAsync(CancellationToken cancellationToken) method SetAGlobal (line 75) | public async Task SetAGlobal(int x) method SetAConditional (line 81) | public async Task> SetAConditional(int x) method SetALocal (line 88) | public Task SetALocal(int x) method SetBGlobal (line 93) | public async Task SetBGlobal(int x) method SetBLocal (line 99) | public Task SetBLocal(int x) method IncrementAGlobal (line 105) | public async Task IncrementAGlobal() method IncrementALocal (line 111) | public Task IncrementALocal() method GetAGlobal (line 118) | public async Task GetAGlobal() method GetALocal (line 124) | public Task GetALocal() method GetBothGlobal (line 129) | public async Task GetBothGlobal() method GetBothLocal (line 135) | public Task GetBothLocal() method AddReservationLocal (line 140) | public Task AddReservationLocal(int val) method RemoveReservationLocal (line 146) | public Task RemoveReservationLocal(int val) method GetReservationsGlobal (line 152) | public async Task GetReservationsGlobal() method SynchronizeGlobalState (line 158) | public Task SynchronizeGlobalState() method GetConfirmedVersion (line 163) | public Task GetConfirmedVersion() method Read (line 168) | public async Task> Read() method Update (line 173) | public async Task Update(IReadOnlyList updates, int expe... method Deactivate (line 182) | public Task Deactivate() method Clear (line 188) | public Task Clear() method GetEventLog (line 193) | public Task> GetEventLog() { FILE: test/Grains/TestGrains/LogTestGrainVariations.cs class LogTestGrainSharedStateStorage (line 10) | [StorageProvider(ProviderName = "AzureStore")] class LogTestGrainSharedLogStorage (line 17) | [StorageProvider(ProviderName = "AzureStore")] class LogTestGrainDefaultStorage (line 24) | public class LogTestGrainDefaultStorage : LogTestGrain class LogTestGrainMemoryStorage (line 29) | [StorageProvider(ProviderName = "MemoryStore")] class LogTestGrainCustomStorage (line 35) | [LogConsistencyProvider(ProviderName = "CustomStorage")] method GetStorageGrain (line 43) | private ILogTestGrain GetStorageGrain() method ApplyUpdatesToStorage (line 53) | public Task ApplyUpdatesToStorage(IReadOnlyList updates,... method ReadStateFromStorage (line 58) | public async Task> ReadStateFromStorage() method ClearStoredState (line 64) | public Task ClearStoredState() class LogTestGrainCustomStoragePrimaryCluster (line 71) | [LogConsistencyProvider(ProviderName = "CustomStoragePrimaryCluster")] method LogTestGrainCustomStoragePrimaryCluster (line 81) | public LogTestGrainCustomStoragePrimaryCluster(DeepCopier ApplyUpdatesToStorage(IReadOnlyList updates,... method ReadStateFromStorage (line 117) | public Task> ReadStateFromStorage() method ClearStoredState (line 127) | public Task ClearStoredState() FILE: test/Grains/TestGrains/MessageSerializationGrain.cs class MessageSerializationGrain (line 7) | public class MessageSerializationGrain : Grain, IMessageSerializationGrain method SendUnserializable (line 11) | public Task SendUnserializable(UnserializableType input) => Task.Compl... method SendUndeserializable (line 12) | public Task SendUndeserializable(UndeserializableType input) => Task.C... method GetUnserializable (line 13) | public Task GetUnserializable() => Task.FromResult... method GetUndeserializable (line 14) | public Task GetUndeserializable() => Task.FromRe... method SendUndeserializableToOtherSilo (line 16) | public async Task SendUndeserializableToOtherSilo() method GetUnserializableFromOtherSilo (line 24) | public async Task GetUnserializableFromOtherSilo() method SendUnserializableToOtherSilo (line 32) | public async Task SendUnserializableToOtherSilo() method GetUndeserializableFromOtherSilo (line 40) | public async Task GetUndeserializableFromOtherSilo() method SendUndeserializableToClient (line 48) | public Task SendUndeserializableToClient(IMessageSerializationClientOb... method SendUnserializableToClient (line 49) | public Task SendUnserializableToClient(IMessageSerializationClientObje... method GetUnserializableFromClient (line 51) | public Task GetUnserializableFromClient(IMessageSerializationClientObj... method GetUndeserializableFromClient (line 52) | public Task GetUndeserializableFromClient(IMessageSerializationClientO... method GetGrainOnOtherSilo (line 54) | private async Task GetGrainOnOtherSilo() method GetSiloIdentity (line 78) | public Task GetSiloIdentity() FILE: test/Grains/TestGrains/MethodInterceptionGrain.cs class OutgoingMethodInterceptionGrain (line 9) | public class OutgoingMethodInterceptionGrain : IOutgoingMethodIntercepti... method EchoViaOtherGrain (line 11) | public async Task> EchoViaOtherGrain(IMetho... method ThrowIfGreaterThanZero (line 19) | public Task ThrowIfGreaterThanZero(int value) class MethodInterceptionGrain (line 30) | public class MethodInterceptionGrain : IMethodInterceptionGrain, IIncomi... method One (line 32) | public Task One() => throw new InvalidOperationException("Not ... method Echo (line 34) | [MessWithResult] method NotIntercepted (line 37) | public Task NotIntercepted() => Task.FromResult("not intercept... method SayHello (line 39) | public Task SayHello() => Task.FromResult("Hello"); method Throw (line 41) | public Task Throw() => throw new MyDomainSpecificException("Oi... method FilterThrows (line 43) | public Task FilterThrows() => Task.CompletedTask; method SystemWideCallFilterMarker (line 45) | public Task SystemWideCallFilterMarker() => Task.CompletedTask; method IncorrectResultType (line 47) | public Task IncorrectResultType() => Task.FromResult("hop scot... method Invoke (line 49) | async Task IIncomingGrainCallFilter.Invoke(IIncomingGrainCallContext c... class MyDomainSpecificException (line 94) | [Serializable] method MyDomainSpecificException (line 98) | public MyDomainSpecificException() method MyDomainSpecificException (line 102) | public MyDomainSpecificException(string message) : base(message) method MyDomainSpecificException (line 106) | [Obsolete] class MessWithResultAttribute (line 112) | [AttributeUsage(AttributeTargets.Method)] class MethodInterceptionGrainObserver (line 118) | public class MethodInterceptionGrainObserver : IMethodInterceptionGrainO... method One (line 120) | public Task One() => throw new InvalidOperationException("Not ... method Echo (line 122) | [MessWithResult] method NotIntercepted (line 125) | public Task NotIntercepted() => Task.FromResult("not intercept... method SayHello (line 127) | public Task SayHello() => Task.FromResult("Hello"); method Throw (line 129) | public Task Throw() => throw new MyDomainSpecificException("Oi... method FilterThrows (line 131) | public Task FilterThrows() => Task.CompletedTask; method SystemWideCallFilterMarker (line 133) | public Task SystemWideCallFilterMarker() => Task.CompletedTask; method IncorrectResultType (line 135) | public Task IncorrectResultType() => Task.FromResult("hop scot... method Invoke (line 137) | async Task IIncomingGrainCallFilter.Invoke(IIncomingGrainCallContext c... class MyDomainSpecificException (line 182) | [Serializable] method MyDomainSpecificException (line 186) | public MyDomainSpecificException() method MyDomainSpecificException (line 190) | public MyDomainSpecificException(string message) : base(message) method MyDomainSpecificException (line 194) | [Obsolete] class MessWithResultAttribute (line 200) | [AttributeUsage(AttributeTargets.Method)] class GenericMethodInterceptionGrain (line 206) | public class GenericMethodInterceptionGrain : IGenericMethodIntercept... method SayHello (line 208) | public Task SayHello() => Task.FromResult("Hello"); method GetInputAsString (line 210) | public Task GetInputAsString(T input) => Task.FromResult(input... method Invoke (line 211) | public async Task Invoke(IIncomingGrainCallContext context) class TrickyInterceptionGrain (line 223) | public class TrickyInterceptionGrain : ITrickyMethodInterceptionGrain, I... method SayHello (line 225) | public Task SayHello() => Task.FromResult("Hello"); method GetInputAsString (line 227) | public Task GetInputAsString(string input) => Task.FromResult(... method GetInputAsString (line 229) | public Task GetInputAsString(bool input) => Task.FromResult(in... method GetBestNumber (line 231) | public Task GetBestNumber() => Task.FromResult(38); method Invoke (line 232) | public async Task Invoke(IIncomingGrainCallContext context) class GenericMethodInterceptionGrainObserver (line 244) | public class GenericMethodInterceptionGrainObserver : IGenericMethodI... method SayHello (line 246) | public Task SayHello() => Task.FromResult("Hello"); method GetInputAsString (line 248) | public Task GetInputAsString(T input) => Task.FromResult(input... method Invoke (line 249) | public async Task Invoke(IIncomingGrainCallContext context) class TrickyInterceptionGrainObserver (line 261) | public class TrickyInterceptionGrainObserver : ITrickyMethodInterception... method SayHello (line 263) | public Task SayHello() => Task.FromResult("Hello"); method GetInputAsString (line 265) | public Task GetInputAsString(string input) => Task.FromResult(... method GetInputAsString (line 267) | public Task GetInputAsString(bool input) => Task.FromResult(in... method GetBestNumber (line 269) | public Task GetBestNumber() => Task.FromResult(38); method Invoke (line 270) | public async Task Invoke(IIncomingGrainCallContext context) class GrainCallFilterTestGrain (line 282) | public class GrainCallFilterTestGrain : IGrainCallFilterTestGrain, IInco... method ThrowIfGreaterThanZero (line 286) | public Task ThrowIfGreaterThanZero(int value) method GetRequestContext (line 296) | public Task GetRequestContext() => Task.FromResult((string)Req... method Invoke (line 298) | public async Task Invoke(IIncomingGrainCallContext ctx) method SumSet (line 335) | public Task SumSet(HashSet numbers) => Task.FromResult(numbe... method SystemWideCallFilterMarker (line 337) | public Task SystemWideCallFilterMarker() => Task.CompletedTask; method GrainSpecificCallFilterMarker (line 339) | public Task GrainSpecificCallFilterMarker() => Task.CompletedTask; class GrainCallFilterTestGrainObserver (line 342) | public class GrainCallFilterTestGrainObserver : IGrainCallFilterTestGrai... method ThrowIfGreaterThanZero (line 346) | public Task ThrowIfGreaterThanZero(int value) method GetRequestContext (line 356) | public Task GetRequestContext() => Task.FromResult((string)Req... method Invoke (line 358) | public async Task Invoke(IIncomingGrainCallContext ctx) method SumSet (line 395) | public Task SumSet(HashSet numbers) => Task.FromResult(numbe... method SystemWideCallFilterMarker (line 397) | public Task SystemWideCallFilterMarker() => Task.CompletedTask; method GrainSpecificCallFilterMarker (line 399) | public Task GrainSpecificCallFilterMarker() => Task.CompletedTask; class CaterpillarGrain (line 402) | public class CaterpillarGrain : ICaterpillarGrain, IIncomingGrainCallFilter method Invoke (line 404) | Task IIncomingGrainCallFilter.Invoke(IIncomingGrainCallContext ctx) method Eat (line 426) | [TestMethodTag("hungry-eat")] method Eat (line 429) | [TestMethodTag("omnivore-eat")] method Eat (line 432) | [TestMethodTag("caterpillar-eat")] method EatWith (line 435) | [TestMethodTag("hungry-eatwith")] FILE: test/Grains/TestGrains/MultipleConstructorsSimpleGrain.cs class MultipleConstructorsSimpleGrain (line 6) | public class MultipleConstructorsSimpleGrain : SimpleGrain, ISimpleGrain method MultipleConstructorsSimpleGrain (line 11) | public MultipleConstructorsSimpleGrain(ILoggerFactory loggerFactory) method MultipleConstructorsSimpleGrain (line 17) | public MultipleConstructorsSimpleGrain(ILoggerFactory loggerFactory, i... FILE: test/Grains/TestGrains/MultipleGenericParameterInterfaceImpl.cs class CodeGenTestPoco (line 3) | public class CodeGenTestPoco class FeaturePopulatorCodeGenTestClass (line 11) | public class FeaturePopulatorCodeGenTestClass : CodeGenTestPoco, Feature... type IFactory (line 13) | public interface IFactory method Product (line 15) | Task Product(TInput input); method Product (line 18) | async Task IFactory.Product(int input) FILE: test/Grains/TestGrains/MultipleImplicitSubscriptionGrain.cs class MultipleImplicitSubscriptionGrain (line 8) | [ImplicitStreamSubscription("red")] method MultipleImplicitSubscriptionGrain (line 16) | public MultipleImplicitSubscriptionGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 21) | public override async Task OnActivateAsync(CancellationToken cancellat... method GetCounters (line 46) | public Task> GetCounters() FILE: test/Grains/TestGrains/MultipleSubscriptionConsumerGrain.cs class MultipleSubscriptionConsumerGrain (line 8) | public class MultipleSubscriptionConsumerGrain : Grain, IMultipleSubscri... method MultipleSubscriptionConsumerGrain (line 14) | public MultipleSubscriptionConsumerGrain(ILoggerFactory loggerFactory) class Counter (line 20) | private class Counter method Increment (line 24) | public void Increment() method Clear (line 29) | public void Clear() method OnActivateAsync (line 35) | public override Task OnActivateAsync(CancellationToken cancellationToken) method BecomeConsumer (line 41) | public async Task> BecomeConsumer(Guid s... method Resume (line 67) | public async Task> Resume(StreamSubscrip... method StopConsuming (line 95) | public async Task StopConsuming(StreamSubscriptionHandle handle) method GetAllSubscriptions (line 105) | public Task>> GetAllSubscriptions(... method GetNumberConsumed (line 117) | public Task, Tuple>>... method ClearNumberConsumed (line 128) | public Task ClearNumberConsumed() method Deactivate (line 139) | public Task Deactivate() method OnDeactivateAsync (line 145) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method OnNext (line 151) | private Task OnNext(IList> items, int countCapture... method OnError (line 166) | private Task OnError(Exception e, int countCapture, Counter error) FILE: test/Grains/TestGrains/NoOpTestGrain.cs class NoOpTestGrain (line 5) | public class NoOpTestGrain : Grain, INoOpTestGrain FILE: test/Grains/TestGrains/NullStateGrain.cs class NullStateGrain (line 5) | public class NullStateGrain : Grain, INullStateGrain method SetStateAndDeactivate (line 7) | public async Task SetStateAndDeactivate(NullableState state) method GetState (line 14) | public Task GetState() FILE: test/Grains/TestGrains/ObserverGrain.cs class ObserverGrain (line 5) | public class ObserverGrain : Grain, IObserverGrain, ISimpleGrainObserver method SetTarget (line 11) | public Task SetTarget(ISimpleObserverableGrain target) method Subscribe (line 17) | public Task Subscribe(ISimpleGrainObserver observer) method StateChanged (line 23) | public void StateChanged(int a, int b) FILE: test/Grains/TestGrains/ObserverWithCancellationGrain.cs class ObserverWithCancellationGrain (line 9) | public class ObserverWithCancellationGrain : Grain, IObserverWithCancell... method Subscribe (line 15) | public Task Subscribe(ILongRunningObserver observer) method Unsubscribe (line 22) | public Task Unsubscribe(ILongRunningObserver observer) method NotifyLongWait (line 33) | public async Task NotifyLongWait(TimeSpan delay, Guid callId, Cancella... method NotifyCancellationTokenCallbackResolve (line 52) | public async Task NotifyCancellationTokenCallbackResolve(Guid ca... method NotifyInterleavingLongWait (line 70) | public async Task NotifyInterleavingLongWait(TimeSpan delay, Guid call... method GetProcessedCancellations (line 89) | public Task> GetProcessedCancell... method ClearProcessedCancellations (line 95) | public Task ClearProcessedCancellations() FILE: test/Grains/TestGrains/PolymorphicTestGrain.cs class PolymorphicTestGrain (line 5) | public class PolymorphicTestGrain : Grain, IPolymorphicTestGrain method F1Method (line 7) | public Task F1Method() => Task.FromResult("F1"); method F2Method (line 8) | public Task F2Method() => Task.FromResult("F2"); method F3Method (line 9) | public Task F3Method() => Task.FromResult("F3"); method E1Method (line 10) | public Task E1Method() => Task.FromResult("E1"); method E2Method (line 11) | public Task E2Method() => Task.FromResult("E2"); method E3Method (line 12) | public Task E3Method() => Task.FromResult("E3"); method D1Method (line 13) | public Task D1Method() => Task.FromResult("D1"); method D2Method (line 14) | public Task D2Method() => Task.FromResult("D2"); method D3Method (line 15) | public Task D3Method() => Task.FromResult("D3"); method C1Method (line 16) | public Task C1Method() => Task.FromResult("C1"); method C2Method (line 17) | public Task C2Method() => Task.FromResult("C2"); method C3Method (line 18) | public Task C3Method() => Task.FromResult("C3"); method B1Method (line 19) | public Task B1Method() => Task.FromResult("B1"); method B2Method (line 20) | public Task B2Method() => Task.FromResult("B2"); method B3Method (line 21) | public Task B3Method() => Task.FromResult("B3"); method A1Method (line 22) | public Task A1Method() => Task.FromResult("A1"); method A2Method (line 23) | public Task A2Method() => Task.FromResult("A2"); method A3Method (line 24) | public Task A3Method() => Task.FromResult("A3"); method CommonMethod (line 25) | Task IC.CommonMethod() => Task.FromResult("IC"); method CommonMethod (line 26) | Task IA.CommonMethod() => Task.FromResult("IA"); method CommonMethod (line 27) | Task IB.CommonMethod() => Task.FromResult("IB"); FILE: test/Grains/TestGrains/ProducerEventCountingGrain.cs class ProducerEventCountingGrain (line 7) | internal class ProducerEventCountingGrain : BaseGrain, IProducerEventCou... method ProducerEventCountingGrain (line 13) | public ProducerEventCountingGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 18) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 25) | public override async Task OnDeactivateAsync(DeactivationReason reason... method BecomeProducer (line 32) | public Task BecomeProducer(Guid streamId, string providerToUse) method GetNumberProduced (line 45) | public Task GetNumberProduced() method SendEvent (line 50) | public async Task SendEvent() FILE: test/Grains/TestGrains/ProgrammaticSubscribe/Passive_ConsumerGrain.cs class Passive_ConsumerGrain (line 8) | public class Passive_ConsumerGrain : Grain, IPassive_ConsumerGrain, IStr... method Passive_ConsumerGrain (line 15) | public Passive_ConsumerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 20) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetCountOfOnAddFuncCalled (line 29) | public Task GetCountOfOnAddFuncCalled() method GetNumberConsumed (line 34) | public Task GetNumberConsumed() method StopConsuming (line 46) | public async Task StopConsuming() method OnDeactivateAsync (line 57) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method OnSubscribed (line 63) | public async Task OnSubscribed(IStreamSubscriptionHandleFactory handle... class Jerk_ConsumerGrain (line 74) | public class Jerk_ConsumerGrain : Grain, IJerk_ConsumerGrain, IStreamSub... method Jerk_ConsumerGrain (line 78) | public Jerk_ConsumerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 83) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnSubscribed (line 90) | public async Task OnSubscribed(IStreamSubscriptionHandleFactory handle... type ICounterObserver (line 97) | public interface ICounterObserver class CounterObserver (line 102) | public class CounterObserver : IAsyncObserver, ICounterObserver method CounterObserver (line 106) | internal CounterObserver(ILogger logger) method OnNextAsync (line 112) | public Task OnNextAsync(T item, StreamSequenceToken token = null) method OnCompletedAsync (line 119) | public Task OnCompletedAsync() method OnErrorAsync (line 125) | public Task OnErrorAsync(Exception ex) class ImplicitSubscribeGrain (line 132) | [ImplicitStreamSubscription(StreamNameSpace)] method ImplicitSubscribeGrain (line 139) | public ImplicitSubscribeGrain(ILoggerFactory loggerFactory) : base(log... FILE: test/Grains/TestGrains/ProgrammaticSubscribe/SubscribeGrain.cs type ISubscribeGrain (line 8) | public interface ISubscribeGrain : IGrainWithGuidKey method CanGetSubscriptionManager (line 10) | Task CanGetSubscriptionManager(string providerName); class SubscribeGrain (line 13) | public class SubscribeGrain : Grain, ISubscribeGrain method CanGetSubscriptionManager (line 15) | public Task CanGetSubscriptionManager(string providerName) class FullStreamIdentity (line 21) | [Serializable] method FullStreamIdentity (line 25) | public FullStreamIdentity(Guid streamGuid, string streamNamespace, str... FILE: test/Grains/TestGrains/ProgrammaticSubscribe/TypedProducerGrain.cs class TypedProducerGrain (line 8) | public class TypedProducerGrain : Grain, ITypedProducerGrain method TypedProducerGrain (line 17) | public TypedProducerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 22) | public override Task OnActivateAsync(CancellationToken cancellationToken) method BecomeProducer (line 29) | public Task BecomeProducer(Guid streamId, string streamNamespace, stri... method StartPeriodicProducing (line 37) | public Task StartPeriodicProducing(TimeSpan? firePeriod = null) method StopPeriodicProducing (line 45) | public Task StopPeriodicProducing() method GetNumberProduced (line 58) | public Task GetNumberProduced() method ClearNumberProduced (line 64) | public Task ClearNumberProduced() method Produce (line 70) | public Task Produce() method TimerCallback (line 75) | private Task TimerCallback() method ProducerOnNextAsync (line 80) | protected virtual async Task ProducerOnNextAsync(IAsyncStream thePr... method Fire (line 93) | private async Task Fire([CallerMemberName] string caller = null) method OnDeactivateAsync (line 100) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... class TypedProducerGrainProducingInt (line 106) | public class TypedProducerGrainProducingInt : TypedProducerGrain, I... method TypedProducerGrainProducingInt (line 108) | public TypedProducerGrainProducingInt(ILoggerFactory loggerFactory) : ... method ProducerOnNextAsync (line 112) | protected override Task ProducerOnNextAsync(IAsyncStream theProdu... class TypedProducerGrainProducingApple (line 118) | public class TypedProducerGrainProducingApple : TypedProducerGrain thePro... class Apple (line 130) | [GenerateSerializer] method Apple (line 136) | public Apple(int number) method GetNumber (line 141) | public int GetNumber() FILE: test/Grains/TestGrains/PromiseForwardGrain.cs class SimpleGrainState (line 5) | [Serializable] class PromiseForwardGrain (line 18) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method GetAxB_Async (line 23) | public Task GetAxB_Async() method GetAxB_Async (line 27) | public Task GetAxB_Async(int a, int b) method SetA_Async (line 31) | public Task SetA_Async(int a) method SetB_Async (line 35) | public Task SetB_Async(int b) method IncrementA_Async (line 39) | public Task IncrementA_Async() method GetA_Async (line 43) | public Task GetA_Async() method SetA (line 48) | public async Task SetA(int a) method SetB (line 52) | public async Task SetB(int a) method GetAxB (line 56) | public Task GetAxB() method GetAxB (line 60) | public Task GetAxB(int a, int b) method IncrementA (line 64) | public async Task IncrementA() method GetA (line 68) | public Task GetA() method GetSimpleGrain (line 73) | private ISimpleGrain GetSimpleGrain() FILE: test/Grains/TestGrains/ProxyGrain.cs class ProxyGrain (line 5) | public class ProxyGrain : Grain, IProxyGrain method CreateProxy (line 9) | public Task CreateProxy(long key) method GetRuntimeInstanceId (line 15) | public Task GetRuntimeInstanceId() method GetProxyRuntimeInstanceId (line 20) | public Task GetProxyRuntimeInstanceId() FILE: test/Grains/TestGrains/ReentrancyCorrelationIdGrains.cs class FirstGrain (line 5) | public class FirstGrain : Grain, IFirstGrain method Start (line 7) | public async Task Start(Guid guid1, Guid guid2) class SecondGrain (line 15) | public class SecondGrain : Grain, ISecondGrain method SecondGrainMethod (line 17) | public async Task SecondGrainMethod(Guid guid) class ThirdGrainState (line 31) | [GenerateSerializer] class ThirdGrain (line 36) | public class ThirdGrain : Grain, IThirdGrain method ThirdGrainMethod (line 40) | public async Task ThirdGrainMethod(Guid userId) FILE: test/Grains/TestGrains/ReentrantGrain.cs class ReentrantGrain (line 10) | [Reentrant] method One (line 15) | public Task One() method Two (line 20) | public async Task Two() method SetSelf (line 25) | public Task SetSelf(IReentrantGrain self) class NonRentrantGrain (line 32) | public class NonRentrantGrain : Grain, INonReentrantGrain method NonRentrantGrain (line 38) | public NonRentrantGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 43) | public override Task OnActivateAsync(CancellationToken cancellationToken) method One (line 49) | public Task One() method Two (line 57) | public async Task Two() method SetSelf (line 66) | public Task SetSelf(INonReentrantGrain self) class MayInterleaveStaticPredicateGrain (line 74) | [MayInterleave(nameof(MayInterleave))] method MayInterleaveStaticPredicateGrain (line 79) | public MayInterleaveStaticPredicateGrain(ILoggerFactory loggerFactory) method MayInterleave (line 84) | public static bool MayInterleave(IInvokable req) method UnwrapImmutable (line 106) | private static object UnwrapImmutable(object item) => item is Immutabl... method One (line 112) | public Task One(string arg) method Two (line 117) | public async Task Two() method TwoReentrant (line 122) | public async Task TwoReentrant() method Exceptional (line 127) | public Task Exceptional() method SubscribeToStream (line 132) | public async Task SubscribeToStream() method PushToStream (line 143) | public Task PushToStream(string item) method GetStream (line 148) | private IAsyncStream GetStream() => method SetSelf (line 151) | public Task SetSelf(IMayInterleaveStaticPredicateGrain self) class MayInterleaveInstancedPredicateGrain (line 158) | [MayInterleave(nameof(MayInterleave))] method MayInterleaveInstancedPredicateGrain (line 163) | public MayInterleaveInstancedPredicateGrain(ILoggerFactory loggerFactory) method MayInterleave (line 168) | public bool MayInterleave(IInvokable req) method UnwrapImmutable (line 190) | private static object UnwrapImmutable(object item) => item is Immutabl... method One (line 196) | public Task One(string arg) method Two (line 201) | public async Task Two() method TwoReentrant (line 206) | public async Task TwoReentrant() method Exceptional (line 211) | public Task Exceptional() method SubscribeToStream (line 216) | public async Task SubscribeToStream() method PushToStream (line 227) | public Task PushToStream(string item) method GetStream (line 232) | private IAsyncStream GetStream() => method SetSelf (line 235) | public Task SetSelf(IMayInterleaveInstancedPredicateGrain self) class ReentrantSelfManagedGrain1 (line 242) | [Reentrant] method ReentrantSelfManagedGrain1 (line 248) | public ReentrantSelfManagedGrain1(ILoggerFactory loggerFactory) method OnActivateAsync (line 253) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetCounter (line 258) | public Task GetCounter() method SetDestination (line 263) | public Task SetDestination(long id) method Ping (line 269) | public Task Ping(int seconds) class NonReentrantSelfManagedGrain1 (line 290) | public class NonReentrantSelfManagedGrain1 : Grain, INonReentrantSelfMan... method NonReentrantSelfManagedGrain1 (line 295) | public NonReentrantSelfManagedGrain1(ILoggerFactory loggerFactory) method OnActivateAsync (line 300) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetCounter (line 305) | public Task GetCounter() method SetDestination (line 310) | public Task SetDestination(long id) method Ping (line 316) | public Task Ping(int seconds) class FanOutGrain (line 337) | [Reentrant] method FanOutGrain (line 343) | public FanOutGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 348) | public override Task OnActivateAsync(CancellationToken cancellationToken) method FanOutReentrant (line 353) | public async Task FanOutReentrant(int offset, int num) method FanOutNonReentrant (line 370) | public async Task FanOutNonReentrant(int offset, int num) method FanOutReentrant_Chain (line 387) | public async Task FanOutReentrant_Chain(int offset, int num) method FanOutNonReentrant_Chain (line 403) | public async Task FanOutNonReentrant_Chain(int offset, int num) method InitTaskGrains_Reentrant (line 419) | private async Task InitTaskGrains_Reentrant(int... method InitTaskGrains_NonReentrant (line 437) | private async Task InitTaskGrains_NonReentra... class FanOutACGrain (line 457) | [Reentrant] method FanOutACGrain (line 463) | public FanOutACGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 468) | public override Task OnActivateAsync(CancellationToken cancellationToken) method FanOutACReentrant (line 473) | public async Task FanOutACReentrant(int offset, int num) method FanOutACNonReentrant (line 489) | public async Task FanOutACNonReentrant(int offset, int num) method FanOutACReentrant_Chain (line 505) | public async Task FanOutACReentrant_Chain(int offset, int num) method FanOutACNonReentrant_Chain (line 521) | public async Task FanOutACNonReentrant_Chain(int offset, int num) method InitACGrains_Reentrant (line 537) | private async Task InitACGrains_Reentran... method InitACGrains_NonReentrant (line 555) | private async Task InitACGrains_NonRe... class ReentrantTaskGrain (line 574) | [Reentrant] method ReentrantTaskGrain (line 581) | public ReentrantTaskGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 586) | public override Task OnActivateAsync(CancellationToken cancellationToken) method SetDestination (line 591) | public Task SetDestination(long id) method Ping (line 597) | public async Task Ping(TimeSpan wait) method GetCounter (line 607) | public Task GetCounter() class NonReentrantTaskGrain (line 613) | public class NonReentrantTaskGrain : Grain, INonReentrantTaskGrain method NonReentrantTaskGrain (line 619) | public NonReentrantTaskGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 624) | public override Task OnActivateAsync(CancellationToken cancellationToken) method SetDestination (line 629) | public Task SetDestination(long id) method Ping (line 635) | public async Task Ping(TimeSpan wait) method GetCounter (line 645) | public Task GetCounter() class CallOrderingGrain (line 651) | [MayInterleave(nameof(WillInterleave))] method WillInterleave (line 657) | public static bool WillInterleave(IInvokable req) method MethodA (line 663) | public async Task MethodA() method MethodB (line 670) | public async Task MethodB() method Unblock (line 677) | public Task Unblock() method Reset (line 683) | public Task Reset() method GetLog (line 690) | public Task> GetLog() => Task.FromResult(_log.ToList()); FILE: test/Grains/TestGrains/ReminderTestGrain.cs class ReminderTestGrain (line 5) | internal class ReminderTestGrain : Grain, IReminderTestGrain, IRemindable method IsReminderExists (line 7) | public async Task IsReminderExists(string reminderName) method AddReminder (line 13) | public Task AddReminder(string reminderName) => this.RegisterOrUpdateR... method RemoveReminder (line 15) | public async Task RemoveReminder(string reminderName) method ReceiveReminder (line 21) | public Task ReceiveReminder(string reminderName, Orleans.Runtime.TickS... FILE: test/Grains/TestGrains/RequestContextTestGrain.cs class RequestContextTestGrain (line 7) | public class RequestContextTestGrain : Grain, IRequestContextTestGrain method TraceIdEcho (line 9) | public Task TraceIdEcho() method TraceIdDoubleEcho (line 14) | public Task TraceIdDoubleEcho() method TraceIdDelayedEcho1 (line 20) | public Task TraceIdDelayedEcho1() method TraceIdDelayedEcho2 (line 25) | public async Task TraceIdDelayedEcho2() method E2EActivityId (line 31) | public Task E2EActivityId() class RequestContextTaskGrain (line 37) | public class RequestContextTaskGrain : Grain, IRequestContextTaskGrain method RequestContextTaskGrain (line 41) | public RequestContextTaskGrain(ILoggerFactory loggerFactory) method TraceIdEcho (line 46) | public Task TraceIdEcho() method TraceIdDoubleEcho (line 53) | public Task TraceIdDoubleEcho() method TraceIdDelayedEcho1 (line 59) | public Task TraceIdDelayedEcho1() method TraceIdDelayedEcho2 (line 74) | public Task TraceIdDelayedEcho2() method TraceIdDelayedEchoAwait (line 89) | public async Task TraceIdDelayedEchoAwait() method TraceIdDelayedEchoTaskRun (line 106) | public Task TraceIdDelayedEchoTaskRun() method E2EActivityId (line 121) | public Task E2EActivityId() method TestRequestContext (line 126) | public async Task> TestRequestContext() class RequestContextProxyGrain (line 149) | public class RequestContextProxyGrain : Grain, IRequestContextProxyGrain method E2EActivityId (line 151) | public Task E2EActivityId() FILE: test/Grains/TestGrains/RetryTestGrain.cs class RetryTestGrain (line 11) | public class RetryTestGrain : Grain, IRetryTestGrain, IDurableJobHandler method RetryTestGrain (line 20) | public RetryTestGrain(ILocalDurableJobManager localDurableJobManager, ... method HasJobSucceeded (line 26) | public Task HasJobSucceeded(string jobId) method ExecuteJobAsync (line 31) | public Task ExecuteJobAsync(IJobRunContext ctx, CancellationToken canc... method ScheduleJobAsync (line 79) | public async Task ScheduleJobAsync(string jobName, DateTim... method WaitForJobToSucceed (line 95) | public async Task WaitForJobToSucceed(string jobId) method GetJobExecutionAttemptCount (line 107) | public Task GetJobExecutionAttemptCount(string jobId) method GetJobDequeueCountHistory (line 117) | public Task> GetJobDequeueCountHistory(string jobId) method GetFinalJobRun (line 127) | public Task GetFinalJobRun(string jobId) FILE: test/Grains/TestGrains/RoundtripSerializationGrain.cs class RoundtripSerializationGrain (line 6) | public class RoundtripSerializationGrain : Grain, IRoundtripSerializatio... method GetEnemyType (line 8) | public Task GetEnemyType() method GetClosedGenericValue (line 13) | public Task GetClosedGenericValue() method GetRetValForParamVal (line 21) | public Task GetRetValForParamVal(ParamVal param) => Task.FromR... FILE: test/Grains/TestGrains/SampleStreamingGrain.cs class SampleConsumerObserver (line 9) | internal class SampleConsumerObserver : IAsyncObserver method SampleConsumerObserver (line 13) | internal SampleConsumerObserver(SampleStreaming_ConsumerGrain hostingG... method OnNextAsync (line 18) | public Task OnNextAsync(T item, StreamSequenceToken token = null) method OnCompletedAsync (line 25) | public Task OnCompletedAsync() method OnErrorAsync (line 31) | public Task OnErrorAsync(Exception ex) class SampleStreaming_ProducerGrain (line 38) | public class SampleStreaming_ProducerGrain : Grain, ISampleStreaming_Pro... method SampleStreaming_ProducerGrain (line 47) | public SampleStreaming_ProducerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 52) | public override Task OnActivateAsync(CancellationToken cancellationToken) method BecomeProducer (line 59) | public Task BecomeProducer(Guid streamId, string streamNamespace, stri... method StartPeriodicProducing (line 67) | public Task StartPeriodicProducing() method StopPeriodicProducing (line 74) | public Task StopPeriodicProducing() method GetNumberProduced (line 82) | public Task GetNumberProduced() method ClearNumberProduced (line 88) | public Task ClearNumberProduced() method Produce (line 94) | public Task Produce() method TimerCallback (line 99) | private Task TimerCallback() method Fire (line 104) | private async Task Fire([CallerMemberName] string caller = null) method OnDeactivateAsync (line 112) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... class SampleStreaming_ConsumerGrain (line 119) | public class SampleStreaming_ConsumerGrain : Grain, ISampleStreaming_Con... method SampleStreaming_ConsumerGrain (line 127) | public SampleStreaming_ConsumerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 132) | public override Task OnActivateAsync(CancellationToken cancellationToken) method BecomeConsumer (line 140) | public async Task BecomeConsumer(Guid streamId, string streamNamespace... method StopConsuming (line 149) | public async Task StopConsuming() method GetNumberConsumed (line 159) | public Task GetNumberConsumed() method OnDeactivateAsync (line 164) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... class SampleStreaming_InlineConsumerGrain (line 171) | public class SampleStreaming_InlineConsumerGrain : Grain, ISampleStreami... method SampleStreaming_InlineConsumerGrain (line 178) | public SampleStreaming_InlineConsumerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 183) | public override Task OnActivateAsync(CancellationToken cancellationToken) method BecomeConsumer (line 191) | public async Task BecomeConsumer(Guid streamId, string streamNamespace... method StopConsuming (line 199) | public async Task StopConsuming() method GetNumberConsumed (line 210) | public Task GetNumberConsumed() method OnNextAsync (line 215) | public Task OnNextAsync( int item, StreamSequenceToken token = null ) method OnCompletedAsync (line 222) | public Task OnCompletedAsync() method OnErrorAsync (line 228) | public Task OnErrorAsync( Exception ex ) method OnDeactivateAsync (line 234) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... FILE: test/Grains/TestGrains/SchedulerGrain.cs class SchedulerGrain (line 10) | public class SchedulerGrain : Grain, ISchedulerGrain method SchedulerGrain (line 16) | public SchedulerGrain( method ScheduleJobOnAnotherGrainAsync (line 26) | public async Task ScheduleJobOnAnotherGrainAsync(string ta... FILE: test/Grains/TestGrains/SerializationGenerationGrain.cs class SerializationGenerationGrain (line 7) | public class SerializationGenerationGrain : Grain RoundTripObject(object input) method RoundTripStruct (line 14) | public Task RoundTripStruct(SomeStruct input) method RoundTripClass (line 19) | public Task RoundTripClass(SomeAbstractClass input) method RoundTripInterface (line 24) | public Task RoundTripInterface(ISomeInterface input) method RoundTripEnum (line 29) | public Task RoundTripEnum(SomeAbstractClas... method SetState (line 34) | public async Task SetState(SomeAbstractClass input) method GetState (line 41) | public Task GetState() class MyState (line 46) | [Serializable] FILE: test/Grains/TestGrains/ServiceType.cs class ServiceType (line 5) | public class ServiceType : Grain, IServiceType method A1Method (line 7) | public Task A1Method() method A2Method (line 11) | public Task A2Method() method A3Method (line 15) | public Task A3Method() method B1Method (line 20) | public Task B1Method() method B2Method (line 24) | public Task B2Method() method B3Method (line 28) | public Task B3Method() method C1Method (line 33) | public Task C1Method() method C2Method (line 37) | public Task C2Method() method C3Method (line 41) | public Task C3Method() method D1Method (line 46) | public Task D1Method() method D2Method (line 50) | public Task D2Method() method D3Method (line 54) | public Task D3Method() method E1Method (line 59) | public Task E1Method() method E2Method (line 63) | public Task E2Method() method E3Method (line 67) | public Task E3Method() method F1Method (line 72) | public Task F1Method() method F2Method (line 76) | public Task F2Method() method F3Method (line 80) | public Task F3Method() method ServiceTypeMethod1 (line 85) | public Task ServiceTypeMethod1() method ServiceTypeMethod2 (line 90) | public Task ServiceTypeMethod2() method ServiceTypeMethod3 (line 95) | public Task ServiceTypeMethod3() method CommonMethod (line 100) | Task IC.CommonMethod() => Task.FromResult("IC"); method CommonMethod (line 101) | Task IA.CommonMethod() => Task.FromResult("IA"); method CommonMethod (line 102) | Task IB.CommonMethod() => Task.FromResult("IB"); FILE: test/Grains/TestGrains/SiloRoleBasedPlacementGrain.cs class SiloRoleBasedPlacementGrain (line 8) | [SiloRoleBasedPlacement] method Ping (line 11) | public Task Ping() FILE: test/Grains/TestGrains/SimpleDIGrain.cs class DIGrainWithInjectedServices (line 10) | public class DIGrainWithInjectedServices : Grain, IDIGrainWithInjectedSe... method DIGrainWithInjectedServices (line 19) | public DIGrainWithInjectedServices(IInjectedService injectedService, I... method OnActivateAsync (line 29) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetLongValue (line 35) | public Task GetLongValue() method GetStringValue (line 40) | public Task GetStringValue() method GetInjectedSingletonServiceValue (line 45) | public Task GetInjectedSingletonServiceValue() method GetInjectedScopedServiceValue (line 50) | public Task GetInjectedScopedServiceValue() method GetGrainFactoryId (line 55) | public Task GetGrainFactoryId() method DoDeactivate (line 60) | public Task DoDeactivate() method AssertCanResolveSameServiceInstances (line 66) | public Task AssertCanResolveSameServiceInstances() class ExplicitlyRegisteredSimpleDIGrain (line 76) | [GrainType("explicitly-registered")] method ExplicitlyRegisteredSimpleDIGrain (line 83) | public ExplicitlyRegisteredSimpleDIGrain(IInjectedService injectedServ... method GetLongValue (line 90) | public Task GetLongValue() method GetStringValue (line 95) | public Task GetStringValue() method DoDeactivate (line 99) | public Task DoDeactivate() type IInjectedService (line 106) | public interface IInjectedService method GetTicks (line 108) | Task GetTicks(); method GetInstanceValue (line 109) | string GetInstanceValue(); class InjectedService (line 112) | public class InjectedService : IInjectedService, IDisposable method GetTicks (line 117) | public Task GetTicks() method GetInstanceValue (line 121) | public string GetInstanceValue() => this.instanceValue; method InjectedService (line 123) | public InjectedService(ILoggerFactory loggerFactory) method Dispose (line 128) | public void Dispose() type IInjectedScopedService (line 134) | public interface IInjectedScopedService method GetInstanceValue (line 136) | string GetInstanceValue(); class InjectedScopedService (line 139) | public class InjectedScopedService : IInjectedScopedService, IDisposable method InjectedScopedService (line 144) | public InjectedScopedService(ILoggerFactory loggerFactory) method Dispose (line 149) | public void Dispose() method GetInstanceValue (line 154) | public string GetInstanceValue() => this.instanceValue; FILE: test/Grains/TestGrains/SimpleGenericGrain.cs class SimpleGenericGrain (line 5) | public class SimpleGenericGrain : Grain, ISimpleGenericGrain method Set (line 9) | public virtual Task Set(TType t) method Transform (line 15) | public virtual Task Transform() method Get (line 20) | public Task Get() method CompareGrainReferences (line 25) | public Task CompareGrainReferences(ISimpleGenericGrain clientRe... FILE: test/Grains/TestGrains/SimpleGrain.cs class SimpleGrain (line 10) | public class SimpleGrain : Grain, ISimpleGrain method SimpleGrain (line 16) | public SimpleGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 24) | public override Task OnActivateAsync(CancellationToken cancellationToken) method SetA (line 30) | public Task SetA(int a) method SetB (line 37) | public Task SetB(int b) method IncrementA (line 43) | public Task IncrementA() method GetAxB (line 49) | public Task GetAxB() method GetAxB (line 54) | public Task GetAxB(int a, int b) method GetA (line 59) | public Task GetA() method OnDeactivateAsync (line 64) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... FILE: test/Grains/TestGrains/SimpleObserverableGrain.cs class SimpleObserverableGrain (line 7) | public class SimpleObserverableGrain : Grain, ISimpleObserverableGrain method SimpleObserverableGrain (line 15) | public SimpleObserverableGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 22) | public override Task OnActivateAsync(CancellationToken cancellationToken) method SetA (line 28) | public async Task SetA(int a) method SetB (line 45) | public async Task SetB(int b) method IncrementA (line 61) | public async Task IncrementA() method GetAxB (line 66) | public Task GetAxB() method GetAxB (line 71) | public Task GetAxB(int a, int b) method GetA (line 76) | public Task GetA() method Subscribe (line 81) | public Task Subscribe(ISimpleGrainObserver observer) method Unsubscribe (line 87) | public Task Unsubscribe(ISimpleGrainObserver observer) method GetRuntimeInstanceId (line 93) | public Task GetRuntimeInstanceId() method RaiseStateUpdateEvent (line 98) | protected void RaiseStateUpdateEvent() FILE: test/Grains/TestGrains/SimplePersistentGrain.cs class SimplePersistentGrain_State (line 8) | [Serializable] class SimplePersistentGrain (line 21) | public class SimplePersistentGrain : Grain,... method SimplePersistentGrain (line 26) | public SimplePersistentGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 31) | public override Task OnActivateAsync(CancellationToken cancellationToken) method SetA (line 37) | public Task SetA(int a) method SetA (line 43) | public Task SetA(int a, bool deactivate) method SetB (line 50) | public Task SetB(int b) method IncrementA (line 56) | public Task IncrementA() method GetAxB (line 62) | public Task GetAxB() method GetAxB (line 67) | public Task GetAxB(int a, int b) method GetA (line 72) | public Task GetA() method GetVersion (line 77) | public Task GetVersion() method GetRequestContext (line 82) | public Task GetRequestContext() method SetRequestContext (line 88) | public Task SetRequestContext(int data) FILE: test/Grains/TestGrains/SimpleStreams/SimpleSubscriberGrain.cs type ISubscriberGrain (line 5) | public interface ISubscriberGrain : IGrainWithStringKey method GetErrors (line 7) | Task> GetErrors(ChannelId streamId); method GetValues (line 9) | Task> GetValues(ChannelId streamId); method GetOnPublishedCounter (line 11) | Task GetOnPublishedCounter(); method ThrowsOnReceive (line 13) | Task ThrowsOnReceive(bool throwsOnReceive); type ISimpleSubscriberGrain (line 16) | public interface ISimpleSubscriberGrain : ISubscriberGrain { } type IRegexNamespaceSubscriberGrain (line 18) | public interface IRegexNamespaceSubscriberGrain : ISubscriberGrain { } class SubscriberGrainBase (line 20) | public abstract class SubscriberGrainBase : Grain, ISubscriberGrain, IOn... method GetErrors (line 27) | public Task> GetErrors(ChannelId streamId) => _errors.... method GetValues (line 28) | public Task> GetValues(ChannelId streamId) => _values.TryGet... method GetOnPublishedCounter (line 29) | public Task GetOnPublishedCounter() => Task.FromResult(_onPublish... method OnSubscribed (line 31) | public Task OnSubscribed(IBroadcastChannelSubscription streamSubscript... method ThrowsOnReceive (line 62) | public Task ThrowsOnReceive(bool throwsOnReceive) class SimpleSubscriberGrain (line 69) | [ImplicitChannelSubscription] class RegexNamespaceSubscriberGrain (line 72) | [RegexImplicitChannelSubscription("multiple-namespaces-(.)+")] FILE: test/Grains/TestGrains/SlowConsumingGrains/SlowConsumingGrain.cs class SlowConsumingGrain (line 10) | public class SlowConsumingGrain : Grain, ISlowConsumingGrain method SlowConsumingGrain (line 16) | public SlowConsumingGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 21) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetNumberConsumed (line 28) | public Task GetNumberConsumed() method BecomeConsumer (line 33) | public async Task BecomeConsumer(Guid streamId, string streamNamespace... method StopConsuming (line 42) | public async Task StopConsuming() class SlowObserver (line 57) | public class SlowObserver : IAsyncObserver method SlowObserver (line 64) | internal SlowObserver(SlowConsumingGrain grain, ILogger logger) method OnNextAsync (line 71) | public async Task OnNextAsync(T item, StreamSequenceToken token = null) method OnCompletedAsync (line 88) | public Task OnCompletedAsync() method OnErrorAsync (line 94) | public Task OnErrorAsync(Exception ex) FILE: test/Grains/TestGrains/SpecializedSimpleGenericGrain.cs class SpecializedSimpleGenericGrain (line 3) | public class SpecializedSimpleGenericGrain : SimpleGenericGrain method Transform (line 5) | public override Task Transform() FILE: test/Grains/TestGrains/StatelessWorkerExceptionGrain.cs class StatelessWorkerExceptionGrain (line 7) | [StatelessWorker(MaxLocalWorkers)] method StatelessWorkerExceptionGrain (line 12) | public StatelessWorkerExceptionGrain() method Ping (line 17) | public Task Ping() FILE: test/Grains/TestGrains/StatelessWorkerGrain.cs class StatelessWorkerGrain (line 8) | [StatelessWorker(MaxLocalWorkers, removeIdleWorkers: false)] method StatelessWorkerGrain (line 18) | public StatelessWorkerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 23) | public override Task OnActivateAsync(CancellationToken cancellationToken) method LongCall (line 30) | public Task LongCall() method TimerCallback (line 59) | private static Task TimerCallback(TaskCompletionSource state, Ca... method GetCallStats (line 65) | public Task>>> GetC... method DummyCall (line 83) | public Task DummyCall() => Task.CompletedTask; FILE: test/Grains/TestGrains/StatelessWorkerScalingGrain.cs class StatelessWorkerScalingGrainSharedState (line 8) | public class StatelessWorkerScalingGrainSharedState class StatelessWorkerScalingGrain (line 15) | [StatelessWorker(maxLocalWorkers: 4)] method StatelessWorkerScalingGrain (line 20) | public StatelessWorkerScalingGrain(StatelessWorkerScalingGrainSharedSt... method Wait (line 27) | public async Task Wait() method Release (line 34) | public Task Release() method GetActivationCount (line 40) | public Task GetActivationCount() => Task.FromResult(_shared.Activ... method GetWaitingCount (line 41) | public Task GetWaitingCount() => Task.FromResult(_shared.WaitingA... FILE: test/Grains/TestGrains/StatelessWorkerStreamConsumerGrain.cs class StatelessWorkerStreamConsumerGrain (line 8) | [StatelessWorker(MaxLocalWorkers)] method StatelessWorkerStreamConsumerGrain (line 16) | public StatelessWorkerStreamConsumerGrain(ILoggerFactory loggerFactory) method OnCompletedAsync (line 21) | public Task OnCompletedAsync() => Task.CompletedTask; method OnErrorAsync (line 23) | public Task OnErrorAsync(Exception ex) => Task.CompletedTask; method OnNextAsync (line 25) | public Task OnNextAsync(string item, StreamSequenceToken token = null)... method BecomeConsumer (line 27) | public async Task BecomeConsumer(Guid streamId, string providerToUse) FILE: test/Grains/TestGrains/StatelessWorkerStreamProducerGrain.cs class StatelessWorkerStreamProducerGrain (line 8) | [StatelessWorker(MaxLocalWorkers)] method StatelessWorkerStreamProducerGrain (line 16) | public StatelessWorkerStreamProducerGrain(ILoggerFactory loggerFactory) method Produce (line 21) | public async Task Produce(Guid streamId, string providerToUse, string ... FILE: test/Grains/TestGrains/StatelessWorkerWithMayInterleaveGrain.cs class StatelessWorkerWithMayInterleaveGrain (line 7) | [StatelessWorker(1)] // '1' to force interleaving, otherwise it just cre... method MayInterleaveMethod (line 11) | public static bool MayInterleaveMethod(IInvokable req) => req.GetMetho... method GoSlow (line 13) | public async Task GoSlow(ICallbackGrainObserver callback) method GoFast (line 18) | public async Task GoFast(ICallbackGrainObserver callback) FILE: test/Grains/TestGrains/StatsCollectorGrain.cs class StatsCollectorGrain (line 5) | [PreferLocalPlacement] method ReportStatsCalled (line 10) | public Task ReportStatsCalled() method GetReportStatsCallCount (line 16) | public Task GetReportStatsCallCount() FILE: test/Grains/TestGrains/StreamBatchingTestConsumerGrain.cs class BatchingStreamBatchingTestConsumerGrain (line 7) | [ImplicitStreamSubscription(StreamBatchingTestConst.BatchingNameSpace)] method GetConsumptionReport (line 13) | public Task GetConsumptionReport() => Task.FromResu... method OnSubscribed (line 15) | public Task OnSubscribed(IStreamSubscriptionHandleFactory handleFactory) method OnNextBatch (line 23) | private async Task OnNextBatch(IList> items) method OnNext (line 30) | private Task OnNext(string item, StreamSequenceToken token) FILE: test/Grains/TestGrains/StreamCheckpoint.cs class StreamCheckpoint (line 5) | [Serializable] method IsDuplicate (line 22) | public bool IsDuplicate(StreamSequenceToken sequenceToken) method TryUpdateStartToken (line 39) | public bool TryUpdateStartToken(StreamSequenceToken sequenceToken) FILE: test/Grains/TestGrains/StreamInterceptionGrain.cs class StreamInterceptionGrain (line 6) | [ImplicitStreamSubscription("InterceptedStream")] method OnActivateAsync (line 11) | public override async Task OnActivateAsync(CancellationToken cancellat... method GetLastStreamValue (line 24) | public Task GetLastStreamValue() => Task.FromResult(this.lastStre... method Invoke (line 26) | public async Task Invoke(IIncomingGrainCallContext context) FILE: test/Grains/TestGrains/StreamingHistoryGrain.cs class StreamingHistoryGrain (line 7) | public class StreamingHistoryGrain : Grain, IStreamingHistoryGrain, IAsy... method BecomeConsumer (line 12) | public async Task BecomeConsumer(StreamId streamId, string provider, s... method GetReceivedItems (line 18) | public Task> GetReceivedItems() => Task.FromResult(this.rece... method StopBeingConsumer (line 20) | public async Task StopBeingConsumer() method OnCompletedAsync (line 28) | public Task OnCompletedAsync() => Task.CompletedTask; method OnErrorAsync (line 30) | public Task OnErrorAsync(Exception ex) => Task.CompletedTask; method OnNextAsync (line 32) | public Task OnNextAsync(int item, StreamSequenceToken token = null) FILE: test/Grains/TestGrains/StuckGrain.cs class StuckGrain (line 8) | public class StuckGrain : Grain, IStuckGrain method StuckGrain (line 20) | public StuckGrain(ILogger log) method Release (line 25) | public static bool Release(Guid key) method WaitForDeactivationStart (line 38) | public static Task WaitForDeactivationStart(GrainId key) method SetDeactivationStarted (line 53) | public static void SetDeactivationStarted(GrainId key) method BlockCallingTestUntilDeactivation (line 61) | public static void BlockCallingTestUntilDeactivation(GrainId key) method IsActivated (line 71) | public static bool IsActivated(Guid key) method RunForever (line 76) | public Task RunForever() method NonBlockingCall (line 91) | public Task NonBlockingCall() method GetNonBlockingCallCounter (line 97) | public Task GetNonBlockingCallCounter() method DidActivationTryToStart (line 102) | public Task DidActivationTryToStart(GrainId id) method BlockingDeactivation (line 107) | public Task BlockingDeactivation() method OnActivateAsync (line 115) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 146) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... class StuckCleanupGrain (line 167) | public class StuckCleanupGrain : Grain, IStuckCleanGrain method Release (line 169) | public Task Release(Guid key) method IsActivated (line 175) | public Task IsActivated(Guid key) FILE: test/Grains/TestGrains/TestPlacementStrategyFixedSiloDirector.cs class TestPlacementStrategyFixedSiloDirector (line 6) | public class TestPlacementStrategyFixedSiloDirector : IPlacementDirector method OnAddActivation (line 10) | public Task OnAddActivation(PlacementStrategy strategy, P... FILE: test/Grains/TestGrains/ValueTypeTestGrain.cs class ValueTypeTestGrain (line 5) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method ValueTypeTestGrain (line 8) | public ValueTypeTestGrain() method GetStateData (line 12) | public async Task GetStateData() method SetStateData (line 18) | public Task SetStateData(ValueTypeTestData d) FILE: test/Grains/TestGrains/VersionAwarePlacementDirector.cs class VersionAwarePlacementDirector (line 6) | public class VersionAwarePlacementDirector : IPlacementDirector method OnAddActivation (line 10) | public Task OnAddActivation(PlacementStrategy strategy, P... FILE: test/Grains/TestInternalGrainInterfaces/ActivationGCTestGrainInterfaces.cs type IIdleActivationGcTestGrain1 (line 3) | public interface IIdleActivationGcTestGrain1 : IGrainWithGuidKey method Nop (line 5) | Task Nop(); type IIdleActivationGcTestGrain2 (line 8) | public interface IIdleActivationGcTestGrain2 : IGrainWithGuidKey method Nop (line 10) | Task Nop(); type IBusyActivationGcTestGrain1 (line 13) | public interface IBusyActivationGcTestGrain1 : IGrainWithGuidKey method Nop (line 15) | Task Nop(); method Delay (line 16) | Task Delay(TimeSpan dt); method IdentifyActivation (line 17) | Task IdentifyActivation(); type IBusyActivationGcTestGrain2 (line 20) | public interface IBusyActivationGcTestGrain2 : IGrainWithGuidKey method Nop (line 22) | Task Nop(); type ICollectionSpecificAgeLimitForTenSecondsActivationGcTestGrain (line 25) | public interface ICollectionSpecificAgeLimitForTenSecondsActivationGcTes... method Nop (line 27) | Task Nop(); type ICollectionSpecificAgeLimitForZeroSecondsActivationGcTestGrain (line 30) | public interface ICollectionSpecificAgeLimitForZeroSecondsActivationGcTe... method Nop (line 32) | Task Nop(); type IStatelessWorkerActivationCollectorTestGrain1 (line 35) | public interface IStatelessWorkerActivationCollectorTestGrain1 : IGrainW... method Nop (line 37) | Task Nop(); method Delay (line 38) | Task Delay(TimeSpan dt); method IdentifyActivation (line 39) | Task IdentifyActivation(); FILE: test/Grains/TestInternalGrainInterfaces/IClientAddressableTestClientObject.cs type IClientAddressableTestClientObject (line 3) | public interface IClientAddressableTestClientObject : IGrainObserver method OnHappyPath (line 5) | Task OnHappyPath(string message); method OnSadPath (line 6) | Task OnSadPath(string message); method OnSerialStress (line 7) | Task OnSerialStress(int n); method OnParallelStress (line 8) | Task OnParallelStress(int n); FILE: test/Grains/TestInternalGrainInterfaces/IClientAddressableTestGrain.cs type IClientAddressableTestGrain (line 3) | public interface IClientAddressableTestGrain : IGrainWithIntegerKey method SetTarget (line 5) | Task SetTarget(IClientAddressableTestClientObject target); method HappyPath (line 6) | Task HappyPath(string message); method SadPath (line 7) | Task SadPath(string message); method MicroSerialStressTest (line 8) | Task MicroSerialStressTest(int iterationCount); method MicroParallelStressTest (line 9) | Task MicroParallelStressTest(int iterationCount); FILE: test/Grains/TestInternalGrainInterfaces/IClientAddressableTestProducer.cs type IClientAddressableTestProducer (line 3) | public interface IClientAddressableTestProducer : IGrainObserver method Poll (line 5) | Task Poll(); FILE: test/Grains/TestInternalGrainInterfaces/IClientAddressableTestRendezvousGrain.cs type IClientAddressableTestRendezvousGrain (line 3) | public interface IClientAddressableTestRendezvousGrain : IGrainWithInteg... method GetProducer (line 5) | Task GetProducer(); method SetProducer (line 6) | Task SetProducer(IClientAddressableTestProducer producer); FILE: test/Grains/TestInternalGrainInterfaces/IMultifacetFactoryTestGrain.cs type IMultifacetFactoryTestGrain (line 3) | public interface IMultifacetFactoryTestGrain : IGrainWithIntegerKey method GetReader (line 5) | Task GetReader(IMultifacetTestGrain grain); method GetReader (line 6) | Task GetReader(); method GetWriter (line 7) | Task GetWriter(IMultifacetTestGrain grain); method GetWriter (line 8) | Task GetWriter(); method SetReader (line 9) | Task SetReader(IMultifacetReader reader); method SetWriter (line 10) | Task SetWriter(IMultifacetWriter writer); FILE: test/Grains/TestInternalGrainInterfaces/IMultifacetTestGrain.cs type IMultifacetTestGrain (line 3) | public interface IMultifacetTestGrain : IMultifacetReader, IMultifacetWr... FILE: test/Grains/TestInternalGrainInterfaces/IPlacementTestGrain.cs type IDefaultPlacementGrain (line 8) | internal interface IDefaultPlacementGrain : IGrainWithIntegerKey method GetDefaultPlacement (line 10) | Task GetDefaultPlacement(); FILE: test/Grains/TestInternalGrainInterfaces/ISerializerPresenceTest.cs type ISerializerPresenceTest (line 3) | internal interface ISerializerPresenceTest : IGrainWithGuidKey method SerializerExistsForType (line 5) | Task SerializerExistsForType(System.Type param); method TakeSerializedData (line 7) | Task TakeSerializedData(object data); FILE: test/Grains/TestInternalGrainInterfaces/IStressTestGrain.cs type IStressTestGrain (line 5) | internal interface IStressTestGrain : IGrainWithIntegerKey method GetLabel (line 7) | Task GetLabel(); method SetLabel (line 9) | Task SetLabel(string label); method PingOthers (line 11) | Task PingOthers(long[] others); method LookUpMany (line 13) | Task>>>... method Send (line 15) | Task Send(byte[] data); method Echo (line 17) | Task Echo(byte[] data); method Ping (line 19) | Task Ping(byte[] data); method PingWithDelay (line 21) | Task PingWithDelay(byte[] data, TimeSpan delay); method GetGrainReference (line 23) | Task GetGrainReference(); method DeactivateSelf (line 25) | Task DeactivateSelf(); FILE: test/Grains/TestInternalGrains/ActivateDeactivateTestGrain.cs class SimpleActivateDeactivateTestGrain (line 8) | internal class SimpleActivateDeactivateTestGrain : Grain, ISimpleActivat... method SimpleActivateDeactivateTestGrain (line 17) | public SimpleActivateDeactivateTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 22) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 34) | public override async Task OnDeactivateAsync(DeactivationReason reason... method DoSomething (line 45) | public Task DoSomething() method DoDeactivate (line 53) | public Task DoDeactivate() class TailCallActivateDeactivateTestGrain (line 63) | internal class TailCallActivateDeactivateTestGrain : Grain, ITailCallAct... method TailCallActivateDeactivateTestGrain (line 72) | public TailCallActivateDeactivateTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 77) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 93) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method DoSomething (line 108) | public Task DoSomething() method DoDeactivate (line 116) | public Task DoDeactivate() class LongRunningActivateDeactivateTestGrain (line 126) | internal class LongRunningActivateDeactivateTestGrain : Grain, ILongRunn... method LongRunningActivateDeactivateTestGrain (line 135) | public LongRunningActivateDeactivateTestGrain(ILoggerFactory loggerFac... method OnActivateAsync (line 140) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 174) | public override async Task OnDeactivateAsync(DeactivationReason reason... method DoSomething (line 193) | public Task DoSomething() method DoDeactivate (line 201) | public Task DoDeactivate() class TaskActionActivateDeactivateTestGrain (line 211) | internal class TaskActionActivateDeactivateTestGrain : Grain, ITaskActio... method TaskActionActivateDeactivateTestGrain (line 220) | public TaskActionActivateDeactivateTestGrain(ILoggerFactory loggerFact... method OnActivateAsync (line 225) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 280) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method DoSomething (line 301) | public Task DoSomething() method DoDeactivate (line 309) | public Task DoDeactivate() class BadActivateDeactivateTestGrain (line 319) | public class BadActivateDeactivateTestGrain : Grain, IBadActivateDeactiv... method BadActivateDeactivateTestGrain (line 323) | public BadActivateDeactivateTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 328) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 334) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method ThrowSomething (line 340) | public Task ThrowSomething() method GetKey (line 346) | public Task GetKey() class BadConstructorTestGrain (line 354) | internal class BadConstructorTestGrain : Grain, IBadConstructorTestGrain method BadConstructorTestGrain (line 356) | public BadConstructorTestGrain() method OnActivateAsync (line 361) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 366) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method DoSomething (line 371) | public Task DoSomething() class DeactivatingWhileActivatingTestGrain (line 377) | internal class DeactivatingWhileActivatingTestGrain : Grain, IDeactivati... method DeactivatingWhileActivatingTestGrain (line 381) | public DeactivatingWhileActivatingTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 386) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 393) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method DoSomething (line 399) | public Task DoSomething() class CreateGrainReferenceTestGrain (line 406) | internal class CreateGrainReferenceTestGrain : Grain, ICreateGrainRefere... method CreateGrainReferenceTestGrain (line 413) | public CreateGrainReferenceTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 418) | public override Task OnActivateAsync(CancellationToken cancellationToken) method DoSomething (line 426) | public async Task DoSomething() method ForwardCall (line 440) | public async Task ForwardCall(IBadActivateDeactivateTestGrain otherGrain) FILE: test/Grains/TestInternalGrains/ActivationGCTestGrains.cs class IdleActivationGcTestGrain1 (line 7) | public class IdleActivationGcTestGrain1: Grain, IIdleActivationGcTestGrain1 method Nop (line 9) | public Task Nop() class IdleActivationGcTestGrain2 (line 15) | public class IdleActivationGcTestGrain2: Grain, IIdleActivationGcTestGrain2 method Nop (line 17) | public Task Nop() class BusyActivationGcTestGrain1 (line 23) | internal class BusyActivationGcTestGrain1: Grain, IBusyActivationGcTestG... method BusyActivationGcTestGrain1 (line 29) | public BusyActivationGcTestGrain1(ActivationCollector activationCollec... method Nop (line 35) | public Task Nop() method Delay (line 40) | public Task Delay(TimeSpan dt) method IdentifyActivation (line 45) | public Task IdentifyActivation() class BusyActivationGcTestGrain2 (line 51) | public class BusyActivationGcTestGrain2: Grain, IBusyActivationGcTestGrain2 method Nop (line 53) | public Task Nop() class CollectionSpecificAgeLimitForTenSecondsActivationGcTestGrain (line 59) | public class CollectionSpecificAgeLimitForTenSecondsActivationGcTestGrai... method Nop (line 61) | public Task Nop() class CollectionSpecificAgeLimitForZeroSecondsActivationGcTestGrain (line 68) | public class CollectionSpecificAgeLimitForZeroSecondsActivationGcTestGra... method Nop (line 70) | public Task Nop() class StatelessWorkerActivationCollectorTestGrain1 (line 76) | [StatelessWorker] method Nop (line 81) | public Task Nop() method Delay (line 86) | public Task Delay(TimeSpan dt) method IdentifyActivation (line 91) | public Task IdentifyActivation() FILE: test/Grains/TestInternalGrains/ClientAddressableTestConsumerGrain.cs class ClientAddressableTestConsumerGrain (line 5) | public class ClientAddressableTestConsumerGrain : Grain, IClientAddressa... method PollProducer (line 9) | public async Task PollProducer() method Setup (line 14) | public async Task Setup() FILE: test/Grains/TestInternalGrains/ClientAddressableTestGrain.cs class ClientAddressableTestGrain (line 6) | public class ClientAddressableTestGrain : Grain, IClientAddressableTestG... method SetTarget (line 10) | public Task SetTarget(IClientAddressableTestClientObject target) method HappyPath (line 16) | public Task HappyPath(string message) method SadPath (line 21) | public Task SadPath(string message) method MicroSerialStressTest (line 26) | public async Task MicroSerialStressTest(int iterationCount) method MicroParallelStressTest (line 35) | public Task MicroParallelStressTest(int iterationCount) FILE: test/Grains/TestInternalGrains/ClientAddressableTestRendezvousGrain.cs class ClientAddressableTestRendezvousGrain (line 6) | public class ClientAddressableTestRendezvousGrain : Grain, IClientAddres... method GetProducer (line 10) | public Task GetProducer() method SetProducer (line 15) | public Task SetProducer(IClientAddressableTestProducer producer) FILE: test/Grains/TestInternalGrains/CollectionTestGrain.cs class CollectionTestGrain (line 9) | [CollectionAgeLimit("00:05:00")] method CollectionTestGrain (line 20) | public CollectionTestGrain(IGrainContext grainContext) method Logger (line 25) | protected virtual ILogger Logger() method OnActivateAsync (line 30) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 40) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method IncrCounter (line 46) | public virtual Task IncrCounter() method GetAge (line 55) | public Task GetAge() method DeactivateSelf (line 61) | public virtual Task DeactivateSelf() method SetOther (line 68) | public Task SetOther(ICollectionTestGrain other) method GetOtherAge (line 75) | public Task GetOtherAge() method GetRuntimeInstanceId (line 81) | public Task GetRuntimeInstanceId() method GetGrainReference (line 87) | public Task GetGrainReference() method StartTimer (line 93) | public Task StartTimer(TimeSpan timerPeriod, TimeSpan delayPeriod) method TimerCallback (line 99) | private async Task TimerCallback(TimeSpan delayPeriod, CancellationTok... class ReentrantCollectionTestGrain (line 112) | [Reentrant] method ReentrantCollectionTestGrain (line 119) | public ReentrantCollectionTestGrain(IGrainContext grainContext) : base... method Logger (line 123) | protected override ILogger Logger() method OnActivateAsync (line 128) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 137) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method IncrCounter (line 143) | public override async Task IncrCounter() FILE: test/Grains/TestInternalGrains/EchoTaskGrain.cs class EchoTaskGrainState (line 12) | [Serializable] class EchoGrain (line 22) | [StorageProvider(ProviderName = "MemoryStore")] method EchoGrain (line 28) | public EchoGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 33) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetLastEcho (line 39) | public Task GetLastEcho() method Echo (line 44) | public Task Echo(string data) method EchoError (line 51) | public Task EchoError(string data) method EchoNullable (line 58) | public Task EchoNullable(DateTime? value) => Task.FromResul... class EchoTaskGrain (line 61) | [StorageProvider(ProviderName = "MemoryStore")] method EchoTaskGrain (line 69) | public EchoTaskGrain(IInternalGrainFactory internalGrainFactory, ILogg... method GetMyIdAsync (line 76) | public Task GetMyIdAsync() { return Task.FromResult(State.MyId); } method GetLastEchoAsync (line 77) | public Task GetLastEchoAsync() { return Task.FromResult(State.... method OnActivateAsync (line 79) | public override Task OnActivateAsync(CancellationToken cancellationToken) method EchoAsync (line 85) | public Task EchoAsync(string data) method EchoErrorAsync (line 92) | public Task EchoErrorAsync(string data) method EchoErrorAV (line 99) | private Task EchoErrorAV(string data) method AwaitMethodErrorAsync (line 106) | public async Task AwaitMethodErrorAsync(string data) method AwaitAVMethodErrorAsync (line 112) | public async Task AwaitAVMethodErrorAsync(string data) method AwaitAVGrainCallErrorAsync (line 118) | public async Task AwaitAVGrainCallErrorAsync(string data) method BlockingCallTimeoutAsync (line 125) | public Task BlockingCallTimeoutAsync(TimeSpan delay) method BlockingCallTimeoutNoResponseTimeoutOverrideAsync (line 135) | public Task BlockingCallTimeoutNoResponseTimeoutOverrideAsync(Tim... method PingAsync (line 145) | public Task PingAsync() method PingLocalSiloAsync (line 151) | public Task PingLocalSiloAsync() method PingRemoteSiloAsync (line 158) | public Task PingRemoteSiloAsync(SiloAddress siloAddress) method PingOtherSiloAsync (line 164) | public async Task PingOtherSiloAsync() method PingClusterMemberAsync (line 179) | public async Task PingClusterMemberAsync() method GetSiloControlReference (line 196) | private ISiloControl GetSiloControlReference(SiloAddress silo) method OrleansDebuggerHelper_GetGrainInstance_Test (line 201) | public Task OrleansDebuggerHelper_GetGrainInstance_Test() class BlockingEchoTaskGrain (line 219) | [StorageProvider(ProviderName = "MemoryStore")] method BlockingEchoTaskGrain (line 224) | public BlockingEchoTaskGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 229) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetMyId (line 235) | public Task GetMyId() method GetLastEcho (line 240) | public Task GetLastEcho() method Echo (line 245) | public Task Echo(string data) method CallMethodTask_Await (line 256) | public async Task CallMethodTask_Await(string data) method CallMethodAV_Await (line 267) | public async Task CallMethodAV_Await(string data) method CallMethodTask_Block (line 279) | public async Task CallMethodTask_Block(string data) method CallMethodAV_Block (line 295) | public async Task CallMethodAV_Block(string data) class ReentrantBlockingEchoTaskGrain (line 311) | [Reentrant] method ReentrantBlockingEchoTaskGrain (line 317) | public ReentrantBlockingEchoTaskGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 322) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetMyId (line 328) | public Task GetMyId() method GetLastEcho (line 333) | public Task GetLastEcho() method Echo (line 338) | public Task Echo(string data) method CallMethodTask_Await (line 349) | public async Task CallMethodTask_Await(string data) method CallMethodAV_Await (line 360) | public async Task CallMethodAV_Await(string data) method CallMethodTask_Block (line 372) | public async Task CallMethodTask_Block(string data) method CallMethodAV_Block (line 388) | public async Task CallMethodAV_Block(string data) FILE: test/Grains/TestInternalGrains/ErrorGrain.cs class ErrorGrain (line 10) | public class ErrorGrain : SimpleGrain, IErrorGrain method ErrorGrain (line 14) | public ErrorGrain(ILoggerFactory loggerFactory) : base(loggerFactory) method OnActivateAsync (line 18) | public override Task OnActivateAsync(CancellationToken cancellationToken) method LogMessage (line 24) | public Task LogMessage(string msg) method SetAError (line 30) | public Task SetAError(int a) method SetBError (line 37) | public Task SetBError(int a) method GetAxBError (line 42) | public Task GetAxBError() method GetAxBError (line 47) | public Task GetAxBError(int a, int b) method LongMethod (line 52) | public async Task LongMethod(int waitTime) method LongMethodWithError (line 57) | public async Task LongMethodWithError(int waitTime) method DelayMethod (line 63) | public async Task DelayMethod(int milliseconds) method Dispose (line 70) | public Task Dispose() method UnobservedErrorImmediate (line 76) | public Task UnobservedErrorImmediate() method UnobservedErrorDelayed (line 97) | public Task UnobservedErrorDelayed() method UnobservedErrorContinuation2 (line 121) | public Task UnobservedErrorContinuation2() method UnobservedErrorContinuation3 (line 140) | public Task UnobservedErrorContinuation3() method UnobservedIgnoredError (line 164) | public Task UnobservedIgnoredError() method AddChildren (line 179) | public Task AddChildren(List children) method ExecuteDelayed (line 184) | public async Task ExecuteDelayed(TimeSpan delay) FILE: test/Grains/TestInternalGrains/ExtensionTestGrain.cs class ExtensionTestGrain (line 6) | internal class ExtensionTestGrain : Grain, IExtensionTestGrain method ExtensionTestGrain (line 12) | public ExtensionTestGrain(IGrainContext grainContext) method OnActivateAsync (line 17) | public override Task OnActivateAsync(CancellationToken cancellationToken) method InstallExtension (line 24) | public Task InstallExtension(string name) class GenericExtensionTestGrain (line 37) | public class GenericExtensionTestGrain : Grain, IGenericExtensionTest... method GenericExtensionTestGrain (line 43) | public GenericExtensionTestGrain(IGrainContext grainContext) method OnActivateAsync (line 48) | public override Task OnActivateAsync(CancellationToken cancellationToken) method InstallExtension (line 55) | public Task InstallExtension(T name) class GenericGrainWithNonGenericExtension (line 68) | internal class GenericGrainWithNonGenericExtension : Grain, IGenericG... method GenericGrainWithNonGenericExtension (line 73) | public GenericGrainWithNonGenericExtension(IGrainContext grainContext) method DoSomething (line 78) | public Task DoSomething() method OnActivateAsync (line 83) | public override Task OnActivateAsync(CancellationToken cancellationToken) FILE: test/Grains/TestInternalGrains/HashBasedPlacementGrain.cs class HashBasedBasedPlacementGrain (line 7) | [HashBasedPlacement] method GetSiloAddress (line 11) | public Task GetSiloAddress() FILE: test/Grains/TestInternalGrains/InterlockedFlag.cs class InterlockedFlag (line 3) | [Serializable] method InterlockedFlag (line 10) | public InterlockedFlag() method TrySet (line 17) | public bool TrySet() method ThrowNotInitializedIfSet (line 23) | public void ThrowNotInitializedIfSet() method ThrowDisposedIfSet (line 29) | public void ThrowDisposedIfSet(Type type) FILE: test/Grains/TestInternalGrains/MultifacetFactoryTestGrain.cs class MultifacetFactoryTestGrainState (line 5) | [Serializable] class MultifacetFactoryTestGrain (line 15) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method GetReader (line 18) | public Task GetReader(IMultifacetTestGrain grain) method GetReader (line 23) | public Task GetReader() method GetWriter (line 28) | public Task GetWriter(IMultifacetTestGrain grain) method GetWriter (line 33) | public Task GetWriter() method SetReader (line 38) | public Task SetReader(IMultifacetReader reader) method SetWriter (line 44) | public Task SetWriter(IMultifacetWriter writer) FILE: test/Grains/TestInternalGrains/MultifacetTestGrain.cs class MultifacetTestGrainState (line 6) | [Serializable] class MultifacetTestGrain (line 14) | [StorageProvider(ProviderName = "MemoryStore")] method GetRuntimeInstanceId (line 18) | public string GetRuntimeInstanceId() method SetValue (line 23) | public Task SetValue(int x) method GetValue (line 29) | Task IMultifacetReader.GetValue() FILE: test/Grains/TestInternalGrains/ObservableGrain.cs class ObservableGrain (line 7) | public class ObservableGrain : Grain, IObservableGrain, IIncomingGrainCa... method GetValues (line 14) | public IAsyncEnumerable GetValues(CancellationToken cancellati... method GetCanceledCalls (line 15) | public ValueTask> GetCanceledCalls() => new(_canceledCal... method WaitForCall (line 16) | public ValueTask WaitForCall(Guid id) method GetReceivedCallTcs (line 23) | private TaskCompletionSource GetReceivedCallTcs(Guid id) method GetValuesWithError (line 33) | public async IAsyncEnumerable GetValuesWithError(int errorIndex, ... method Complete (line 54) | public ValueTask Complete() method Fail (line 60) | public ValueTask Fail() method Deactivate (line 66) | public ValueTask Deactivate() method OnNext (line 72) | public ValueTask OnNext(string data) => _updates.Writer.WriteAsync(data); method GetIncomingCalls (line 74) | public ValueTask> GetI... method Invoke (line 76) | public Task Invoke(IIncomingGrainCallContext context) method SleepyEnumerable (line 82) | public async IAsyncEnumerable SleepyEnumerable(Guid id, TimeSpan ... FILE: test/Grains/TestInternalGrains/PersistenceTestGrains.cs class TestRuntimeEnvironmentUtility (line 19) | internal static class TestRuntimeEnvironmentUtility method CaptureRuntimeEnvironment (line 21) | public static string CaptureRuntimeEnvironment() class PersistenceGenericGrainState (line 35) | [Serializable] class PersistenceTestGrain (line 47) | [Orleans.Providers.StorageProvider(ProviderName = "test1")] method OnActivateAsync (line 50) | public override Task OnActivateAsync(CancellationToken cancellationToken) method CheckStateInit (line 55) | public Task CheckStateInit() method CheckProviderType (line 66) | public Task CheckProviderType() method DoSomething (line 73) | public Task DoSomething() method DoWrite (line 78) | public Task DoWrite(int val) method DoRead (line 85) | public async Task DoRead() method GetValue (line 91) | public Task GetValue() method DoDelete (line 96) | public async Task DoDelete() class PersistenceTestGenericGrain (line 102) | [Orleans.Providers.StorageProvider(ProviderName = "test1")] class PersistenceProviderErrorGrain (line 108) | [Orleans.Providers.StorageProvider(ProviderName = "ErrorInjector")] method OnActivateAsync (line 113) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetValue (line 118) | public Task GetValue() method DoWrite (line 123) | public Task DoWrite(int val) method DoRead (line 129) | public async Task DoRead() method GetActivationId (line 135) | public Task GetActivationId() => Task.FromResult(_id); class PersistenceUserHandledErrorGrain (line 138) | [Orleans.Providers.StorageProvider(ProviderName = "ErrorInjector")] method PersistenceUserHandledErrorGrain (line 144) | public PersistenceUserHandledErrorGrain(ILoggerFactory loggerFactory, ... method GetValue (line 150) | public Task GetValue() method DoWrite (line 155) | public async Task DoWrite(int val, bool recover) method DoRead (line 172) | public async Task DoRead(bool recover) class PersistenceProviderErrorProxyGrain (line 190) | public class PersistenceProviderErrorProxyGrain : Grain, IPersistencePro... method GetValue (line 194) | public Task GetValue(IPersistenceProviderErrorGrain other) => oth... method DoWrite (line 196) | public Task DoWrite(int val, IPersistenceProviderErrorGrain other) => ... method DoRead (line 198) | public Task DoRead(IPersistenceProviderErrorGrain other) => other... method GetActivationId (line 200) | public Task GetActivationId() => Task.FromResult(_id); class PersistenceErrorGrain (line 203) | [Orleans.Providers.StorageProvider(ProviderName = "test1")] method OnActivateAsync (line 206) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetValue (line 211) | public Task GetValue() method DoWrite (line 216) | public Task DoWrite(int val) method DoWriteError (line 222) | public async Task DoWriteError(int val, bool errorBeforeUpdate) method DoRead (line 230) | public async Task DoRead() method DoReadError (line 236) | public async Task DoReadError(bool errorBeforeRead) class BadProviderTestGrain (line 244) | [Orleans.Providers.StorageProvider(ProviderName = "MissingProvider")] method BadProviderTestGrain (line 249) | public BadProviderTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 254) | public override Task OnActivateAsync(CancellationToken cancellationToken) method DoSomething (line 260) | public Task DoSomething() class PersistenceNoStateTestGrain (line 268) | [Orleans.Providers.StorageProvider(ProviderName = "test1")] method PersistenceNoStateTestGrain (line 273) | public PersistenceNoStateTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 278) | public override Task OnActivateAsync(CancellationToken cancellationToken) method DoSomething (line 284) | public Task DoSomething() class ServiceIdGrain (line 291) | public class ServiceIdGrain : Grain, IServiceIdGrain method ServiceIdGrain (line 295) | public ServiceIdGrain(IOptions clusterOptions) method GetServiceId (line 300) | public Task GetServiceId() class GrainStorageTestGrain (line 306) | [Orleans.Providers.StorageProvider(ProviderName = "GrainStorageForTest")] method OnActivateAsync (line 310) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetValue (line 315) | public Task GetValue() method DoWrite (line 320) | public Task DoWrite(int val) method DoRead (line 326) | public async Task DoRead() method DoDelete (line 332) | public Task DoDelete() method GetStateAsync (line 337) | public ValueTask> GetStateAsync() class GrainStorageGenericGrain (line 350) | [Orleans.Providers.StorageProvider(ProviderName = "GrainStorageForTest")] method OnActivateAsync (line 354) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetValue (line 359) | public Task GetValue() method DoWrite (line 364) | public Task DoWrite(T val) method DoRead (line 370) | public async Task DoRead() method DoDelete (line 376) | public Task DoDelete() class GrainStorageTestGrainExtendedKey (line 382) | [Orleans.Providers.StorageProvider(ProviderName = "GrainStorageForTest")] method OnActivateAsync (line 386) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetValue (line 391) | public Task GetValue() method GetExtendedKeyValue (line 396) | public Task GetExtendedKeyValue() method DoWrite (line 403) | public Task DoWrite(int val) method DoRead (line 409) | public async Task DoRead() method DoDelete (line 415) | public Task DoDelete() class MemoryStorageTestGrain (line 421) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method OnActivateAsync (line 426) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetValue (line 431) | public Task GetValue() method DoWrite (line 436) | public Task DoWrite(int val) method DoRead (line 442) | public async Task DoRead() method DoDelete (line 448) | public Task DoDelete() class NestedPersistenceTestGrainState (line 453) | [Serializable] class UserState (line 466) | [Serializable] method UserState (line 470) | public UserState() class DerivedUserState (line 483) | [Serializable] class UserGrain (line 496) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method SetName (line 501) | public Task SetName(string name) method GetStatus (line 507) | public Task GetStatus() method GetName (line 512) | public Task GetName() method UpdateStatus (line 517) | public Task UpdateStatus(string status) method AddFriend (line 523) | public Task AddFriend(IUser friend) method GetFriends (line 533) | public Task> GetFriends() method GetFriendsStatuses (line 538) | public async Task GetFriendsStatuses() class StateForIReentrentGrain (line 557) | [Serializable] method StateForIReentrentGrain (line 561) | public StateForIReentrentGrain() class ReentrentGrainWithState (line 577) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method ReentrentGrainWithState (line 590) | public ReentrentGrainWithState(ILoggerFactory loggerFactory) method OnActivateAsync (line 595) | public override Task OnActivateAsync(CancellationToken cancellationToken) method PerformSerializedStateUpdate (line 608) | private async Task PerformSerializedStateUpdate() method Setup (line 626) | public Task Setup(IReentrentGrainWithState other) method SetOne (line 633) | public async Task SetOne(int val) method SetTwo (line 646) | public async Task SetTwo(int val) method Test1 (line 659) | public async Task Test1() method Test2 (line 685) | public async Task Test2() method Task_Delay (line 711) | public async Task Task_Delay(bool doStart) method DoDelay (line 730) | private async Task DoDelay(int i) method CheckRuntimeEnvironment (line 737) | private void CheckRuntimeEnvironment() class NonReentrantStressGrainWithoutState (line 768) | internal class NonReentrantStressGrainWithoutState : Grain, INonReentran... method OnActivateAsync (line 778) | public override Task OnActivateAsync(CancellationToken cancellationToken) method SetOne (line 793) | private async Task SetOne(int iter, int level) method Test1 (line 849) | public async Task Test1() method Task_Delay (line 900) | public async Task Task_Delay(bool doStart) method DoDelay (line 919) | private async Task DoDelay(int i) method CheckRuntimeEnvironment (line 926) | private void CheckRuntimeEnvironment() class InternalGrainStateData (line 949) | [Serializable] class InternalGrainWithState (line 957) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method InternalGrainWithState (line 962) | public InternalGrainWithState(ILoggerFactory loggerFactory) method SetOne (line 967) | public Task SetOne(int val) type IBaseStateData (line 975) | public interface IBaseStateData // Note: I am deliberately not using IGr... class StateInheritanceTestGrainData (line 980) | [Serializable] class StateInheritanceTestGrain (line 991) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method StateInheritanceTestGrain (line 996) | public StateInheritanceTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 1001) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetValue (line 1007) | public Task GetValue() method SetValue (line 1014) | public Task SetValue(int val) class SurrogateStateForTypeWithoutPublicConstructorGrain (line 1022) | public sealed class SurrogateStateForTypeWithoutPublicConstructorGrain :... method SurrogateStateForTypeWithoutPublicConstructorGrain (line 1028) | public SurrogateStateForTypeWithoutPublicConstructorGrain( method SetState (line 1036) | public async Task SetState(ExternalTypeWithoutPublicConstructor state) method GetState (line 1042) | public async Task GetState() class ExternalTypeWithoutPublicConstructor (line 1049) | public sealed class ExternalTypeWithoutPublicConstructor method Create (line 1054) | public static ExternalTypeWithoutPublicConstructor Create(int field1, ... method ExternalTypeWithoutPublicConstructor (line 1057) | private ExternalTypeWithoutPublicConstructor(int field1, int field2) type ExternalTypeWithoutPublicConstructorSurrogate (line 1064) | [GenerateSerializer] class ExternalTypeWithoutPublicConstructorSurrogateConverter (line 1071) | [RegisterConverter] method ConvertFromSurrogate (line 1074) | public ExternalTypeWithoutPublicConstructor ConvertFromSurrogate(in Ex... method ConvertToSurrogate (line 1077) | public ExternalTypeWithoutPublicConstructorSurrogate ConvertToSurrogat... class RecordTypeWithoutPublicParameterlessConstructorGrain (line 1086) | public sealed class RecordTypeWithoutPublicParameterlessConstructorGrain... method RecordTypeWithoutPublicParameterlessConstructorGrain (line 1092) | public RecordTypeWithoutPublicParameterlessConstructorGrain( method SetState (line 1100) | public async Task SetState(RecordTypeWithoutPublicParameterlessConstru... method GetState (line 1106) | public async Task Get... type RecordTypeWithoutPublicParameterlessConstructor (line 1113) | [GenerateSerializer] FILE: test/Grains/TestInternalGrains/PersistentStateTestGrains.cs class GrainStorageTestGrain (line 7) | [GrainType("new-test-storage-grain")] method GrainStorageTestGrain (line 13) | public GrainStorageTestGrain( method GetValue (line 20) | public Task GetValue() method DoWrite (line 25) | public Task DoWrite(int val) method DoRead (line 31) | public async Task DoRead() method DoDelete (line 37) | public Task DoDelete() method GetStateAsync (line 42) | public ValueTask> GetStateAsync() class GrainStorageTestGrainExtendedKey (line 53) | [Orleans.Providers.StorageProvider(ProviderName = "GrainStorageForTest")] method GrainStorageTestGrainExtendedKey (line 60) | public GrainStorageTestGrainExtendedKey( method GetValue (line 67) | public Task GetValue() method GetExtendedKeyValue (line 72) | public Task GetExtendedKeyValue() method DoWrite (line 79) | public Task DoWrite(int val) method DoRead (line 85) | public async Task DoRead() method DoDelete (line 91) | public Task DoDelete() class GrainStorageGenericGrain (line 97) | [GrainType("new-test-storage-generic-grain`1")] method GrainStorageGenericGrain (line 103) | public GrainStorageGenericGrain( method GetValue (line 110) | public Task GetValue() method DoWrite (line 115) | public Task DoWrite(T val) method DoRead (line 121) | public async Task DoRead() method DoDelete (line 127) | public Task DoDelete() FILE: test/Grains/TestInternalGrains/PlacementTestGrain.cs class PlacementTestGrainBase (line 17) | internal abstract class PlacementTestGrainBase : Grain method PlacementTestGrainBase (line 27) | public PlacementTestGrainBase( method GetEndpoint (line 39) | public Task GetEndpoint() method GetRuntimeInstanceId (line 44) | public Task GetRuntimeInstanceId() method GetActivationId (line 49) | public Task GetActivationId() method Nop (line 54) | public Task Nop() method StartLocalGrains (line 59) | public Task StartLocalGrains(List keys) method StartPreferLocalGrain (line 67) | public async Task StartPreferLocalGrain(Guid key) method SampleLocalGrainEndpoint (line 74) | private static IEnumerable> SampleLocalGrainEndpoint(... method SampleLocalGrainEndpoint (line 80) | public async Task> SampleLocalGrainEndpoint(Guid key,... method PropagateStatisticsToCluster (line 87) | private static async Task PropagateStatisticsToCluster(IGrainFactory g... method EnableOverloadDetection (line 96) | public Task EnableOverloadDetection(bool enabled) method LatchOverloaded (line 102) | public Task LatchOverloaded() method UnlatchOverloaded (line 116) | public Task UnlatchOverloaded() method LatchCpuUsage (line 130) | public Task LatchCpuUsage(float value) method UnlatchCpuUsage (line 144) | public Task UnlatchCpuUsage() method GetLocation (line 158) | public Task GetLocation() class RandomPlacementTestGrain (line 164) | [RandomPlacement] method RandomPlacementTestGrain (line 167) | public RandomPlacementTestGrain( class PreferLocalPlacementTestGrain (line 177) | [PreferLocalPlacement] method PreferLocalPlacementTestGrain (line 180) | public PreferLocalPlacementTestGrain( class StatelessWorkerPlacementTestGrain (line 190) | [StatelessWorker(1)] method StatelessWorkerPlacementTestGrain (line 193) | public StatelessWorkerPlacementTestGrain( method GetWorkerLimit (line 202) | public ValueTask GetWorkerLimit() class OtherStatelessWorkerPlacementTestGrain (line 214) | [StatelessWorker(2)] method OtherStatelessWorkerPlacementTestGrain (line 217) | public OtherStatelessWorkerPlacementTestGrain( method GetWorkerLimit (line 226) | public ValueTask GetWorkerLimit() class ActivationCountBasedPlacementTestGrain (line 238) | [ActivationCountBasedPlacement] method ActivationCountBasedPlacementTestGrain (line 241) | public ActivationCountBasedPlacementTestGrain( class DefaultPlacementGrain (line 251) | internal class DefaultPlacementGrain : Grain, IDefaultPlacementGrain method GetDefaultPlacement (line 253) | public Task GetDefaultPlacement() class LocalContentGrain (line 263) | [PreferLocalPlacement] method LocalContentGrain (line 270) | public LocalContentGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 275) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Init (line 284) | public Task Init() method GetContent (line 290) | public Task GetContent() class TestContentGrain (line 296) | public class TestContentGrain : Grain, ITestContentGrain method TestContentGrain (line 300) | public TestContentGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 305) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetRuntimeInstanceId (line 311) | public Task GetRuntimeInstanceId() method FetchContentFromLocalGrain (line 317) | public async Task FetchContentFromLocalGrain() FILE: test/Grains/TestInternalGrains/Properties/IsExternalInit.cs class IsExternalInit (line 4) | internal static class IsExternalInit { } FILE: test/Grains/TestInternalGrains/ReminderTestGrain2.cs class ReminderTestGrain2 (line 15) | public class ReminderTestGrain2 : Grain, IReminderTestGrain2, IRemindable method ReminderTestGrain2 (line 33) | public ReminderTestGrain2(IServiceProvider services, IReminderTable re... method OnActivateAsync (line 41) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 52) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method GetReminderStates (line 58) | public Task> GetReminderStates() => ... method StartReminder (line 60) | public async Task StartReminder(string reminderName, T... method ReceiveReminder (line 84) | public Task ReceiveReminder(string reminderName, TickStatus status) method StopReminder (line 126) | public async Task StopReminder(string reminderName) method GetMissingReminders (line 158) | private async Task GetMissingReminders() method StopReminder (line 171) | public async Task StopReminder(IGrainReminder reminder) method GetReminderPeriod (line 181) | public Task GetReminderPeriod(string reminderName) method GetReminderDueTimeAndPeriod (line 186) | public Task<(TimeSpan DueTime, TimeSpan Period)> GetReminderDueTimeAnd... method GetCounter (line 191) | public Task GetCounter(string name) method GetReminderObject (line 199) | public Task GetReminderObject(string reminderName) method GetRemindersList (line 204) | public async Task> GetRemindersList() method GetFileName (line 209) | private string GetFileName(string reminderName) method GetDefaultPeriod (line 214) | public static TimeSpan GetDefaultPeriod(ILogger log) method EraseReminderTable (line 222) | public async Task EraseReminderTable() class ReminderTestCopyGrain (line 232) | public class ReminderTestCopyGrain : Grain, IReminderTestCopyGrain, IRem... method ReminderTestCopyGrain (line 246) | public ReminderTestCopyGrain(IServiceProvider services, ILoggerFactory... method OnActivateAsync (line 252) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 263) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method StartReminder (line 269) | public async Task StartReminder(string reminderName, T... method ReceiveReminder (line 298) | public Task ReceiveReminder(string reminderName, TickStatus status) method StopReminder (line 339) | public async Task StopReminder(string reminderName) method GetMissingReminders (line 358) | private async Task GetMissingReminders() method StopReminder (line 370) | public async Task StopReminder(IGrainReminder reminder) method GetReminderPeriod (line 377) | public Task GetReminderPeriod(string reminderName) method GetCounter (line 382) | public Task GetCounter(string name) method GetReminderObject (line 387) | public async Task GetReminderObject(string reminderName) method GetRemindersList (line 391) | public async Task> GetRemindersList() method GetFileName (line 396) | private string GetFileName(string reminderName) class WrongReminderGrain (line 402) | public class WrongReminderGrain : Grain, IReminderGrainWrong method WrongReminderGrain (line 406) | public WrongReminderGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 411) | public override Task OnActivateAsync(CancellationToken cancellationToken) method StartReminder (line 417) | public async Task StartReminder(string reminderName) class UnvalidatedReminderRegistry (line 427) | internal sealed class UnvalidatedReminderRegistry : GrainServiceClient RegisterOrUpdateReminder(GrainId callingGr... method UnregisterReminder (line 436) | public Task UnregisterReminder(GrainId callingGrainId, IGrainReminder ... method GetReminder (line 439) | public Task GetReminder(GrainId callingGrainId, string... method GetReminders (line 444) | public Task> GetReminders(GrainId callingGrainId) FILE: test/Grains/TestInternalGrains/SerializationTestTypes.cs type IntEnum (line 3) | [GenerateSerializer] type UShortEnum (line 11) | [GenerateSerializer] type CampaignEnemyType (line 19) | [GenerateSerializer] class UnserializableException (line 30) | public class UnserializableException : Exception method UnserializableException (line 32) | public UnserializableException(string message) : base(message) class Unrecognized (line 36) | [Serializable] class ClassWithCustomSerializer (line 46) | [Serializable] method ClassWithCustomSerializer (line 58) | static ClassWithCustomSerializer() FILE: test/Grains/TestInternalGrains/SerializerPresenceTestGrain.cs class SerializerPresenceTestGrain (line 7) | internal class SerializerPresenceTestGrain : Grain, ISerializerPresenceTest method SerializerExistsForType (line 9) | public Task SerializerExistsForType(Type t) method TakeSerializedData (line 14) | public Task TakeSerializedData(object data) FILE: test/Grains/TestInternalGrains/StreamLifecycleTestGrains.cs class StreamLifecycleTestGrainState (line 11) | [Serializable] method StreamLifecycleTestGrainState (line 34) | public StreamLifecycleTestGrainState() class GenericArg (line 40) | public class GenericArg method GenericArg (line 45) | public GenericArg(string a, int b) method Equals (line 51) | public override bool Equals(object obj) method GetHashCode (line 62) | public override int GetHashCode() => HashCode.Combine(A, B); class AsyncObserverArg (line 65) | public class AsyncObserverArg : GenericArg method AsyncObserverArg (line 67) | public AsyncObserverArg(string a, int b) : base(a, b) { } class AsyncObservableArg (line 70) | public class AsyncObservableArg : GenericArg method AsyncObservableArg (line 72) | public AsyncObservableArg(string a, int b) : base(a, b) { } class AsyncStreamArg (line 75) | public class AsyncStreamArg : GenericArg method AsyncStreamArg (line 77) | public AsyncStreamArg(string a, int b) : base(a, b) { } class StreamSubscriptionHandleArg (line 80) | public class StreamSubscriptionHandleArg : GenericArg method StreamSubscriptionHandleArg (line 82) | public StreamSubscriptionHandleArg(string a, int b) : base(a, b) { } class StreamLifecycleTestGrainBase (line 85) | public class StreamLifecycleTestGrainBase : Grain GetReceivedCount() method GetErrorsCount (line 206) | public Task GetErrorsCount() method Ping (line 213) | public Task Ping() method BecomeConsumer (line 219) | public virtual async Task BecomeConsumer(StreamId streamId, string pro... method TestBecomeConsumerSlim (line 230) | public virtual async Task TestBecomeConsumerSlim(StreamId streamId, st... method RemoveConsumer (line 248) | public async Task RemoveConsumer(StreamId streamId, string providerNam... method ClearGrain (line 258) | public async Task ClearGrain() class StreamLifecycleProducerGrain (line 274) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method StreamLifecycleProducerGrain (line 277) | public StreamLifecycleProducerGrain(ILoggerFactory loggerFactory) : ba... method OnActivateAsync (line 281) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 297) | public override async Task OnDeactivateAsync(DeactivationReason reason... method GetSendCount (line 303) | public Task GetSendCount() method GetErrorsCount (line 310) | public Task GetErrorsCount() method Ping (line 317) | public Task Ping() method SendItem (line 323) | public async Task SendItem(int item) method BecomeProducer (line 350) | public async Task BecomeProducer(StreamId streamId, string providerName) method ClearGrain (line 363) | public async Task ClearGrain() method DoDeactivateNoClose (line 371) | public async Task DoDeactivateNoClose() class MyStreamObserver (line 384) | [Serializable] method MyStreamObserver (line 396) | internal MyStreamObserver(ILogger logger) method OnNextAsync (line 401) | public Task OnNextAsync(T item, StreamSequenceToken token) method OnCompletedAsync (line 413) | public Task OnCompletedAsync() method OnErrorAsync (line 422) | public Task OnErrorAsync(Exception ex) class ClosedTypeStreamObserver (line 435) | public class ClosedTypeStreamObserver : MyStreamObserver method ClosedTypeStreamObserver (line 437) | public ClosedTypeStreamObserver(ILogger logger) : base(logger) type IClosedTypeAsyncObservable (line 442) | public interface IClosedTypeAsyncObservable : IAsyncObservable { } class ClosedTypeStreamSubscriptionHandle (line 446) | internal class ClosedTypeStreamSubscriptionHandle : StreamSubscriptionHa... method ClosedTypeStreamSubscriptionHandle (line 448) | public ClosedTypeStreamSubscriptionHandle() : base(null, null) { /* no... FILE: test/Grains/TestInternalGrains/StreamLifecycleTestInternalGrains.cs class StreamLifecycleProducerInternalGrain (line 11) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method StreamLifecycleProducerInternalGrain (line 14) | public StreamLifecycleProducerInternalGrain(ILoggerFactory loggerFacto... method TestInternalRemoveProducer (line 18) | public async Task TestInternalRemoveProducer(Guid streamId, string pro... method DoBadDeactivateNoClose (line 37) | public async Task DoBadDeactivateNoClose() class StreamLifecycleConsumerInternalGrain (line 57) | [Orleans.Providers.StorageProvider(ProviderName = "MemoryStore")] method StreamLifecycleConsumerInternalGrain (line 60) | public StreamLifecycleConsumerInternalGrain(ILoggerFactory loggerFacto... method TestBecomeConsumerSlim (line 65) | public virtual async Task TestBecomeConsumerSlim(Guid streamIdGuid, st... FILE: test/Grains/TestInternalGrains/StreamReliabilityTestGrains.cs class StreamReliabilityTestGrainState (line 11) | [Serializable] method StreamReliabilityTestGrainState (line 35) | public StreamReliabilityTestGrainState() method StreamReliabilityTestGrainState (line 43) | public StreamReliabilityTestGrainState() method StreamReliabilityTestGrain (line 73) | public StreamReliabilityTestGrain(ILoggerFactory loggerFactory, IGrainCo... method OnActivateAsync (line 79) | public override async Task OnActivateAsync(CancellationToken cancellatio... method OnDeactivateAsync (line 117) | public override Task OnDeactivateAsync(DeactivationReason reason, Cancel... method GetConsumerCount (line 123) | public Task GetConsumerCount() method GetReceivedCount (line 129) | public Task GetReceivedCount() method GetErrorsCount (line 135) | public Task GetErrorsCount() method Ping (line 142) | public Task Ping() method AddConsumer (line 149) | public async Task> AddConsumer(Guid streamId... method AddConsumer (line 151) | public async Task> AddConsumer(Guid stream... method RemoveConsumer (line 169) | public async Task RemoveConsumer(Guid streamId, string providerName, Str... method RemoveConsumer (line 171) | public async Task RemoveConsumer(Guid streamId, string providerName, Str... method RemoveAllConsumers (line 182) | public async Task RemoveAllConsumers() method BecomeProducer (line 196) | public async Task BecomeProducer(Guid streamId, string providerName) method RemoveProducer (line 205) | public async Task RemoveProducer(Guid streamId, string providerName) method ClearGrain (line 214) | public async Task ClearGrain() method IsConsumer (line 224) | public Task IsConsumer() method IsProducer (line 230) | public Task IsProducer() method GetConsumerHandlesCount (line 236) | public Task GetConsumerHandlesCount() method GetConsumerObserversCount (line 241) | public async Task GetConsumerObserversCount() method SendItem (line 253) | public async Task SendItem(T item) method SendItem (line 255) | public async Task SendItem(int item) method GetLocation (line 262) | public Task GetLocation() method TryInitStream (line 269) | private void TryInitStream(Guid streamId, string providerName) method ReconnectConsumerHandles (line 289) | private async Task ReconnectConsumerHandles(StreamSubscriptionHandle[... method ReconnectConsumerHandles (line 291) | private async Task ReconnectConsumerHandles(StreamSubscriptionHandle ProduceItem(string data) method ProduceSequentialSeries (line 240) | public async Task ProduceSequentialSeries(int count) method ProduceParallelSeries (line 252) | public Task ProduceParallelSeries(int count) method ProducePeriodicSeries (line 283) | public Task ProducePeriodicSeries(Func, IDisposable... method RemoveTimer (line 297) | private void RemoveTimer(IDisposable handle) method AddNewConsumerGrain (line 324) | public Task AddNewConsumerGrain(Guid consumerGrainId) method StopBeingProducer (line 344) | public Task StopBeingProducer() method VerifyFinished (line 369) | public async Task VerifyFinished() class TimerState (line 381) | private class TimerState : IDisposable method TimerState (line 390) | private TimerState(Func> produceItemFunc, Action<... method NewTimer (line 398) | public static TimerState NewTimer(Func, IDisposab... method StartTimer (line 415) | public void StartTimer() method OnTickAsync (line 424) | private async Task OnTickAsync(object unused) method Dispose (line 435) | public void Dispose() method Dispose (line 441) | protected virtual void Dispose(bool disposing) class Streaming_ProducerGrain (line 452) | [StorageProvider(ProviderName = "MemoryStore")] method Streaming_ProducerGrain (line 460) | public Streaming_ProducerGrain(IGrainContext grainContext) method OnActivateAsync (line 465) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 475) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method BecomeProducer (line 481) | public virtual Task BecomeProducer(Guid streamId, string providerToUse... method ProduceSequentialSeries (line 491) | public virtual async Task ProduceSequentialSeries(int count) method ProduceParallelSeries (line 501) | public virtual async Task ProduceParallelSeries(int count) method ProducePeriodicSeries (line 508) | public virtual async Task ProducePeriodicSeries(int count) method GetExpectedItemsProduced (line 518) | public virtual async Task GetExpectedItemsProduced() method GetItemsProduced (line 525) | public virtual async Task GetItemsProduced() method AddNewConsumerGrain (line 532) | public virtual async Task AddNewConsumerGrain(Guid consumerGrainId) method GetProducerCount (line 540) | public virtual async Task GetProducerCount() method StopBeingProducer (line 548) | public virtual async Task StopBeingProducer() method VerifyFinished (line 557) | public virtual async Task VerifyFinished() method DeactivateProducerOnIdle (line 564) | public virtual Task DeactivateProducerOnIdle() class PersistentStreaming_ProducerGrain (line 572) | [StorageProvider(ProviderName = "MemoryStore")] method PersistentStreaming_ProducerGrain (line 577) | public PersistentStreaming_ProducerGrain(IGrainContext grainContext) :... method OnActivateAsync (line 581) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 602) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method BecomeProducer (line 608) | public override async Task BecomeProducer(Guid streamId, string provid... method ProduceSequentialSeries (line 615) | public override async Task ProduceSequentialSeries(int count) method ProduceParallelSeries (line 622) | public override async Task ProduceParallelSeries(int count) method StopBeingProducer (line 629) | public override async Task StopBeingProducer() method VerifyFinished (line 636) | public override async Task VerifyFinished() class Streaming_ConsumerGrain (line 643) | [StorageProvider(ProviderName = "MemoryStore")] method Streaming_ConsumerGrain (line 651) | public Streaming_ConsumerGrain(IGrainContext grainContext) method OnActivateAsync (line 656) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 665) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method BecomeConsumer (line 671) | public async virtual Task BecomeConsumer(Guid streamId, string provide... method GetItemsConsumed (line 679) | public virtual async Task GetItemsConsumed() method GetConsumerCount (line 686) | public virtual async Task GetConsumerCount() method StopBeingConsumer (line 693) | public virtual async Task StopBeingConsumer() method DeactivateConsumerOnIdle (line 700) | public virtual Task DeactivateConsumerOnIdle() class PersistentStreaming_ConsumerGrain (line 710) | [StorageProvider(ProviderName = "MemoryStore")] method PersistentStreaming_ConsumerGrain (line 715) | public PersistentStreaming_ConsumerGrain(IGrainContext grainContext) :... method OnActivateAsync (line 719) | public override async Task OnActivateAsync(CancellationToken cancellat... method OnDeactivateAsync (line 741) | public override async Task OnDeactivateAsync(DeactivationReason reason... method BecomeConsumer (line 747) | public override async Task BecomeConsumer(Guid streamId, string provid... method StopBeingConsumer (line 754) | public override async Task StopBeingConsumer() class Streaming_Reentrant_ProducerConsumerGrain (line 763) | [Reentrant] method OnActivateAsync (line 768) | public override async Task OnActivateAsync(CancellationToken cancellat... class Streaming_ProducerConsumerGrain (line 777) | public class Streaming_ProducerConsumerGrain : Grain, IStreaming_Produce... method OnActivateAsync (line 784) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 791) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method BecomeProducer (line 797) | public Task BecomeProducer(Guid streamId, string providerToUse, string... method ProduceSequentialSeries (line 804) | public Task ProduceSequentialSeries(int count) method ProduceParallelSeries (line 809) | public Task ProduceParallelSeries(int count) method ProducePeriodicSeries (line 814) | public Task ProducePeriodicSeries(int count) method GetItemsProduced (line 822) | public Task GetItemsProduced() method AddNewConsumerGrain (line 827) | public Task AddNewConsumerGrain(Guid consumerGrainId) method BecomeConsumer (line 832) | public async Task BecomeConsumer(Guid streamId, string providerToUse, ... method GetItemsConsumed (line 839) | public async Task GetItemsConsumed() method GetExpectedItemsProduced (line 844) | public async Task GetExpectedItemsProduced() method GetConsumerCount (line 849) | public async Task GetConsumerCount() method GetProducerCount (line 854) | public async Task GetProducerCount() method StopBeingConsumer (line 859) | public async Task StopBeingConsumer() method StopBeingProducer (line 865) | public async Task StopBeingProducer() method VerifyFinished (line 870) | public async Task VerifyFinished() method DeactivateConsumerOnIdle (line 876) | public Task DeactivateConsumerOnIdle() method DeactivateProducerOnIdle (line 882) | public Task DeactivateProducerOnIdle() class Streaming_ImplicitlySubscribedConsumerGrainBase (line 890) | public abstract class Streaming_ImplicitlySubscribedConsumerGrainBase : ... method OnActivateAsync (line 895) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 904) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method BecomeConsumer (line 910) | public async Task BecomeConsumer(Guid streamGuid, string providerToUse... method GetItemsConsumed (line 927) | public virtual async Task GetItemsConsumed() method GetConsumerCount (line 937) | public virtual Task GetConsumerCount() method StopBeingConsumer (line 953) | public async Task StopBeingConsumer() method DeactivateConsumerOnIdle (line 959) | public Task DeactivateConsumerOnIdle() method OnSubscribed (line 968) | public async Task OnSubscribed(IStreamSubscriptionHandleFactory handle... class Streaming_ImplicitlySubscribedConsumerGrain (line 974) | [ImplicitStreamSubscription("TestNamespace1")] FILE: test/Grains/TestInternalGrains/StreamingImmutabilityTestGrain.cs class StreamingImmutabilityTestGrain (line 6) | public class StreamingImmutabilityTestGrain : Grain, IStreamingImmutabil... method SubscribeToStream (line 11) | public async Task SubscribeToStream(Guid guid, string providerName) method UnsubscribeFromStream (line 17) | public async Task UnsubscribeFromStream() method SendTestObject (line 23) | public async Task SendTestObject(string providerName) method SetTestObjectStringProperty (line 29) | public Task SetTestObjectStringProperty(string value) method GetTestObjectStringProperty (line 38) | public Task GetTestObjectStringProperty() method GetSiloIdentifier (line 43) | public Task GetSiloIdentifier() method OnNextAsync (line 48) | private Task OnNextAsync(StreamImmutabilityTestObject myObject, Stream... class StreamImmutabilityTestObject (line 55) | [Serializable] FILE: test/Grains/TestInternalGrains/StressTestGrain.cs class StressTestGrain (line 11) | internal class StressTestGrain : Grain, IStressTestGrain method StressTestGrain (line 17) | public StressTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 22) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetLabel (line 33) | public Task GetLabel() method SetLabel (line 38) | public Task SetLabel(string label) method GetGrainReference (line 46) | public Task GetGrainReference() method PingOthers (line 51) | public Task PingOthers(long[] others) method LookUpMany (line 63) | public Task Echo(byte[] data) method Ping (line 86) | public Task Ping(byte[] data) method PingWithDelay (line 91) | public async Task PingWithDelay(byte[] data, TimeSpan delay) method Send (line 96) | public Task Send(byte[] data) method DeactivateSelf (line 101) | public Task DeactivateSelf() class ReentrantStressTestGrain (line 108) | [Reentrant] method ReentrantStressTestGrain (line 114) | public ReentrantStressTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 119) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetRuntimeInstanceId (line 126) | public Task GetRuntimeInstanceId() method Echo (line 131) | public Task Echo(byte[] data) method Ping (line 136) | public Task Ping(byte[] data) method PingWithDelay (line 141) | public async Task PingWithDelay(byte[] data, TimeSpan delay) method PingMutableArray (line 146) | public Task PingMutableArray(byte[] data, long nextGrain, bool nextGra... method PingImmutableArray (line 160) | public Task PingImmutableArray(Immutable data, long nextGrain,... method PingMutableDictionary (line 175) | public Task PingMutableDictionary(Dictionary data, long n... method PingImmutableDictionary (line 190) | public Task PingImmutableDictionary(Immutable>... method InterleavingConsistencyTest (line 206) | public async Task InterleavingConsistencyTest(int numItems) class ReentrantLocalStressTestGrain (line 264) | [Reentrant] method ReentrantLocalStressTestGrain (line 271) | public ReentrantLocalStressTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 276) | public override Task OnActivateAsync(CancellationToken cancellationToken) method Echo (line 283) | public Task Echo(byte[] data) method GetRuntimeInstanceId (line 288) | public Task GetRuntimeInstanceId() method Ping (line 293) | public Task Ping(byte[] data) method PingWithDelay (line 298) | public async Task PingWithDelay(byte[] data, TimeSpan delay) method PingMutableArray (line 303) | public Task PingMutableArray(byte[] data, long nextGrain, bool nextGra... method PingImmutableArray (line 317) | public Task PingImmutableArray(Immutable data, long nextGrain,... method PingMutableDictionary (line 332) | public Task PingMutableDictionary(Dictionary data, long n... method PingImmutableDictionary (line 347) | public Task PingImmutableDictionary(Immutable>... FILE: test/Grains/TestInternalGrains/TestExtension.cs class TestExtension (line 5) | internal class TestExtension : ITestExtension method TestExtension (line 10) | public TestExtension(ExtensionTestGrain g, IGrainFactory grainFactory) method CheckExtension_1 (line 16) | public Task CheckExtension_1() method CheckExtension_2 (line 22) | public Task CheckExtension_2() class SimpleExtension (line 29) | public class SimpleExtension : ISimpleExtension method SimpleExtension (line 33) | public SimpleExtension(string someString) method CheckExtension_1 (line 38) | public Task CheckExtension_1() class AutoExtension (line 44) | public class AutoExtension : IAutoExtension method CheckExtension (line 46) | public Task CheckExtension() class GenericTestExtension (line 52) | public class GenericTestExtension : IGenericTestExtension method GenericTestExtension (line 57) | public GenericTestExtension(GenericExtensionTestGrain g, IGrainFact... method CheckExtension_1 (line 63) | public Task CheckExtension_1() method CheckExtension_2 (line 69) | public Task CheckExtension_2() FILE: test/Grains/TestInternalGrains/TestGrain.cs class TestGrain (line 10) | public class TestGrain : Grain, ITestGrain method TestGrain (line 17) | public TestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 22) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 33) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method GetKey (line 39) | public Task GetKey() method GetLabel (line 44) | public Task GetLabel() method DoLongAction (line 49) | public async Task DoLongAction(TimeSpan timespan, string str) method SetLabel (line 55) | public Task SetLabel(string label) method StartTimer (line 62) | public Task StartTimer() method Ticker (line 69) | private Task Ticker(object obj) => Task.CompletedTask; method TimerTick (line 71) | private Task TimerTick(CancellationToken cancellationToken) method TestRequestContext (line 77) | public async Task> TestRequestContext() method GetRuntimeInstanceId (line 99) | public Task GetRuntimeInstanceId() method GetActivationId (line 104) | public Task GetActivationId() method GetGrainReference (line 109) | public Task GetGrainReference() method GetMultipleGrainInterfaces_Array (line 114) | public Task GetMultipleGrainInterfaces_Array() method GetMultipleGrainInterfaces_List (line 124) | public Task> GetMultipleGrainInterfaces_List() class TestGrainLongActivateAsync (line 135) | public class TestGrainLongActivateAsync : Grain, ITestGrainLongOnActivat... method TestGrainLongActivateAsync (line 137) | public TestGrainLongActivateAsync() method OnActivateAsync (line 141) | public override async Task OnActivateAsync(CancellationToken cancellat... method GetKey (line 151) | public Task GetKey() class GuidTestGrain (line 157) | [GrainType("guid-test-grain")] method GuidTestGrain (line 165) | public GuidTestGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 170) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetKey (line 181) | public Task GetKey() method GetLabel (line 186) | public Task GetLabel() method SetLabel (line 191) | public Task SetLabel(string label) method GetRuntimeInstanceId (line 197) | public Task GetRuntimeInstanceId() method GetActivationId (line 202) | public Task GetActivationId() method GetSiloAddress (line 207) | public Task GetSiloAddress() => Task.FromResult(ServicePr... class OneWayGrain (line 210) | internal class OneWayGrain : Grain, IOneWayGrain, ISimpleGrainObserver method OneWayGrain (line 219) | public OneWayGrain(GrainLocator grainLocator) => this.grainLocator = g... method Notify (line 224) | public Task Notify() method Notify (line 230) | public Task Notify(ISimpleGrainObserver observer) method NotifyValueTask (line 237) | public ValueTask NotifyValueTask(ISimpleGrainObserver observer) method NotifyOtherGrain (line 244) | public async Task NotifyOtherGrain(IOneWayGrain otherGrain, ISim... method NotifyOtherGrainValueTask (line 252) | public async Task NotifyOtherGrainValueTask(IOneWayGrain otherGr... method GetOtherGrain (line 260) | public async Task GetOtherGrain() method GetActivationId (line 285) | public Task GetActivationId() method GetActivationAddress (line 290) | public Task GetActivationAddress(IGrain grain) method NotifyOtherGrain (line 301) | public Task NotifyOtherGrain() => this.other.Notify(this.AsReference GetCount() => Task.FromResult(this.count); method Deactivate (line 305) | public Task Deactivate() method ThrowsOneWay (line 311) | public Task ThrowsOneWay() method ThrowsOneWayValueTask (line 316) | public ValueTask ThrowsOneWayValueTask() method GetSiloAddress (line 321) | public Task GetSiloAddress() method GetPrimaryForGrain (line 326) | public Task GetPrimaryForGrain() method StateChanged (line 333) | public void StateChanged(int a, int b) method SendSignalTo (line 339) | public async Task SendSignalTo(IOneWayGrain grain) method SignalSelfViaOther (line 344) | public Task SignalSelfViaOther() => this.other.SendSignalTo(this.AsRef... method WaitForSignal (line 346) | public async Task<(int NumSignals, string SignallerId)> WaitForSignal() method Signal (line 353) | public Task Signal(string id) class CanBeOneWayGrain (line 361) | public class CanBeOneWayGrain : Grain, ICanBeOneWayGrain method Notify (line 365) | public Task Notify() method Notify (line 371) | public Task Notify(ISimpleGrainObserver observer) method NotifyValueTask (line 378) | public ValueTask NotifyValueTask(ISimpleGrainObserver observer) method GetCount (line 385) | public Task GetCount() => Task.FromResult(this.count); method Throws (line 387) | public Task Throws() method ThrowsValueTask (line 392) | public ValueTask ThrowsValueTask() FILE: test/Grains/TestInternalGrains/TimerGrain.cs class TimerGrain (line 11) | public class TimerGrain : Grain, ITimerGrain method TimerGrain (line 23) | public TimerGrain(ILoggerFactory loggerFactory) method OnActivateAsync (line 28) | public override Task OnActivateAsync(CancellationToken cancellationToken) method StopDefaultTimer (line 37) | public Task StopDefaultTimer() method Tick (line 43) | private Task Tick(object data) method GetTimerPeriod (line 77) | public Task GetTimerPeriod() method GetCounter (line 82) | public Task GetCounter() method SetCounter (line 87) | public Task SetCounter(int value) method StartTimer (line 96) | public Task StartTimer(string timerName) method StopTimer (line 104) | public Task StopTimer(string timerName) method LongWait (line 112) | public Task LongWait(TimeSpan time) method Deactivate (line 119) | public Task Deactivate() method ThrowIfDeactivating (line 126) | private void ThrowIfDeactivating() class TimerCallGrain (line 132) | public class TimerCallGrain : Grain, ITimerCallGrain method TimerCallGrain (line 143) | public TimerCallGrain(ILoggerFactory loggerFactory) method GetTickCount (line 148) | public Task GetTickCount() { return Task.FromResult(tickCount); } method GetException (line 149) | public Task GetException() { return Task.FromResult(tickExc... method OnActivateAsync (line 151) | public override Task OnActivateAsync(CancellationToken cancellationToken) method StartTimer (line 158) | public Task StartTimer(string name, TimeSpan delay) method StartTimer (line 168) | public Task StartTimer(string name, TimeSpan delay, string operationType) method RestartTimer (line 179) | public Task RestartTimer(string name, TimeSpan delay) method RestartTimer (line 188) | public Task RestartTimer(string name, TimeSpan delay, TimeSpan period) method StopTimer (line 197) | public Task StopTimer(string name) method RunSelfDisposingTimer (line 211) | public async Task RunSelfDisposingTimer() method TimerTick (line 239) | private async Task TimerTick(object data) method TimerTickAdvanced (line 252) | private async Task TimerTickAdvanced(object data) method ProcessTimerTick (line 279) | private async Task ProcessTimerTick(object data) method CheckRuntimeContext (line 321) | private void CheckRuntimeContext(string what) method LogStatus (line 342) | private void LogStatus(string what) class NonReentrantTimerCallGrain (line 355) | public class NonReentrantTimerCallGrain : Grain, INonReentrantTimerCallG... method NonReentrantTimerCallGrain (line 366) | public NonReentrantTimerCallGrain(ILoggerFactory loggerFactory) method GetTickCount (line 371) | public Task GetTickCount() => Task.FromResult(_tickCount); method GetException (line 372) | public Task GetException() => Task.FromResult(_tickException); method ExternalTick (line 374) | public async Task ExternalTick(string name) method OnActivateAsync (line 379) | public override Task OnActivateAsync(CancellationToken cancellationToken) method StartTimer (line 386) | public Task StartTimer(string name, TimeSpan delay, bool keepAlive) method StopTimer (line 402) | public Task StopTimer(string name) method TimerTick (line 415) | private async Task TimerTick(object data, CancellationToken cancellati... method ProcessTimerTick (line 428) | private async Task ProcessTimerTick(object data, CancellationToken can... method CheckRuntimeContext (line 472) | private void CheckRuntimeContext(string what) method CheckReentrancy (line 493) | private void CheckReentrancy(string what, Guid expected) method LogStatus (line 502) | private void LogStatus(string what, string timerName) class TimerRequestGrain (line 515) | public class TimerRequestGrain : Grain, ITimerRequestGrain method GetRuntimeInstanceId (line 520) | public Task GetRuntimeInstanceId() method StartAndWaitTimerTick (line 525) | public async Task StartAndWaitTimerTick(TimeSpan dueTime) method StartStuckTimer (line 532) | public Task StartStuckTimer(TimeSpan dueTime) method TimerTick (line 539) | private Task TimerTick() method StuckTimerTick (line 545) | private async Task StuckTimerTick(CancellationToken cancellationToken) method TestAllTimerOverloads (line 550) | public Task TestAllTimerOverloads() method PollCompletedTimers (line 631) | public Task PollCompletedTimers() => Task.FromResult(_allTimerCal... method TestCompletedTimerResults (line 632) | public async Task TestCompletedTimerResults() class PocoTimerGrain (line 659) | public class PocoTimerGrain : IGrainBase, IPocoTimerGrain method PocoTimerGrain (line 673) | public PocoTimerGrain(ILoggerFactory loggerFactory, IGrainContext cont... method OnActivateAsync (line 679) | public Task OnActivateAsync(CancellationToken cancellationToken) method StopDefaultTimer (line 688) | public Task StopDefaultTimer() method Tick (line 695) | private Task Tick(object data) method GetTimerPeriod (line 729) | public Task GetTimerPeriod() method GetCounter (line 734) | public Task GetCounter() method SetCounter (line 739) | public Task SetCounter(int value) method StartTimer (line 748) | public Task StartTimer(string timerName) method StopTimer (line 756) | public Task StopTimer(string timerName) method LongWait (line 764) | public Task LongWait(TimeSpan time) method Deactivate (line 771) | public Task Deactivate() method ThrowIfDeactivating (line 778) | private void ThrowIfDeactivating() class PocoTimerCallGrain (line 784) | public class PocoTimerCallGrain : IGrainBase, IPocoTimerCallGrain method PocoTimerCallGrain (line 798) | public PocoTimerCallGrain(ILoggerFactory loggerFactory, IGrainContext ... method GetTickCount (line 805) | public Task GetTickCount() { return Task.FromResult(tickCount); } method GetException (line 806) | public Task GetException() { return Task.FromResult(tickExc... method OnActivateAsync (line 808) | public Task OnActivateAsync(CancellationToken cancellationToken) method StartTimer (line 815) | public Task StartTimer(string name, TimeSpan delay) method StartTimer (line 825) | public Task StartTimer(string name, TimeSpan delay, string operationType) method RestartTimer (line 836) | public Task RestartTimer(string name, TimeSpan delay) method RestartTimer (line 845) | public Task RestartTimer(string name, TimeSpan delay, TimeSpan period) method StopTimer (line 854) | public Task StopTimer(string name) method RunSelfDisposingTimer (line 868) | public async Task RunSelfDisposingTimer() method TimerTick (line 896) | private async Task TimerTick(object data) method TimerTickAdvanced (line 909) | private async Task TimerTickAdvanced(object data) method ProcessTimerTick (line 936) | private async Task ProcessTimerTick(object data) method CheckRuntimeContext (line 978) | private void CheckRuntimeContext(string what) method LogStatus (line 999) | private void LogStatus(string what) class PocoTimerRequestGrain (line 1012) | public class PocoTimerRequestGrain : IGrainBase, IPocoTimerRequestGrain method PocoTimerRequestGrain (line 1019) | public PocoTimerRequestGrain(IGrainContext grainContext) method GetRuntimeInstanceId (line 1024) | public Task GetRuntimeInstanceId() method StartAndWaitTimerTick (line 1029) | public async Task StartAndWaitTimerTick(TimeSpan dueTime) method StartStuckTimer (line 1036) | public Task StartStuckTimer(TimeSpan dueTime) method TimerTick (line 1043) | private Task TimerTick() method StuckTimerTick (line 1049) | private async Task StuckTimerTick(CancellationToken cancellationToken) method TestAllTimerOverloads (line 1054) | public Task TestAllTimerOverloads() method PollCompletedTimers (line 1135) | public Task PollCompletedTimers() => Task.FromResult(_allTimerCal... method TestCompletedTimerResults (line 1136) | public async Task TestCompletedTimerResults() class PocoNonReentrantTimerCallGrain (line 1163) | public class PocoNonReentrantTimerCallGrain : IGrainBase, IPocoNonReentr... method PocoNonReentrantTimerCallGrain (line 1177) | public PocoNonReentrantTimerCallGrain(ILoggerFactory loggerFactory, IG... method GetTickCount (line 1184) | public Task GetTickCount() => Task.FromResult(_tickCount); method GetException (line 1185) | public Task GetException() => Task.FromResult(_tickException); method ExternalTick (line 1187) | public async Task ExternalTick(string name) method OnActivateAsync (line 1192) | public Task OnActivateAsync(CancellationToken cancellationToken) method RunSelfDisposingTimer (line 1199) | public async Task RunSelfDisposingTimer() method StartTimer (line 1225) | public Task StartTimer(string name, TimeSpan delay, bool keepAlive) method StopTimer (line 1241) | public Task StopTimer(string name) method TimerTick (line 1254) | private async Task TimerTick(object data, CancellationToken cancellati... method ProcessTimerTick (line 1267) | private async Task ProcessTimerTick(object data, CancellationToken can... method CheckRuntimeContext (line 1311) | private void CheckRuntimeContext(string what) method CheckReentrancy (line 1332) | private void CheckReentrancy(string what, Guid expected) method LogStatus (line 1341) | private void LogStatus(string what, string timerName) FILE: test/Grains/TestVersionGrains/IVersionTestGrain.cs type IVersionUpgradeTestGrain (line 6) | [Version(1)] method GetVersion (line 12) | Task GetVersion(); method ProxyGetVersion (line 14) | Task ProxyGetVersion(IVersionUpgradeTestGrain other); method LongRunningTask (line 16) | Task LongRunningTask(TimeSpan taskTime); type IVersionPlacementTestGrain (line 20) | [Version(1)] method GetVersion (line 26) | Task GetVersion(); FILE: test/Grains/TestVersionGrains/Program.cs class Program (line 5) | public static class Program method Main (line 7) | public static async Task Main(string[] args) => await StandaloneSiloHo... FILE: test/Grains/TestVersionGrains/VersionGrainsSiloBuilderConfigurator.cs class VersionGrainsSiloBuilderConfigurator (line 12) | public class VersionGrainsSiloBuilderConfigurator : IHostConfigurator method Configure (line 14) | public void Configure(IHostBuilder hostBuilder) method ConfigureServices (line 32) | private void ConfigureServices(IServiceCollection services) FILE: test/Grains/TestVersionGrains/VersionTestGrain.cs class VersionUpgradeTestGrain (line 8) | [RandomPlacement] method VersionUpgradeTestGrain (line 20) | public VersionUpgradeTestGrain(ILogger logger) method GetVersion (line 26) | public Task GetVersion() method ProxyGetVersion (line 32) | public async Task ProxyGetVersion(IVersionUpgradeTestGrain other) method LongRunningTask (line 40) | public async Task LongRunningTask(TimeSpan taskTime) method OnActivateAsync (line 46) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 52) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... class VersionPlacementTestGrain (line 59) | [VersionAwareStrategy] method VersionPlacementTestGrain (line 71) | public VersionPlacementTestGrain(ILogger lo... method GetVersion (line 77) | public Task GetVersion() method OnActivateAsync (line 83) | public override Task OnActivateAsync(CancellationToken cancellationToken) method OnDeactivateAsync (line 89) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... FILE: test/Misc/TestSerializerExternalModels/IsExternalInit.cs class IsExternalInit (line 4) | internal static class IsExternalInit {} FILE: test/Misc/TestSerializerExternalModels/Models.cs type Person2ExternalStruct (line 5) | [GenerateSerializer] type GenericPersonExternalStruct (line 15) | [GenerateSerializer] type ReadonlyGenericPersonExternalStruct (line 25) | [GenerateSerializer] type Person2External (line 36) | [GenerateSerializer] type GenericPersonExternal (line 46) | [GenerateSerializer] FILE: test/Orleans.Analyzers.Tests/AbstractPropertiesCannotBeSerializedAnalyzerTest.cs class AbstractPropertiesCannotBeSerializedAnalyzerTest (line 12) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyGeneratedDiagnostic (line 15) | private async Task VerifyGeneratedDiagnostic(string code) method AliasedAttribute (line 30) | [Fact] method GloballyQualifiedAttribute (line 41) | [Fact] method SimpleAttribute (line 51) | [Fact] method UnrelatedGenericAttribute (line 61) | [Fact] FILE: test/Orleans.Analyzers.Tests/AliasClashAttributeAnalyzerTest.cs class AliasClashAttributeAnalyzerTest (line 12) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyHasDiagnostic (line 15) | private async Task VerifyHasDiagnostic(string code) method VerifyHasNoDiagnostic (line 26) | private async Task VerifyHasNoDiagnostic(string code) method Enum_ShouldTriggerDiagnostic (line 35) | [Fact] method Record_ShouldTriggerDiagnostic (line 52) | [Fact] method RecordStruct_ShouldTriggerDiagnostic (line 69) | [Fact] method Class_ShouldTriggerDiagnostic (line 86) | [Fact] method Struct_ShouldTriggerDiagnostic (line 110) | [Fact] method GrainInterface_ShouldTriggerDiagnostic (line 138) | [Theory] method NonGrainInterface_ShouldNotTriggerDiagnostic (line 157) | [Fact] method GrainInterfaceMethod_ShouldTriggerDiagnostic (line 175) | [Theory] method GrainInterfaceMethod_ShouldNotTriggerDiagnostic (line 193) | [Theory] method DifferentGrainInterfaceMethod_ShouldNotTriggerDiagnostic (line 212) | [Theory] FILE: test/Orleans.Analyzers.Tests/AlwaysInterleaveDiagnosticAnalyzerTests.cs class AlwaysInterleaveDiagnosticAnalyzerTest (line 12) | [TestCategory("BVT"), TestCategory("Analyzer")] method GetDiagnosticsAsync (line 15) | protected override Task<(Diagnostic[], string)> GetDiagnosticsAsync(st... method AlwaysInterleave_Analyzer_NoWarningsIfAttributeIsNotUsed (line 21) | [Fact] method AlwaysInterleave_Analyzer_NoWarningsIfAttributeIsUsedOnInterface (line 33) | [Fact] method AlwaysInterleave_Analyzer_WarningIfAttributeisUsedOnGrainClass (line 47) | [Fact] FILE: test/Orleans.Analyzers.Tests/AtMostOneOrleansConstructorAnalyzerTest.cs class AtMostOneOrleansConstructorAnalyzerTest (line 10) | [TestCategory("BVT"), TestCategory("Analyzer")] method TypeWithMultipleAttributedConstructors_ShouldTriggerDiagnostic (line 13) | [Fact] method TypeWithSingleAttributedConstructor_ShouldNotTriggerDiagnostic (line 39) | [Fact] method TypeWithoutGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 61) | [Fact] method GeneratedCodeWithMultipleAttributedConstructors_ShouldNotTriggerDiagnostic (line 83) | [Fact] method GetDiagnosticsAsync (line 107) | private static async Task GetDiagnosticsAsync(string sou... method CreateCompilation (line 134) | private static CSharpCompilation CreateCompilation(string assemblyName... method GetMetadataReferences (line 141) | private static IReadOnlyCollection GetMetadataRefer... FILE: test/Orleans.Analyzers.Tests/ConfigureAwaitAnalyzerTest.cs class ConfigureAwaitAnalyzerTest (line 20) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyHasDiagnostic (line 29) | private async Task VerifyHasDiagnostic(string code) method VerifyHasNoDiagnostic (line 40) | private async Task VerifyHasNoDiagnostic(string code) method VerifyCodeFix (line 46) | private async Task VerifyCodeFix(string originalCode, string expectedF... method CreateProject (line 101) | private static Project CreateProject(string source) method ConfigureAwaitFalse_InGrainClass_ShouldTriggerDiagnostic (line 147) | [Fact] method ConfigureAwaitFalse_InGenericGrainClass_ShouldTriggerDiagnostic (line 171) | [Fact] method ConfigureAwaitTrue_InGrainClass_ShouldNotTriggerDiagnostic (line 197) | [Fact] method ConfigureAwaitFalse_InPlainClass_ShouldNotTriggerDiagnostic (line 225) | [Fact] method ConfigureAwaitFalse_InClassImplementingNonGrainInterface_ShouldNotTriggerDiagnostic (line 244) | [Fact] method ConfigureAwaitFalse_InClassInheritingNonGrainBase_ShouldNotTriggerDiagnostic (line 268) | [Fact] method ConfigureAwaitFalse_InClassWithDeepNonGrainInheritance_ShouldNotTriggerDiagnostic (line 291) | [Fact] method ConfigureAwaitFalse_InStruct_ShouldNotTriggerDiagnostic (line 319) | [Fact] method ConfigureAwaitFalse_InRecord_ShouldNotTriggerDiagnostic (line 339) | [Fact] method ConfigureAwaitFalse_InRecordStruct_ShouldNotTriggerDiagnostic (line 358) | [Fact] method ConfigureAwaitFalse_InClassImplementingIDisposable_ShouldNotTriggerDiagnostic (line 377) | [Fact] method ConfigureAwaitFalse_InStaticClass_ShouldNotTriggerDiagnostic (line 399) | [Fact] method ConfigureAwaitFalse_InAbstractNonGrainClass_ShouldNotTriggerDiagnostic (line 418) | [Fact] method ConfigureAwaitFalse_InGenericNonGrainClass_ShouldNotTriggerDiagnostic (line 437) | [Fact] method ConfigureAwaitFalse_InNestedClassInsideNonGrain_ShouldNotTriggerDiagnostic (line 456) | [Fact] method ConfigureAwaitOptions_ForceYielding_InNonGrainClass_ShouldNotTriggerDiagnostic (line 479) | [Fact] method NoConfigureAwait_InGrainClass_ShouldNotTriggerDiagnostic (line 504) | [Fact] method ConfigureAwaitFalse_InIGrainBaseImplementation_ShouldTriggerDiagnostic (line 532) | [Fact] method ConfigureAwaitFalse_InISystemTargetImplementation_ShouldTriggerDiagnostic (line 565) | [Fact] method ConfigureAwaitFalse_InLambdaInsideGrain_ShouldTriggerDiagnostic (line 590) | [Fact] method ConfigureAwaitFalse_InNestedClassInsideGrain_ShouldTriggerDiagnostic (line 618) | [Fact] method ConfigureAwaitFalse_InInheritedGrainClass_ShouldTriggerDiagnostic (line 652) | [Fact] method ConfigureAwaitFalse_OnValueTask_InGrainClass_ShouldTriggerDiagnostic (line 684) | [Fact] method ConfigureAwaitFalse_OnGenericValueTask_InGrainClass_ShouldTriggerDiagnostic (line 710) | [Fact] method ConfigureAwaitTrue_OnValueTask_InGrainClass_ShouldNotTriggerDiagnostic (line 736) | [Fact] method ConfigureAwaitFalse_OnValueTask_InNonGrainClass_ShouldNotTriggerDiagnostic (line 762) | [Fact] method ConfigureAwaitFalse_OnIAsyncEnumerable_InGrainClass_ShouldTriggerDiagnostic (line 787) | [Fact] method ConfigureAwaitTrue_OnIAsyncEnumerable_InGrainClass_ShouldNotTriggerDiagnostic (line 823) | [Fact] method ConfigureAwaitFalse_OnIAsyncEnumerable_InNonGrainClass_ShouldNotTriggerDiagnostic (line 859) | [Fact] method NoConfigureAwait_OnIAsyncEnumerable_InGrainClass_ShouldNotTriggerDiagnostic (line 890) | [Fact] method ConfigureAwaitFalse_OnGenericTask_InGrainClass_ShouldTriggerDiagnostic (line 930) | [Fact] method ConfigureAwaitTrue_OnGenericTask_InGrainClass_ShouldNotTriggerDiagnostic (line 954) | [Fact] method ConfigureAwaitOptions_None_InGrainClass_ShouldTriggerDiagnostic (line 983) | [Fact] method ConfigureAwaitOptions_ForceYielding_InGrainClass_ShouldTriggerDiagnostic (line 1010) | [Fact] method ConfigureAwaitOptions_SuppressThrowing_InGrainClass_ShouldTriggerDiagnostic (line 1037) | [Fact] method ConfigureAwaitOptions_ContinueOnCapturedContext_InGrainClass_ShouldNotTriggerDiagnostic (line 1064) | [Fact] method ConfigureAwaitOptions_CombinedWithContinueOnCapturedContext_InGrainClass_ShouldNotTriggerDiagnostic (line 1091) | [Fact] method ConfigureAwaitOptions_CombinedWithoutContinueOnCapturedContext_InGrainClass_ShouldTriggerDiagnostic (line 1118) | [Fact] method ConfigureAwaitOptions_None_InNonGrainClass_ShouldNotTriggerDiagnostic (line 1144) | [Fact] method ConfigureAwaitOptions_None_OnGenericTask_InGrainClass_ShouldTriggerDiagnostic (line 1165) | [Fact] method ConfigureAwaitOptions_ContinueOnCapturedContext_OnGenericTask_InGrainClass_ShouldNotTriggerDiagnostic (line 1191) | [Fact] method CodeFix_ConfigureAwaitFalse_ChangesToTrue (line 1221) | [Fact] method CodeFix_ConfigureAwaitFalse_OnValueTask_ChangesToTrue (line 1260) | [Fact] method CodeFix_ConfigureAwaitOptionsNone_ChangesToContinueOnCapturedContext (line 1303) | [Fact] method CodeFix_ConfigureAwaitOptionsForceYielding_AddsContinueOnCapturedContext (line 1346) | [Fact] method CodeFix_ConfigureAwaitOptionsCombined_AddsContinueOnCapturedContext (line 1389) | [Fact] FILE: test/Orleans.Analyzers.Tests/DiagnosticAnalyzerTestBase.cs class DiagnosticAnalyzerTestBase (line 24) | public abstract class DiagnosticAnalyzerTestBase method CreateDiagnosticAnalyzer (line 52) | protected virtual DiagnosticAnalyzer CreateDiagnosticAnalyzer() => new... method AssertNoDiagnostics (line 60) | protected async Task AssertNoDiagnostics(string source, params string[... method GetDiagnosticsAsync (line 73) | protected virtual async Task<(Diagnostic[], string)> GetDiagnosticsAsy... method GetDiagnosticsFullSourceAsync (line 86) | protected async Task GetDiagnosticsFullSourceAsync(strin... method CreateProject (line 105) | private static Project CreateProject(string source) FILE: test/Orleans.Analyzers.Tests/GenerateAliasAttributesAnalyzerTest.cs class GenerateAliasAttributesAnalyzerTest (line 16) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyHasDiagnostic (line 19) | private async Task VerifyHasDiagnostic(string code, int diagnosticsCou... method VerifyHasNoDiagnostic (line 32) | private async Task VerifyHasNoDiagnostic(string code) method GrainInterfaceWithoutAliasAttribute_ShouldTriggerDiagnostic (line 44) | [Theory] method GrainInterfaceWithAliasAttribute_ShouldNotTriggerDiagnostic (line 64) | [Theory] method NonGrainInterfaceWithoutAliasAttribute_ShouldNotTriggerDiagnostic (line 86) | [Fact] method ReferencedGrainInterfaceWithoutAliasAttribute_ShouldNotCrashAnalyzer (line 102) | [Fact] method ClassWithoutAliasAttribute_AndWithGenerateSerializerAttribute_ShouldTriggerDiagnostic (line 128) | [Fact] method StructWithoutAliasAttribute_AndWithGenerateSerializerAttribute_ShouldTriggerDiagnostic (line 135) | [Fact] method RecordClassWithoutAliasAttribute_AndWithGenerateSerializerAttribute_ShouldTriggerDiagnostic (line 142) | [Fact] method RecordStructWithoutAliasAttribute_AndWithGenerateSerializerAttribute_ShouldTriggerDiagnostic (line 149) | [Fact] method ClassWithAliasAttribute_AndWithGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 156) | [Fact] method StructWithAliasAttribute_AndWithGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 160) | [Fact] method RecordClassWithAliasAttribute_AndWithGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 164) | [Fact] method RecordStructWithAliasAttribute_AndWithGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 168) | [Fact] method ClassWithoutAliasAttribute_AndWithoutGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 176) | [Fact] method StructWithoutAliasAttribute_AndWithoutGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 180) | [Fact] method RecordClassWithoutAliasAttribute_AndWithoutGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 184) | [Fact] method RecordStructWithoutAliasAttribute_AndWithoutGenerateSerializerAttribute_ShouldNotTriggerDiagnostic (line 188) | [Fact] method GetDiagnosticsWithReferencedAssemblyAsync (line 194) | private static async Task GetDiagnosticsWithReferencedAs... method GetMetadataReferences (line 221) | private static IReadOnlyCollection GetMetadataRefer... FILE: test/Orleans.Analyzers.Tests/GenerateGenerateSerializerAttributeAnalyzerTest.cs class GenerateGenerateSerializerAttributeAnalyzerTest (line 13) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyGeneratedDiagnostic (line 16) | private async Task VerifyGeneratedDiagnostic(string code) method VerifyNoDiagnostic (line 28) | private async Task VerifyNoDiagnostic(string code) method SerializableClass (line 38) | [Fact] method SerializableStruct (line 46) | [Fact] method SerializableRecord (line 54) | [Fact] method SerializableRecordStruct (line 62) | [Fact] method SerializableClassWithGenerateSerializer_ShouldNotTriggerDiagnostic (line 66) | [Fact] FILE: test/Orleans.Analyzers.Tests/GenerateSerializationAttributesAnalyzerTest.cs class GenerateSerializationAttributesAnalyzerTest (line 13) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyGeneratedDiagnostic (line 16) | private async Task VerifyGeneratedDiagnostic(string code) method SerializableClass (line 32) | [Fact] method SerializableStruct (line 40) | [Fact] method SerializableRecord (line 48) | [Fact] method SerializableRecordClass (line 56) | [Fact] method SerializableRecordStruct (line 64) | [Fact] FILE: test/Orleans.Analyzers.Tests/GrainInterfaceMethodReturnTypeDiagnosticAnalyzerTest.cs class GrainInterfaceMethodReturnTypeDiagnosticAnalyzerTest (line 14) | [TestCategory("BVT"), TestCategory("Analyzer")] method GrainInterfaceMethodReturnTypeNoError (line 25) | [Fact] method IncompatibleGrainInterfaceMethodReturnType (line 65) | [Fact] method StaticInterfaceMethodsWithRegularReturnsAreAllowed (line 91) | [Fact] FILE: test/Orleans.Analyzers.Tests/GrainInterfacePropertyDiagnosticAnalyzerTest.cs class GrainInterfacePropertyDiagnosticAnalyzerTest (line 14) | [TestCategory("BVT"), TestCategory("Analyzer")] method GrainInterfacePropertyNoError (line 24) | [Fact] method NoPropertiesAllowedInGrainInterface (line 43) | [Fact] method NoPropertiesAllowedInIAddressableInterface (line 69) | [Fact] method NoPropertiesAllowedInIGrainObserverInterface (line 95) | [Fact] method StaticInterfacePropertiesAllowedInGrainInterface (line 121) | [Fact] method StaticInterfacePropertiesAllowedInAddressableInterface (line 141) | [Fact] FILE: test/Orleans.Analyzers.Tests/IdClashAttributeAnalyzerTest.cs class IdClashAttributeAnalyzerTest (line 13) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyHasDiagnostic (line 16) | private async Task VerifyHasDiagnostic(string code, int diagnosticsCount) method VerifyHasNoDiagnostic (line 29) | private async Task VerifyHasNoDiagnostic(string code) method TypesWithGenerateSerializerAndDuplicatedIds_ShouldTriggerDiagnostic (line 40) | [Fact] method TypesWithGenerateSerializerAndNoDuplicatedIds_ShouldNoTriggerDiagnostic (line 82) | [Fact] method TypesWithoutGenerateSerializerAndDuplicatedIds_ShouldNotTriggerDiagnostic (line 125) | [Fact] FILE: test/Orleans.Analyzers.Tests/IncorrectAttributeUseAnalyzerTest.cs class IncorrectAttributeUseAnalyzerTest (line 13) | [TestCategory("BVT"), TestCategory("Analyzer")] method VerifyHasDiagnostic (line 16) | private async Task VerifyHasDiagnostic(string code) method VerifyHasNoDiagnostic (line 27) | private async Task VerifyHasNoDiagnostic(string code) method ClassInheritingFromGrain_HavingAttributeApplied_ShouldTriggerDiagnostic (line 40) | [Theory] method ClassNotInheritingFromGrain_HavingAttributeApplied_ShouldNotTriggerDiagnostic (line 60) | [Theory] method ClassInheritingFromGrain_NotHavingAttributeApplied_ShouldNotTriggerDiagnostic (line 79) | [Fact] method ClassInheritingFromGenericGrain_HavingAttributeApplied_ShouldTriggerDiagnostic (line 101) | [Theory] method ClassNotInheritingFromGenericGrain_HavingAttributeApplied_ShouldNotTriggerDiagnostic (line 126) | [Theory] method ClassInheritingFromGenericGrain_NotHavingAttributeApplied_ShouldNotTriggerDiagnostic (line 145) | [Fact] FILE: test/Orleans.Analyzers.Tests/NoRefParamsDiagnosticAnalyzerTest.cs class NoRefParamsDiagnosticAnalyzerTest (line 13) | [TestCategory("BVT"), TestCategory("Analyzer")] method NoRefParamsAllowedInGrainInterfaceMethods (line 21) | [Fact] method NoOutParamsAllowedInGrainInterfaceMethods (line 45) | [Fact] method NoRefParamsDiagnosticAnalyzerInClass (line 68) | [Fact] method NoRefParamsDiagnosticAnalyzerNoError (line 104) | [Fact] method OutAndRefParamsAllowedInStaticGrainInterfaceMethods (line 134) | [Fact] FILE: test/Orleans.CodeGenerator.Tests/OrleansSourceGeneratorTests.cs class OrleansSourceGeneratorTests (line 28) | public class OrleansSourceGeneratorTests method TestBasicClass (line 34) | [Fact] method TestBasicClassWithoutNamespace (line 54) | [Fact] method TestBasicClassWithDifferentAccessModifiers (line 65) | [Fact] method TestBasicClassWithAnnotatedFields (line 92) | [Fact] method TestBasicClassWithInheritance (line 118) | [Fact] method TestBasicStruct (line 153) | [Fact] method TestRecords (line 174) | [Fact] method TestGenericClass (line 196) | [Fact] method TestClassReferenceProperties (line 230) | [Fact] method TestClassPrimitiveTypes (line 261) | [Fact] method TestClassPrimitiveTypesUsingFullName (line 326) | [Fact] method TestClassNestedTypes (line 397) | [Fact] method TestAlias (line 449) | [Fact] method TestCompoundTypeAlias (line 475) | [Fact] method TestClassWithParameterizedConstructor (line 504) | [Fact] method TestGenericClassWithConstructorParameters (line 538) | [Fact] method TestClassWithNoPublicConstructors (line 569) | [Fact] method TestClassWithOptionalConstructorParameters (line 584) | [Fact] method TestClassWithInterfaceConstructorParameter (line 608) | [Fact] method TestClassesWithGeneratedActivatorConstructorAnnotation (line 630) | [Fact] method TestClassWithGenerateMethodSerializersAnnotation (line 656) | [Fact] method TestClassWithGenerateSerializerAnnotation (line 668) | [Fact] method TestBasicGrain (line 697) | [Fact] method TestGrainWithDifferentKeyTypes (line 727) | [Fact] method TestGrainComplexGrain (line 794) | [Fact] method TestGrainWithMultipleInterfaces (line 831) | [Fact] method TestGrainMethodAnnotatedWithResponseTimeout (line 861) | [Fact] method TestGrainMethodAnnotatedWithInvokableBaseType (line 883) | [Fact] method TestWithUseActivatorAnnotation (line 925) | [Fact] method TestWithSerializerTransparentAnnotation (line 943) | [Fact] method TestWithSuppressReferenceTrackingAttribute (line 954) | [Fact] method TestWithOmitDefaultMemberValuesAnnotation (line 967) | [Fact] method EmitsWarningForGenerateSerializerInReferenceAssembly (line 985) | [Fact] method RemovedCustomAttributeBuildPropertiesAreIgnored (line 1019) | [Fact] method RunSourceGenerator (line 1084) | private static GeneratorRunResult RunSourceGenerator( method AssertSuccessfulSourceGeneration (line 1106) | private static async Task AssertSuccessfulSourceGeneration(string code) class TestAnalyzerConfigOptionsProvider (line 1121) | private sealed class TestAnalyzerConfigOptionsProvider : AnalyzerConfi... method TestAnalyzerConfigOptionsProvider (line 1126) | public TestAnalyzerConfigOptionsProvider(IReadOnlyDictionary... method GetOptions (line 1135) | public override AnalyzerConfigOptions GetOptions(AdditionalText text... class TestAnalyzerConfigOptions (line 1138) | private sealed class TestAnalyzerConfigOptions : AnalyzerConfigOptions method TestAnalyzerConfigOptions (line 1142) | public TestAnalyzerConfigOptions(IReadOnlyDictionary... method TryGetValue (line 1147) | public override bool TryGetValue(string key, out string value) => _o... method CreateCompilation (line 1155) | private static async Task CreateCompilation(string ... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestAlias.verified.cs class Codec_MyTypeAliasStruct (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 46) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 56) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 67) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 70) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicClass.verified.cs class Codec_DemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 46) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 62) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoData (line 81) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 84) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 97) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoData (line 104) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 107) | public global::TestProject.DemoData Create() => new global::TestProjec... class Metadata_TestProject (line 110) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 113) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicClassWithAnnotatedFields.verified.cs class Codec_DemoDataWithFields (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoDataWithFields (line 22) | public Codec_DemoDataWithFields(global::Orleans.Serialization.Activato... method Serialize (line 27) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 35) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 66) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 82) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoDataWithFields (line 101) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 109) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoDataWithFields (line 122) | public Copier_DemoDataWithFields(global::Orleans.Serialization.Activat... method DeepCopy (line 127) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 135) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 138) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicClassWithDifferentAccessModifiers.verified.cs class Codec_PublicDemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 46) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 62) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_PublicDemoData (line 81) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 84) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 97) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_PublicDemoData (line 104) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 107) | public global::TestProject.PublicDemoData Create() => new global::Test... class Codec_InternalDemoData (line 110) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 114) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 121) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 143) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 159) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_InternalDemoData (line 178) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 181) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 194) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_InternalDemoData (line 201) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 204) | public global::TestProject.InternalDemoData Create() => new global::Te... class Metadata_TestProject (line 207) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 210) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicClassWithFields.verified.cs class Codec_DemoDataWithFields (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoDataWithFields (line 22) | public Codec_DemoDataWithFields(global::Orleans.Serialization.Activato... method Serialize (line 27) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 35) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 66) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 82) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoDataWithFields (line 101) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 109) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoDataWithFields (line 122) | public Copier_DemoDataWithFields(global::Orleans.Serialization.Activat... method DeepCopy (line 127) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 135) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 138) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicClassWithInheritance.verified.cs class Codec_BaseData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 16) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 22) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_BaseData (line 45) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 48) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 54) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_DerivedData (line 61) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DerivedData (line 67) | public Codec_DerivedData(global::Orleans.Serialization.Serializers.ICo... method Serialize (line 73) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 82) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 107) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 123) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DerivedData (line 142) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 147) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DerivedData (line 160) | public Copier_DerivedData(global::Orleans.Serialization.Serializers.IC... method DeepCopy (line 166) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 174) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 177) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicClassWithInitOnlyProperty.verified.cs class Codec_DemoDataWithInitOnly (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 18) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 25) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 47) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 63) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoDataWithInitOnly (line 82) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 86) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 99) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoDataWithInitOnly (line 106) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 109) | public global::TestProject.DemoDataWithInitOnly Create() => new global... class Metadata_TestProject (line 112) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 115) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicClassWithoutNamespace.verified.cs class Codec_DemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 46) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 62) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoData (line 81) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 84) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 97) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoData (line 104) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 107) | public global::DemoData Create() => new global::DemoData(); class Metadata_TestProject (line 116) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 119) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicGrain.verified.cs class Invokable_IBasicGrain_GrainReference_6B0E24A1 (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetArgumentCount (line 20) | public override int GetArgumentCount() => 1; method GetMethodName (line 21) | public override string GetMethodName() => "SayHello"; method GetInterfaceName (line 22) | public override string GetInterfaceName() => "TestProject.IBasicGrain"; method GetActivityName (line 23) | public override string GetActivityName() => "IBasicGrain/SayHello"; method GetInterfaceType (line 24) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 25) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 26) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 27) | public override object GetTarget() => _target; method Dispose (line 28) | public override void Dispose() method GetArgument (line 34) | public override object GetArgument(int index) method SetArgument (line 45) | public override void SetArgument(int index, object value) method InvokeInner (line 58) | protected override global::System.Threading.Tasks.Task InvokeI... class Proxy_IBasicGrain (line 61) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Proxy_IBasicGrain (line 64) | public Proxy_IBasicGrain(global::Orleans.Runtime.GrainReferenceShared ... method SayHello (line 68) | global::System.Threading.Tasks.Task global::TestProject.IBasic... class Codec_Invokable_IBasicGrain_GrainReference_6B0E24A1 (line 76) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 80) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 87) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 109) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 125) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IBasicGrain_GrainReference_6B0E24A1 (line 138) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 141) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_BasicGrain (line 152) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_BasicGrain (line 157) | public Codec_BasicGrain(global::Orleans.Serialization.Serializers.IBas... method Serialize (line 162) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 170) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 177) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 193) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_BasicGrain (line 212) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 216) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_BasicGrain (line 229) | public Copier_BasicGrain(global::Orleans.Serialization.Cloning.IBaseCo... method DeepCopy (line 234) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_BasicGrain (line 241) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 244) | public global::TestProject.BasicGrain Create() => new global::TestProj... class Metadata_TestProject (line 247) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 250) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestBasicStruct.verified.cs class Codec_DemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 46) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 56) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 67) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 70) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassNestedTypes.verified.cs class Codec_DemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoData (line 23) | public Codec_DemoData(global::Orleans.Serialization.Serializers.ICodec... method Serialize (line 30) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 39) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 79) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 95) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoData (line 114) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 120) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoData (line 133) | public Copier_DemoData(global::Orleans.Serialization.Serializers.ICode... method DeepCopy (line 140) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoData (line 149) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 152) | public global::TestProject.DemoData Create() => new global::TestProjec... class Metadata_TestProject (line 155) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 158) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassPrimitiveTypes.verified.cs class Codec_DemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoData (line 19) | public Codec_DemoData(global::Orleans.Serialization.Serializers.ICodec... method Serialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 48) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 223) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 239) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoData (line 258) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 262) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoData (line 275) | public Copier_DemoData(global::Orleans.Serialization.Serializers.ICode... method DeepCopy (line 280) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoData (line 304) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 307) | public global::TestProject.DemoData Create() => new global::TestProjec... class Metadata_TestProject (line 310) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 313) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassPrimitiveTypesUsingFullName.verified.cs class Codec_DemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoData (line 19) | public Codec_DemoData(global::Orleans.Serialization.Serializers.ICodec... method Serialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 48) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 223) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 239) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoData (line 258) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 262) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoData (line 275) | public Copier_DemoData(global::Orleans.Serialization.Serializers.ICode... method DeepCopy (line 280) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoData (line 304) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 307) | public global::TestProject.DemoData Create() => new global::TestProjec... class Metadata_TestProject (line 310) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 313) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassReferenceProperties.verified.cs class Codec_DemoData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoData (line 19) | public Codec_DemoData(global::Orleans.Serialization.Activators.IActiva... method Serialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 34) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 83) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 99) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoData (line 118) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 123) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoData (line 136) | public Copier_DemoData(global::Orleans.Serialization.Activators.IActiv... method DeepCopy (line 141) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 151) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 154) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithConstructorParameters.verified.cs class Codec_DemoDataWithCtorParams (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoDataWithCtorParams (line 20) | public Codec_DemoDataWithCtorParams(global::Orleans.Serialization.Acti... method Serialize (line 25) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 33) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 64) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 80) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoDataWithCtorParams (line 99) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 105) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoDataWithCtorParams (line 118) | public Copier_DemoDataWithCtorParams(global::Orleans.Serialization.Act... method DeepCopy (line 123) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 131) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 134) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithFieldAndNoSetters.verified.cs class Codec_ExternalType (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_ExternalType (line 20) | public Codec_ExternalType(global::Orleans.Serialization.Activators.IAc... method Serialize (line 25) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 32) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 54) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 70) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_ExternalType (line 89) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 95) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_ExternalType (line 108) | public Copier_ExternalType(global::Orleans.Serialization.Activators.IA... method DeepCopy (line 113) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_ExternalType (line 120) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Activator_ExternalType (line 124) | public Activator_ExternalType(int arg0) method Create (line 129) | public global::ExternalType Create() => new global::ExternalType(_arg0); class Metadata_TestProject (line 138) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 141) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithGenerateMethodSerializersAnnotation.verified.cs class Invokable_IMyGrain_GrainReference_6D39E404 (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetArgumentCount (line 20) | public override int GetArgumentCount() => 1; method GetMethodName (line 21) | public override string GetMethodName() => "SayHello"; method GetInterfaceName (line 22) | public override string GetInterfaceName() => "IMyGrain"; method GetActivityName (line 23) | public override string GetActivityName() => "IMyGrain/SayHello"; method GetInterfaceType (line 24) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 25) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 26) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 27) | public override object GetTarget() => _target; method Dispose (line 28) | public override void Dispose() method GetArgument (line 34) | public override object GetArgument(int index) method SetArgument (line 45) | public override void SetArgument(int index, object value) method InvokeInner (line 58) | protected override global::System.Threading.Tasks.Task InvokeI... class Proxy_IMyGrain (line 61) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Proxy_IMyGrain (line 64) | public Proxy_IMyGrain(global::Orleans.Runtime.GrainReferenceShared arg... method SayHello (line 68) | global::System.Threading.Tasks.Task global::IMyGrain.SayHello(... class Codec_Invokable_IMyGrain_GrainReference_6D39E404 (line 76) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 80) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 87) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 109) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 125) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IMyGrain_GrainReference_6D39E404 (line 138) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 141) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 158) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 161) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithGenerateSerializerAnnotation.verified.cs class Codec_MyCustomEnum (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method WriteField (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_ClassWithImplicitFieldIds (line 31) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_ClassWithImplicitFieldIds (line 37) | public Codec_ClassWithImplicitFieldIds(global::Orleans.Serialization.S... method Serialize (line 42) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 50) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 83) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 99) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_ClassWithImplicitFieldIds (line 118) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 121) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 127) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_ClassWithImplicitFieldIds (line 135) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 138) | public global::TestProject.ClassWithImplicitFieldIds Create() => new g... class Metadata_TestProject (line 141) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 144) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithInterfaceConstructorParameter.verified.cs class Codec_InterfaceCtorParam (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_InterfaceCtorParam (line 22) | public Codec_InterfaceCtorParam(global::Orleans.Serialization.Activato... method Serialize (line 28) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 35) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 57) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 73) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_InterfaceCtorParam (line 92) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 99) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_InterfaceCtorParam (line 112) | public Copier_InterfaceCtorParam(global::Orleans.Serialization.Activat... method DeepCopy (line 118) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 125) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 128) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithNoPublicConstructors.verified.cs class Codec_NoPublicCtor (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_NoPublicCtor (line 18) | public Codec_NoPublicCtor(global::Orleans.Serialization.Activators.IAc... method Serialize (line 23) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 30) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 52) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 68) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_NoPublicCtor (line 87) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 91) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_NoPublicCtor (line 104) | public Copier_NoPublicCtor(global::Orleans.Serialization.Activators.IA... method DeepCopy (line 109) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 116) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 119) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithOptionalConstructorParameters.verified.cs class Codec_OptionalCtorParams (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_OptionalCtorParams (line 22) | public Codec_OptionalCtorParams(global::Orleans.Serialization.Activato... method Serialize (line 27) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 35) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 66) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 82) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_OptionalCtorParams (line 101) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 109) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_OptionalCtorParams (line 122) | public Copier_OptionalCtorParams(global::Orleans.Serialization.Activat... method DeepCopy (line 127) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 135) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 138) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassWithParameterizedConstructor.verified.cs class Codec_MyServiceConsumer (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_MyServiceConsumer (line 18) | public Codec_MyServiceConsumer(global::Orleans.Serialization.Activator... method Serialize (line 23) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 30) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 52) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 68) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_MyServiceConsumer (line 87) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 91) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_MyServiceConsumer (line 104) | public Copier_MyServiceConsumer(global::Orleans.Serialization.Activato... method DeepCopy (line 109) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_RootType (line 116) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_RootType (line 122) | public Codec_RootType(global::Orleans.Serialization.Serializers.ICodec... method Serialize (line 127) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 134) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 156) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 172) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_RootType (line 191) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 195) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_RootType (line 208) | public Copier_RootType(global::Orleans.Serialization.Serializers.ICode... method DeepCopy (line 213) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_RootType (line 220) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 223) | public global::TestProject.RootType Create() => new global::TestProjec... class Metadata_TestProject (line 226) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 229) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestClassesWithGeneratedActivatorConstructorAnnotation.verified.cs class Codec_ClassWithGeneratedActivatorConstructor (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 25) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 56) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 72) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_ClassWithGeneratedActivatorConstructor (line 91) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 94) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 107) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_ClassWithGeneratedActivatorConstructor (line 115) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 118) | public global::TestProject.ClassWithGeneratedActivatorConstructor Crea... class Metadata_TestProject (line 121) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 124) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestCompoundTypeAlias.verified.cs class Codec_MyCompoundTypeAliasBaseClass (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 46) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 62) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_MyCompoundTypeAliasBaseClass (line 81) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 84) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 97) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_MyCompoundTypeAliasBaseClass (line 104) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 107) | public global::TestProject.MyCompoundTypeAliasBaseClass Create() => ne... class Codec_MyCompoundTypeAliasClass (line 110) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_MyCompoundTypeAliasClass (line 115) | public Codec_MyCompoundTypeAliasClass(global::Orleans.Serialization.Se... method Serialize (line 120) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 130) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 162) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 178) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_MyCompoundTypeAliasClass (line 197) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 201) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_MyCompoundTypeAliasClass (line 214) | public Copier_MyCompoundTypeAliasClass(global::Orleans.Serialization.S... method DeepCopy (line 219) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_MyCompoundTypeAliasClass (line 228) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 231) | public global::TestProject.MyCompoundTypeAliasClass Create() => new gl... class Metadata_TestProject (line 234) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 237) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestGenericClass.verified.cs class Codec_GenericData (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_GenericData (line 19) | public Codec_GenericData(global::Orleans.Serialization.Serializers.ICo... method Serialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 32) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 63) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 79) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_GenericData (line 98) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 102) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_GenericData (line 115) | public Copier_GenericData(global::Orleans.Serialization.Serializers.IC... method DeepCopy (line 120) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_GenericData (line 128) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 131) | public global::TestProject.GenericData Create() => new global::Test... class Codec_ConcreteUsage (line 134) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_ConcreteUsage (line 142) | public Codec_ConcreteUsage(global::Orleans.Serialization.Serializers.I... method Serialize (line 148) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 156) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 187) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 203) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_ConcreteUsage (line 222) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 227) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_ConcreteUsage (line 240) | public Copier_ConcreteUsage(global::Orleans.Serialization.Serializers.... method DeepCopy (line 246) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_ConcreteUsage (line 254) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 257) | public global::TestProject.ConcreteUsage Create() => new global::TestP... class Metadata_TestProject (line 260) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 263) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestGenericClassWithConstructorParameters.verified.cs class Codec_GenericWithCtor (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_GenericWithCtor (line 24) | public Codec_GenericWithCtor(global::Orleans.Serialization.Activators.... method Serialize (line 30) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 38) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 69) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 85) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_GenericWithCtor (line 104) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 113) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_GenericWithCtor (line 126) | public Copier_GenericWithCtor(global::Orleans.Serialization.Activators... method DeepCopy (line 132) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_UsesGenericWithCtor (line 140) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_UsesGenericWithCtor (line 146) | public Codec_UsesGenericWithCtor(global::Orleans.Serialization.Seriali... method Serialize (line 151) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 158) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 180) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 196) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_UsesGenericWithCtor (line 215) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 219) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_UsesGenericWithCtor (line 232) | public Copier_UsesGenericWithCtor(global::Orleans.Serialization.Serial... method DeepCopy (line 237) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_UsesGenericWithCtor (line 244) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 247) | public global::TestProject.UsesGenericWithCtor Create() => new global:... class Metadata_TestProject (line 250) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 253) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestGrainComplexGrain.verified.cs class Invokable_IComplexGrain_GrainReference_67FE5808 (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetArgumentCount (line 24) | public override int GetArgumentCount() => 4; method GetMethodName (line 25) | public override string GetMethodName() => "ProcessData"; method GetInterfaceName (line 26) | public override string GetInterfaceName() => "TestProject.IComplexGrain"; method GetActivityName (line 27) | public override string GetActivityName() => "IComplexGrain/ProcessData"; method GetInterfaceType (line 28) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 29) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 30) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 37) | public override object GetTarget() => _target; method Dispose (line 38) | public override void Dispose() method GetArgument (line 49) | public override object GetArgument(int index) method SetArgument (line 66) | public override void SetArgument(int index, object value) method InvokeInner (line 88) | protected override global::System.Threading.Tasks.Task g... class Codec_ComplexData (line 125) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 129) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 137) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 168) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 184) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_ComplexData (line 203) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 206) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 219) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_ComplexData (line 227) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 230) | public global::TestProject.ComplexData Create() => new global::TestPro... class Codec_Invokable_IComplexGrain_GrainReference_67FE5808 (line 233) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_Invokable_IComplexGrain_GrainReference_67FE5808 (line 239) | public Codec_Invokable_IComplexGrain_GrainReference_67FE5808(global::O... method Serialize (line 244) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 253) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 293) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 309) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IComplexGrain_GrainReference_67FE5808 (line 322) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 326) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_Invokable_IComplexGrain_GrainReference_67FE5808 (line 339) | public Copier_Invokable_IComplexGrain_GrainReference_67FE5808(global::... class Codec_ComplexGrain (line 345) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_ComplexGrain (line 350) | public Codec_ComplexGrain(global::Orleans.Serialization.Serializers.IB... method Serialize (line 355) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 363) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 370) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 386) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_ComplexGrain (line 405) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 409) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_ComplexGrain (line 422) | public Copier_ComplexGrain(global::Orleans.Serialization.Cloning.IBase... method DeepCopy (line 427) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_ComplexGrain (line 434) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 437) | public global::TestProject.ComplexGrain Create() => new global::TestPr... class Metadata_TestProject (line 440) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 443) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestGrainMethodAnnotatedWithInvokableBaseType.verified.cs class Invokable_IHelloGrain_GrainReference_5336307F (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Invokable_IHelloGrain_GrainReference_5336307F (line 20) | public Invokable_IHelloGrain_GrainReference_5336307F() : base() method GetArgumentCount (line 25) | public override int GetArgumentCount() => 1; method GetMethodName (line 26) | public override string GetMethodName() => "SayHello"; method GetInterfaceName (line 27) | public override string GetInterfaceName() => "TestProject.IHelloGrain"; method GetActivityName (line 28) | public override string GetActivityName() => "IHelloGrain/SayHello"; method GetInterfaceType (line 29) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 30) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 31) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 32) | public override object GetTarget() => _target; method Dispose (line 33) | public override void Dispose() method GetArgument (line 39) | public override object GetArgument(int index) method SetArgument (line 50) | public override void SetArgument(int index, object value) method InvokeInner (line 63) | protected override global::System.Threading.Tasks.Task InvokeI... class Proxy_IHelloGrain (line 66) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Proxy_IHelloGrain (line 69) | public Proxy_IHelloGrain(global::Orleans.Runtime.GrainReferenceShared ... method SayHello (line 73) | global::System.Threading.Tasks.Task global::TestProject.IHello... class Codec_Invokable_IHelloGrain_GrainReference_5336307F (line 81) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 85) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 92) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 114) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 130) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IHelloGrain_GrainReference_5336307F (line 143) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 146) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_HelloGrain (line 157) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_HelloGrain (line 162) | public Codec_HelloGrain(global::Orleans.Serialization.Serializers.IBas... method Serialize (line 167) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 175) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 182) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 198) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_HelloGrain (line 217) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 221) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_HelloGrain (line 234) | public Copier_HelloGrain(global::Orleans.Serialization.Cloning.IBaseCo... method DeepCopy (line 239) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_HelloGrain (line 246) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 249) | public global::TestProject.HelloGrain Create() => new global::TestProj... class Metadata_TestProject (line 252) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 255) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestGrainMethodAnnotatedWithResponseTimeout.verified.cs class Invokable_IResponseTimeoutGrain_GrainReference_6BE752C8 (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetDefaultResponseTimeout (line 21) | public override global::System.TimeSpan? GetDefaultResponseTimeout() =... method GetArgumentCount (line 22) | public override int GetArgumentCount() => 1; method GetMethodName (line 23) | public override string GetMethodName() => "LongRunningMethod"; method GetInterfaceName (line 24) | public override string GetInterfaceName() => "TestProject.IResponseTim... method GetActivityName (line 25) | public override string GetActivityName() => "IResponseTimeoutGrain/Lon... method GetInterfaceType (line 26) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 27) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 28) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 29) | public override object GetTarget() => _target; method Dispose (line 30) | public override void Dispose() method GetArgument (line 36) | public override object GetArgument(int index) method SetArgument (line 47) | public override void SetArgument(int index, object value) method InvokeInner (line 60) | protected override global::System.Threading.Tasks.Task InvokeI... class Proxy_IResponseTimeoutGrain (line 63) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Proxy_IResponseTimeoutGrain (line 66) | public Proxy_IResponseTimeoutGrain(global::Orleans.Runtime.GrainRefere... method LongRunningMethod (line 70) | global::System.Threading.Tasks.Task global::TestProject.IRespo... class Codec_Invokable_IResponseTimeoutGrain_GrainReference_6BE752C8 (line 78) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 82) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 89) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 111) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 127) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IResponseTimeoutGrain_GrainReference_6BE752C8 (line 140) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 143) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 154) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 157) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestGrainWithDifferentKeyTypes.verified.cs class Invokable_IMyGrainWithGuidKey_GrainReference_8F0FEC0E (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetMethodName (line 19) | public override string GetMethodName() => "GetGuidValue"; method GetInterfaceName (line 20) | public override string GetInterfaceName() => "TestProject.IMyGrainWith... method GetActivityName (line 21) | public override string GetActivityName() => "IMyGrainWithGuidKey/GetGu... method GetInterfaceType (line 22) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 23) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 24) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 25) | public override object GetTarget() => _target; method Dispose (line 26) | public override void Dispose() method InvokeInner (line 31) | protected override global::System.Threading.Tasks.Task global::TestP... class Invokable_IMyGrainWithStringKey_GrainReference_43570316 (line 48) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetMethodName (line 54) | public override string GetMethodName() => "GetStringKey"; method GetInterfaceName (line 55) | public override string GetInterfaceName() => "TestProject.IMyGrainWith... method GetActivityName (line 56) | public override string GetActivityName() => "IMyGrainWithStringKey/Get... method GetInterfaceType (line 57) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 58) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 59) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 60) | public override object GetTarget() => _target; method Dispose (line 61) | public override void Dispose() method InvokeInner (line 66) | protected override global::System.Threading.Tasks.Task InvokeI... class Proxy_IMyGrainWithStringKey (line 69) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Proxy_IMyGrainWithStringKey (line 72) | public Proxy_IMyGrainWithStringKey(global::Orleans.Runtime.GrainRefere... method GetStringKey (line 76) | global::System.Threading.Tasks.Task global::TestProject.IMyGra... class Invokable_IMyGrainWithGuidCompoundKey_GrainReference_A9FEF7AF (line 83) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetMethodName (line 89) | public override string GetMethodName() => "GetGuidAndStringKey"; method GetInterfaceName (line 90) | public override string GetInterfaceName() => "TestProject.IMyGrainWith... method GetActivityName (line 91) | public override string GetActivityName() => "IMyGrainWithGuidCompoundK... method GetInterfaceType (line 92) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 93) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 94) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 95) | public override object GetTarget() => _target; method Dispose (line 96) | public override void Dispose() method InvokeInner (line 101) | protected override global::System.Threading.Tasks.Task "GetIntegerAndStringKey"; method GetInterfaceName (line 125) | public override string GetInterfaceName() => "TestProject.IMyGrainWith... method GetActivityName (line 126) | public override string GetActivityName() => "IMyGrainWithIntegerCompou... method GetInterfaceType (line 127) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 128) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 129) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 130) | public override object GetTarget() => _target; method Dispose (line 131) | public override void Dispose() method InvokeInner (line 136) | protected override global::System.Threading.Tasks.Task... class Codec_Invokable_IMyGrainWithGuidKey_GrainReference_8F0FEC0E (line 153) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 157) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 163) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 169) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 185) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IMyGrainWithGuidKey_GrainReference_8F0FEC0E (line 198) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 201) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_GrainWithGuidKey (line 211) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_GrainWithGuidKey (line 216) | public Codec_GrainWithGuidKey(global::Orleans.Serialization.Serializer... method Serialize (line 221) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 229) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 236) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 252) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_GrainWithGuidKey (line 271) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 275) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_GrainWithGuidKey (line 288) | public Copier_GrainWithGuidKey(global::Orleans.Serialization.Cloning.I... method DeepCopy (line 293) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_GrainWithGuidKey (line 300) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 303) | public global::TestProject.GrainWithGuidKey Create() => new global::Te... class Codec_Invokable_IMyGrainWithStringKey_GrainReference_43570316 (line 306) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 310) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 316) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 322) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 338) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IMyGrainWithStringKey_GrainReference_43570316 (line 351) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 354) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_GrainWithStringKey (line 364) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_GrainWithStringKey (line 369) | public Codec_GrainWithStringKey(global::Orleans.Serialization.Serializ... method Serialize (line 374) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 382) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 389) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 405) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_GrainWithStringKey (line 424) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 428) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_GrainWithStringKey (line 441) | public Copier_GrainWithStringKey(global::Orleans.Serialization.Cloning... method DeepCopy (line 446) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_GrainWithStringKey (line 453) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 456) | public global::TestProject.GrainWithStringKey Create() => new global::... class Codec_Invokable_IMyGrainWithGuidCompoundKey_GrainReference_A9FEF7AF (line 459) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 463) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 469) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 475) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 491) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IMyGrainWithGuidCompoundKey_GrainReference_A9FEF7AF (line 504) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 507) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_GrainWithGuidCompoundKey (line 517) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_GrainWithGuidCompoundKey (line 522) | public Codec_GrainWithGuidCompoundKey(global::Orleans.Serialization.Se... method Serialize (line 527) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 535) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 542) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 558) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_GrainWithGuidCompoundKey (line 577) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 581) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_GrainWithGuidCompoundKey (line 594) | public Copier_GrainWithGuidCompoundKey(global::Orleans.Serialization.C... method DeepCopy (line 599) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_GrainWithGuidCompoundKey (line 606) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 609) | public global::TestProject.GrainWithGuidCompoundKey Create() => new gl... class Codec_Invokable_IMyGrainWithIntegerCompoundKey_GrainReference_9814021A (line 612) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 616) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 622) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 628) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 644) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IMyGrainWithIntegerCompoundKey_GrainReference_9814021A (line 657) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 660) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_GrainWithIntegerCompoundKey (line 670) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_GrainWithIntegerCompoundKey (line 675) | public Codec_GrainWithIntegerCompoundKey(global::Orleans.Serialization... method Serialize (line 680) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 688) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 695) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 711) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_GrainWithIntegerCompoundKey (line 730) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 734) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_GrainWithIntegerCompoundKey (line 747) | public Copier_GrainWithIntegerCompoundKey(global::Orleans.Serializatio... method DeepCopy (line 752) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_GrainWithIntegerCompoundKey (line 759) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 762) | public global::TestProject.GrainWithIntegerCompoundKey Create() => new... class Metadata_TestProject (line 765) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 768) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestGrainWithMultipleInterfaces.verified.cs class Invokable_IGrainA_GrainReference_11405B98 (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetArgumentCount (line 20) | public override int GetArgumentCount() => 1; method GetMethodName (line 21) | public override string GetMethodName() => "MethodA"; method GetInterfaceName (line 22) | public override string GetInterfaceName() => "TestProject.IGrainA"; method GetActivityName (line 23) | public override string GetActivityName() => "IGrainA/MethodA"; method GetInterfaceType (line 24) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 25) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 26) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 27) | public override object GetTarget() => _target; method Dispose (line 28) | public override void Dispose() method GetArgument (line 34) | public override object GetArgument(int index) method SetArgument (line 45) | public override void SetArgument(int index, object value) method InvokeInner (line 58) | protected override global::System.Threading.Tasks.Task InvokeI... class Proxy_IGrainA (line 61) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Proxy_IGrainA (line 64) | public Proxy_IGrainA(global::Orleans.Runtime.GrainReferenceShared arg0... method MethodA (line 68) | global::System.Threading.Tasks.Task global::TestProject.IGrain... class Invokable_IGrainB_GrainReference_6B5D7809 (line 76) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method GetArgumentCount (line 83) | public override int GetArgumentCount() => 1; method GetMethodName (line 84) | public override string GetMethodName() => "MethodB"; method GetInterfaceName (line 85) | public override string GetInterfaceName() => "TestProject.IGrainB"; method GetActivityName (line 86) | public override string GetActivityName() => "IGrainB/MethodB"; method GetInterfaceType (line 87) | public override global::System.Type GetInterfaceType() => typeof(globa... method GetMethod (line 88) | public override global::System.Reflection.MethodInfo GetMethod() => Me... method SetTarget (line 89) | public override void SetTarget(global::Orleans.Serialization.Invocatio... method GetTarget (line 90) | public override object GetTarget() => _target; method Dispose (line 91) | public override void Dispose() method GetArgument (line 97) | public override object GetArgument(int index) method SetArgument (line 108) | public override void SetArgument(int index, object value) method InvokeInner (line 121) | protected override global::System.Threading.Tasks.Task InvokeI... class Proxy_IGrainB (line 124) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Proxy_IGrainB (line 127) | public Proxy_IGrainB(global::Orleans.Runtime.GrainReferenceShared arg0... method MethodB (line 131) | global::System.Threading.Tasks.Task global::TestProject.IGrain... class Codec_Invokable_IGrainA_GrainReference_11405B98 (line 139) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 143) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 150) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 172) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 188) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IGrainA_GrainReference_11405B98 (line 201) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 204) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_Invokable_IGrainB_GrainReference_6B5D7809 (line 215) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 219) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 226) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 248) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 264) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_Invokable_IGrainB_GrainReference_6B5D7809 (line 277) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 280) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 291) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 294) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestRecords.verified.cs class Codec_DemoDataRecordStruct (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 25) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 54) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 64) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_DemoDataRecordClass (line 75) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoDataRecordClass (line 81) | public Codec_DemoDataRecordClass(global::Orleans.Serialization.Activat... method Serialize (line 86) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 94) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 123) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 139) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoDataRecordClass (line 158) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 163) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoDataRecordClass (line 176) | public Copier_DemoDataRecordClass(global::Orleans.Serialization.Activa... method DeepCopy (line 181) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Codec_DemoDataRecord (line 188) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Codec_DemoDataRecord (line 194) | public Codec_DemoDataRecord(global::Orleans.Serialization.Activators.I... method Serialize (line 199) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 207) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 236) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 252) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoDataRecord (line 271) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 276) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Copier_DemoDataRecord (line 289) | public Copier_DemoDataRecord(global::Orleans.Serialization.Activators.... method DeepCopy (line 294) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Metadata_TestProject (line 301) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 304) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestWithOmitDefaultMemberValuesAnnotation.verified.cs class Codec_DemoClass (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 29) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 51) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 67) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoClass (line 86) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 89) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 102) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoClass (line 109) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 112) | public global::TestProject.DemoClass Create() => new global::TestProje... class Metadata_TestProject (line 115) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 118) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestWithSerializerTransparentAnnotation.verified.cs class Metadata_TestProject (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 16) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestWithSuppressReferenceTrackingAttribute.verified.cs class Codec_DemoClass (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Serialize (line 17) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method Deserialize (line 24) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method WriteField (line 46) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method ReadValue (line 67) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Copier_DemoClass (line 86) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method DeepCopy (line 89) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... method DeepCopy (line 101) | [global::System.Runtime.CompilerServices.MethodImplAttribute(global::S... class Activator_DemoClass (line 108) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method Create (line 111) | public global::TestProject.DemoClass Create() => new global::TestProje... class Metadata_TestProject (line 114) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 117) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.CodeGenerator.Tests/snapshots/OrleansSourceGeneratorTests.TestWithUseActivatorAnnotation.verified.cs class Metadata_TestProject (line 13) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("OrleansCodeGen"... method ConfigureInner (line 16) | protected override void ConfigureInner(global::Orleans.Serialization.C... FILE: test/Orleans.Connections.Security.Tests/CertificateCreator.cs class TestCertificateHelper (line 6) | internal static class TestCertificateHelper method CreateSelfSignedCertificate (line 18) | public static X509Certificate2 CreateSelfSignedCertificate(string subj... method ConvertToBase64 (line 47) | public static string ConvertToBase64(X509Certificate2 certificate) method ConvertFromBase64 (line 52) | public static X509Certificate2 ConvertFromBase64(string encodedCertifi... FILE: test/Orleans.Connections.Security.Tests/TlsConnectionTests.cs class TlsConnectionTests (line 27) | [Trait("Category", "BVT")] method CanCreateCertificates (line 41) | [Fact] class TlsClientConfigurator (line 60) | private class TlsClientConfigurator : IClientBuilderConfigurator method Configure (line 62) | public void Configure(IConfiguration configuration, IClientBuilder c... class TlsServerConfigurator (line 99) | private class TlsServerConfigurator : IHostConfigurator method Configure (line 101) | public void Configure(IHostBuilder hostBuilder) method TlsEndToEnd (line 144) | [Theory] type IPingGrain (line 196) | public interface IPingGrain : IGrainWithStringKey method Echo (line 198) | Task Echo(string value); class PingGrain (line 205) | public class PingGrain : Grain, IPingGrain method Echo (line 207) | public Task Echo(string value) => Task.FromResult(value); FILE: test/Orleans.Core.Tests/Async_AsyncExecutorWithRetriesTests.cs class Async_AsyncExecutorWithRetriesTests (line 16) | public class Async_AsyncExecutorWithRetriesTests method Async_AsyncExecutorWithRetriesTests (line 20) | public Async_AsyncExecutorWithRetriesTests(ITestOutputHelper output) method Async_AsyncExecutorWithRetriesTest_1 (line 29) | [Fact, TestCategory("Functional"), TestCategory("AsynchronyPrimitives")] method Async_AsyncExecutorWithRetriesTest_2 (line 71) | [Fact, TestCategory("Functional"), TestCategory("AsynchronyPrimitives")] method Async_AsyncExecutorWithRetriesTest_4 (line 108) | [Fact, TestCategory("Functional"), TestCategory("AsynchronyPrimitives")] method Async_AsyncExecutorWithRetriesTest_5 (line 145) | [Fact, TestCategory("Functional"), TestCategory("AsynchronyPrimitives")] FILE: test/Orleans.Core.Tests/Caching/ConcurrentLruSoakTests.cs class ConcurrentLruCacheSoakTests (line 17) | [TestCategory("BVT")] method ConcurrentLruCacheSoakTests (line 29) | public ConcurrentLruCacheSoakTests(ITestOutputHelper testOutputHelper) method WhenSoakConcurrentGetCacheEndsInConsistentState (line 38) | [Fact] method WhenSoakConcurrentGetWithArgCacheEndsInConsistentState (line 60) | [Fact] method WhenSoakConcurrentGetAndRemoveCacheEndsInConsistentState (line 83) | [Fact] method WhenSoakConcurrentGetAndRemoveKvpCacheEndsInConsistentState (line 104) | [Fact] method WhenSoakConcurrentGetAndUpdateCacheEndsInConsistentState (line 125) | [Fact] method WhenSoakConcurrentGetAndAddCacheEndsInConsistentState (line 146) | [Fact] method WhenSoakConcurrentGetAndUpdateValueTypeCacheEndsInConsistentState (line 167) | [Fact] method WhenAddingCacheSizeItemsNothingIsEvicted (line 191) | [Fact] method WhenConcurrentUpdateAndRemoveKvp (line 209) | [Fact] method WhenConcurrentGetAndClearCacheEndsInConsistentState (line 234) | [Theory] method WhenConcurrentGetAndClearDuringWarmupCacheEndsInConsistentState (line 258) | [Theory] method WhenValueIsBigStructNoLiveLock (line 286) | [Theory] method Setter (line 301) | private void Setter(ConcurrentLruCache cache, CancellationT... method Checker (line 317) | private void Checker(ConcurrentLruCache cache, Cancellation... method RunIntegrityCheck (line 327) | private void RunIntegrityCheck() => ConcurrentLruCacheIntegrityChecker... class ConcurrentLruCacheIntegrityChecker (line 329) | private static class ConcurrentLruCacheIntegrityChecker method Validate (line 331) | public static void Validate(ConcurrentLruCache cache) class RepeatAttribute (line 372) | private sealed class RepeatAttribute : Xunit.Sdk.DataAttribute method RepeatAttribute (line 376) | public RepeatAttribute(int count) method GetData (line 389) | public override IEnumerable GetData(System.Reflection.Meth... class Threaded (line 398) | private class Threaded method Run (line 400) | public static Task Run(int threadCount, Action action) method Run (line 405) | public static async Task Run(int threadCount, Action action) method RunAsync (line 425) | public static Task RunAsync(int threadCount, Func action) method RunAsync (line 430) | public static async Task RunAsync(int threadCount, Func a... FILE: test/Orleans.Core.Tests/Caching/ConcurrentLruTests.cs class ConcurrentLruTests (line 15) | [TestCategory("BVT")] method GetTestAccessor (line 28) | private static ConcurrentLruCache.ITestAccessor GetTestAc... method WhenCapacityIsLessThan3CtorThrows (line 33) | [Fact] method WhenCapacityIs4HotHasCapacity1AndColdHasCapacity1 (line 41) | [Fact] method WhenCapacityIs10HotHasCapacity1AndWarmHasCapacity8AndColdHasCapacity1 (line 56) | [Fact] method ConstructAddAndRetrieveWithDefaultCtorReturnsValue (line 72) | [Fact] method WhenItemIsAddedCountIsCorrect (line 83) | [Fact] method WhenItemsAddedKeysContainsTheKeys (line 91) | [Fact] method WhenItemsAddedGenericEnumerateContainsKvps (line 100) | [Fact] method WhenItemsAddedEnumerateContainsKvps (line 109) | [Fact] method FromColdWarmupFillsWarmQueue (line 120) | [Fact] method WhenItemExistsTryGetReturnsValueAndTrue (line 128) | [Fact] method WhenItemDoesNotExistTryGetReturnsNullAndFalse (line 138) | [Fact] method WhenItemIsAddedThenRetrievedMetricHitRatioIsHalf (line 148) | [Fact] method WhenItemIsAddedThenRetrievedTotalIs2 (line 157) | [Fact] method WhenRefToMetricsIsCapturedResultIsCorrect (line 166) | [Fact] method WhenKeyIsRequestedItIsCreatedAndCached (line 179) | [Fact] method WhenKeyIsRequestedWithArgItIsCreatedAndCached (line 189) | [Fact] method WhenDifferentKeysAreRequestedValueIsCreatedForEach (line 199) | [Fact] method WhenValuesAreNotReadAndMoreKeysRequestedThanCapacityCountDoesNotIncrease (line 211) | [Fact] method WhenValuesAreReadAndMoreKeysRequestedThanCapacityCountIsBounded (line 222) | [Fact] method WhenKeysAreContinuouslyRequestedInTheOrderTheyAreAddedCountIsBounded (line 240) | [Fact] method WhenKeysAreContinuouslyRequestedInTheOrderTheyAreAddedCountIsBounded2 (line 260) | [Fact] method WhenValueIsNotTouchedAndExpiresFromHotValueIsBumpedToCold (line 285) | [Fact] method IsInCache (line 304) | private bool IsInCache(int key) => _lru.Keys.Contains(key); method Touch (line 306) | private void Touch(int key) method GetOrAddRangeInclusive (line 311) | private void GetOrAddRangeInclusive(int start, int end) method AddOrUpdateRangeInclusive (line 329) | private void AddOrUpdateRangeInclusive(int start, int end) method WhenValueIsTouchedAndExpiresFromHotValueIsBumpedToWarm (line 347) | [Fact] method WhenValueIsTouchedAndExpiresFromColdItIsBumpedToWarm (line 361) | [Fact] method WhenValueIsNotTouchedAndExpiresFromColdItIsRemoved (line 392) | [Fact] method WhenValueIsNotTouchedAndExpiresFromWarmValueIsBumpedToCold (line 404) | [Fact] method WhenValueIsTouchedAndExpiresFromWarmValueIsBumpedBackIntoWarm (line 429) | [Fact] method WhenValueExpiresItIsDisposed (line 462) | [Fact] method WhenAddingNullValueCanBeAddedAndRemoved (line 483) | [Fact] method WhenValuesAreEvictedEvictionMetricCountsEvicted (line 491) | [Fact] method WhenKeyExistsTryRemoveRemovesItemAndReturnsTrue (line 501) | [Fact] method WhenKeyExistsTryRemoveReturnsValue (line 510) | [Fact] method WhenItemIsRemovedItIsDisposed (line 519) | [Fact] method WhenItemRemovedFromHotDuringWarmupItIsEagerlyCycledOut (line 531) | [Fact] method WhenItemRemovedFromHotAfterWarmupItIsEagerlyCycledOut (line 548) | [Fact] method WhenItemRemovedFromWarmDuringWarmupItIsEagerlyCycledOut (line 572) | [Fact] method WhenItemRemovedFromWarmAfterWarmupItIsEagerlyCycledOut (line 594) | [Fact] method WhenItemRemovedFromColdAfterWarmupItIsEagerlyCycledOut (line 615) | [Fact] method WhenKeyDoesNotExistTryRemoveReturnsFalse (line 636) | [Fact] method WhenItemsAreRemovedTrimRemovesDeletedItemsFromQueues (line 644) | [Fact] method WhenRepeatedlyAddingAndRemovingSameValueLruRemainsInConsistentState (line 663) | [Fact] method WhenKeyExistsTryUpdateUpdatesValueAndReturnsTrue (line 676) | [Fact] method WhenKeyExistsTryUpdateDisposesOldValue (line 687) | [Fact] method WhenKeyDoesNotExistTryUpdateReturnsFalse (line 700) | [Fact] method WhenKeyExistsTryUpdateIncrementsUpdateCount (line 710) | [Fact] method WhenKeyDoesNotExistTryUpdateDoesNotIncrementCounter (line 720) | [Fact] method WhenKeyDoesNotExistAddOrUpdateAddsNewItem (line 730) | [Fact] method WhenKeyExistsAddOrUpdateUpdatesExistingItem (line 739) | [Fact] method WhenKeyExistsAddOrUpdateGuidUpdatesExistingItem (line 749) | [Fact] method WhenKeyExistsAddOrUpdateDisposesOldValue (line 762) | [Fact] method WhenKeyDoesNotExistAddOrUpdateMaintainsLruOrder (line 775) | [Fact] method WhenCacheIsEmptyClearIsNoOp (line 785) | [Fact] method WhenItemsExistClearRemovesAllItems (line 792) | [Fact] method WhenCacheIsSize3ItemsExistAndItemsAccessedClearRemovesAllItems (line 814) | [Fact] method WhenItemsExistAndItemsAccessedClearRemovesAllItems (line 830) | [Theory] method WhenWarmThenClearedIsWarmIsReset (line 869) | [Fact] method WhenWarmThenTrimIsWarmIsReset (line 893) | [Fact] method WhenItemsAreDisposableClearDisposesItemsOnRemove (line 918) | [Fact] method WhenTrimCountIsZeroThrows (line 935) | [Fact] method WhenTrimCountIsMoreThanCapacityThrows (line 941) | [Fact] method WhenColdItemsExistTrimRemovesExpectedItemCount (line 947) | [Theory] method WhenHotAndWarmItemsExistTrimRemovesExpectedItemCount (line 992) | [Theory] method WhenHotItemsExistTrimRemovesExpectedItemCount (line 1024) | [Theory] method WhenColdItemsAreTouchedTrimRemovesExpectedItemCount (line 1049) | [Theory] method WhenItemsExistAndItemsAccessedTrimRemovesAllItems (line 1103) | [Theory] method WhenItemsRemovedClearRemovesAllItems (line 1142) | [Theory] method WhenItemsAreDisposableTrimDisposesItems (line 1175) | [Fact] method FillCache (line 1195) | private void FillCache() => GetOrAddRangeInclusive(-1, -Capacity); method Print (line 1197) | private void Print() class ValueFactory (line 1204) | private class ValueFactory method Create (line 1208) | public string Create(int key) method Create (line 1214) | public string Create(int key, TArg arg) method CreateAsync (line 1220) | public Task CreateAsync(int key) method CreateAsync (line 1226) | public Task CreateAsync(int key, TArg arg) class DisposableItem (line 1233) | private class DisposableItem : IDisposable method Dispose (line 1237) | public void Dispose() class DisposableValueFactory (line 1243) | private class DisposableValueFactory method Create (line 1247) | public DisposableItem Create(int key) method CreateAsync (line 1254) | public Task CreateAsync(int key) FILE: test/Orleans.Core.Tests/ClientBuilderTests.cs class NoOpGatewaylistProvider (line 16) | public class NoOpGatewaylistProvider : IGatewayListProvider method GetGateways (line 22) | public Task> GetGateways() method InitializeGatewayListProvider (line 27) | public Task InitializeGatewayListProvider() class ClientBuilderTests (line 38) | [TestCategory("BVT")] method ClientBuilder_ClusterOptionsTest (line 45) | [Fact] method ClientBuilder_NoSpecifiedConfigurationTest (line 125) | [Fact] method ClientBuilder_ThrowsDuringStartupIfNoGrainInterfacesAdded (line 145) | [Fact] method ClientBuilder_ServiceProviderTest (line 169) | [Fact] method ClientBuilderThrowsDuringStartupIfSiloBuildersAdded (line 221) | [Fact] method ClientBuilderWithHotApplicationBuilderThrowsDuringStartupIfSiloBuildersAdded (line 242) | [Fact] method RemoveConfigValidators (line 259) | private static void RemoveConfigValidators(IServiceCollection services) class MyService (line 265) | private class MyService FILE: test/Orleans.Core.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 10) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 17) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Orleans.Core.Tests/ConfigTests.cs class ConfigTests (line 17) | public class ConfigTests method ConfigTests (line 21) | public ConfigTests(ITestOutputHelper output) method Config_AzureConnectionInfo (line 30) | [Fact, TestCategory("Functional"), TestCategory("Config")] method Config_AdoNetConnectionInfo (line 46) | [Fact, TestCategory("Functional"), TestCategory("Config")] method Config_LocalIPAddressFallback_UsesIPv4Loopback (line 58) | [Fact, TestCategory("Functional"), TestCategory("Config")] method Config_LocalIPAddressFallback_UsesIPv6Loopback (line 65) | [Fact, TestCategory("Functional"), TestCategory("Config")] method Config_LocalIPAddressFallback_ThrowsForExplicitInterface (line 72) | [Fact, TestCategory("Functional"), TestCategory("Config")] FILE: test/Orleans.Core.Tests/DebuggerHelperTests.cs class DebuggerHelperTests (line 14) | public class DebuggerHelperTests : HostedTestClusterEnsureDefaultStarted method DebuggerHelperTests (line 16) | public DebuggerHelperTests(DefaultClusterFixture fixture) : base(fixture) method DebuggerHelper_GetGrainInstance (line 26) | [Fact, TestCategory("BVT")] FILE: test/Orleans.Core.Tests/Directory/CachedGrainLocatorTests.cs class CachedGrainLocatorTests (line 27) | [TestCategory("BVT"), TestCategory("Directory")] method CachedGrainLocatorTests (line 38) | public CachedGrainLocatorTests(ITestOutputHelper output) method RegisterWhenNoOtherEntryExists (line 77) | [Fact] method RegisterWhenOtherEntryExists (line 101) | [Fact] method RegisterWhenOtherEntryExistsAndPreviousAddressMatches (line 127) | [Fact] method RegisterWhenOtherEntryExistsAndPreviousAddressDoesNotMatch (line 164) | [Fact] method RegisterWhenOtherEntryExistsButSiloIsDead (line 208) | [Fact] method LookupPopulateTheCache (line 239) | [Fact] method LookupWhenEntryExistsButSiloIsDead (line 267) | [Fact] method LocalLookupWhenEntryExistsButSiloIsDead (line 291) | [Fact] method CleanupWhenSiloIsDead (line 317) | [Fact] method UnregisterCallDirectoryAndCleanCache (line 361) | [Fact] method UnregisterRemovesFromCacheFirst (line 383) | [Fact] method UnregisterRacesWithLookupSameId (line 408) | [Fact] method UnregisterRacesWithLookupDifferentId (line 448) | [Fact] method GenerateGrainAddress (line 492) | private GrainAddress GenerateGrainAddress(SiloAddress siloAddress = null) method GenerateSiloAddress (line 504) | private SiloAddress GenerateSiloAddress() => SiloAddress.New(new IPEnd... method WaitUntilClusterChangePropagated (line 506) | private async Task WaitUntilClusterChangePropagated() method Until (line 511) | private static async Task Until(Func condition) class NoOpClusterManifestProvider (line 518) | private class NoOpClusterManifestProvider : IClusterManifestProvider method GetUpdates (line 528) | private async IAsyncEnumerable GetUpdates() FILE: test/Orleans.Core.Tests/Directory/ClientDirectoryTests.cs class ClientDirectoryTests (line 21) | [TestCategory("BVT"), TestCategory("Directory")] method ClientDirectoryTests (line 40) | public ClientDirectoryTests() method TryLocalLookupTests (line 103) | [Fact] method LocalLookupTests (line 143) | [Fact] method RemoteLookupSuccessTests (line 177) | [Fact] method RemoteLookupFailureTests (line 228) | [Fact] method PublishChangesSuccessTests (line 274) | [Fact] method Silo (line 355) | private static SiloAddress Silo(string value) => SiloAddress.FromParsa... method Client (line 357) | private static GrainId Client(string id) => ClientGrainId.Create(id).G... method SetLocalClients (line 359) | private long SetLocalClients(List clients) FILE: test/Orleans.Core.Tests/Directory/DhtGrainLocatorTests.cs class DhtGrainLocatorTests (line 17) | [TestCategory("BVT"), TestCategory("Directory")] method DhtGrainLocatorTests (line 26) | public DhtGrainLocatorTests(ITestOutputHelper output) method SingleDeactivation (line 37) | [Fact] method MultipleDeactivations (line 54) | [Fact] method MultipleMixedDeactivations (line 84) | [Fact] method GenerateActivationAddress (line 113) | private GrainAddress GenerateActivationAddress() FILE: test/Orleans.Core.Tests/Directory/DirectoryMembershipSnapshotTests.cs class DirectoryMembershipSnapshotTests (line 12) | [TestCategory("BVT")] method GetOwnerTest (line 37) | [Fact] method MembersDoNotIntersectTest (line 45) | [Fact] method ViewCoversRingTest (line 67) | [Fact] method MemberRangesCoverRingTest (line 99) | [Fact] FILE: test/Orleans.Core.Tests/Directory/GrainDirectoryResolverTests.cs class GrainDirectoryResolverTests (line 22) | [TestCategory("BVT"), TestCategory("Directory")] method GrainDirectoryResolverTests (line 31) | public GrainDirectoryResolverTests(ITestOutputHelper output) method UserProvidedDirectory (line 51) | [Fact] method DefaultDhtDirectory (line 58) | [Fact] method ListAllDirectories (line 64) | [Fact] FILE: test/Orleans.Core.Tests/Directory/GrainLocatorResolverTests.cs class GrainLocatorResolverTests (line 26) | [TestCategory("BVT"), TestCategory("Directory")] method GrainLocatorResolverTests (line 33) | public GrainLocatorResolverTests(ITestOutputHelper output) method ReturnsDhtGrainLocatorWhenUsingDhtDirectory (line 51) | [Fact] method ReturnsCachedGrainLocatorWhenUsingCustomDirectory (line 58) | [Fact] method ReturnsClientGrainLocatorWhenUsingClient (line 65) | [Fact] FILE: test/Orleans.Core.Tests/Directory/MockClusterMembershipService.cs class MockClusterMembershipService (line 7) | internal class MockClusterMembershipService : IClusterMembershipService method MockClusterMembershipService (line 22) | public MockClusterMembershipService(Dictionary TryKill(SiloAddress siloAddress) => throw new NotImp... FILE: test/Orleans.Core.Tests/Directory/MockLocalGrainDirectory.cs class MockLocalGrainDirectory (line 7) | internal class MockLocalGrainDirectory : ILocalGrainDirectory method MockLocalGrainDirectory (line 16) | public MockLocalGrainDirectory(TimeSpan singleOperationDelay, TimeSpan... method Reset (line 23) | public void Reset() method UnregisterAsync (line 29) | public async Task UnregisterAsync(GrainAddress address, Unregistration... method UnregisterManyAsync (line 36) | public async Task UnregisterManyAsync(List addresses, Un... method DeleteGrainAsync (line 51) | public Task DeleteGrainAsync(GrainId grainId, int hopCount = 0) method GetLocalCacheData (line 56) | public GrainAddress GetLocalCacheData(GrainId grain) method GetLocalDirectoryData (line 61) | public AddressAndTag GetLocalDirectoryData(GrainId grain) method GetPrimaryForGrain (line 66) | public SiloAddress GetPrimaryForGrain(GrainId grain) method InvalidateCacheEntry (line 71) | public void InvalidateCacheEntry(GrainAddress activation) method IsSiloInCluster (line 76) | public bool IsSiloInCluster(SiloAddress silo) method LocalLookup (line 81) | public bool LocalLookup(GrainId grain, out AddressAndTag addresses) method LookupAsync (line 86) | public Task LookupAsync(GrainId grainId, int hopCount = 0) method RegisterAsync (line 91) | public Task RegisterAsync(GrainAddress address, int hop... method RegisterAsync (line 96) | public Task RegisterAsync(GrainAddress address, GrainAd... method SetSiloRemovedCatalogCallback (line 101) | public void SetSiloRemovedCatalogCallback(Action throw new NotImpl... method TryCachedLookup (line 124) | public bool TryCachedLookup(GrainId grainId, out GrainAddress address)... FILE: test/Orleans.Core.Tests/Directory/RingRangeCollectionTests.cs class RingRangeCollectionTests (line 11) | [TestCategory("BVT")] method Contains (line 32) | [Fact] method Intersects (line 42) | [Fact] method Difference (line 54) | [Fact] method ContainsTest (line 93) | [Fact] method ContainsWrappedTest (line 106) | [Fact] FILE: test/Orleans.Core.Tests/Directory/RingRangeTests.cs class RingRangeTests (line 10) | [TestCategory("BVT")] method RingRangeDifference_EquallyDividedRange (line 15) | [Fact] method ComplementDoesNotIntersect (line 32) | [Fact] method ComplementComplementIsEqual (line 49) | [Fact] method RingRangeDifference_HolePunch (line 61) | [Fact] method RingRangeDifference_Empty (line 75) | [Fact] method RingRangeDifference_Empty_Two (line 83) | [Fact] method RingRangeIntersection (line 93) | [Fact] method RingRangeContains (line 105) | [Fact] method EqualRangeInvariants (line 125) | [InlineData(1)] method CreateEquallyDividedRange (line 146) | private static RingRange CreateEquallyDividedRange(int count, int index) FILE: test/Orleans.Core.Tests/DurableJobs/DurableJobReceiverExtensionTests.cs class DurableJobReceiverExtensionTests (line 9) | [TestCategory("DurableJobs")] method HandleDurableJobAsync_WhenExecutionTaskIsCanceled_PropagatesCancellation (line 12) | [Fact] method HandleDurableJobAsync_WhenTokenIsCanceledButExecutionIsStillRunning_RemainsPending (line 25) | [Fact] method DurableJobRunResult_Failed_ThrowsForNullException (line 48) | [Fact] method CreateExtension (line 54) | private static DurableJobReceiverExtension CreateExtension(IDurableJob... method CreateJobContext (line 62) | private static IJobRunContext CreateJobContext(string runId) FILE: test/Orleans.Core.Tests/DurableJobs/InMemoryJobQueueTests.cs class InMemoryJobQueueTests (line 13) | [TestCategory("DurableJobs")] method Enqueue_AddsJobToQueue (line 16) | [Fact] method Enqueue_MultipleJobs_IncreasesCount (line 27) | [Fact] method Enqueue_AfterMarkAsComplete_ThrowsInvalidOperationException (line 42) | [Fact] method GetAsyncEnumerator_ReturnsJobsInDueTimeOrder (line 53) | [Fact] method GetAsyncEnumerator_IncrementsDequeueCount (line 77) | [Fact] method GetAsyncEnumerator_WithInitialDequeueCount_IncrementsCorrectly (line 93) | [Fact] method GetAsyncEnumerator_WaitsForDueTime (line 109) | [Fact] method GetAsyncEnumerator_CompletesWhenQueueIsMarkedComplete (line 128) | [Fact] method CancelJob_RemovesJobFromQueue (line 143) | [Fact] method CancelJob_PreventsJobFromBeingDequeued (line 156) | [Fact] method CancelJob_NonExistentJob_DoesNotThrow (line 179) | [Fact] method RetryJobLater_MovesJobToNewDueTime (line 190) | [Fact] method RetryJobLater_PreservesDequeueCount (line 207) | [Fact] method RetryJobLater_NonExistentJob_DoesNotThrow (line 229) | [Fact] method GetAsyncEnumerator_RespectsEmptyBuckets (line 241) | [Fact] method GetAsyncEnumerator_HandlesMultipleDueTimes (line 265) | [Fact] method GetAsyncEnumerator_GeneratesUniqueRunIds (line 292) | [Fact] method GetAsyncEnumerator_CancellationToken_StopsEnumeration (line 312) | [Fact] method CreateJob (line 328) | private static DurableJob CreateJob(string id, DateTimeOffset dueTime) method CreateJobContext (line 341) | private static IJobRunContext CreateJobContext(DurableJob job, string ... FILE: test/Orleans.Core.Tests/DurableJobs/InMemoryJobShardManagerTests.cs class InMemoryJobShardManagerTests (line 14) | [TestCategory("DurableJobs")] method InitializeAsync (line 22) | public Task InitializeAsync() => InMemoryJobShardManager.ClearAllShard... method DisposeAsync (line 24) | public Task DisposeAsync() => InMemoryJobShardManager.ClearAllShardsAs... method CreateShardAsync_CreatesShardOwnedBySilo (line 26) | [Fact] method AssignJobShardsAsync_ReturnsOwnedShards (line 40) | [Fact] method AssignJobShardsAsync_OrphanedShard_IsAssignedWithoutIncrementingAdoptedCount (line 54) | [Fact] method AssignJobShardsAsync_AdoptedFromDeadSilo_IncrementsAdoptedCount (line 83) | [Fact] method AssignJobShardsAsync_PoisonedShard_IsNotAssigned (line 110) | [Fact] method AssignJobShardsAsync_MaxAdoptedCountOfZero_NeverAssignsAdoptedShards (line 143) | [Fact] method UseInMemoryDurableJobs_ConfiguredMaxAdoptedCount_IsApplied (line 164) | [Fact] method AssignJobShardsAsync_ShardFromActiveSilo_IsNotAssigned (line 190) | [Fact] method UnregisterShardAsync_WithNoJobsRemaining_RemovesShard (line 210) | [Fact] method UnregisterShardAsync_WithJobsRemaining_MarksShardAsOrphaned (line 227) | [Fact] method CreateMembershipService (line 248) | private static IClusterMembershipService CreateMembershipService( method CreateMembershipSnapshot (line 258) | private static ClusterMembershipSnapshot CreateMembershipSnapshot( FILE: test/Orleans.Core.Tests/DurableJobs/ShardExecutorTests.cs class ShardExecutorTests (line 11) | [TestCategory("DurableJobs")] method RunShardAsync_WhenNotOverloaded_ProcessesJobsWithoutDelay (line 14) | [Fact] method RunShardAsync_WhenOverloaded_PausesAndRetriesWithBackoffDelay (line 38) | [Fact] method RunShardAsync_WhenOverloadTransitionsDuringProcessing_HandlesStateChanges (line 66) | [Fact] method RunShardAsync_RespectsMaxConcurrentJobsPerSilo_WhileCheckingOverload (line 98) | [Fact] method RunShardAsync_WhenCancelledDuringOverloadBackoff_CancelsCleanly (line 143) | [Fact] method RunShardAsync_WhenJobFailsDuringOverload_ContinuesOverloadChecking (line 169) | [Fact] method RunShardAsync_WaitsForShardStartTime_BeforeProcessing (line 213) | [Fact] method RunShardAsync_WaitsForAllJobsToComplete_BeforeReturning (line 238) | [Fact] method RunShardAsync_WhenJobReturnsPollAfter_EntersPollingLoopUntilCompletion (line 271) | [Fact] method RunShardAsync_WhenJobReturnsPollAfterThenFails_HandlesFailureCorrectly (line 292) | [Fact] method RunShardAsync_WhenRetryPersistenceFails_ReleasesConcurrencyAndContinuesProcessing (line 321) | [Fact] method RunShardAsync_WhenExecutionIsCanceled_DoesNotRetryOrRemove (line 354) | [Fact] method RunShardAsync_WithSlowStart_GraduallyIncreasesConcurrency (line 374) | [Fact] method RunShardAsync_WithSlowStartDisabled_UsesFullConcurrencyImmediately (line 440) | [Fact] method ValidateConfiguration_WithSlowStartDisabled_AllowsNonPositiveInitialConcurrency (line 485) | [Fact] method CreateOptions (line 502) | private static IOptions CreateOptions( method CreateOverloadDetector (line 522) | private static IOverloadDetector CreateOverloadDetector(bool isOverloa... method CreateJobs (line 529) | private static List CreateJobs(int count, DateTimeOffset? ... method CreateJobShard (line 550) | private static IJobShard CreateJobShard( method CreateJobShardWithDelayedYield (line 568) | private static IJobShard CreateJobShardWithDelayedYield(int jobCount, ... method CreateJobContexts (line 584) | private static async IAsyncEnumerable CreateJobContext... method CreateJobContextsWithDelay (line 598) | private static async IAsyncEnumerable CreateJobContext... method CreateGrainFactory (line 614) | private static IInternalGrainFactory CreateGrainFactory() method ConfigureGrainFactoryToTrackCompletions (line 627) | private static void ConfigureGrainFactoryToTrackCompletions( method ConfigureGrainFactoryWithSlowJobExecution (line 646) | private static void ConfigureGrainFactoryWithSlowJobExecution( method ConfigureGrainFactoryWithSelectiveFailures (line 661) | private static void ConfigureGrainFactoryWithSelectiveFailures( method CreateGrainFactoryWithCanceledExecution (line 700) | private static IInternalGrainFactory CreateGrainFactoryWithCanceledExe... method CreateGrainFactoryWithPollingBehavior (line 713) | private static (IInternalGrainFactory, StrongBox) CreateGrainFact... method CreateGrainFactoryWithPollingThenFailure (line 737) | private static (IInternalGrainFactory, StrongBox) CreateGrainFact... method CreateGrainFactoryWithTimedPolling (line 762) | private static (IInternalGrainFactory, StrongBox) CreateGrainFact... FILE: test/Orleans.Core.Tests/General/CounterAggregatorGroupTests.cs class CounterAggregatorGroupTests (line 12) | public class CounterAggregatorGroupTests method CounterAggregatorGroupTests (line 15) | public CounterAggregatorGroupTests(ITestOutputHelper output) method ValidateAggregatorCache (line 24) | [Fact, TestCategory("Functional"), TestCategory("Aggregators")] method Collect (line 39) | [Fact, TestCategory("Functional"), TestCategory("Aggregators")] method TestMultithreadedCorrectness (line 62) | [Fact, TestCategory("Functional"), TestCategory("Aggregators")] FILE: test/Orleans.Core.Tests/General/HistogramAggregatorTests.cs class HistogramAggregatorTests (line 9) | public class HistogramAggregatorTests method CollectBuckets (line 11) | [Fact, TestCategory("Functional"), TestCategory("Aggregators")] FILE: test/Orleans.Core.Tests/General/Identifiertests.cs class IdentifierTests (line 16) | [Collection(TestEnvironmentFixture.DefaultCollection)] class A (line 23) | private class A { } class B (line 25) | private class B : A { } method IdentifierTests (line 27) | public IdentifierTests(ITestOutputHelper output, TestEnvironmentFixtur... method GrainIdUniformHashCodeIsStable (line 36) | [Fact] method UniqueKeyKeyExtGrainCategoryDisallowsNullKeyExtension (line 44) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method UniqueKeyKeyExtGrainCategoryDisallowsEmptyKeyExtension (line 51) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method UniqueKeyKeyExtGrainCategoryDisallowsWhiteSpaceKeyExtension (line 58) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method ParsingUniqueKeyStringificationShouldReproduceAnIdenticalObject (line 65) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method GrainIdShouldEncodeAndDecodePrimaryKeyGuidCorrectly (line 94) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method GrainId_ToFromPrintableString (line 110) | [Theory, TestCategory("SlowBVT"), TestCategory("Identifiers")] method GrainId_TryParseFromPrintableString (line 120) | [Theory, TestCategory("SlowBVT"), TestCategory("Identifiers")] method GrainId_RoundTripJsonConverter (line 134) | [Theory, TestCategory("SlowBVT"), TestCategory("Identifiers")] method UniqueTypeCodeDataShouldStore32BitsOfInformation (line 165) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method UniqueKeysShouldPreserveTheirPrimaryKeyValueIfItIsGuid (line 175) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method UniqueKeysShouldPreserveTheirPrimaryKeyValueIfItIsLong (line 196) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method ID_Interning_GrainID (line 217) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method ID_Interning_string_equals (line 231) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method ID_Intern_FindOrCreate_derived_class (line 249) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method Interning_SiloAddress (line 284) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method Interning_SiloAddress2 (line 301) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method Interning_SiloAddress_Serialization (line 310) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method SiloAddress_ToFrom_ParsableString (line 321) | [Fact, TestCategory("BVT"), TestCategory("Identifiers")] method GrainReference_Test1 (line 347) | [Fact, TestCategory("BVT"), TestCategory("Identifiers"), TestCategory(... method TestGrainReference (line 359) | private void TestGrainReference(GrainReference grainRef) method RoundTripGrainReferenceToKey (line 368) | private GrainReference RoundTripGrainReferenceToKey(GrainReference input) FILE: test/Orleans.Core.Tests/General/RequestContextTestsNonSiloRequired.cs class RequestContextTests_Local (line 13) | [Collection(TestEnvironmentFixture.DefaultCollection)] method RequestContextTests_Local (line 21) | public RequestContextTests_Local(TestEnvironmentFixture fixture) method Dispose (line 28) | public void Dispose() method TestCleanup (line 33) | private void TestCleanup() method RequestContext_MultiThreads_ExportToMessage (line 40) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_ExportToMessage (line 65) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_ExportImport (line 121) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_CrossThread (line 181) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] FILE: test/Orleans.Core.Tests/General/RingTests_Standalone.cs class RingTests_Standalone (line 11) | public class RingTests_Standalone method RingStandalone_Basic (line 15) | [Fact, TestCategory("Functional"), TestCategory("Ring"), TestCategory(... method RingStandalone_Failures (line 23) | [Fact, TestCategory("Functional"), TestCategory("Ring"), TestCategory(... method RingStandalone_Joins (line 39) | [Fact, TestCategory("Functional"), TestCategory("Ring"), TestCategory(... method RingStandalone_Mixed (line 55) | [Fact, TestCategory("Functional"), TestCategory("Ring"), TestCategory(... method TestChurn (line 72) | private void TestChurn(int[] indexesFails, int[] indexesJoins) method CreateServers (line 98) | private static Dictionary CreateS... method Combine (line 110) | private static Dictionary Combine... method RemoveServers (line 152) | private void RemoveServers(Dictionary GetApproximateSiloStatuses(... method SetSiloStatus (line 241) | public void SetSiloStatus(SiloAddress siloAddress, SiloStatus status) method IsDeadSilo (line 250) | public bool IsDeadSilo(SiloAddress silo) => GetApproximateSiloStatus(s... method IsFunctionalDirectory (line 252) | public bool IsFunctionalDirectory(SiloAddress siloAddress) => !GetAppr... method SubscribeToSiloStatusEvents (line 254) | public bool SubscribeToSiloStatusEvents(ISiloStatusListener observer) ... method TryGetSiloName (line 256) | public bool TryGetSiloName(SiloAddress siloAddress, out string siloName) method UnSubscribeFromSiloStatusEvents (line 262) | public bool UnSubscribeFromSiloStatusEvents(ISiloStatusListener observ... method GetActiveSilos (line 263) | public ImmutableArray GetActiveSilos() => [.. GetApproxim... class RangeBreakable (line 266) | internal class RangeBreakable method RangeBreakable (line 271) | public RangeBreakable() method Remove (line 277) | public bool Remove(IRingRange range) FILE: test/Orleans.Core.Tests/General/UtilsTests.cs class UtilsTests (line 11) | [TestCategory("Utils")] method UtilsTests (line 17) | public UtilsTests(ITestOutputHelper output) method ToGatewayUriTest (line 22) | [Fact, TestCategory("BVT")] FILE: test/Orleans.Core.Tests/IdSpanTests.cs class IdSpanTests (line 10) | [TestCategory("BVT")] method IdSpan_CreateEmptyString_NotEqualToDefault (line 17) | [Fact] method IdSpan_HashCode_ConsistentWithEquality (line 33) | [Fact] method IdSpan_Default_HasExpectedProperties (line 51) | [Fact] method IdSpan_CreateEmptyString_HasExpectedProperties (line 64) | [Fact] method IdSpan_SameContent_AreEqual (line 78) | [Fact] method IdSpan_DifferentContent_AreNotEqual (line 93) | [Fact] method IdSpan_CompareTo_HandlesNullAndEmpty (line 107) | [Fact] FILE: test/Orleans.Core.Tests/Lease/GoldenPathInMemoryLeaseProviderTests.cs class GoldenPathInMemoryLeaseProviderTests (line 12) | [TestCategory("BVT"), TestCategory("Lease")] method GoldenPathInMemoryLeaseProviderTests (line 15) | public GoldenPathInMemoryLeaseProviderTests(Fixture fixture, ITestOutp... class Fixture (line 20) | public class Fixture : BaseTestClusterFixture FILE: test/Orleans.Core.Tests/ManagementAgentTests.cs class ManagementAgentTests (line 11) | public class ManagementAgentTests method SystemStatusEquals (line 17) | [Fact, TestCategory("Functional"), TestCategory("Management")] method CheckEquals (line 36) | private static void CheckEquals(object obj, object other) method CheckNotEquals (line 51) | private static void CheckNotEquals(object obj, object other) FILE: test/Orleans.Core.Tests/Membership/ClusterHealthMonitorTests.cs class ClusterHealthMonitorTests (line 19) | [TestCategory("BVT"), TestCategory("Membership")] method ClusterHealthMonitorTests (line 36) | public ClusterHealthMonitorTests(ITestOutputHelper output) method ClusterHealthMonitor_BasicScenario (line 76) | [Fact] method ClusterHealthMonitor_MonitorAllStaleSilos (line 85) | [Fact] method ClusterHealthMonitor_NoIndirectProbes (line 94) | [Fact] method ClusterHealthMonitor_ThreeVotesNeededToKill (line 103) | [Fact] method ClusterHealthMonitor_OneVoteNeededToKill (line 112) | [Fact] method ClusterHealthMonitor_SilosWithStaleCreatedOrJoiningState_OneVoteNeededToKill (line 121) | [Fact] method ClusterHealthMonitor_SilosWithStaleCreatedOrJoiningState_TwoVotesNeededToKill (line 130) | [Fact] method ClusterHealthMonitor_SilosWithStaleCreatedOrJoiningState_ThreeVotesNeededToKill (line 139) | [Fact] method ClusterHealthMonitor_SilosWithStaleCreatedOrJoiningState_Disabled (line 148) | [Fact] method ClusterHealthMonitor_BasicScenario_Runner (line 154) | private async Task ClusterHealthMonitor_BasicScenario_Runner(bool enab... method ClusterHealthMonitor_StaleJoinOrCreatedSilos_Runner (line 375) | private async Task ClusterHealthMonitor_StaleJoinOrCreatedSilos_Runner... method Silo (line 503) | private static SiloAddress Silo(string value) => SiloAddress.FromParsa... method Entry (line 505) | private static MembershipEntry Entry(SiloAddress address, SiloStatus s... method UntilEqual (line 507) | private static async Task UntilEqual(T expected, Func getActual) method Until (line 522) | private static async Task Until(Func condition) method StopLifecycle (line 529) | private async Task StopLifecycle(CancellationToken cancellation = defa... class ClusterHealthMonitorTestRig (line 542) | private class ClusterHealthMonitorTestRig( method CreateClusterHealthMonitorTestRig (line 552) | private ClusterHealthMonitorTestRig CreateClusterHealthMonitorTestRig(... FILE: test/Orleans.Core.Tests/Membership/InMemoryMembershipTable.cs class InMemoryMembershipTable (line 10) | public class InMemoryMembershipTable : IMembershipTable method InMemoryMembershipTable (line 16) | public InMemoryMembershipTable() { } method InMemoryMembershipTable (line 18) | public InMemoryMembershipTable(TableVersion version, params Membership... method ClearCalls (line 41) | public void ClearCalls() method Reset (line 46) | public void Reset() method CleanupDefunctSiloEntries (line 55) | public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate) method DeleteMembershipTableEntries (line 78) | public Task DeleteMembershipTableEntries(string clusterId) method InitializeMembershipTable (line 88) | public Task InitializeMembershipTable(bool tryInitTableVersion) method InsertRow (line 98) | public Task InsertRow(MembershipEntry entry, TableVersion tableV... method ReadAll (line 117) | public Task ReadAll() method ReadRow (line 130) | public Task ReadRow(SiloAddress key) method UpdateIAmAlive (line 142) | public Task UpdateIAmAlive(MembershipEntry entry) method UpdateRow (line 155) | public Task UpdateRow(MembershipEntry entry, string etag, TableV... method ValidateVersion (line 175) | private void ValidateVersion(TableVersion tableVersion) FILE: test/Orleans.Core.Tests/Membership/MembershipAgentTests.cs class MembershipAgentTests (line 19) | [TestCategory("BVT"), TestCategory("Membership")] method MembershipAgentTests (line 42) | public MembershipAgentTests(ITestOutputHelper output) method MembershipAgent_LifecycleStages_GracefulShutdown (line 117) | [Fact] method MembershipAgent_LifecycleStages_UngracefulShutdown (line 159) | [Fact] method MembershipAgent_UpdateIAmAlive (line 203) | [Fact] method MembershipAgent_LifecycleStages_ValidateInitialConnectivity_Success (line 245) | [Fact] method MembershipAgent_LifecycleStages_ValidateInitialConnectivity_Failure (line 292) | [Fact] method Silo (line 345) | private static SiloAddress Silo(string value) => SiloAddress.FromParsa... method Entry (line 347) | private static MembershipEntry Entry(SiloAddress address, SiloStatus s... method Until (line 349) | private static async Task Until(Func condition) method StopLifecycle (line 356) | private async Task StopLifecycle(CancellationToken cancellation = defa... FILE: test/Orleans.Core.Tests/Membership/MembershipTableCleanupAgentTests.cs class MembershipTableCleanupAgentTests (line 18) | [TestCategory("BVT"), TestCategory("Membership")] method MembershipTableCleanupAgentTests (line 24) | public MembershipTableCleanupAgentTests(ITestOutputHelper output) method MembershipTableCleanupAgent_Enabled_BasicScenario (line 30) | [Fact] method MembershipTableCleanupAgent_Disabled_BasicScenario (line 36) | [Fact] method BasicScenario (line 42) | private async Task BasicScenario(bool enabled) method Until (line 100) | private static async Task Until(Func condition) FILE: test/Orleans.Core.Tests/Membership/MembershipTableManagerTests.cs class MembershipTableManagerTests (line 19) | [TestCategory("BVT"), TestCategory("Membership")] method MembershipTableManagerTests (line 30) | public MembershipTableManagerTests(ITestOutputHelper output) method MembershipTableManager_NewCluster (line 50) | [Fact] method MembershipTableManager_ExistingCluster (line 61) | [Fact] method BasicScenarioTest (line 77) | private async Task BasicScenarioTest(InMemoryMembershipTable membershi... method MembershipTableManager_Restarted (line 200) | [Fact] method MembershipTableManager_Superseded (line 297) | [Fact] method MembershipTableManager_AlreadyDeclaredDead (line 343) | [Fact] method MembershipTableManager_DeclaredDead_AfterJoining (line 385) | [Fact] method MembershipTableManager_TrySuspectOrKill_ButIAmKill (line 431) | [Fact] method MembershipTableManager_TrySuspectOrKill_AlreadyDead (line 472) | [Fact] method MembershipTableManager_TrySuspectOrKill_DeclareDead_SmallCluster (line 504) | [Fact] method MembershipTableManager_TrySuspectOrKill_ClocksNotSynchronized (line 539) | [Fact] method MembershipTableManager_TrySuspectOrKill_DeclareDead_LargerCluster (line 613) | [Fact] method MembershipTableManager_Refresh (line 693) | [Fact] method Silo (line 758) | private static SiloAddress Silo(string value) => SiloAddress.FromParsa... method Entry (line 760) | private static MembershipEntry Entry(SiloAddress address, SiloStatus s... FILE: test/Orleans.Core.Tests/Membership/MembershipTableSnapshotTests.cs class MembershipTableSnapshotTests (line 11) | [TestCategory("BVT"), TestCategory("Membership")] method MembershipTableSnapshot_GetSiloStatus_JoiningSilo (line 14) | [Fact] method MembershipTableSnapshot_GetSiloStatus_StoppingSilo (line 29) | [Fact] method MembershipTableSnapshot_GetSiloStatus_UnknownSilo (line 49) | [Fact] method MembershipTableSnapshot_CreateUpdatePreservesIAmAliveTime (line 61) | [Fact] method MembershipTableSnapshot_GetSiloStatus_UnknownSilo_KnownSuccessor (line 87) | [Fact] method Silo (line 99) | private static SiloAddress Silo(string value) => SiloAddress.FromParsa... method Entry (line 101) | private static MembershipEntry Entry(SiloAddress address, SiloStatus s... method Table (line 106) | private static MembershipTableData Table(params MembershipEntry[] entr... method AddOrUpdateEntry (line 112) | private static MembershipTableSnapshot AddOrUpdateEntry(MembershipTabl... FILE: test/Orleans.Core.Tests/Membership/SiloHealthMonitorTests.cs class SiloHealthMonitorTests (line 19) | [TestCategory("BVT"), TestCategory("Membership")] method SiloHealthMonitorTests (line 39) | public SiloHealthMonitorTests(ITestOutputHelper output) method Shutdown (line 106) | private async Task Shutdown() method SiloHealthMonitor_SuccessfulProbe (line 125) | [Fact] method SiloHealthMonitor_FailedProbe_Timeout (line 147) | [Fact] method SiloHealthMonitor_FailedProbe_Exception (line 169) | [Fact] method SiloHealthMonitor_Indirect_FailedProbe (line 196) | [Fact] method SiloHealthMonitor_IndirectProbe_SkipsStaleSilo (line 306) | [Fact] method Silo (line 347) | private static SiloAddress Silo(string value) => SiloAddress.FromParsa... method Entry (line 349) | private static MembershipEntry Entry(SiloAddress address, SiloStatus s... FILE: test/Orleans.Core.Tests/ObserverManagerTests.cs class ObserverManagerTests (line 13) | [TestCategory("BVT")] method CollectionModified (line 16) | [Fact] method SubscribeDuringNotify_ObserversAreUpdatedImmediately (line 44) | [Fact] method UnsubscribeDuringNotify_ObserversAreUpdatedImmediately (line 89) | [Fact] method SyncNotify_SubscribeAndUnsubscribe_WorksCorrectly (line 135) | [Fact] method ExceptionInNotificationCallback_RemovesObserver (line 171) | [Fact] method SyncNotify_ExceptionInNotificationCallback_RemovesObserver (line 201) | [Fact] method ExpiredObservers_AreRemovedDuringNotify (line 229) | [Fact] method ClearExpired_RemovesOnlyExpiredObservers (line 264) | [Fact] method Clear_RemovesAllObservers (line 309) | [Fact] method CanModifyObserversConcurrently (line 329) | [Fact] method PredicateFiltersObserversToNotify (line 399) | [Fact] method AsyncPredicateFiltersObserversToNotify (line 426) | [Fact] method EnumeratorWorksCorrectly (line 454) | [Fact] method SubscribingExistingObserver_UpdatesLastSeenTime (line 475) | [Fact] method SubscribingExistingObserver_UpdatesObserverValue (line 506) | [Fact] method SetExpirationDuration_AffectsExpiration (line 524) | [Fact] method ClearDuringNotification_WorksCorrectly (line 556) | [Fact] method ModifyDuringEnumeration_WorksWithoutExceptions (line 594) | [Fact] FILE: test/Orleans.Core.Tests/OrleansRuntime/AsyncSerialExecutorTests.cs class AsyncSerialExecutorTests (line 12) | public class AsyncSerialExecutorTests method AsyncSerialExecutorTests (line 17) | public AsyncSerialExecutorTests(ITestOutputHelper output) method AsyncSerialExecutorTests_Small (line 22) | [Fact, TestCategory("Functional"), TestCategory("Async")] method AsyncSerialExecutorTests_SerialSubmit (line 36) | [Fact, TestCategory("Functional"), TestCategory("Async")] method AsyncSerialExecutorTests_ParallelSubmit (line 50) | [Fact, TestCategory("Functional"), TestCategory("Async")] method Operation (line 70) | private async Task Operation(int opNumber) FILE: test/Orleans.Core.Tests/OrleansRuntime/ExceptionsTests.cs class ExceptionsTests (line 11) | [Collection(TestEnvironmentFixture.DefaultCollection)] method ExceptionsTests (line 16) | public ExceptionsTests(TestEnvironmentFixture fixture) method SerializationTests_Exception_Orleans (line 21) | [Fact, TestCategory("Functional"), TestCategory("Serialization")] FILE: test/Orleans.Core.Tests/OrleansRuntime/Streams/BestFitBalancerTests.cs class BestFitBalancerTests (line 9) | public class BestFitBalancerTests method IdealCaseMoreResourcesThanBucketsTest (line 11) | [Fact, TestCategory("Functional")] method IdealCaseMoreResourcesThanBuckets2Test (line 24) | [Fact, TestCategory("Functional")] method IdealCaseLessResourcesThanBucketsTest (line 37) | [Fact, TestCategory("Functional")] method IdealCaseLessResourcesThanBuckets2Test (line 50) | [Fact, TestCategory("Functional")] method IdealCaseResourcesMatchBucketsTest (line 63) | [Fact, TestCategory("Functional")] method IdealCaseResourcesDevisibleByBucketsTest (line 76) | [Fact, TestCategory("Functional")] method IdealCaseRangedTest (line 89) | [Fact, TestCategory("Functional")] method HalfBucketsActiveTest (line 109) | [Fact, TestCategory("Functional")] method OrderIrrelevantTest (line 124) | [Fact, TestCategory("Functional")] method ValidateBalance (line 150) | private static void ValidateBalance(List buckets, List resou... FILE: test/Orleans.Core.Tests/OrleansRuntime/Streams/ResourceSelectorTestRunner.cs class ResourceSelectorTestRunner (line 7) | public abstract class ResourceSelectorTestRunner method ResourceSelectorTestRunner (line 11) | protected ResourceSelectorTestRunner(ITestOutputHelper output) method NextSelectionWillGoThroughEveryResourceIfExistingSelectionEmpty (line 16) | internal void NextSelectionWillGoThroughEveryResourceIfExistingSelecti... method NextSelectionWontGoInfinitely (line 31) | internal void NextSelectionWontGoInfinitely(List resources, IR... method NextSelectionWontReSelectExistingSelections (line 46) | internal void NextSelectionWontReSelectExistingSelections(List... FILE: test/Orleans.Core.Tests/OrleansRuntime/Streams/RoundRobinSelectorTests.cs class RoundRobinSelectorTests (line 11) | [TestCategory("BVT")] method RoundRobinSelectorTests (line 18) | public RoundRobinSelectorTests(ITestOutputHelper output) : base(output) method NextSelectionWillGoThroughEveryResourceIfExistingSelectionEmptyTest (line 24) | [Fact] method NextSelectionWontGoInfinitelyTest (line 30) | [Fact] method NextSelectionWontReSelectExistingSelectionsTest (line 36) | [Fact] method NextSelectionWontReSelectExistingSelectionsWithDuplicatesTest (line 42) | [Fact] FILE: test/Orleans.Core.Tests/OrleansRuntime/Streams/SubscriptionMarkerTests.cs class SubscriptionMarkerTests (line 9) | public class SubscriptionMarkerTests method MarkAsImplicitSubscriptionTest (line 11) | [Fact, TestCategory("BVT"), TestCategory("Nightly"), TestCategory("Str... method MarkAsExplicitSubscriptionTest (line 23) | [Fact, TestCategory("BVT"), TestCategory("Nightly"), TestCategory("Str... FILE: test/Orleans.Core.Tests/ProviderErrorMessageTests.cs class ProviderErrorMessageTests (line 14) | [TestCategory("BVT")] method ClientBuilder_IncludesKnownProvidersInErrorMessage (line 23) | [Fact] method SiloBuilder_IncludesKnownProvidersInErrorMessage (line 58) | [Fact] method SiloBuilder_IncludesKnownGrainStorageProvidersInErrorMessage (line 91) | [Fact] FILE: test/Orleans.Core.Tests/Runtime/ActivationCollectorTests.cs class ActivationCollectorTests (line 17) | [TestCategory("BVT"), TestCategory("Runtime")] method ActivationCollectorTests (line 23) | public ActivationCollectorTests() method MakeTicketFromDateTime (line 32) | [Theory, TestCategory("Activation")] method MakeTicketFromDateTime_MaxValue (line 47) | [Fact, TestCategory("Activation")] method MakeTicketFromDateTime_Invalid_BeforeNextTicket (line 57) | [Fact, TestCategory("Activation")] method IsMemoryOverloaded_WorksAsExpected (line 68) | [Theory, TestCategory("MemoryBasedDeactivations")] method DeactivateInDueTimeOrder_OnlyOldestAndEligibleAreDeactivated (line 127) | [Fact] method DeactivateInDueTimeOrder_ConcurrentModification_ShouldNotThrow (line 162) | [Fact] method PrepareActivation (line 273) | private IActivationWorkingSetMember PrepareActivation(int collectionAg... method PrepareActivation (line 276) | private IActivationWorkingSetMember PrepareActivation(TimeSpan collect... FILE: test/Orleans.Core.Tests/Runtime/ActivationCountPlacementDirectorTests.cs class ActivationCountPlacementDirectorTests (line 12) | [TestCategory("BVT"), TestCategory("Placement")] method OnAddActivation_WhenCacheIsEmptyAndLocalSiloIsIncompatible_PlacesOnCompatibleSilo (line 15) | [Fact] method OnAddActivation_WhenCacheIsEmptyAndLocalSiloIsCompatible_PlacesLocally (line 29) | [Fact] method OnAddActivation_WhenSomeCompatibleSilosHaveNoStats_PrefersSilosWithStats (line 43) | [Fact] method OnAddActivation_WhenAllCompatibleSilosWithStatsAreOverloaded_Throws (line 58) | [Fact] method OnAddActivation_WhenSilosWithStatsAreOverloadedAndWithoutStatsExist_FallsBackToWithoutStats (line 72) | [Fact] method CreateDirector (line 87) | private static ActivationCountPlacementDirector CreateDirector(SiloAdd... method CreatePlacementContext (line 98) | private static IPlacementContext CreatePlacementContext(params SiloAdd... method CreateSiloRuntimeStatistics (line 105) | private static SiloRuntimeStatistics CreateSiloRuntimeStatistics(bool ... method Silo (line 131) | private static SiloAddress Silo(string value) => SiloAddress.FromParsa... FILE: test/Orleans.Core.Tests/RuntimeTypeNameFormatterTests.cs class RuntimeTypeNameFormatterTests (line 13) | [TestCategory("BVT")] type IMyBaseType (line 16) | public interface IMyBaseType { } type IMyArrayType (line 17) | public interface IMyArrayType : IMyBaseType { } method RuntimeTypeNameFormatterTests (line 42) | public RuntimeTypeNameFormatterTests(ITestOutputHelper output) method FormattedTypeNamesAreRecoverable (line 54) | [Fact] method ParsedTypeNamesAreIdenticalToFormattedNames (line 73) | [Fact] method InvalidNamesThrowDescriptiveErrorMessage (line 95) | [Fact] class Inner (line 105) | public class Inner class Middle (line 107) | public class Middle { } class InnerInner (line 108) | public class InnerInner class Bottom (line 110) | public class Bottom { } FILE: test/Orleans.Core.Tests/SchedulerTests/OrleansTaskSchedulerAdvancedTests.cs class OrleansTaskSchedulerAdvancedTests (line 13) | public class OrleansTaskSchedulerAdvancedTests(ITestOutputHelper output)... method Dispose (line 18) | public void Dispose() method Sched_AC_Test (line 23) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_AC_WaitTest (line 77) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_AC_Turn_Execution_Order (line 136) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_Stopped_WorkItemGroup (line 202) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_Task_Turn_Execution_Order (line 253) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_AC_Current_TaskScheduler (line 413) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_AC_ContinueWith_1_Test (line 521) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_Task_JoinAll (line 548) | [Fact, TestCategory("Functional"), TestCategory("AsynchronyPrimitives")] method Sched_AC_ContinueWith_2_OrleansSched (line 611) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Sched_Task_SchedulingContext (line 665) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Log (line 731) | private void Log(int level, string what) method CheckRuntimeContext (line 740) | private static void CheckRuntimeContext(IGrainContext context) FILE: test/Orleans.Core.Tests/SchedulerTests/OrleansTaskSchedulerAdvancedTests_Set2.cs class OrleansTaskSchedulerAdvancedTests_Set2 (line 20) | public class OrleansTaskSchedulerAdvancedTests_Set2 : IDisposable method OrleansTaskSchedulerAdvancedTests_Set2 (line 30) | public OrleansTaskSchedulerAdvancedTests_Set2(ITestOutputHelper output) method Dispose (line 40) | public void Dispose() method ActivationSched_SimpleFifoTest (line 45) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_NewTask_ContinueWith_Wrapped (line 72) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_SubTaskExecutionSequencing (line 101) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_ContinueWith_1_Test (line 170) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_WhenAny (line 210) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_WhenAny_Timeout (line 264) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_WhenAny_Busy_Timeout (line 325) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_Task_Run (line 387) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_Task_Run_Delay (line 446) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_Task_Delay (line 509) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method DoDelay (line 525) | private async Task DoDelay(int i) method ActivationSched_Turn_Execution_Order_Loop (line 539) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_Test1 (line 658) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method ActivationSched_Test1_Bounce (line 664) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] method Run_ActivationSched_Test1 (line 670) | internal async Task Run_ActivationSched_Test1(TaskScheduler scheduler,... method LogContext (line 740) | private void LogContext(string what) class MockSiloDetails (line 760) | private class MockSiloDetails : ILocalSiloDetails FILE: test/Orleans.Core.Tests/SchedulerTests/OrleansTaskSchedulerBasicTests.cs class UnitTestSchedulingContext (line 15) | internal class UnitTestSchedulingContext : IGrainContext, IDisposable method Create (line 17) | public static UnitTestSchedulingContext Create(ILoggerFactory loggerFa... method UnitTestSchedulingContext (line 24) | private UnitTestSchedulingContext() { } method Activate (line 52) | public void Activate(Dictionary requestContext, Cancel... method Deactivate (line 53) | public void Deactivate(DeactivationReason deactivationReason, Cancella... method Dispose (line 55) | public void Dispose() => (Scheduler as IDisposable)?.Dispose(); method GetComponent (line 56) | public object GetComponent(Type componentType) => throw new NotImpleme... method GetTarget (line 57) | public object GetTarget() => throw new NotImplementedException(); method ReceiveMessage (line 58) | public void ReceiveMessage(object message) => throw new NotImplemented... method SetComponent (line 60) | public void SetComponent(TComponent value) where TComponen... method Equals (line 62) | bool IEquatable.Equals(IGrainContext other) => Referenc... method Rehydrate (line 63) | void IGrainContext.Rehydrate(IRehydrationContext context) => throw new... method Migrate (line 64) | void IGrainContext.Migrate(Dictionary requestContext, ... class OrleansTaskSchedulerBasicTests (line 72) | [TestCategory("BVT"), TestCategory("Scheduler")] method OrleansTaskSchedulerBasicTests (line 79) | public OrleansTaskSchedulerBasicTests(ITestOutputHelper output) method Dispose (line 87) | public void Dispose() method Async_Task_Start_ActivationTaskScheduler (line 96) | [Fact, TestCategory("AsynchronyPrimitives")] method Sched_SimpleFifoTest (line 111) | [Fact] method Sched_Task_TplFifoTest (line 135) | [Fact] method Sched_Task_ClosureWorkItem_Wait (line 162) | [Fact] method Sched_Task_TaskWorkItem_CurrentScheduler (line 206) | [Fact] method Sched_Task_SubTaskExecutionSequencing (line 254) | [Fact] method Sched_AC_RequestContext_StartNew_ContinueWith (line 321) | [Fact] method RequestContextProtectedInQueuedTasksTest (line 358) | [Fact] method LogContext (line 406) | private void LogContext(string what) method InitSchedulerLogging (line 428) | internal static ILoggerFactory InitSchedulerLogging() FILE: test/Orleans.Core.Tests/SchedulerTests/STSchedulerLongTurnTest.cs class STSchedulerLongTurnTest (line 12) | [TestCategory("BVT")] method STSchedulerLongTurnTest (line 15) | public STSchedulerLongTurnTest(DefaultClusterFixture fixture) : base(f... method Sched_LongTurnTest (line 19) | [Fact, TestCategory("Functional"), TestCategory("Scheduler")] FILE: test/Orleans.Core.Tests/SchedulingHelper.cs class SchedulingHelper (line 10) | public class SchedulingHelper method CreateWorkItemGroupForTesting (line 12) | internal static WorkItemGroup CreateWorkItemGroupForTesting( FILE: test/Orleans.Core.Tests/Serialization/BuiltInSerializerTests.cs class BuiltInSerializerTests (line 25) | [Collection(TestEnvironmentFixture.DefaultCollection), TestCategory("Ser... method BuiltInSerializerTests (line 31) | public BuiltInSerializerTests(ITestOutputHelper output, TestEnvironmen... method InternalSerializableTypesHaveSerializers (line 41) | [Fact, TestCategory("BVT"), TestCategory("CodeGen")] method ValueTupleTypesHasSerializer (line 61) | [Fact, TestCategory("BVT"), TestCategory("CodeGen")] method Serialize_ComplexAccessibleClass (line 72) | [Fact, TestCategory("BVT")] method Serialize_Type (line 113) | [Fact, TestCategory("BVT")] method Serialize_ComplexStruct (line 128) | [Fact, TestCategory("BVT")] method Serialize_EmptyList (line 146) | [Fact, TestCategory("Functional")] method Serialize_BasicDictionaries (line 158) | [Fact, TestCategory("Functional")] method Serialize_ReadOnlyDictionary (line 175) | [Fact, TestCategory("Functional")] method Serialize_DictionaryWithComparer (line 193) | [Fact, TestCategory("Functional")] method Serialize_SortedDictionaryWithComparer (line 213) | [Fact, TestCategory("Functional")] method Serialize_SortedListWithComparer (line 223) | [Fact, TestCategory("Functional")] method Serialize_HashSetWithComparer (line 233) | [Fact, TestCategory("Functional")] method Serialize_Stack (line 253) | [Fact, TestCategory("Functional")] method Serialize_TypeWithOnDeserializedHook (line 277) | [Fact, TestCategory("Functional")] method Serialize_SortedSetWithComparer (line 291) | [Fact, TestCategory("Functional")] method Serialize_Array (line 311) | [Fact, TestCategory("Functional")] method Serialize_ArrayOfArrays (line 331) | [Fact, TestCategory("Functional")] method Serialize_ArrayOfArrayOfArrays (line 393) | [Fact, TestCategory("Functional")] method Serialize_ReadOnlyCollection (line 404) | [Fact, TestCategory("Functional")] class BanningTypeResolver (line 413) | private class BanningTypeResolver : TypeResolver method BanningTypeResolver (line 418) | public BanningTypeResolver(params Type[] blockedTypes) method ResolveType (line 427) | public override Type ResolveType(string name) method TryResolveType (line 438) | public override bool TryResolveType(string name, out Type type) method Serialize_ObjectIdentity (line 455) | [Fact, TestCategory("Functional")] method Serialize_Unrecognized (line 488) | [Fact, TestCategory("Functional")] method Serialize_Immutable (line 513) | [Fact, TestCategory("Functional")] method Serialize_GrainReference (line 549) | [Fact, TestCategory("Functional")] method AreByteArraysAreEqual (line 562) | internal bool AreByteArraysAreEqual(byte[] array1, byte[] array2) method OrleansSerializationLoop (line 576) | internal static object OrleansSerializationLoop(Serializer serializer,... method ValidateDictionary (line 586) | private void ValidateDictionary(Dictionary source, object ... method ValidateDictionaryContent (line 592) | private void ValidateDictionaryContent(IDictionary source,... method ValidateReadOnlyDictionary (line 602) | private void ValidateReadOnlyDictionary(ReadOnlyDictionary... method ValidateSortedDictionary (line 608) | private void ValidateSortedDictionary(SortedDictionary sou... method ValidateSortedList (line 627) | private void ValidateSortedList(SortedList source, object ... method ValidateReadOnlyCollectionList (line 646) | private void ValidateReadOnlyCollectionList(ReadOnlyCollection e... method ValidateList (line 652) | private void ValidateList(IList expected, IList result, strin... method ValidateArray (line 661) | private void ValidateArray(T[] expected, object deserialized, strin... method ValidateArrayOfArrays (line 671) | private void ValidateArrayOfArrays(T[][] expected, object deseriali... method ValidateArrayOfArrayOfArrays (line 681) | private void ValidateArrayOfArrayOfArrays(T[][][] expected, object ... method Serialize_CircularReference (line 691) | [Fact, TestCategory("Functional")] method Serialize_Enums (line 708) | [Fact, TestCategory("Functional")] FILE: test/Orleans.Core.Tests/Serialization/ExternalCodecTests.cs class ExternalCodecTests (line 20) | [TestCategory("Serialization"), TestCategory("BVT")] method ExternalCodecTests (line 25) | public ExternalCodecTests() method NewtonsoftJsonCodec_ExternalSerializer_Client (line 36) | [Fact] method NewtonsoftJsonCodec_ExternalSerializer_Silo (line 42) | [Fact] method NewtonsoftJsonCodec_CanModifySerializerSettings (line 62) | [Fact] method NewtonsoftJsonCodec_DoesNotSerializeFrameworkTypes (line 80) | [Fact] method SystemTextJsonCodec_DoesNotSerializeFrameworkTypes (line 109) | [Fact] method ProtocolBuffersCodec_DoesNotSerializeFrameworkTypes (line 138) | [Fact] method TestSerializationRoundTrip (line 172) | private static void TestSerializationRoundTrip(Serializer serializer) method ToString (line 186) | private static string ToString(byte[] bytes) class JsonTypeAttribute (line 201) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class JsonPoco (line 206) | [JsonType] FILE: test/Orleans.Core.Tests/Serialization/MessageSerializerTests.cs class MessageSerializerTests (line 23) | [Collection(TestEnvironmentFixture.DefaultCollection)] method MessageSerializerTests (line 33) | public MessageSerializerTests(ITestOutputHelper output, TestEnvironmen... method MessageTest_TtlUpdatedOnAccess (line 43) | [Fact, TestCategory("Functional")] method MessageTest_TtlUpdatedOnSerialization (line 53) | [Fact, TestCategory("Functional"), TestCategory("Serialization")] method Message_SerializeHeaderTooBig (line 66) | [Fact, TestCategory("Functional"), TestCategory("Serialization")] method Message_SerializeBodyTooBig (line 87) | [Fact, TestCategory("Functional"), TestCategory("Serialization")] method Message_DeserializeHeaderTooBig (line 102) | [Fact, TestCategory("Functional"), TestCategory("Serialization")] method Message_DeserializeBodyTooBig (line 111) | [Fact, TestCategory("Functional"), TestCategory("Serialization")] method DeserializeFakeMessage (line 120) | private void DeserializeFakeMessage(int headerSize, int bodySize) method RoundTripMessage (line 136) | private Message RoundTripMessage(Message message) method MessageTest_CacheInvalidationHeader_RoundTripCompatibility (line 150) | [Fact, TestCategory("BVT")] class MessageSerializerBackwardsCompatibilityStub (line 244) | private class MessageSerializerBackwardsCompatibilityStub method MessageSerializerBackwardsCompatibilityStub (line 248) | public MessageSerializerBackwardsCompatibilityStub(IFieldCodec ReadCacheInvalidationHeaders(ref... method WriteCacheInvalidationHeaders (line 270) | internal void WriteCacheInvalidationHeaders(ref Write... FILE: test/Orleans.Core.Tests/Serialization/SerializationTests.DifferentTypes.cs class SerializationTestsDifferentTypes (line 12) | [Collection(TestEnvironmentFixture.DefaultCollection)] method SerializationTestsDifferentTypes (line 17) | public SerializationTestsDifferentTypes(TestEnvironmentFixture fixture) method SerializationTests_DateTime (line 22) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_DateTimeOffset (line 47) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_RecursiveSerialization (line 84) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_CultureInfo (line 93) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_CultureInfoList (line 105) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple (line 114) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple2 (line 126) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple3 (line 138) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple4 (line 154) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple5 (line 170) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple6 (line 186) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple7 (line 202) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] method SerializationTests_ValueTuple8 (line 218) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] class SerializerExtensions (line 227) | public static class SerializerExtensions method RoundTripSerializationForTesting (line 229) | public static T RoundTripSerializationForTesting(this Serializer se... FILE: test/Orleans.Core.Tests/Serialization/SerializationTests.ImmutableCollections.cs class SerializationTestsImmutableCollections (line 10) | [Collection(TestEnvironmentFixture.DefaultCollection)] method SerializationTestsImmutableCollections (line 15) | public SerializationTestsImmutableCollections(TestEnvironmentFixture f... method RoundTripCollectionSerializationTest (line 20) | private void RoundTripCollectionSerializationTest(IEnumerable in... method SerializationTests_ImmutableCollections_Dictionary (line 26) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... method SerializationTests_ImmutableCollections_Array (line 37) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... method SerializationTests_ImmutableCollections_ArrayDefault (line 44) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... method SerializationTests_ImmutableCollections_HashSet (line 52) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... method SerializationTests_ImmutableCollections_List (line 59) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... method SerializationTests_ImmutableCollections_Queue (line 66) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... method SerializationTests_ImmutableCollections_SortedSet (line 73) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... method SerializationTests_ImmutableCollections_SortedDictionary (line 80) | [Fact, TestCategory("BVT"), TestCategory("ImmutableCollections"), Test... FILE: test/Orleans.Core.Tests/ServiceLifecycleTests.cs class ServiceLifecycleTests (line 11) | [TestCategory("BVT"), TestCategory("Lifecycle")] method ServiceLifecycleTests (line 18) | public ServiceLifecycleTests(ITestOutputHelper output) method RegisterCallback (line 28) | private static (Task Task, IDisposable Registration) Register... method BasicCallbackExecution (line 57) | [Fact] method Stage_WaitAsync (line 70) | [Fact] method Stage_WaitAsync_Cancellation (line 81) | [Fact] method Stage_NotifyCompleted_IsIdempotent (line 107) | [Fact] method CallbackDisposal_PreventsExecution (line 133) | [Fact] method CancellationToken_TriggeredOnStageCompletion (line 146) | [Fact] method ErrorHandling_TerminateOnErrorFalse (line 159) | [Fact] method ErrorHandling_TerminateOnErrorTrue (line 173) | [Fact] method ErrorHandling_TerminateOnErrorTrue_MultipleFailures (line 191) | [Fact] method LateRegistration_ExecutedImmediately (line 226) | [Fact] method ConcurrentCallbacks_RegistrationSafe (line 238) | [Fact] method MultipleStages_ExecuteInOrder (line 264) | [Fact] method BackgroundWorker_StopsOnCancellation (line 287) | [Fact] method Lifecycle_CancellationToken_PassedToCallback (line 311) | [Fact] class CancelableSiloLifecycleSubject (line 350) | public class CancelableSiloLifecycleSubject(ILogger InsertRow(MembershipEntry entry, TableVersion tableV... method ReadAll (line 42) | public Task ReadAll() method ReadRow (line 47) | public Task ReadRow(SiloAddress key) method UpdateIAmAlive (line 52) | public Task UpdateIAmAlive(MembershipEntry entry) method UpdateRow (line 57) | public Task UpdateRow(MembershipEntry entry, string etag, TableV... class SiloBuilderTests (line 68) | [TestCategory("BVT")] method SiloBuilderTest (line 76) | [Fact] method SiloBuilder_GrainCollectionOptionsForZeroSecondsAgeLimitTest (line 100) | [Fact] method SiloBuilder_ClusterMembershipOptionsValidators (line 121) | [Fact] method SiloBuilder_LoadSheddingValidatorAbove100ShouldFail (line 148) | [Fact] method SiloBuilderThrowsDuringStartupIfNoGrainsAdded (line 173) | [Fact] method SiloBuilderThrowsDuringStartupIfClientBuildersAdded (line 195) | [Fact] method SiloBuilderWithHotApplicationBuilderThrowsDuringStartupIfClientBuildersAdded (line 216) | [Fact] class MyService (line 233) | private class MyService FILE: test/Orleans.Core.Tests/Utilities/DelegateAsyncTimer.cs class DelegateAsyncTimer (line 5) | internal class DelegateAsyncTimer : IAsyncTimer method DelegateAsyncTimer (line 9) | public DelegateAsyncTimer(Func> nextTick) method NextTick (line 16) | public Task NextTick(TimeSpan? overrideDelay = null) => this.nex... method CheckHealth (line 18) | public bool CheckHealth(DateTime lastCheckTime, out string reason) method Dispose (line 24) | public void Dispose() => ++this.DisposedCounter; FILE: test/Orleans.Core.Tests/Utilities/DelegateAsyncTimerFactory.cs class DelegateAsyncTimerFactory (line 5) | internal class DelegateAsyncTimerFactory : IAsyncTimerFactory method DelegateAsyncTimerFactory (line 7) | public DelegateAsyncTimerFactory(Func c... method Create (line 14) | public IAsyncTimer Create(TimeSpan period, string name) => this.Create... FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/GenericGrain.cs type IGenericGrain (line 8) | public interface IGenericGrain : IGrainWithStringKey method Echo (line 10) | Task Echo(T value); method EchoNoProfiling (line 12) | Task EchoNoProfiling(T value); class GenericGrain (line 15) | internal class GenericGrain : Grain, IGenericGrain method GenericGrain (line 19) | public GenericGrain(IGrainProfiler profiler) method Echo (line 24) | public Task Echo(T value) method EchoNoProfiling (line 29) | [NoProfiling] FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestCalls.cs class TestCalls (line 8) | public static class TestCalls method Run (line 10) | public static Task Run(IGrainFactory client, CancellationToken cancell... FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestGenericGrain.cs type ITestGenericGrain (line 6) | public interface ITestGenericGrain : IGrainWithStringKey method TestT (line 8) | Task TestT(T value); method TestU (line 10) | Task TestU(U value); method TestTU (line 12) | Task TestTU(T value1, U value2); class TestGenericGrain (line 15) | public class TestGenericGrain : Grain, ITestGenericGrain method TestT (line 17) | public Task TestT(T value) method TestTU (line 22) | public Task TestTU(T value1, U value2) method TestU (line 27) | public Task TestU(U value) FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestGrain.cs type ITestGrain (line 9) | public interface ITestGrain : IGrainWithIntegerKey method ExampleMethod1 (line 11) | Task ExampleMethod1(); method ExampleMethod2 (line 13) | Task ExampleMethod2(); class TestGrain (line 16) | public class TestGrain : Grain, ITestGrain, IRemindable method ExampleMethod1 (line 20) | public async Task ExampleMethod1() method ExampleMethod2 (line 25) | public Task ExampleMethod2() method OnActivateAsync (line 35) | public override async Task OnActivateAsync(CancellationToken cancellat... method ReceiveReminder (line 42) | public Task ReceiveReminder(string reminderName, TickStatus status) FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestGrainsHostedService.cs class TestGrainsHostedService (line 8) | public class TestGrainsHostedService : IHostedService method TestGrainsHostedService (line 13) | public TestGrainsHostedService(IGrainFactory grainFactory) method StartAsync (line 18) | public Task StartAsync(CancellationToken cancellationToken) method StopAsync (line 25) | public Task StopAsync(CancellationToken cancellationToken) FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestMessageBasedGrain.cs type ITestMessageBasedGrain (line 6) | public interface ITestMessageBasedGrain : IGrainWithIntegerKey method Receive (line 8) | Task Receive(object message); method ReceiveVoid (line 10) | Task ReceiveVoid(object message); method Notify (line 12) | Task Notify(object message); class TestMessageBasedGrain (line 15) | public class TestMessageBasedGrain : Grain, ITestMessageBasedGrain method Receive (line 17) | public Task Receive(object message) method ReceiveVoid (line 22) | public Task ReceiveVoid(object message) method Notify (line 27) | public Task Notify(object message) FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestStateCompoundKeyGrain.cs type ITestStateCompoundKeyGrain (line 7) | public interface ITestStateCompoundKeyGrain : IGrainWithIntegerCompoundKey method GetState (line 9) | Task GetState(); class TestStateCompoundKeyGrain (line 12) | public class TestStateCompoundKeyGrain : Grain, ITestStateCompoundKeyGrain method TestStateCompoundKeyGrain (line 17) | public TestStateCompoundKeyGrain() method GetState (line 26) | public Task GetState() FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestStateGrain.cs type ITestStateGrain (line 9) | public interface ITestStateGrain : IGrainWithIntegerKey method GetCounterState (line 11) | Task GetCounterState(); method WriteCounterState (line 12) | Task WriteCounterState(CounterState state); class TestStateGrain (line 15) | public class TestStateGrain : Grain, ITestStateGrain method TestStateGrain (line 21) | public TestStateGrain( method GetCounterState (line 27) | public Task GetCounterState() method WriteCounterState (line 32) | public async Task WriteCounterState(CounterState state) method OnActivateAsync (line 38) | public override async Task OnActivateAsync(CancellationToken cancellat... class CounterState (line 47) | [GenerateSerializer] FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.TestGrains/TestStateInMemoryGrain.cs type ITestStateInMemoryGrain (line 7) | public interface ITestStateInMemoryGrain : IGrainWithIntegerKey method GetState (line 9) | Task GetState(); class TestStateInMemoryGrain (line 12) | public class TestStateInMemoryGrain : Grain, ITestStateInMemoryGrain method TestStateInMemoryGrain (line 17) | public TestStateInMemoryGrain() method GetState (line 26) | public Task GetState() class InMemoryCounterState (line 32) | [GenerateSerializer] FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.UnitTests/EmbeddedAssetTests.cs class EmbeddedAssetTests (line 11) | public class EmbeddedAssetTests method Assembly_ContainsEmbeddedResources (line 16) | [Fact] method Assembly_ContainsIndexHtml (line 24) | [Fact] method Assembly_ContainsIndexCss (line 34) | [Fact] method Assembly_ContainsIndexJs (line 44) | [Fact] method Assembly_ContainsFavicon (line 54) | [Fact] method Assembly_ContainsFontFiles (line 64) | [Fact] method IndexHtml_IsNotEmpty (line 73) | [Fact] method IndexCss_IsNotEmpty (line 84) | [Fact] method IndexJs_IsNotEmpty (line 95) | [Fact] method IndexHtml_ContainsExpectedContent (line 106) | [Fact] method EmbeddedAssetProvider_CanBeInstantiated (line 121) | [Fact] method EmbeddedAssetProvider_ServesIndexHtml (line 131) | [Fact] method EmbeddedAssetProvider_ServesIndexCss (line 143) | [Fact] method EmbeddedAssetProvider_ServesIndexJs (line 154) | [Fact] method EmbeddedAssetProvider_ServesFontFiles (line 165) | [Fact] method EmbeddedAssetProvider_ReturnsNotFoundForMissingAsset (line 188) | [Fact] FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.UnitTests/GrainStateTests.cs class GrainStateTests (line 16) | public class GrainStateTests : IDisposable method GrainStateTests (line 19) | public GrainStateTests() method Dispose (line 27) | public void Dispose() method TestGetGrainsTypes (line 32) | [Fact] method TestWithGetStateMethod (line 41) | [Fact] method TestWithIStorageField (line 56) | [Fact] class TestSiloConfigurations (line 76) | public class TestSiloConfigurations : ISiloConfigurator method Configure (line 78) | public void Configure(ISiloBuilder siloBuilder) FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.UnitTests/RingBufferTests.cs class RingBufferTests (line 8) | public class RingBufferTests method Should_create_empty_buffer (line 10) | [Fact] method Should_add_item_to_buffer_until_capacity_reached (line 18) | [Fact] method Should_add_item_over_capacity (line 31) | [Fact] method ToList (line 44) | private static List ToList(RingBuffer buffer) FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.UnitTests/TraceHistoryTests.cs class TraceHistoryTests (line 9) | public class TraceHistoryTests method Add (line 14) | private void Add(ITraceHistory history, int count) method CreateHistory (line 46) | private ITraceHistory CreateHistory() => new TraceHistory(100); method TestTraceHistoryIsLimitedTo100 (line 48) | [Fact] method TestTraceHistoryQueryAll (line 69) | [Fact] method TestTraceHistoryQueryGrain (line 81) | [Fact] method TestTraceHistoryGroupByGrainAndSilo (line 95) | [Fact] method TestTraceHistoryTopGrainMethods (line 124) | [Fact] FILE: test/Orleans.Dashboard.Tests/Orleans.Dashboard.UnitTests/TypeFormatterTests.cs class TypeFormatterTests (line 6) | public class TypeFormatterTests method TestSimpleType (line 8) | [Fact] method TestCustomType (line 18) | [Fact] method TestFriendlyNameForStrings (line 28) | [Fact] method TestGenericWithMultipleTs (line 38) | [Fact] method TestGenericGrainWithMultipleTs (line 48) | [Fact] method TestGenericGrainWithFsType (line 58) | [Fact] FILE: test/Orleans.DefaultCluster.Tests/AsyncEnumerableGrainCallTests.cs class AsyncEnumerableGrainCallTests (line 18) | public class AsyncEnumerableGrainCallTests : HostedTestClusterEnsureDefa... method AsyncEnumerableGrainCallTests (line 20) | public AsyncEnumerableGrainCallTests(DefaultClusterFixture fixture) : ... method ObservableGrain_AsyncEnumerable (line 29) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_CancelBeforeYield (line 65) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_Throws (line 123) | [Theory, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_Cancellation (line 165) | [Theory, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_CancellationToken (line 212) | [Theory, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_CancellationToken_WithCancellationExtension (line 277) | [Theory, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_Batch (line 342) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_SplitBatch (line 378) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_NoBatching (line 414) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_WithCancellation (line 452) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_SlowProducer (line 502) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_SlowConsumer (line 542) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_SlowConsumer_Evicted (line 591) | [Fact, TestCategory("BVT"), TestCategory("Observable")] method ObservableGrain_AsyncEnumerable_Deactivate (line 649) | [Fact, TestCategory("BVT"), TestCategory("Observable")] class AsyncEnumerableGrainExtensionListener (line 683) | private sealed class AsyncEnumerableGrainExtensionListener : IObserver... method AsyncEnumerableGrainExtensionListener (line 690) | public AsyncEnumerableGrainExtensionListener(GrainId targetGrainId, ... method OnCompleted (line 699) | void IObserver>.OnCompleted() method OnError (line 704) | void IObserver>.OnError(Exception error) method OnNext (line 708) | void IObserver>.OnNext(KeyValuePair.OnCompleted() { } method OnError (line 728) | void IObserver.OnError(Exception error) { } method OnNext (line 729) | void IObserver.OnNext(DiagnosticListener value) method Dispose (line 737) | public void Dispose() FILE: test/Orleans.DefaultCluster.Tests/BasicActivationTests.cs class BasicActivationTests (line 20) | public class BasicActivationTests : HostedTestClusterEnsureDefaultStarted method BasicActivationTests (line 22) | public BasicActivationTests(DefaultClusterFixture fixture) : base(fixt... method GetResponseTimeout (line 26) | private TimeSpan GetResponseTimeout() => this.Client.ServiceProvider.G... method SetResponseTimeout (line 27) | private void SetResponseTimeout(TimeSpan value) => this.Client.Service... method BasicActivation_ActivateAndUpdate (line 37) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BasicActivation_Guid_ActivateAndUpdate (line 63) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BasicActivation_Fail (line 90) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BasicActivation_BurstFail (line 115) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BasicActivation_ULong_MaxValue (line 149) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BasicActivation_ULong_MinValue (line 175) | [Fact, TestCategory("ActivateDeactivate"), TestCategory("GetGrain")] method BasicActivation_Long_MaxValue (line 202) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BasicActivation_Long_MinValue (line 228) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BasicActivation_MultipleGrainInterfaces (line 254) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method BasicActivation_Reentrant_RecoveryAfterExpiredMessage (line 275) | [Fact, TestCategory("SlowBVT"), TestCategory("ActivateDeactivate"), method BasicActivation_TestRequestContext (line 328) | [Fact, TestCategory("BVT"), TestCategory("RequestContext"), TestCatego... FILE: test/Orleans.DefaultCluster.Tests/ClientAddressableTests.cs class ClientAddressableTests (line 18) | public class ClientAddressableTests : HostedTestClusterEnsureDefaultStarted class MyPseudoGrain (line 31) | private class MyPseudoGrain : IClientAddressableTestClientObject method OnHappyPath (line 36) | public Task OnHappyPath(string message) method OnSadPath (line 44) | public Task OnSadPath(string message) method OnSerialStress (line 52) | public Task OnSerialStress(int n) method OnParallelStress (line 59) | public Task OnParallelStress(int n) method VerifyNumbers (line 65) | public void VerifyNumbers(int iterationCount) class MyProducer (line 78) | private class MyProducer : IClientAddressableTestProducer method Poll (line 82) | public Task Poll() method ClientAddressableTests (line 89) | public ClientAddressableTests(DefaultClusterFixture fixture) : base(fi... method TestClientAddressableHappyPath (line 102) | [Fact, TestCategory("BVT"), TestCategory("ClientAddressable")] method TestClientAddressableSadPath (line 122) | [Fact, TestCategory("BVT"), TestCategory("ClientAddressable")] method GrainShouldSuccessfullyPullFromClientObject (line 148) | [Fact, TestCategory("BVT"), TestCategory("ClientAddressable")] method MicroClientAddressableSerialStressTest (line 172) | [Fact, TestCategory("BVT"), TestCategory("ClientAddressable")] method MicroClientAddressableParallelStressTest (line 195) | [Fact, TestCategory("BVT"), TestCategory("ClientAddressable")] FILE: test/Orleans.DefaultCluster.Tests/CodeGenTests/CodeGeneratorTests_KnownAssemblyAttribute.cs class KnownAssemblyAttributeTests (line 11) | public class KnownAssemblyAttributeTests : HostedTestClusterEnsureDefaul... method KnownAssemblyAttributeTests (line 13) | public KnownAssemblyAttributeTests(DefaultClusterFixture fixture) : ba... method SiloSerializerExists (line 17) | private async Task SiloSerializerExists(Type t) method ClientSerializerExists (line 25) | private void ClientSerializerExists(Type t) method Silo_Serializer_Exists_for_Type_In_Grain_Assembly (line 30) | [Fact, TestCategory("BVT"), TestCategory("CodeGen"), TestCategory("Ser... method Client_Serializer_Exists_for_Type_In_Grain_Assembly (line 36) | [Fact, TestCategory("BVT"), TestCategory("CodeGen"), TestCategory("Ser... method Silo_Serializer_Exists_for_Type_In_Known_Assembly (line 42) | [Fact, TestCategory("BVT"), TestCategory("CodeGen"), TestCategory("Ser... method Client_Serializer_Exists_for_Type_In_Known_Assembly (line 48) | [Fact, TestCategory("BVT"), TestCategory("CodeGen"), TestCategory("Ser... method Silo_Serializer_Exists_for_Type_In_Grain_Assembly_containing_KnownAssemblyAttribute (line 54) | [Fact, TestCategory("BVT"), TestCategory("CodeGen"), TestCategory("Ser... method Client_Serializer_Exists_for_Type_In_Grain_Assembly_containing_KnownAssemblyAttribute (line 60) | [Fact, TestCategory("BVT"), TestCategory("CodeGen"), TestCategory("Ser... FILE: test/Orleans.DefaultCluster.Tests/CodeGenTests/GeneratorGrainTest.cs class GeneratorGrainTest (line 12) | [TestCategory("BVT"), TestCategory("CodeGen")] method GeneratorGrainTest (line 15) | public GeneratorGrainTest(DefaultClusterFixture fixture) : base(fixture) method GeneratorGrainControlFlow (line 19) | [Fact] method GeneratorDerivedGrain1ControlFlow (line 51) | [Fact] method GeneratorDerivedGrain2ControlFlow (line 82) | [Fact] method GeneratorDerivedDerivedGrainControlFlow (line 117) | [Fact] method CodeGenDerivedFromCSharpInterfaceInDifferentAssembly (line 160) | [Fact] method GrainWithGenericMethods (line 169) | [Fact] method GenericGrainWithGenericMethods (line 185) | [Fact] method GrainObserverWithGenericMethods (line 198) | [Fact] method GrainWithValueTaskMethod (line 209) | [Fact] class ObserverWithGenericMethods (line 217) | private class ObserverWithGenericMethods : IGrainObserverWithGenericMe... method SetValue (line 223) | public void SetValue(T value) method CodeGenDerivedFromFSharpInterfaceInDifferentAssembly (line 229) | [Fact, TestCategory("FSharp")] FILE: test/Orleans.DefaultCluster.Tests/CodeGenTests/IRuntimeCodeGenGrain.cs type IExplicitInterfaceMethodImplementationTestGenericBase (line 12) | public interface IExplicitInterfaceMethodImplementationTestGenericBase.M(o... class ExplicitInterfaceMethodImplementationTestGrain (line 24) | public interface IExplicitInterfaceMethodImplementationTestImplementatio... method M (line 28) | public Task M(string arg) type IGrainWithNonPublicMethods (line 36) | public interface IGrainWithNonPublicMethods : IGrainWithGuidKey method M1 (line 38) | internal class P1; method M3 (line 44) | internal protected class P3; type IGrainWithGenericMethods (line 51) | public interface IGrainWithGenericMethods : IGrainWithGuidKey method GetTypesExplicit (line 53) | Task GetTypesExplicit(); method GetTypesInferred (line 54) | Task GetTypesInferred(T t, U u, V v); method GetTypesInferred (line 55) | Task GetTypesInferred(T t, U u, int v); method RoundTrip (line 56) | Task RoundTrip(T val); method RoundTrip (line 57) | Task RoundTrip(int val); method Default (line 58) | Task Default(); method Default (line 59) | Task Default(); method Constraints (line 60) | Task Constraints(TGrain grain) where TGrain : IGrain; method SetValueOnObserver (line 61) | Task SetValueOnObserver(IGrainObserverWithGenericMethods observer, ... method ValueTaskMethod (line 62) | ValueTask ValueTaskMethod(bool useCache); type IGrainObserverWithGenericMethods (line 65) | public interface IGrainObserverWithGenericMethods : IGrainObserver method SetValue (line 67) | void SetValue(T value); class GrainWithGenericMethods (line 70) | public class GrainWithGenericMethods : Grain, IGrainWithGenericMethods method GetTypesExplicit (line 74) | public Task GetTypesExplicit() method GetTypesInferred (line 79) | public Task GetTypesInferred(T t, U u, V v) method GetTypesInferred (line 84) | public Task GetTypesInferred(T t, U u, int v) method RoundTrip (line 89) | public Task RoundTrip(T val) method RoundTrip (line 94) | public Task RoundTrip(int val) method Default (line 99) | public Task Default() method Default (line 104) | public Task Default() method Constraints (line 109) | public Task Constraints(TGrain grain) where TGrain : I... method SetValue (line 114) | public void SetValue(T value) method GetValue (line 119) | public Task GetValue() => Task.FromResult((T) this.state); method SetValueOnObserver (line 121) | public Task SetValueOnObserver(IGrainObserverWithGenericMethods obs... method ValueTaskMethod (line 127) | public ValueTask ValueTaskMethod(bool useCache) method Method (line 148) | public Task Method(T value) => Task.FromResult(default(T)); method Method (line 151) | public Task Method(T value) => Task.FromResult(value); type IGenericGrainWithGenericMethods (line 138) | public interface IGenericGrainWithGenericMethods : IGrainWithGuidKey method Method (line 140) | Task Method(T value); method Method (line 142) | Task Method(T value); class GrainWithGenericMethods (line 146) | public class GrainWithGenericMethods : Grain, IGenericGrainWithGeneri... method GetTypesExplicit (line 74) | public Task GetTypesExplicit() method GetTypesInferred (line 79) | public Task GetTypesInferred(T t, U u, V v) method GetTypesInferred (line 84) | public Task GetTypesInferred(T t, U u, int v) method RoundTrip (line 89) | public Task RoundTrip(T val) method RoundTrip (line 94) | public Task RoundTrip(int val) method Default (line 99) | public Task Default() method Default (line 104) | public Task Default() method Constraints (line 109) | public Task Constraints(TGrain grain) where TGrain : I... method SetValue (line 114) | public void SetValue(T value) method GetValue (line 119) | public Task GetValue() => Task.FromResult((T) this.state); method SetValueOnObserver (line 121) | public Task SetValueOnObserver(IGrainObserverWithGenericMethods obs... method ValueTaskMethod (line 127) | public ValueTask ValueTaskMethod(bool useCache) method Method (line 148) | public Task Method(T value) => Task.FromResult(default(T)); method Method (line 151) | public Task Method(T value) => Task.FromResult(value); class RuntimeGenericGrain (line 155) | [StorageProvider(ProviderName = "MemoryStore")] method SetState (line 158) | public Task<@event> SetState(@event value) method @static (line 164) | public Task<@event> @static() type IRuntimeCodeGenGrain (line 170) | public interface IRuntimeCodeGenGrain : IGrainWithGuidKey method SetState (line 177) | Task SetState(T value); method @static (line 183) | Task<@event> @static(); class GenericGrainState (line 186) | [Serializable] class @event (line 197) | [GenerateSerializer] type @enum (line 202) | public enum @enum method Equals (line 263) | public override bool Equals(object obj) method GetHashCode (line 281) | public override int GetHashCode() => HashCode.Combine(@if, @public, pr... method Equals (line 283) | public bool Equals(@event other) class EventEqualityComparer (line 312) | private sealed class EventEqualityComparer : IEqualityComparer<@event> method Equals (line 314) | public bool Equals(@event x, @event y) method GetHashCode (line 319) | public int GetHashCode(@event obj) class NestedGeneric (line 326) | [GenerateSerializer] class Nested (line 332) | [GenerateSerializer] class NestedConstructedGeneric (line 340) | [GenerateSerializer] class Nested (line 346) | [GenerateSerializer] type INestedGenericGrain (line 354) | public interface INestedGenericGrain : IGrainWithGuidKey method Do (line 356) | Task Do(NestedGeneric value); method Do (line 357) | Task Do(NestedConstructedGeneric value); class NestedGenericGrain (line 363) | public class NestedGenericGrain : Grain, INestedGenericGrain method Do (line 365) | public Task Do(NestedGeneric value) method Do (line 370) | public Task Do(NestedConstructedGeneric value) type IGrainWithStaticMembers (line 376) | public interface IGrainWithStaticMembers : IGrainWithGuidKey method StaticMethodWithNonAsyncReturnType (line 378) | public static int StaticMethodWithNonAsyncReturnType(int a) => 0; method StaticVirtualMethodWithNonAsyncReturnType (line 379) | public static virtual int StaticVirtualMethodWithNonAsyncReturnType(in... method StaticMethodWithOutAndVarParams (line 382) | public static int StaticMethodWithOutAndVarParams(out int a, ref int b... method StaticVirtualMethodWithOutAndVarParams (line 383) | public static virtual int StaticVirtualMethodWithOutAndVarParams(out i... class GrainWithStaticMembers (line 386) | public class GrainWithStaticMembers : Grain, IGrainWithStaticMembers FILE: test/Orleans.DefaultCluster.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 11) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 18) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Orleans.DefaultCluster.Tests/ConcreteStateClassTests.cs class StateClassTests (line 16) | public class StateClassTests : HostedTestClusterEnsureDefaultStarted method StateClassTests (line 20) | public StateClassTests(DefaultClusterFixture fixture) : base(fixture) method StateClassTests_StateClass (line 33) | [Fact, TestCategory("BVT")] method StateClassTests_Test (line 46) | private async Task StateClassTests_Test(string grainClass) FILE: test/Orleans.DefaultCluster.Tests/DeactivationTests.cs class DeactivationTests (line 18) | public class DeactivationTests : HostedTestClusterEnsureDefaultStarted method DeactivationTests (line 20) | public DeactivationTests(DefaultClusterFixture fixture) : base(fixture) method DeactivateReactivateTiming (line 32) | [Fact, TestCategory("BVT")] FILE: test/Orleans.DefaultCluster.Tests/EchoTaskGrainTests.cs class EchoTaskGrainTests (line 22) | public class EchoTaskGrainTests : HostedTestClusterEnsureDefaultStarted method EchoTaskGrainTests (line 30) | public EchoTaskGrainTests(DefaultClusterFixture fixture) method EchoGrain_GetGrain (line 45) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_Echo (line 59) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_EchoError (line 83) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_Timeout_ContinueWith (line 108) | [Fact, TestCategory("SlowBVT"), TestCategory("Echo"), TestCategory("Ti... method EchoGrain_Timeout_Await (line 138) | [Fact, TestCategory("SlowBVT"), TestCategory("Echo")] method EchoGrain_Timeout_Result (line 167) | [Fact, TestCategory("SlowBVT"), TestCategory("Echo"), TestCategory("Ti... method EchoGrain_LastEcho (line 206) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_Ping (line 251) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_PingSilo_Local (line 273) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_PingSilo_Remote (line 294) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_PingSilo_OtherSilo (line 323) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_PingSilo_OtherSilo_Membership (line 344) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoTaskGrain_Await (line 368) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoTaskGrain_Await_Reentrant (line 388) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method EchoGrain_EchoNullable (line 410) | [Fact, TestCategory("BVT"), TestCategory("Echo")] method TimeIsLonger (line 434) | private bool TimeIsLonger(TimeSpan time, TimeSpan limit) method TimeIsShorter (line 440) | private bool TimeIsShorter(TimeSpan time, TimeSpan limit) FILE: test/Orleans.DefaultCluster.Tests/ErrorGrainTest.cs class ErrorGrainTest (line 23) | public class ErrorGrainTest : HostedTestClusterEnsureDefaultStarted method ErrorGrainTest (line 28) | public ErrorGrainTest(ITestOutputHelper output, DefaultClusterFixture ... method ErrorGrain_GetGrain (line 38) | [Fact, TestCategory("BVT"), TestCategory("ErrorHandling")] method ErrorHandlingLocalError (line 51) | [Fact, TestCategory("BVT"), TestCategory("ErrorHandling")] method ErrorHandlingGrainError1 (line 78) | [Fact, TestCategory("BVT"), TestCategory("ErrorHandling")] method ErrorHandlingTimedMethod (line 117) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/9558"), TestCat... method ErrorHandlingTimedMethodWithError (line 148) | [Fact, TestCategory("BVT"), TestCategory("ErrorHandling")] method StressHandlingMultipleDelayedRequests (line 168) | [Fact, TestCategory("Functional"), TestCategory("ErrorHandling"), Test... method ArgumentTypes_ListOfGrainReferences (line 194) | [Fact, TestCategory("BVT"), TestCategory("ErrorHandling"), TestCategor... method AC_DelayedExecutor_2 (line 211) | [Fact, TestCategory("BVT"), TestCategory("AsynchronyPrimitives"), Test... method SimpleGrain_AsyncMethods (line 226) | [Fact, TestCategory("BVT"), TestCategory("SimpleGrain")] method SimpleGrain_PromiseForward (line 246) | [Fact, TestCategory("BVT"), TestCategory("SimpleGrain")] method SimpleGrain_GuidDistribution (line 260) | [Fact, TestCategory("BVT"), TestCategory("SimpleGrain")] method CreateGR (line 285) | private void CreateGR(int n, int type) method ObserverTest_Disconnect (line 306) | [Fact, TestCategory("Revisit"), TestCategory("Observers")] method ObserverTest_Disconnect2 (line 317) | [Fact, TestCategory("Revisit"), TestCategory("Observers")] method ObserverTest_DisconnectRunner (line 328) | private void ObserverTest_DisconnectRunner(bool observeTwice) FILE: test/Orleans.DefaultCluster.Tests/ExternalTypesTests.cs class ExternalTypesTests (line 11) | public class ExternalTypesTests : HostedTestClusterEnsureDefaultStarted method ExternalTypesTests (line 13) | public ExternalTypesTests(DefaultClusterFixture fixture) : base(fixture) method ExternalTypesTest_GrainWithEnumExternalTypeParam (line 22) | [Fact, TestCategory("BVT"), TestCategory("Serialization")] FILE: test/Orleans.DefaultCluster.Tests/FSharpGrainTests.cs class FSharpGrainTests (line 14) | public class FSharpGrainTests : HostedTestClusterEnsureDefaultStarted method FSharpGrainTests (line 16) | public FSharpGrainTests(DefaultClusterFixture fixture) : base(fixture) method PingTest (line 20) | private async Task PingTest(T input) method FSharpGrains_Ping (line 32) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_Record_ofInt (line 42) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_Record_ofIntOption_Some_WithNoAttributes (line 53) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_Record_ofIntOption_Some (line 64) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_Record_ofIntOption_None (line 74) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_GenericRecord_ofInt (line 85) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_GenericRecord_ofIntOption_Some (line 97) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_GenericRecord_ofIntOption_None (line 108) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_IntOption_Some (line 119) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... method FSharpGrains_Ping_IntOption_None (line 130) | [Fact, TestCategory("BVT"), TestCategory("Generics"), TestCategory("FS... FILE: test/Orleans.DefaultCluster.Tests/GenericGrainTests.cs class GenericGrainTests (line 18) | [TestCategory("BVT"), TestCategory("Generics")] method GenericGrainTests (line 23) | public GenericGrainTests(DefaultClusterFixture fixture) : base(fixture) method GetGrain (line 27) | public TGrainInterface GetGrain(long i) where TGrainI... method GetGrain (line 32) | public TGrainInterface GetGrain() where TGrainInterfa... method GenericGrainTests_ConcreteGrainWithGenericInterfaceGetGrain (line 42) | [Fact] method GenericGrainTests_ConcreteGrainWithGenericInterfaceMultiplicity (line 67) | [Fact] method GenericGrainTests_SimpleGenericGrainGetGrain (line 86) | [Theory] method GenericGrainTests_SimpleGenericGrainGetGrain_ArrayTypeParameter (line 109) | [Fact] method GenericGrainTests_GenericGrainInheritingArray (line 129) | [Fact] method GenericGrainTests_GenericInterfaceWithGenericParametersGetGrain (line 146) | [Fact] method GenericGrainTests_SimpleGenericGrainMultiplicity (line 166) | [Fact] method GenericGrainTests_PreferConcreteGrainImplementationOfGenericInterface (line 186) | [Fact] method GenericGrainTests_PreferConcreteGrainImplementationOfGenericInterfaceMultiplicity (line 211) | [Fact] method GenericGrainTests_ConcreteGrainWithMultipleGenericInterfacesGetGrain (line 233) | [Fact] method GenericGrainTests_ConcreteGrainWithMultipleGenericInterfacesMultiplicity1 (line 258) | [Fact] method GenericGrainTests_ConcreteGrainWithMultipleGenericInterfacesMultiplicity2 (line 282) | [Fact] method GenericGrainTests_UseGenericFactoryInsideGrain (line 304) | [Fact] method Generic_SimpleGrain_GetGrain (line 315) | [Fact] method Generic_SimpleGrainControlFlow (line 322) | [Fact] method Generic_SimpleGrainControlFlow_Blocking (line 339) | [Fact] method Generic_SimpleGrainDataFlow (line 359) | [Fact] method Generic_SimpleGrain2_GetGrain (line 376) | [Fact] method Generic_SimpleGrainGenericParameterWithMultipleArguments_GetGrain (line 387) | [Fact] method Generic_SimpleGrainControlFlow2_GetAB (line 394) | [Fact] method Generic_SimpleGrainControlFlow3 (line 413) | [Fact] method Generic_BasicGrainControlFlow (line 422) | [Fact] method GrainWithListFields (line 431) | [Fact] method Generic_GrainWithListFields (line 450) | [Fact] method Generic_GrainWithNoProperties_ControlFlow (line 470) | [Fact] method GrainWithNoProperties_ControlFlow (line 483) | [Fact] method Generic_ReaderWriterGrain1 (line 497) | [Fact] method Generic_ReaderWriterGrain2 (line 507) | [Fact] method Generic_ReaderWriterGrain3 (line 522) | [Fact] method Generic_Non_Primitive_Type_Argument (line 546) | [Fact] method Generic_Echo_Chain_1 (line 566) | [Fact] method Generic_Echo_Chain_2 (line 577) | [Fact] method Generic_Echo_Chain_3 (line 588) | [Fact] method Generic_Echo_Chain_4 (line 599) | [Fact] method Generic_Echo_Chain_5 (line 610) | [Fact] method Generic_Echo_Chain_6 (line 621) | [Fact] method Generic_1Argument_GenericCallOnly (line 633) | [Fact] method Generic_1Argument_NonGenericCallFirst (line 642) | [Fact] method Generic_1Argument_GenericCallFirst (line 648) | [Fact] method DifferentTypeArgsProduceIndependentActivations (line 664) | [Fact] method Generic_PingSelf (line 679) | [Fact, TestCategory("Echo")] method Generic_PingOther (line 693) | [Fact, TestCategory("Echo")] method Generic_PingSelfThroughOther (line 709) | [Fact, TestCategory("Echo")] method Generic_ScheduleDelayedPingAndDeactivate (line 726) | [Fact, TestCategory("ActivateDeactivate")] method SerializationTests_Generic_CircularReferenceTest (line 762) | [Fact, TestCategory("Serialization")] method Generic_GrainWithTypeConstraints (line 775) | [Fact] method Generic_GrainWithValueTypeState (line 808) | [Fact, TestCategory("Persistence")] method Generic_CastToGenericInterfaceAfterActivation (line 828) | [Fact, TestCategory("Cast")] method Generic_CastToDifferentlyConcretizedGenericInterfaceBeforeActivation (line 846) | [Fact, TestCategory("Cast")] method Generic_CastToDifferentlyConcretizedInterfaceBeforeActivation (line 863) | [Fact, TestCategory("Cast")] method Generic_CastGenericInterfaceToNonGenericInterfaceBeforeActivation (line 879) | [Fact, TestCategory("Cast")] method GenericGrainStateParameterMismatchTest (line 896) | [Fact] class GenericEdgeCaseTests (line 916) | [TestCategory("BVT"), TestCategory("Generics")] method GenericEdgeCaseTests (line 919) | public GenericEdgeCaseTests(DefaultClusterFixture fixture) : base(fixt... method GetConcreteGenArgs (line 923) | private static async Task GetConcreteGenArgs(IBasicGrain @this) method Generic_PartiallySpecifyingGenericGrainFulfilsInterface (line 935) | [Fact(Skip = "Currently unsupported")] method Generic_GenericGrainCanReuseOwnGenArgRepeatedly (line 949) | [Fact(Skip = "Currently unsupported")] method Generic_PartiallySpecifyingGenericInterfaceIsCastable (line 963) | [Fact] method Generic_PartiallySpecifyingGenericInterfaceIsCastable_Activating (line 978) | [Fact] method Generic_RepeatedRearrangedGenArgsResolved (line 994) | [Fact(Skip = "Currently unsupported")] method Generic_RepeatedGenArgsWorkAmongstInterfacesInTypeResolution (line 1009) | [Fact] method Generic_RepeatedGenArgsWorkAmongstInterfacesInCasting (line 1022) | [Fact] method Generic_RepeatedGenArgsWorkAmongstInterfacesInCasting_Activating (line 1037) | [Fact] method Generic_RearrangedGenArgsOfCorrectArityAreResolved (line 1052) | [Fact(Skip = "Currently unsupported")] method Generic_RearrangedGenArgsOfCorrectNumberAreCastable (line 1065) | [Fact] method Generic_RearrangedGenArgsOfCorrectNumberAreCastable_Activating (line 1080) | [Fact] type IFullySpecifiedGenericInterface (line 1089) | public interface IFullySpecifiedGenericInterface : IBasicGrain type IDerivedFromMultipleSpecializationsOfSameInterface (line 1092) | public interface IDerivedFromMultipleSpecializationsOfSameInterface : ... class GrainFulfillingMultipleSpecializationsOfSameInterfaceViaIntermediate (line 1095) | public class GrainFulfillingMultipleSpecializationsOfSameInterfaceViaI... method CastingBetweenFullySpecifiedGenericInterfaces (line 1103) | [Fact] method Generic_CanCastToFullySpecifiedInterfaceUnrelatedToConcreteGenArgs (line 1119) | [Fact] method Generic_CanCastToFullySpecifiedInterfaceUnrelatedToConcreteGenArgs_Activating (line 1135) | [Fact] method Generic_GenArgsCanBeFurtherSpecialized (line 1150) | [Fact(Skip = "Currently unsupported")] method Generic_GenArgsCanBeFurtherSpecializedIntoArrays (line 1164) | [Fact(Skip = "Currently unsupported")] method Generic_CanCastBetweenInterfacesWithFurtherSpecializedGenArgs (line 1178) | [Fact(Skip = "Currently unsupported")] method Generic_CanCastBetweenInterfacesWithFurtherSpecializedGenArgs_Activating (line 1193) | [Fact(Skip = "Currently unsupported")] FILE: test/Orleans.DefaultCluster.Tests/GrainActivateDeactivateTests.cs class GrainActivateDeactivateTests (line 14) | public class GrainActivateDeactivateTests : HostedTestClusterEnsureDefau... method GrainActivateDeactivateTests (line 18) | public GrainActivateDeactivateTests(DefaultClusterFixture fixture) : b... method Dispose (line 24) | public virtual void Dispose() method WatcherGrain_GetGrain (line 33) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method Activate_Simple (line 44) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method Deactivate_Simple (line 60) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method Reactivate_Simple (line 81) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method Activate_TailCall (line 106) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method Deactivate_TailCall (line 121) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method Reactivate_TailCall (line 141) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method LongRunning_Deactivate (line 167) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate"), TestCa... method BadActivate_Await (line 197) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method BadActivate_GetValue (line 219) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method BadActivate_Await_ViaOtherGrain (line 242) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method Constructor_Bad_Await (line 265) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method Constructor_CreateGrainReference (line 292) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method TaskAction_Deactivate (line 306) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method DeactivateOnIdleWhileActivate (line 327) | [Fact, TestCategory("BVT"), TestCategory("ActivateDeactivate")] method CheckNumActivateDeactivateCalls (line 347) | private async Task CheckNumActivateDeactivateCalls( method CheckNumActivateDeactivateCalls (line 361) | private async Task CheckNumActivateDeactivateCalls( method AssertIsNotInvalidOperationException (line 384) | private static void AssertIsNotInvalidOperationException(Exception thr... FILE: test/Orleans.DefaultCluster.Tests/GrainFactoryTests.cs class GrainFactoryTests (line 14) | public class GrainFactoryTests : HostedTestClusterEnsureDefaultStarted method GrainFactoryTests (line 16) | public GrainFactoryTests(DefaultClusterFixture fixture) : base(fixture) method GetGrain_Ambiguous (line 25) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_Ambiguous_WithDefault (line 39) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_WithFullName (line 51) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_WithPrefix (line 64) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_AmbiguousPrefix (line 76) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_WrongPrefix (line 90) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_Derived_NoPrefix (line 104) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_Derived_WithFullName (line 117) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_Derived_WithFullName_FromBase (line 131) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_Derived_WithPrefix (line 144) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_Derived_WithWrongPrefix (line 157) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_OneImplementation_NoPrefix (line 171) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_OneImplementation_Prefix (line 183) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrain_MultipleUnrelatedInterfaces (line 196) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetStringGrain (line 210) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGuidGrain (line 222) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrainIdSpanGeneric (line 229) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrainIdSpan (line 236) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrainIdSpanGenericPrefix (line 243) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... method GetGrainIdSpanPrefix (line 250) | [Fact, TestCategory("BVT"), TestCategory("Factory"), TestCategory("Get... FILE: test/Orleans.DefaultCluster.Tests/GrainInterfaceHierarchyTests.cs class GrainInterfaceHierarchyTests (line 13) | public class GrainInterfaceHierarchyTests : HostedTestClusterEnsureDefau... method GrainInterfaceHierarchyTests (line 15) | public GrainInterfaceHierarchyTests(DefaultClusterFixture fixture) : b... method GetHierarchyGrain (line 19) | private T GetHierarchyGrain() where T : IDoSomething, IGrainWithInt... method DoSomethingGrainEmptyTest (line 29) | [Fact, TestCategory("BVT")] method DoSomethingGrainEmptyWithMoreTest (line 41) | [Fact, TestCategory("BVT")] method DoSomethingWithMoreEmptyGrainTest (line 54) | [Fact, TestCategory("BVT")] method DoSomethingWithMoreGrainTest (line 67) | [Fact, TestCategory("BVT")] method DoSomethingCombinedGrainTest (line 80) | [Fact, TestCategory("BVT")] method DoSomethingValidateSingleGrainTest (line 94) | [Fact, TestCategory("BVT")] FILE: test/Orleans.DefaultCluster.Tests/GrainReferenceCastTests.cs class GrainReferenceCastTests (line 17) | public class GrainReferenceCastTests : HostedTestClusterEnsureDefaultSta... method GrainReferenceCastTests (line 21) | public GrainReferenceCastTests(DefaultClusterFixture fixture) : base(f... method CastGrainRefCastFromMyType (line 32) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastGrainRefCastFromMyTypePolymorphic (line 46) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastMultifacetRWReference (line 69) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastMultifacetRWReferenceWaitForResolve (line 92) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastFailInternalCastFromBadType (line 113) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastInternalCastFromMyType (line 129) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastInternalCastUpFromChild (line 146) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastGrainRefUpCastFromChild (line 163) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method FailSideCastAfterResolve (line 177) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method FailOperationAfterSideCast (line 193) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method FailSideCastAfterContinueWith (line 210) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastGrainRefUpCastFromGrandchild (line 254) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastGrainRefUpCastFromDerivedDerivedChild (line 283) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastAsyncGrainRefCastFromSelf (line 299) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method CastAsyncGrainRefUpCastFromChild (line 312) | [Fact] method CastAsyncGrainRefUpCastFromGrandchild (line 338) | [Fact] method CastAsyncGrainRefFailSideCastToPeer (line 365) | [Fact] method CastAsyncGrainRefFailDownCastToChild (line 389) | [Fact] method CastAsyncGrainRefFailDownCastToGrandchild (line 412) | [Fact] method CastCallMethodInheritedFromBaseClass (line 440) | [Fact, TestCategory("BVT"), TestCategory("Cast")] FILE: test/Orleans.DefaultCluster.Tests/GrainReferenceTest.cs type IFooGrain (line 12) | public interface IFooGrain : IGrain { } class FooGrain (line 14) | [GrainType("foo`1")] class GrainReferenceTest (line 24) | [TestCategory("BVT"), TestCategory("GrainReference")] method GrainReferenceTest (line 27) | public GrainReferenceTest(DefaultClusterFixture fixture) : base(fixture) method GrainReferenceComparison_ShouldProduceUniformHashCode (line 36) | [Fact] method GrainReferenceComparison_DifferentReference (line 55) | [Fact] method GrainReference_Pass_this (line 73) | [Fact] method GrainReference_Pass_this_Nested (line 87) | [Fact] method GrainReference_Pass_Null (line 101) | [Fact] method GrainReference_Json_Serialization (line 119) | [Fact, TestCategory("Serialization"), TestCategory("JSON")] method GrainReference_Json_Serialization_Nested (line 131) | [Fact, TestCategory("Serialization"), TestCategory("JSON")] class GenericGrainReferenceHolder (line 151) | [Serializable] method GrainReference_Json_Serialization_Unresolved (line 165) | [Fact, TestCategory("Serialization"), TestCategory("JSON")] method GrainReference_Interning_Sys_StoreGrain (line 178) | [Fact(Skip = "GrainReference interning is not currently implemented.")... method TestGrainReferenceSerialization (line 194) | private void TestGrainReferenceSerialization(int id, bool resolveBefor... method NewtonsoftJsonSerializeRoundtrip (line 219) | private T NewtonsoftJsonSerializeRoundtrip(T obj) FILE: test/Orleans.DefaultCluster.Tests/HostedClientTests.cs class HostedClientTests (line 26) | [TestCategory("BVT"), TestCategory("HostedClient")] class Fixture (line 32) | public class Fixture : IAsyncLifetime method Fixture (line 37) | public Fixture() method InitializeAsync (line 42) | public async Task InitializeAsync() method DisposeAsync (line 63) | public async Task DisposeAsync() method HostedClientTests (line 77) | public HostedClientTests(Fixture fixture) method HostedClient_GrainCallTest (line 87) | [Fact] method HostedClient_TimeoutTest (line 104) | [Fact] method HostedClient_ReferenceEquality_GrainCallTest (line 153) | [Fact] method HostedClient_ObserverTest (line 185) | [Fact] method HostedClient_StreamTest (line 243) | [Fact] FILE: test/Orleans.DefaultCluster.Tests/InMemoryDurableJobsTests.cs class InMemoryDurableJobsTests (line 10) | public class InMemoryDurableJobsTests : HostedTestClusterEnsureDefaultSt... method InMemoryDurableJobsTests (line 14) | public InMemoryDurableJobsTests(DefaultClusterFixture fixture) : base(... method DurableJobGrain (line 19) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method JobExecutionOrder (line 26) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method PastDueTime (line 33) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method JobWithMetadata (line 40) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method MultipleGrains (line 47) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method DuplicateJobNames (line 54) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method CancelNonExistentJob (line 61) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method CancelAlreadyExecutedJob (line 68) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method ConcurrentScheduling (line 75) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method JobPropertiesVerification (line 82) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method DequeueCount (line 89) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method ScheduleJobOnAnotherGrain (line 96) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] method JobRetry (line 103) | [Fact, TestCategory("BVT"), TestCategory("DurableJobs")] FILE: test/Orleans.DefaultCluster.Tests/KeyExtensionTests.cs class KeyExtensionTests (line 14) | public class KeyExtensionTests : HostedTestClusterEnsureDefaultStarted method KeyExtensionTests (line 16) | public KeyExtensionTests(DefaultClusterFixture fixture) : base(fixture) method PrimaryKeyExtensionsShouldDifferentiateGrainsUsingTheSameBasePrimaryKey (line 25) | [Fact, TestCategory("BVT"), TestCategory("PrimaryKeyExtension")] method PrimaryKeyExtensionsShouldDifferentiateGrainsUsingDifferentBaseKeys (line 50) | [Fact, TestCategory("BVT"), TestCategory("PrimaryKeyExtension")] method EmptyKeyExtensionsAreDisallowed (line 75) | [Fact, TestCategory("BVT"), TestCategory("PrimaryKeyExtension")] method WhiteSpaceKeyExtensionsAreDisallowed (line 91) | [Fact, TestCategory("BVT"), TestCategory("PrimaryKeyExtension")] method NullKeyExtensionsAreDisallowed (line 107) | [Fact, TestCategory("BVT"), TestCategory("PrimaryKeyExtension")] method PrimaryKeyExtensionsShouldPermitStringsLongerThan127BytesLong (line 123) | [Fact, TestCategory("BVT"), TestCategory("PrimaryKeyExtension")] method GetPrimaryKeyStringOnGrainReference (line 141) | [Fact, TestCategory("BVT"), TestCategory("PrimaryKeyExtension")] FILE: test/Orleans.DefaultCluster.Tests/LifecycleObserverCreationTests.cs class LifecycleObserverCreationTests (line 15) | [TestCategory("BVT"), TestCategory("Lifecycle"), TestCategory("Observer")] method LifecycleParticipant_CanCreateGrainObserver (line 24) | [Fact] class TestLifecycleParticipant (line 72) | private class TestLifecycleParticipant : ILifecycleParticipant GetAxB() method GetAxBError (line 32) | public async Task GetAxBError() method LongMethod (line 38) | public Task LongMethod(int waitTime) method LongMethodWithError (line 44) | public async Task LongMethodWithError(int waitTime) FILE: test/Orleans.DefaultCluster.Tests/ManagementGrainTests.cs class ManagementGrainTests (line 14) | public class ManagementGrainTests : HostedTestClusterEnsureDefaultStarted method ManagementGrainTests (line 16) | public ManagementGrainTests(DefaultClusterFixture fixture) : base(fixt... method GetActivationAddressTest (line 28) | [Fact] type IDumbWorker (line 59) | public interface IDumbWorker : IGrainWithIntegerKey method DoNothing (line 61) | Task DoNothing(); class DumbWorker (line 69) | [StatelessWorker(1)] method DoNothing (line 72) | public Task DoNothing() => Task.CompletedTask; type IDumbGrain (line 79) | public interface IDumbGrain : IGrainWithGuidKey method DoNothing (line 81) | Task DoNothing(); class DumbGrain (line 89) | public class DumbGrain : Grain, IDumbGrain method DoNothing (line 91) | public Task DoNothing() => Task.CompletedTask; FILE: test/Orleans.DefaultCluster.Tests/MemoryStorageProviderTests.cs class MemoryStorageProviderTests (line 15) | [TestCategory("Storage"), TestCategory("MemoryStore")] method MemoryStorageProviderTests (line 18) | public MemoryStorageProviderTests(DefaultClusterFixture fixture) : bas... method MemoryStorageProvider_RestoreStateTest (line 27) | [Fact, TestCategory("BVT")] method MemoryStorageProvider_NullState (line 40) | [Fact, TestCategory("BVT")] method MemoryStorageProvider_WriteReadStateTest (line 56) | [Fact, TestCategory("BVT")] method MemoryStorageGrainEnforcesEtagsTest (line 90) | [Fact, TestCategory("BVT")] class TestGrainState (line 142) | [Serializable] method CreateRandom (line 146) | public static IGrainState CreateRandom() method CreateWithEtag (line 155) | public static IGrainState CreateWithEtag(string eTag) FILE: test/Orleans.DefaultCluster.Tests/Migration/MigrationTests.cs class MigrationTests (line 13) | public class MigrationTests : HostedTestClusterEnsureDefaultStarted method MigrationTests (line 15) | public MigrationTests(DefaultClusterFixture fixture) : base(fixture) method BasicGrainMigrationTest (line 23) | [Fact, TestCategory("BVT")] method InitiateMigrationFromOnDeactivateAsyncTest (line 49) | [Fact, TestCategory("BVT")] method DirectedGrainMigrationTest (line 82) | [Fact, TestCategory("BVT")] method MultiGrainDirectedMigrationTest (line 115) | [Fact, TestCategory("BVT")] method DirectedGrainMigrationTest_GrainOfT (line 171) | [Fact, TestCategory("BVT")] method DirectedGrainMigrationTest_IPersistentStateOfT (line 205) | [Fact, TestCategory("BVT")] method FailDehydrationTest (line 240) | [Fact, TestCategory("BVT")] method FailRehydrationTest (line 281) | [Fact, TestCategory("BVT")] type IMigrationTestGrain (line 305) | public interface IMigrationTestGrain : IGrainWithIntegerKey method GetGrainAddress (line 307) | ValueTask GetGrainAddress(); method SetState (line 308) | ValueTask SetState(int state); method GetState (line 309) | ValueTask GetState(); method MigrateDuringDeactivation (line 310) | ValueTask MigrateDuringDeactivation(SiloAddress targetHost); class MigrationTestGrain (line 314) | [RandomPlacement] method GetState (line 319) | public ValueTask GetState() => new(_state); method SetState (line 321) | public ValueTask SetState(int state) method OnDehydrate (line 327) | public void OnDehydrate(IDehydrationContext migrationContext) method OnRehydrate (line 343) | public void OnRehydrate(IRehydrationContext migrationContext) method GetGrainAddress (line 353) | public ValueTask GetGrainAddress() => new(GrainContext.A... method MigrateDuringDeactivation (line 355) | public ValueTask MigrateDuringDeactivation(SiloAddress targetHost) method OnDeactivateAsync (line 362) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... type IMigrationTestGrain_GrainOfT (line 374) | public interface IMigrationTestGrain_GrainOfT : IGrainWithIntegerKey method SetState (line 376) | ValueTask SetState(int state); method GetState (line 377) | ValueTask GetState(); method GetGrainAddress (line 378) | ValueTask GetGrainAddress(); class MigrationTestGrainWithMemoryStorage (line 381) | public class MigrationTestGrainWithMemoryStorage : Grain GetState() => new(State.Value); method SetState (line 385) | public ValueTask SetState(int state) method GetGrainAddress (line 391) | public ValueTask GetGrainAddress() => new(GrainContext.A... class MyMigrationStateClass (line 394) | [GenerateSerializer] type IMigrationTestGrain_IPersistentStateOfT (line 401) | public interface IMigrationTestGrain_IPersistentStateOfT : IGrainWithInt... method SetState (line 403) | ValueTask SetState(int a, int b); method GetState (line 404) | ValueTask<(int A, int B)> GetState(); method GetGrainAddress (line 405) | ValueTask GetGrainAddress(); class MigrationTestGrainWithInjectedMemoryStorage (line 408) | public class MigrationTestGrainWithInjectedMemoryStorage : Grain, IMigra... method MigrationTestGrainWithInjectedMemoryStorage (line 413) | public MigrationTestGrainWithInjectedMemoryStorage( method GetState (line 421) | public ValueTask<(int A, int B)> GetState() => new((_stateA.State.Valu... method SetState (line 423) | public ValueTask SetState(int a, int b) method GetGrainAddress (line 430) | public ValueTask GetGrainAddress() => new(GrainContext.A... FILE: test/Orleans.DefaultCluster.Tests/MultifacetGrainTest.cs class MultifacetGrainTest (line 15) | public class MultifacetGrainTest : HostedTestClusterEnsureDefaultStarted method MultifacetGrainTest (line 24) | public MultifacetGrainTest(DefaultClusterFixture fixture) : base(fixture) method RWReferences (line 34) | [Fact, TestCategory("Functional"), TestCategory("Cast")] method RWReferencesInvalidCastException (line 52) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method MultifacetFactory (line 68) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method Multifacet_InterfacesAsArguments (line 87) | [Fact, TestCategory("BVT"), TestCategory("Cast")] FILE: test/Orleans.DefaultCluster.Tests/ObserverTests.cs class ObserverTests (line 19) | public class ObserverTests : HostedTestClusterEnsureDefaultStarted method ObserverTests (line 30) | public ObserverTests(DefaultClusterFixture fixture) : base(fixture) method TestInitialize (line 34) | private void TestInitialize() method GetGrain (line 44) | private ISimpleObserverableGrain GetGrain() method ObserverTest_SimpleNotification (line 55) | [Fact, TestCategory("BVT")] method ObserverTest_SimpleNotification_GeneratedFactory (line 78) | [Fact, TestCategory("BVT")] method ObserverTest_SimpleNotification_Callback (line 96) | private void ObserverTest_SimpleNotification_Callback(int a, int b, As... method ObserverTest_DoubleSubscriptionSameReference (line 129) | [Fact, TestCategory("SlowBVT")] method ObserverTest_DoubleSubscriptionSameReference_Callback (line 166) | private void ObserverTest_DoubleSubscriptionSameReference_Callback(int... method ObserverTest_SubscribeUnsubscribe (line 183) | [Fact, TestCategory("SlowBVT")] method ObserverTest_SubscribeUnsubscribe_Callback (line 204) | private void ObserverTest_SubscribeUnsubscribe_Callback(int a, int b, ... method ObserverTest_Unsubscribe (line 222) | [Fact, TestCategory("BVT")] method ObserverTest_DoubleSubscriptionDifferentReferences (line 252) | [Fact, TestCategory("BVT")] method ObserverTest_DoubleSubscriptionDifferentReferences_Callback (line 273) | private void ObserverTest_DoubleSubscriptionDifferentReferences_Callba... method ObserverTest_DeleteObject (line 292) | [Fact, TestCategory("SlowBVT")] method ObserverTest_DeleteObject_Callback (line 310) | private void ObserverTest_DeleteObject_Callback(int a, int b, AsyncRes... method ObserverTest_SubscriberMustBeGrainReference (line 328) | [Fact, TestCategory("BVT")] method ObserverTest_CreateObjectReference_ThrowsForInvalidArgumentTypes (line 351) | [Fact, TestCategory("BVT")] class DummyObserverGrain (line 365) | public class DummyObserverGrain : Grain, ISimpleGrainObserver method StateChanged (line 367) | public void StateChanged(int a, int b) { } class DummyObserver (line 370) | public class DummyObserver : ISimpleGrainObserver method StateChanged (line 372) | public void StateChanged(int a, int b) { } class SimpleGrainObserver (line 375) | internal class SimpleGrainObserver : ISimpleGrainObserver method SimpleGrainObserver (line 382) | public SimpleGrainObserver(Action actio... method StateChanged (line 389) | public void StateChanged(int a, int b) FILE: test/Orleans.DefaultCluster.Tests/OneWayCallTests.cs class OneWayCallTests (line 15) | [TestCategory("BVT"), TestCategory("OneWay")] method OneWayCallTests (line 18) | public OneWayCallTests(DefaultClusterFixture fixture) : base(fixture) { } method OneWayMethodsReturnSynchronously_ViaClient (line 27) | [Fact] method OneWayMethodReturnSynchronously_ViaGrain (line 50) | [Fact] method OneWayMethodsReturnSynchronously_ViaClient_ValueTask (line 71) | [Fact] method OneWayMethodReturnSynchronously_ViaGrain_ValueTask (line 93) | [Fact] class SimpleGrainObserver (line 108) | private class SimpleGrainObserver : ISimpleGrainObserver method StateChanged (line 112) | public void StateChanged(int a, int b) FILE: test/Orleans.DefaultCluster.Tests/PolymorphicInterfaceTest.cs class PolymorphicInterfaceTest (line 15) | public class PolymorphicInterfaceTest : HostedTestClusterEnsureDefaultSt... method PolymorphicInterfaceTest (line 17) | public PolymorphicInterfaceTest(DefaultClusterFixture fixture) : base(... method Polymorphic_SimpleTest (line 26) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method Polymorphic_UpCastTest (line 42) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method Polymorphic_FactoryMethods (line 76) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method Polymorphic_ServiceType (line 92) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method Polymorphic_InheritedMethodAmbiguity (line 111) | [Fact, TestCategory("BVT"), TestCategory("Cast")] method Polymorphic__DerivedServiceType (line 134) | [Fact, TestCategory("BVT"), TestCategory("Cast")] FILE: test/Orleans.DefaultCluster.Tests/ProviderTests.cs class ProviderTests (line 17) | public class ProviderTests : OrleansTestingBase, IClassFixture _waitAsyncTcs.TrySetResult(); method WaitAsync (line 241) | async Task ICallbackGrainObserver.WaitAsync() FILE: test/Orleans.DefaultCluster.Tests/TimerOrleansTest.cs class TimerOrleansTest (line 18) | public class TimerOrleansTest : HostedTestClusterEnsureDefaultStarted method TimerOrleansTest (line 22) | public TimerOrleansTest(ITestOutputHelper output, DefaultClusterFixtur... method WaitForCounterAtLeast (line 28) | private static async Task WaitForCounterAtLeast(Func> g... method TimerOrleansTest_Basic (line 59) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method TimerOrleansTest_Parallel (line 85) | [Fact, TestCategory("BVT"), TestCategory("Timers")] method TimerOrleansTest_Migration (line 133) | [Fact, TestCategory("BVT"), TestCategory("Timers")] method AsyncTimerTest_GrainCall (line 185) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method GrainTimer_TestAllOverloads (line 237) | [Fact, TestCategory("BVT"), TestCategory("Timers")] method GrainTimer_DisposeFromCallback (line 264) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method NonReentrantGrainTimer_Test (line 282) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method GrainTimer_Change (line 324) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method TimerOrleansTest_Basic_Poco (line 398) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method TimerOrleansTest_Parallel_Poco (line 424) | [Fact, TestCategory("BVT"), TestCategory("Timers")] method TimerOrleansTest_Migration_Poco (line 472) | [Fact, TestCategory("BVT"), TestCategory("Timers")] method AsyncTimerTest_GrainCall_Poco (line 524) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method GrainTimer_TestAllOverloads_Poco (line 576) | [Fact, TestCategory("BVT"), TestCategory("Timers")] method NonReentrantGrainTimer_Test_Poco (line 603) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] method GrainTimer_Change_Poco (line 644) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] FILE: test/Orleans.DependencyInjection.Tests/Autofac/DependencyInjectionGrainTestsUsingAutofac.cs class DependencyInjectionGrainTestsUsingAutofac (line 15) | [TestCategory("DI"), TestCategory("Functional")] class Fixture (line 18) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 20) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloBuilderConfiguratorConfiguringAutofac (line 27) | private class SiloBuilderConfiguratorConfiguringAutofac : IHostConfi... method Configure (line 29) | public void Configure(IHostBuilder hostBuilder) method DependencyInjectionGrainTestsUsingAutofac (line 36) | public DependencyInjectionGrainTestsUsingAutofac(Fixture fixture) class DependencyInjectionSiloStartsUsingAutofac (line 45) | [TestCategory("DI"), TestCategory("Functional")] class Fixture (line 50) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 52) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class HostBuilderConfigurator (line 60) | private class HostBuilderConfigurator : IHostConfigurator method Configure (line 62) | public void Configure(IHostBuilder hostBuilder) class SiloBuilderConfigurator (line 68) | private class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 70) | public void Configure(ISiloBuilder siloBuilder) method DependencyInjectionSiloStartsUsingAutofac (line 76) | public DependencyInjectionSiloStartsUsingAutofac(Fixture fixture) method ClusterStart (line 81) | [Fact] FILE: test/Orleans.DependencyInjection.Tests/DefaultServiceProvider/DependencyInjectionGrainTestsUsingDefaultServiceProvider.cs class DependencyInjectionGrainTestsUsingDefaultServiceProvider (line 12) | [TestCategory("DI"), TestCategory("Functional")] class Fixture (line 18) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 20) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method DependencyInjectionGrainTestsUsingDefaultServiceProvider (line 27) | public DependencyInjectionGrainTestsUsingDefaultServiceProvider(Fixtur... FILE: test/Orleans.DependencyInjection.Tests/DependencyInjectionGrainTestsRunner.cs class DependencyInjectionGrainTestRunner (line 29) | public abstract class DependencyInjectionGrainTestRunner : OrleansTestin... class TestSiloBuilderConfigurator (line 38) | protected class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 40) | public void Configure(ISiloBuilder hostBuilder) method DependencyInjectionGrainTestRunner (line 62) | public DependencyInjectionGrainTestRunner(BaseTestClusterFixture fixture) method CanGetGrainWithInjectedDependencies (line 71) | [Fact] method CanGetGrainWithInjectedGrainFactory (line 83) | [Fact] method CanResolveSingletonDependencies (line 96) | [Fact] method CanResolveScopedDependencies (line 116) | [Fact] method CanResolveScopedGrainActivationContext (line 136) | [Fact] method ScopedDependenciesAreThreadSafe (line 157) | [Fact] method CanResolveSameDependenciesViaServiceProvider (line 183) | [Fact] method CanResolveSingletonGrainFactory (line 200) | [Fact] method CannotGetExplictlyRegisteredGrain (line 218) | [Fact] method CanUseGenericArgumentsInConstructor (line 232) | [Fact] FILE: test/Orleans.DurableJobs.Tests/DurableJobs/DurableJobTestsRunner.cs class DurableJobTestsRunner (line 17) | public class DurableJobTestsRunner method DurableJobTestsRunner (line 21) | public DurableJobTestsRunner(IGrainFactory grainFactory) method DurableJobGrain (line 26) | public async Task DurableJobGrain(CancellationToken cancellationToken) method JobExecutionOrder (line 56) | public async Task JobExecutionOrder(CancellationToken cancellationToken) method PastDueTime (line 77) | public async Task PastDueTime(CancellationToken cancellationToken) method JobWithMetadata (line 89) | public async Task JobWithMetadata(CancellationToken cancellationToken) method MultipleGrains (line 116) | public async Task MultipleGrains(CancellationToken cancellationToken) method DuplicateJobNames (line 140) | public async Task DuplicateJobNames(CancellationToken cancellationToken) method CancelNonExistentJob (line 166) | public async Task CancelNonExistentJob(CancellationToken cancellationT... method CancelAlreadyExecutedJob (line 189) | public async Task CancelAlreadyExecutedJob(CancellationToken cancellat... method ConcurrentScheduling (line 203) | public async Task ConcurrentScheduling(CancellationToken cancellationT... method JobPropertiesVerification (line 229) | public async Task JobPropertiesVerification(CancellationToken cancella... method DequeueCount (line 256) | public async Task DequeueCount(CancellationToken cancellationToken) method ScheduleJobOnAnotherGrain (line 270) | public async Task ScheduleJobOnAnotherGrain(CancellationToken cancella... method JobRetry (line 292) | public async Task JobRetry(CancellationToken cancellationToken) FILE: test/Orleans.DurableJobs.Tests/DurableJobs/IJobShardManagerTestFixture.cs type IJobShardManagerTestFixture (line 14) | public interface IJobShardManagerTestFixture : IAsyncDisposable method CreateManager (line 22) | JobShardManager CreateManager(ILocalSiloDetails localSiloDetails, IClu... FILE: test/Orleans.DurableJobs.Tests/DurableJobs/InMemoryJobShardManagerTestFixture.cs class InMemoryJobShardManagerTestFixture (line 11) | internal sealed class InMemoryJobShardManagerTestFixture : IJobShardMana... method InMemoryJobShardManagerTestFixture (line 15) | public InMemoryJobShardManagerTestFixture(int maxAdoptedCount = 3) method CreateManager (line 22) | public JobShardManager CreateManager(ILocalSiloDetails localSiloDetail... method DisposeAsync (line 27) | public async ValueTask DisposeAsync() FILE: test/Orleans.DurableJobs.Tests/DurableJobs/InMemoryJobShardManagerTests.cs class InMemoryJobShardManagerTests (line 12) | [TestCategory("BVT"), TestCategory("DurableJobs")] method InMemoryJobShardManagerTests (line 18) | public InMemoryJobShardManagerTests() method InitializeAsync (line 24) | public Task InitializeAsync() => Task.CompletedTask; method DisposeAsync (line 26) | public Task DisposeAsync() => _fixture.DisposeAsync().AsTask(); method InMemoryJobShardManager_ShardCreationAndAssignment (line 28) | [SkippableFact] method InMemoryJobShardManager_ReadFrozenShard (line 35) | [SkippableFact] method InMemoryJobShardManager_LiveShard (line 42) | [SkippableFact] method InMemoryJobShardManager_JobMetadata (line 49) | [SkippableFact] method InMemoryJobShardManager_ConcurrentShardAssignment_OwnershipConflicts (line 56) | [SkippableFact] method InMemoryJobShardManager_ShardMetadataMerge (line 63) | [SkippableFact] method InMemoryJobShardManager_StopProcessingShard (line 70) | [SkippableFact] method InMemoryJobShardManager_RetryJobLater (line 77) | [SkippableFact] method InMemoryJobShardManager_JobCancellation (line 84) | [SkippableFact] method InMemoryJobShardManager_ShardRegistrationRetry_IdCollisions (line 91) | [SkippableFact] method InMemoryJobShardManager_UnregisterShard_WithJobsRemaining (line 98) | [SkippableFact] FILE: test/Orleans.DurableJobs.Tests/DurableJobs/JobShardManagerTestsRunner.cs class JobShardManagerTestsRunner (line 19) | public class JobShardManagerTestsRunner method JobShardManagerTestsRunner (line 25) | public JobShardManagerTestsRunner(IJobShardManagerTestFixture fixture) method SetSiloStatus (line 39) | private void SetSiloStatus(SiloAddress siloAddress, SiloStatus status) method CreateManager (line 47) | private JobShardManager CreateManager(SiloAddress siloAddress) method ShardCreationAndAssignment (line 57) | public async Task ShardCreationAndAssignment(CancellationToken cancell... method ReadFrozenShard (line 110) | public async Task ReadFrozenShard(CancellationToken cancellationToken) method LiveShard (line 154) | public async Task LiveShard(CancellationToken cancellationToken) method JobMetadata (line 191) | public async Task JobMetadata(CancellationToken cancellationToken) method ConcurrentShardAssignment_OwnershipConflicts (line 259) | public async Task ConcurrentShardAssignment_OwnershipConflicts(Cancell... method ShardMetadataMerge (line 304) | public async Task ShardMetadataMerge(CancellationToken cancellationToken) method StopProcessingShard (line 353) | public async Task StopProcessingShard(CancellationToken cancellationTo... method RetryJobLater (line 388) | public async Task RetryJobLater(CancellationToken cancellationToken) method JobCancellation (line 422) | public async Task JobCancellation(CancellationToken cancellationToken) method ShardRegistrationRetry_IdCollisions (line 496) | public async Task ShardRegistrationRetry_IdCollisions(CancellationToke... method UnregisterShard_WithJobsRemaining (line 515) | public async Task UnregisterShard_WithJobsRemaining(CancellationToken ... class TestLocalSiloDetails (line 559) | private sealed class TestLocalSiloDetails : ILocalSiloDetails method TestLocalSiloDetails (line 561) | public TestLocalSiloDetails(SiloAddress siloAddress) class InMemoryClusterMembershipService (line 580) | private sealed class InMemoryClusterMembershipService : IClusterMember... method SetSiloStatus (line 590) | public void SetSiloStatus(SiloAddress address, SiloStatus status) method Refresh (line 596) | public ValueTask Refresh(MembershipVersion minimumVersion = default,... method TryKill (line 599) | public Task TryKill(SiloAddress siloAddress) => throw new NotI... FILE: test/Orleans.EventSourcing.Tests/EventSourcingTests/AccountGrainTests.cs class AccountGrainTests (line 10) | public class AccountGrainTests : IClassFixture method AccountGrainTests (line 14) | public AccountGrainTests(EventSourcingClusterFixture fixture) method TestSequence (line 19) | private static async Task TestSequence(IAccountGrain account, bool has... method AccountWithLog (line 58) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/5605"), TestCat... method AccountWithoutLog (line 66) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] FILE: test/Orleans.EventSourcing.Tests/EventSourcingTests/ChatGrainTests.cs class ChatGrainTests (line 12) | public class ChatGrainTests : IClassFixture method ChatGrainTests (line 16) | public ChatGrainTests(EventSourcingClusterFixture fixture) method Init (line 21) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] method PostThenDelete (line 35) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] method PostThenEdit (line 60) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] method Truncate (line 89) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] FILE: test/Orleans.EventSourcing.Tests/EventSourcingTests/CountersGrainPerfTests.cs class CountersGrainTests (line 11) | [TestCaseOrderer("Tester.EventSourcingTests.SimplePriorityOrderer", "Tes... method Perf_Warmup (line 32) | [Fact, RunThisFirst, TestCategory("EventSourcing")] method Perf_ConfirmEachUpdate_MemoryStateStore_NonReentrant (line 44) | [Fact, TestCategory("EventSourcing")] method Perf_ConfirmAtEndOnly_MemoryStateStore_NonReentrant (line 50) | [Fact, TestCategory("EventSourcing")] method Perf_ConfirmEachUpdate_MemoryLogStore_NonReentrant (line 56) | [Fact, TestCategory("EventSourcing")] method Perf_ConfirmAtEndOnly_MemoryLogStore_NonReentrant (line 62) | [Fact, TestCategory("EventSourcing")] method Perf_ConfirmEachUpdate_MemoryStateStore_Reentrant (line 68) | [Fact, TestCategory("EventSourcing")] method Perf_ConfirmAtEndOnly_MemoryStateStore_Reentrant (line 74) | [Fact, TestCategory("EventSourcing")] method Perf_ConfirmEachUpdate_MemoryLogStore_Reentrant (line 80) | [Fact, TestCategory("EventSourcing")] method Perf_ConfirmAtEndOnly_MemoryLogStore_Reentrant (line 86) | [Fact, TestCategory("EventSourcing")] class RunThisFirstAttribute (line 96) | internal class RunThisFirstAttribute : Attribute class SimplePriorityOrderer (line 100) | public class SimplePriorityOrderer : ITestCaseOrderer method HasRunThisFirstAttribute (line 104) | private bool HasRunThisFirstAttribute(ITestCase testcase) method OrderTestCases (line 109) | public IEnumerable OrderTestCases(IEnumerable> RunConcurrentOperationsArou... FILE: test/Orleans.EventSourcing.Tests/EventSourcingTests/PersonGrainTests.cs class PersonGrainTests (line 10) | public class PersonGrainTests : IClassFixture method PersonGrainTests (line 14) | public PersonGrainTests(EventSourcingClusterFixture fixture) method JournaledGrainTests_Activate (line 19) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] method JournaledGrainTests_Persist (line 27) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] method JournaledGrainTests_AppendMoreEvents (line 40) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] method JournaledGrainTests_TentativeConfirmedState (line 57) | [Fact, TestCategory("EventSourcing"), TestCategory("Functional")] FILE: test/Orleans.GrainDirectory.Tests/GrainDirectory/DistributedGrainDirectoryTests.cs class DefaultGrainDirectoryTests (line 13) | [TestCategory("BVT"), TestCategory("Directory")] method CreateGrainDirectory (line 20) | protected override IGrainDirectory CreateGrainDirectory() => FILE: test/Orleans.GrainDirectory.Tests/GrainDirectory/GrainDirectoryResilienceTests.cs type IMyDirectoryTestGrain (line 16) | internal interface IMyDirectoryTestGrain : IGrainWithIntegerKey method Ping (line 18) | ValueTask Ping(); class MyDirectoryTestGrain (line 21) | [CollectionAgeLimit(Minutes = 1.01)] method Ping (line 24) | public ValueTask Ping() => default; class GrainDirectoryResilienceTests (line 27) | [TestCategory("Stress"), TestCategory("Directory")] method ElasticChaos (line 34) | [Fact] class SiloBuilderConfigurator (line 171) | private class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 173) | public void Configure(ISiloBuilder siloBuilder) FILE: test/Orleans.Journaling.Tests/DurableDictionaryTests.cs class DurableDictionaryTests (line 14) | [TestCategory("BVT")] method DurableDictionary_BasicOperations_Test (line 22) | [Fact] method DurableDictionary_Persistence_Test (line 69) | [Fact] method DurableDictionary_ComplexKeys_Test (line 103) | [Fact] method DurableDictionary_ComplexValues_Test (line 133) | [Fact] method DurableDictionary_Clear_Test (line 169) | [Fact] method DurableDictionary_Enumeration_Test (line 199) | [Fact] type TestKey (line 240) | [GenerateSerializer] FILE: test/Orleans.Journaling.Tests/DurableGrainTests.cs class DurableGrainTests (line 19) | [TestCategory("BVT")] method DurableGrain_State_Persistence_Test (line 29) | [Fact] method DurableGrain_Update_State_Test (line 58) | [Fact] method DurableGrain_Complex_Types_Test (line 87) | [Fact] method DurableGrain_Multiple_Collections_Test (line 131) | [Fact] method DurableGrain_State_Modifications_Test (line 181) | [Fact] method Grain_State_Should_Persist_Between_Activations (line 240) | [Fact] method Grain_Should_Handle_Multiple_Collections (line 268) | [Fact] method Grain_Should_Handle_Large_State (line 341) | [Fact] FILE: test/Orleans.Journaling.Tests/DurableQueueTests.cs class DurableQueueTests (line 14) | [TestCategory("BVT")] method DurableQueue_BasicOperations_Test (line 21) | [Fact] method DurableQueue_Persistence_Test (line 77) | [Fact] method DurableQueue_ComplexValues_Test (line 115) | [Fact] method DurableQueue_Clear_Test (line 152) | [Fact] method DurableQueue_EmptyQueueOperations_Test (line 182) | [Fact] method DurableQueue_Enumeration_Test (line 206) | [Fact] method DurableQueue_LargeNumberOfOperations_Test (line 238) | [Fact] method DurableQueue_Concurrent_EnqueueDequeue_Test (line 285) | [Fact] FILE: test/Orleans.Journaling.Tests/DurableSetTests.cs class DurableSetTests (line 14) | [TestCategory("BVT")] method DurableSet_BasicOperations_Test (line 21) | [Fact] method DurableSet_Persistence_Test (line 63) | [Fact] method DurableSet_ComplexValues_Test (line 93) | [Fact] method DurableSet_Clear_Test (line 123) | [Fact] method DurableSet_Enumeration_Test (line 152) | [Fact] method DurableSet_LargeNumberOfItems_Test (line 184) | [Fact] method DurableSet_SetOperations_Test (line 230) | [Fact] method DurableSet_ExceptWith_Test (line 280) | [Fact] FILE: test/Orleans.Journaling.Tests/DurableValueTests.cs class DurableValueTests (line 14) | [TestCategory("BVT")] method DurableValue_BasicOperations_Test (line 21) | [Fact] method DurableValue_Persistence_Test (line 51) | [Fact] method DurableValue_NullValue_Test (line 78) | [Fact] method DurableValue_ComplexType_Test (line 115) | [Fact] FILE: test/Orleans.Journaling.Tests/Grains.cs type TestDurableGrainState (line 5) | [GenerateSerializer] class TestDurableGrain (line 8) | public class TestDurableGrain( method GetName (line 12) | public Task GetName() => Task.FromResult(state.State.Name); method GetCounter (line 13) | public Task GetCounter() => Task.FromResult(state.State.Counter); method SetTestValues (line 15) | public async Task SetTestValues(string name, int counter) method GetActivationId (line 21) | public Task GetActivationId() => Task.FromResult(_activationId); class TestDurableGrainWithComplexState (line 24) | public class TestDurableGrainWithComplexState( method GetPerson (line 32) | public Task GetPerson() => Task.FromResult(_person.Value ?... method GetItems (line 33) | public Task> GetItems() => Task.FromResult items) method GetActivationId (line 43) | public Task GetActivationId() => Task.FromResult(_activationId); type ITestDurableGrain (line 46) | public interface ITestDurableGrain : IGrainWithGuidKey method GetActivationId (line 48) | Task GetActivationId(); method SetTestValues (line 49) | Task SetTestValues(string name, int counter); method GetName (line 50) | Task GetName(); method GetCounter (line 51) | Task GetCounter(); type ITestDurableGrainWithComplexState (line 54) | public interface ITestDurableGrainWithComplexState : IGrainWithGuidKey method GetActivationId (line 56) | Task GetActivationId(); method SetTestValues (line 57) | Task SetTestValues(TestPerson person, List items); method GetPerson (line 58) | Task GetPerson(); method GetItems (line 59) | Task> GetItems(); FILE: test/Orleans.Journaling.Tests/ITestDurableGrainInterface.cs type ITestDurableGrainInterface (line 6) | public interface ITestDurableGrainInterface : IGrainWithGuidKey method GetActivationId (line 8) | Task GetActivationId(); method SetValues (line 9) | Task SetValues(string name, int counter); method GetValues (line 10) | Task<(string Name, int Counter)> GetValues(); FILE: test/Orleans.Journaling.Tests/ITestMultiCollectionGrain.cs type ITestMultiCollectionGrain (line 6) | public interface ITestMultiCollectionGrain : IGrainWithGuidKey method GetActivationId (line 8) | Task GetActivationId(); method AddToDictionary (line 11) | Task AddToDictionary(string key, int value); method RemoveFromDictionary (line 12) | Task RemoveFromDictionary(string key); method GetDictionaryValue (line 13) | Task GetDictionaryValue(string key); method GetDictionaryCount (line 14) | Task GetDictionaryCount(); method AddToList (line 17) | Task AddToList(string item); method RemoveListItemAt (line 18) | Task RemoveListItemAt(int index); method GetListItem (line 19) | Task GetListItem(int index); method GetListCount (line 20) | Task GetListCount(); method AddToQueue (line 23) | Task AddToQueue(int item); method DequeueItem (line 24) | Task DequeueItem(); method PeekQueueItem (line 25) | Task PeekQueueItem(); method GetQueueCount (line 26) | Task GetQueueCount(); method AddToSet (line 29) | Task AddToSet(string item); method RemoveFromSet (line 30) | Task RemoveFromSet(string item); method ContainsSetItem (line 31) | Task ContainsSetItem(string item); method GetSetCount (line 32) | Task GetSetCount(); FILE: test/Orleans.Journaling.Tests/IntegrationTestFixture.cs class IntegrationTestFixture (line 11) | public class IntegrationTestFixture : IAsyncLifetime method IntegrationTestFixture (line 16) | public IntegrationTestFixture() method ConfigureTestCluster (line 29) | protected virtual void ConfigureTestCluster(InProcessTestClusterBuilde... method InitializeAsync (line 33) | public virtual async Task InitializeAsync() method DisposeAsync (line 38) | public virtual async Task DisposeAsync() FILE: test/Orleans.Journaling.Tests/JournalingAzureStorageTestConfiguration.cs class JournalingAzureStorageTestConfiguration (line 6) | internal static class JournalingAzureStorageTestConfiguration method CheckPreconditionsOrThrow (line 8) | public static void CheckPreconditionsOrThrow() method ConfigureTestDefaults (line 20) | public static AzureAppendBlobStateMachineStorageOptions ConfigureTestD... FILE: test/Orleans.Journaling.Tests/LogSegmentTests.cs class AzureStorageLogSegmentTests (line 15) | [TestCategory("AzureStorage"), TestCategory("Functional")] method AzureStorageLogSegmentTests (line 18) | public AzureStorageLogSegmentTests() method ConfigureServices (line 23) | protected override void ConfigureServices(IServiceCollection services) class InMemoryLogSegmentTests (line 32) | public sealed class InMemoryLogSegmentTests : LogSegmentTests method ConfigureServices (line 34) | protected override void ConfigureServices(IServiceCollection services) class LogSegmentTests (line 46) | public abstract class LogSegmentTests : IAsyncLifetime method InitializeAsync (line 53) | public virtual async Task InitializeAsync() method DisposeAsync (line 72) | public async Task DisposeAsync() method ConfigureServices (line 81) | protected abstract void ConfigureServices(IServiceCollection services); method CreateTestComponents (line 83) | private (StateMachineManager Manager, DurableList List, IStateMachi... method DurableList_BasicOperations_Test (line 97) | [SkippableFact] method DurableList_Persistence_Test (line 131) | [SkippableFact] method DurableList_ComplexValues_Test (line 160) | [SkippableFact] method DurableList_Clear_Test (line 192) | [SkippableFact] method DurableList_Contains_Test (line 220) | [SkippableFact] method DurableList_InsertAndRemove_Test (line 245) | [SkippableFact] method DurableList_Enumeration_Test (line 277) | [SkippableFact] method DurableList_LargeNumberOfOperations_And_Snapshot_Test (line 303) | [SkippableFact] type TestPerson (line 359) | [GenerateSerializer, Immutable] class TestGrainContext (line 370) | internal sealed class TestGrainContext(GrainId grainId) : IGrainContext method Activate (line 382) | public void Activate(Dictionary? requestContext, Can... method Deactivate (line 383) | public void Deactivate(DeactivationReason deactivationReason, Cancel... method Equals (line 384) | public bool Equals(IGrainContext? other) => throw new NotImplemented... method GetComponent (line 385) | public TComponent? GetComponent() where TComponent : cla... method GetComponent (line 386) | public object? GetComponent(Type componentType) => throw new NotImpl... method GetTarget (line 387) | public TTarget? GetTarget() where TTarget : class => throw ... method GetTarget (line 388) | public object? GetTarget() => throw new NotImplementedException(); method Migrate (line 389) | public void Migrate(Dictionary? requestContext, Canc... method ReceiveMessage (line 390) | public void ReceiveMessage(object message) => throw new NotImplement... method Rehydrate (line 391) | public void Rehydrate(IRehydrationContext context) => throw new NotI... method SetComponent (line 392) | public void SetComponent(TComponent? value) where TCompo... FILE: test/Orleans.Journaling.Tests/StateMachineManagerTests.cs class StateMachineManagerTests (line 15) | [TestCategory("BVT")] method StateMachineManager_RegisterStateMachine_Test (line 23) | [Fact] method StateMachineManager_StateRecovery_Test (line 56) | [Fact] method StateMachineManager_MultipleWriteStates_Test (line 95) | [Fact] method StateMachineManager_MultipleStateMachines_Test (line 138) | [Fact] method StateMachineManager_Concurrency_Test (line 196) | [Fact] method StateMachineManager_LargeStateRecovery_Test (line 231) | [Fact] method StateMachineManager_AutoRetiringStateMachines (line 265) | [Fact] FILE: test/Orleans.Journaling.Tests/StateMachineTestBase.cs class StateMachineTestBase (line 15) | public abstract class StateMachineTestBase method StateMachineTestBase (line 23) | protected StateMachineTestBase() method CreateStorage (line 39) | protected virtual IStateMachineStorage CreateStorage() method CreateTestSystem (line 47) | internal (IStateMachineManager Manager, IStateMachineStorage Storage, ... class GrainLifecycle (line 60) | private class GrainLifecycle(ILogger logger) : LifecycleSubject(logger... method AddMigrationParticipant (line 64) | public void AddMigrationParticipant(IGrainMigrationParticipant parti... method RemoveMigrationParticipant (line 65) | public void RemoveMigrationParticipant(IGrainMigrationParticipant pa... method GetStageName (line 67) | protected override string GetStageName(int stage) FILE: test/Orleans.Journaling.Tests/TestDurableGrain.cs class DurableValueTestGrain (line 5) | public class DurableValueTestGrain( method SetValues (line 13) | public Task SetValues(string name, int counter) method GetValues (line 20) | public Task<(string Name, int Counter)> GetValues() => Task.FromResult... method GetActivationId (line 22) | public Task GetActivationId() => Task.FromResult(_activationId); FILE: test/Orleans.Journaling.Tests/TestMultiCollectionGrain.cs class TestMultiCollectionGrain (line 5) | public class TestMultiCollectionGrain( method AddToDictionary (line 14) | public async Task AddToDictionary(string key, int value) method RemoveFromDictionary (line 20) | public async Task RemoveFromDictionary(string key) method GetDictionaryValue (line 26) | public async Task GetDictionaryValue(string key) method GetDictionaryCount (line 31) | public async Task GetDictionaryCount() method AddToList (line 37) | public async Task AddToList(string item) method RemoveListItemAt (line 43) | public async Task RemoveListItemAt(int index) method GetListItem (line 49) | public async Task GetListItem(int index) method GetListCount (line 54) | public async Task GetListCount() method AddToQueue (line 60) | public async Task AddToQueue(int item) method DequeueItem (line 66) | public async Task DequeueItem() method PeekQueueItem (line 72) | public async Task PeekQueueItem() method GetQueueCount (line 77) | public async Task GetQueueCount() method AddToSet (line 83) | public async Task AddToSet(string item) method RemoveFromSet (line 89) | public async Task RemoveFromSet(string item) method ContainsSetItem (line 95) | public async Task ContainsSetItem(string item) method GetSetCount (line 100) | public async Task GetSetCount() method GetActivationId (line 105) | public Task GetActivationId() => Task.FromResult(_activationId); FILE: test/Orleans.Journaling.Tests/TestPerson.cs type TestPerson (line 6) | [GenerateSerializer] FILE: test/Orleans.Placement.Tests/ActivationRebalancingTests/ControlRebalancerTests.cs class ControlRebalancerTests (line 11) | [TestCategory("Functional"), TestCategory("ActivationRebalancing")] method Rebalancer_Should_Be_Controllable_And_Report_To_Listeners (line 15) | [Fact] class Listener (line 87) | private class Listener : IActivationRebalancerReportListener method OnReport (line 90) | public void OnReport(RebalancingReport report) => Report = report; FILE: test/Orleans.Placement.Tests/ActivationRebalancingTests/DynamicRebalancingTests.cs class DynamicRebalancingTests (line 9) | [TestCategory("Functional"), TestCategory("ActivationRebalancing")] method Should_Move_Activations_From_Silo1_And_Silo3_To_Silo2_And_Silo4_While_New_Activations_Are_Created (line 13) | [Fact] FILE: test/Orleans.Placement.Tests/ActivationRebalancingTests/RebalancerFixture.cs class RebalancerFixture (line 8) | public class RebalancerFixture : BaseInProcessTestClusterFixture method ConfigureTestCluster (line 13) | protected override void ConfigureTestCluster(InProcessTestClusterBuild... FILE: test/Orleans.Placement.Tests/ActivationRebalancingTests/RebalancingOptionsTests.cs class RebalancingOptionsTests (line 10) | [TestCategory("Functional"), TestCategory("ActivationRebalancing")] method ConstantsShouldNotChange (line 13) | [Fact] method InvalidOptionsShouldThrow (line 29) | [Theory] FILE: test/Orleans.Placement.Tests/ActivationRebalancingTests/RebalancingTestBase.cs class RebalancingTestBase (line 8) | public abstract class RebalancingTestBase method RebalancingTestBase (line 22) | protected RebalancingTestBase(TFixture fixture, ITestOutputHelper output) method GetActivationCount (line 37) | protected static int GetActivationCount(DetailedGrainStatistic[] stats... method AddTestActivations (line 40) | protected void AddTestActivations(List tasks, SiloAddress silo, ... method CalculateVariance (line 49) | protected static int CalculateVariance(int[] values) method InitializeAsync (line 58) | public async Task InitializeAsync() type IRebalancingTestGrain (line 66) | public interface IRebalancingTestGrain : IGrainWithGuidKey method Ping (line 68) | Task Ping(); class RebalancingTestGrain (line 71) | public class RebalancingTestGrain : Grain, IRebalancingTestGrain method Ping (line 73) | public Task Ping() => Task.CompletedTask; FILE: test/Orleans.Placement.Tests/ActivationRebalancingTests/StatePreservationRebalancingTests.cs class StatePreservationRebalancingTests (line 19) | [TestCategory("Functional"), TestCategory("ActivationRebalancing")] method Should_Migrate_And_Preserve_State_When_Hosting_Silo_Dies (line 28) | [Fact] method FindRebalancerHost (line 151) | private async Task<(SiloAddress, int)> FindRebalancerHost(SiloAddress ... class StatePreservationFixture (line 183) | public class StatePreservationFixture : BaseInProcessTestClusterFixture method ConfigureTestCluster (line 188) | protected override void ConfigureTestCluster(InProcessTestClusterBui... FILE: test/Orleans.Placement.Tests/ActivationRebalancingTests/StaticRebalancingTests.cs class StaticRebalancingTests (line 9) | [TestCategory("Functional"), TestCategory("ActivationRebalancing")] method Should_Move_Activations_From_Silo1_And_Silo3_To_Silo2_And_Silo4 (line 13) | [Fact] FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/BlockedBloomFilterTests.cs class BlockedBloomFilterTests (line 8) | public class BlockedBloomFilterTests method AddAndCheck (line 12) | [Fact] method DoesNotContainSome (line 22) | [Fact] class AnchoredGrainsFilterTests (line 30) | public class AnchoredGrainsFilterTests method CreateFilter (line 34) | private static AnchoredGrainsFilter CreateFilter(int generations = 2) ... method AddAndCheck (line 36) | [Fact] method Rotate_RetainsGrains_AfterFirstCycle (line 46) | [Fact] method Rotate_DropsGrains_AfterAllCycles_2Gen (line 57) | [Fact] method Rotate_DropsGrains_AfterAllCycles_3Gen (line 70) | [Fact] method ContinuousActivity_KeepsGrainsAnchored (line 86) | [Fact] method Reset_ClearsAllFilters (line 99) | [Fact] method Rotate_CalledManyTimes_DoesNotThrowOutOfBounds (line 110) | [Fact] FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/CustomToleranceTests.cs class CustomToleranceTests (line 19) | [TestCategory("Functional"), TestCategory("ActivationRepartitioning"), C... method Should_ConvertAllRemoteCalls_ToLocalCalls_WhileRespectingTolerance (line 22) | [Fact] method LogEdgesAsync (line 141) | private async Task LogEdgesAsync(IActivationRepartitionerSystemTarget ... type IE (line 151) | public interface IE : IGrainWithIntegerKey method FirstPing (line 153) | Task FirstPing(SiloAddress silo2); method Ping (line 154) | Task Ping(); method GetAddress (line 155) | Task GetAddress(); type IF (line 158) | public interface IF : IGrainWithIntegerKey method Ping (line 160) | Task Ping(); method GetAddress (line 161) | Task GetAddress(); type IX (line 164) | public interface IX : IGrainWithIntegerKey method Ping (line 166) | Task Ping(); method GetAddress (line 167) | Task GetAddress(); class E (line 170) | public class E : Grain, IE method FirstPing (line 172) | public async Task FirstPing(SiloAddress silo2) method Ping (line 178) | public Task Ping() => GrainFactory.GetGrain(this.GetPrimaryKeyLo... method GetAddress (line 179) | public Task GetAddress() => Task.FromResult(GrainContex... method OnActivateAsync (line 180) | public override Task OnActivateAsync(CancellationToken cancellationT... method OnDeactivateAsync (line 186) | public override Task OnDeactivateAsync(DeactivationReason reason, Ca... class F (line 193) | public class F : Grain, IF method Ping (line 195) | public Task Ping() => Task.CompletedTask; method GetAddress (line 197) | public Task GetAddress() => Task.FromResult(GrainContex... method OnActivateAsync (line 199) | public override Task OnActivateAsync(CancellationToken cancellationT... method OnDeactivateAsync (line 205) | public override Task OnDeactivateAsync(DeactivationReason reason, Ca... class X (line 216) | [Immovable(ImmovableKind.Repartitioner)] method Ping (line 219) | public Task Ping() => Task.CompletedTask; method GetAddress (line 220) | public Task GetAddress() => Task.FromResult(GrainContex... method OnActivateAsync (line 222) | public override Task OnActivateAsync(CancellationToken cancellationT... method OnDeactivateAsync (line 228) | public override Task OnDeactivateAsync(DeactivationReason reason, Ca... class Fixture (line 235) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 237) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 244) | private class SiloConfigurator : ISiloConfigurator method Configure (line 246) | public void Configure(ISiloBuilder hostBuilder) class HardLimitRule (line 271) | private class HardLimitRule : IImbalanceToleranceRule method IsSatisfiedBy (line 273) | public bool IsSatisfiedBy(uint imbalance) => imbalance <= 2; class ClientConfigurator (line 276) | private class ClientConfigurator : IClientBuilderConfigurator method Configure (line 278) | public void Configure(IConfiguration configuration, IClientBuilder... FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/DefaultToleranceTests.cs class DefaultToleranceTests (line 18) | [TestCategory("Functional"), TestCategory("ActivationRepartitioning")] method A_ShouldMoveToSilo2__B_And_C_ShouldStayOnSilo2 (line 21) | [Fact] method C_ShouldMoveToSilo1__A_And_B_ShouldStayOnSilo1 (line 68) | [Fact] method Immovable_C_ShouldStayOnSilo2__A_And_B_ShouldMoveToSilo2 (line 118) | [Fact] method A_ShouldMoveToSilo2_Or_C_ShouldMoveToSilo1__B_And_D_ShouldStayOnTheirSilos (line 169) | [Fact] method Receivers_ShouldMoveCloseTo_PullingAgent (line 239) | [SkippableFact] type Scenario (line 313) | public enum Scenario { _1, _2, _3, _4 } type IBase (line 315) | public interface IBase : IGrainWithStringKey method Ping (line 317) | Task Ping(Scenario scenario); method GetAddress (line 318) | Task GetAddress(); type IA (line 320) | public interface IA : IBase method FirstPing (line 322) | Task FirstPing(Scenario scenario, SiloAddress silo1, SiloAddress sil... type IB (line 324) | public interface IB : IBase { } type IC (line 325) | public interface IC : IBase method Ping (line 327) | Task Ping(Scenario scenario, SiloAddress silo2); type ICImmovable (line 329) | public interface ICImmovable : IBase { } type ID (line 330) | public interface ID : IBase { } type ISP (line 331) | public interface ISP : IGrainWithStringKey method FirstPing (line 333) | Task FirstPing(); method StreamPing (line 334) | Task StreamPing(); method GetAddress (line 335) | Task GetAddress(); type ISR (line 337) | public interface ISR : IGrainWithStringKey method Ping (line 339) | Task Ping(); method GotStreamHit (line 340) | Task GotStreamHit(); method GetAddress (line 341) | Task GetAddress(); class GrainBase (line 344) | public abstract class GrainBase : Grain method GetAddress (line 346) | public Task GetAddress() => Task.FromResult(GrainContex... class A (line 349) | public class A : GrainBase, IA method FirstPing (line 354) | public async Task FirstPing(Scenario scenario, SiloAddress silo1, Si... method Ping (line 395) | public async Task Ping(Scenario scenario) class B (line 427) | public class B : GrainBase, IB method Ping (line 429) | public Task Ping(Scenario scenario) => class C (line 440) | public class C : GrainBase, IC method Ping (line 442) | public Task Ping(Scenario scenario) => method Ping (line 452) | public async Task Ping(Scenario scenario, SiloAddress silo2) class CImmovable (line 467) | [Immovable(ImmovableKind.Repartitioner)] method Ping (line 470) | public Task Ping(Scenario scenario) => class D (line 478) | public class D : GrainBase, ID method Ping (line 480) | public Task Ping(Scenario scenario) => class SP (line 488) | [Immovable(ImmovableKind.Repartitioner)] method OnActivateAsync (line 496) | public override Task OnActivateAsync(CancellationToken cancellationT... method FirstPing (line 504) | public Task FirstPing() => GrainFactory.GetGrain(this.GetPrimar... method StreamPing (line 505) | public Task StreamPing() => _stream.OnNextAsync(Random.Shared.Next()); class SR (line 508) | [ImplicitStreamSubscription(Fixture.StreamNamespaceName)] method OnActivateAsync (line 513) | public override async Task OnActivateAsync(CancellationToken cancell... method Ping (line 525) | public Task Ping() => Task.CompletedTask; method GotStreamHit (line 526) | public Task GotStreamHit() => Task.FromResult(_streamHit); class Fixture (line 529) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 534) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 540) | private class SiloConfigurator : ISiloConfigurator method Configure (line 542) | public void Configure(ISiloBuilder hostBuilder) FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/FrequencyFilterTests.cs class FrequencyFilterTests (line 7) | public class FrequencyFilterTests method GetExpectedTopK (line 9) | [Fact] type TestKey (line 46) | public readonly struct TestKey(ulong key) method GetNext (line 49) | public static TestKey GetNext() => new(_nextKey++); method ToString (line 52) | public override string ToString() => $"[{Key}]"; class UlongFrequentItemCollection (line 55) | private sealed class UlongFrequentItemCollection(int capacity) : Frequ... method GetKey (line 57) | protected override ulong GetKey(in TestKey element) => element.Key; method Remove (line 58) | public void Remove(in TestKey element) => RemoveCore(GetKey(element)); class FastZipf (line 65) | public class FastZipf method Generate (line 77) | public static long[] Generate(Random random, int sampleCount, double... method Generate (line 97) | public static long[] Generate(int sampleCount, double skew, int card... class ZipfRejectionSampler (line 101) | public class ZipfRejectionSampler method ZipfRejectionSampler (line 107) | public ZipfRejectionSampler(Random random, long cardinality, double ... method Sample (line 114) | public long Sample() method bInvCdf (line 131) | private double bInvCdf(double p) FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/FrequentEdgeCounterTests.cs type IMyPartitionableGrain (line 7) | [Alias("UnitTests.ActivationRepartitioningTests.IMyPartitionableGrain")] method GetValue (line 10) | [Alias("GetValue")] method GetValue (line 13) | [Alias("GetValue1")] type IMyActiveBalancingGrain (line 17) | [Alias("UnitTests.ActivationRepartitioningTests.IMyGrain`1")] method GetValue (line 20) | Task GetValue(); class FrequentEdgeCounterTests (line 26) | [TestCategory("Functional"), TestCategory("ActivationRepartitioning")] method Add_ShouldIncrementCounter_WhenEdgeIsAdded (line 36) | [Fact] method Add_ShouldUpdateExistingCounter_WhenSameEdgeIsAddedAgain (line 51) | [Fact] method Add_ShouldRemoveMinCounter_WhenCapacityIsReached (line 67) | [Fact] method Remove_ShouldRemoveCounter_WhenEdgeIsRemoved (line 90) | [Fact] FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/MaxHeapTests.cs class MaxHeapTests (line 9) | public sealed class MaxHeapTests class MyHeapElement (line 11) | public class MyHeapElement(int value) : IHeapElement method CompareTo (line 17) | public int CompareTo(MyHeapElement other) => Value.CompareTo(other.V... method ToString (line 18) | public override string ToString() => $"{Value} @ {HeapIndex}"; method HeapPropertyIsMaintained (line 21) | [Fact] FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/OptionsTests.cs class OptionsTests (line 11) | [TestCategory("Functional"), TestCategory("ActivationRepartitioning")] method ConstantsShouldNotChange (line 14) | [Fact] method InvalidOptionsShouldThrow (line 25) | [Theory] FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/RepartitioningTestBase.cs class RepartitioningTestBase (line 9) | public abstract class RepartitioningTestBase : IAsyncLifetime ... method RepartitioningTestBase (line 19) | public RepartitioningTestBase(TFixture fixture) method InitializeAsync (line 31) | public virtual async Task InitializeAsync() method DisposeAsync (line 38) | public virtual Task DisposeAsync() method ResetCounters (line 43) | public async ValueTask ResetCounters() method AdjustActivationCountOffsets (line 49) | public async Task AdjustActivationCountOffsets() FILE: test/Orleans.Placement.Tests/ActivationRepartitioningTests/TestMessageFilter.cs class TestMessageFilter (line 9) | internal sealed class TestMessageFilter(GrainMigratabilityChecker checke... method IsAcceptable (line 13) | public bool IsAcceptable(Message message, out bool isSenderMigratable,... FILE: test/Orleans.Placement.Tests/General/ElasticPlacementTest.cs class ElasticPlacementTests (line 14) | [TestCategory("Elasticity"), TestCategory("Placement")] method ConfigureTestCluster (line 21) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloConfigurator (line 26) | private class SiloConfigurator : ISiloConfigurator method Configure (line 28) | public void Configure(ISiloBuilder hostBuilder) method ElasticityTest_CatchingUp (line 40) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4008")... method ElasticityTest_StoppingSilos (line 94) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4008")... method ElasticityTest_AllSilosCPUTooHigh (line 135) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4008")... method ElasticityTest_AllSilosOverloaded (line 154) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4008")... method LoadAwareGrainShouldNotAttemptToCreateActivationsOnOverloadedSilo (line 171) | [Fact, TestCategory("Functional")] method LoadAwareGrainShouldNotAttemptToCreateActivationsOnBusySilos (line 183) | [Fact, TestCategory("Functional")] method GetGrainAtSilo (line 197) | private async Task GetGrainAtSilo(SiloAddress silo) method AssertIsInRange (line 209) | private static void AssertIsInRange(int actual, double expected, int l... method ElasticityGrainPlacementTest (line 217) | private async Task ElasticityGrainPlacementTest( method AddTestGrains (line 262) | private Task AddTestGrains(int amount) method InvokeAllGrains (line 275) | private Task InvokeAllGrains() method GetPerSiloActivationCounts (line 285) | private async Task> GetPerSiloActivationCo... method LogCounts (line 300) | private void LogCounts(Dictionary activationCounts) FILE: test/Orleans.Placement.Tests/General/GrainPlacementClusterChangeTests.cs class GrainPlacementClusterChangeTests (line 13) | public sealed class GrainPlacementClusterChangeTests(ITestOutputHelper o... method PreferLocalPlacementGrain_ShouldMigrateWhenHostSiloKilled (line 15) | [Theory] FILE: test/Orleans.Placement.Tests/General/GrainPlacementTests.cs class GrainPlacementTests (line 11) | public class GrainPlacementTests(DefaultClusterFixture fixture) : IClass... method VerifyDefaultPlacement (line 15) | [Fact, TestCategory("Placement"), TestCategory("Functional")] method RandomlyPlacedGrainShouldPlaceActivationsRandomly (line 22) | [Fact, TestCategory("Placement"), TestCategory("Functional")] method PreferLocalPlacedGrainShouldPlaceActivationsLocally_TwoHops (line 65) | [Fact, TestCategory("Placement"), TestCategory("Functional")] method CollectActivationIds (line 101) | private static async Task> CollectActivationIds(IPlacemen... method ActivationCount (line 113) | private static async Task ActivationCount(IPlacementTestGrain gra... method StatelessWorkerShouldCreateSpecifiedActivationCount (line 119) | [Fact, TestCategory("Placement"), TestCategory("BVT")] method StatelessWorkerGrainShouldCreateActivationsOnLocalSilo (line 140) | [Fact, TestCategory("Placement"), TestCategory("Functional")] FILE: test/Orleans.Placement.Tests/General/LoadSheddingTest.cs class LoadSheddingTest (line 19) | public class LoadSheddingTest : OrleansTestingBase, IClassFixture Task.CompletedTask; type ITestFilteredGrain (line 134) | public interface ITestFilteredGrain : IGrainWithIntegerKey method Ping (line 136) | Task Ping(); class TestPlacementFilterStrategy (line 139) | public class TestPlacementFilterAttribute(int order) : PlacementFilterAt... method TestPlacementFilterStrategy (line 143) | public TestPlacementFilterStrategy() : this(0) class TestPlacementFilterDirector (line 148) | public class TestPlacementFilterDirector() : IPlacementFilterDirector method Filter (line 152) | public IEnumerable Filter(PlacementFilterStrategy filterS... class OrderAPlacementFilterStrategy (line 161) | public class OrderAPlacementFilterAttribute(int order) : PlacementFilter... method OrderAPlacementFilterStrategy (line 165) | public OrderAPlacementFilterStrategy() : this(0) class OrderAPlacementFilterDirector (line 170) | public class OrderAPlacementFilterDirector : IPlacementFilterDirector method Filter (line 172) | public IEnumerable Filter(PlacementFilterStrategy filterS... class OrderBPlacementFilterStrategy (line 182) | public class OrderBPlacementFilterAttribute(int order) : PlacementFilter... method OrderBPlacementFilterStrategy (line 187) | public OrderBPlacementFilterStrategy() : this(0) class OrderBPlacementFilterDirector (line 192) | public class OrderBPlacementFilterDirector() : IPlacementFilterDirector method Filter (line 194) | public IEnumerable Filter(PlacementFilterStrategy filterS... class TestAB12FilteredGrain (line 203) | [OrderAPlacementFilter(order: 1)] method Ping (line 207) | public Task Ping() => Task.CompletedTask; type ITestAB12FilteredGrain (line 210) | public interface ITestAB12FilteredGrain : IGrainWithIntegerKey method Ping (line 212) | Task Ping(); class TestAB21FilteredGrain (line 215) | [OrderAPlacementFilter(order: 2)] method Ping (line 219) | public Task Ping() => Task.CompletedTask; type ITestAB21FilteredGrain (line 222) | public interface ITestAB21FilteredGrain : IGrainWithIntegerKey method Ping (line 224) | Task Ping(); class TestBA12FilteredGrain (line 227) | [OrderBPlacementFilter(order: 1)] method Ping (line 231) | public Task Ping() => Task.CompletedTask; type ITestBA12FilteredGrain (line 234) | public interface ITestBA12FilteredGrain : IGrainWithIntegerKey method Ping (line 236) | Task Ping(); class TestBA121FilteredGrain (line 240) | [OrderBPlacementFilter(order: 2)] method Ping (line 244) | public Task Ping() => Task.CompletedTask; type ITestBA21FilteredGrain (line 247) | public interface ITestBA21FilteredGrain : IGrainWithIntegerKey method Ping (line 249) | Task Ping(); class TestDuplicateOrderFilteredGrain (line 254) | [OrderBPlacementFilter(order: 2)] method Ping (line 258) | public Task Ping() => Task.CompletedTask; type ITestDuplicateOrderFilteredGrain (line 261) | public interface ITestDuplicateOrderFilteredGrain : IGrainWithIntegerKey method Ping (line 263) | Task Ping(); FILE: test/Orleans.Placement.Tests/PlacementFilterTests/PreferredMatchSiloMetadataPlacementFilterDirectorTests.cs class PreferredMatchSiloMetadataPlacementFilterDirectorTests (line 14) | [TestCategory("Placement"), TestCategory("Filters"), TestCategory("SiloM... method CanBeCreated (line 17) | [Fact, TestCategory("Functional")] method CanBeCalled (line 32) | [Fact, TestCategory("Functional")] method FiltersToAllWhenNoEntry (line 51) | [Fact, TestCategory("Functional")] method FiltersOnSingleMetadata (line 73) | [Theory, TestCategory("Functional")] method FiltersOnMultipleMetadata (line 127) | [Theory, TestCategory("Functional")] FILE: test/Orleans.Placement.Tests/PlacementFilterTests/RequiredMatchSiloMetadataPlacementFilterDirectorTests.cs class RequiredMatchSiloMetadataPlacementFilterDirectorTests (line 11) | [TestCategory("Placement"), TestCategory("Filters"), TestCategory("SiloM... method RequiredMatchSiloMetadataPlacementFilterDirector_CanBeCreated (line 14) | [Fact, TestCategory("Functional")] method RequiredMatchSiloMetadataPlacementFilterDirector_CanBeCalled (line 29) | [Fact, TestCategory("Functional")] method RequiredMatchSiloMetadataPlacementFilterDirector_FiltersToNothingWhenNoEntry (line 48) | [Fact, TestCategory("Functional")] method RequiredMatchSiloMetadataPlacementFilterDirector_FiltersToNothingWhenDifferentValue (line 69) | [Fact, TestCategory("Functional")] method RequiredMatchSiloMetadataPlacementFilterDirector_FiltersToSiloWhenMatching (line 92) | [Fact, TestCategory("Functional")] method RequiredMatchSiloMetadataPlacementFilterDirector_FiltersToMultipleSilosWhenMatching (line 115) | [Fact, TestCategory("Functional")] FILE: test/Orleans.Placement.Tests/PlacementFilterTests/SiloMetadataPlacementFilterTests.cs class SiloMetadataPlacementFilterTests (line 10) | [TestCategory("Placement"), TestCategory("Filters"), TestCategory("SiloM... class Fixture (line 13) | public class Fixture : IAsyncLifetime method DisposeAsync (line 16) | public async Task DisposeAsync() method InitializeAsync (line 24) | public async Task InitializeAsync() method PlacementFilter_GrainWithoutFilterCanBeCalled (line 41) | [Fact, TestCategory("Functional")] method PlacementFilter_RequiredFilterCanBeCalled (line 53) | [Fact, TestCategory("Functional")] method PlacementFilter_PreferredFilterCanBeCalled (line 76) | [Fact, TestCategory("Functional")] method PlacementFilter_PreferredMin2FilterCanBeCalled (line 99) | [Fact, TestCategory("Functional")] method PlacementFilter_PreferredMultipleFilterCanBeCalled (line 133) | [Fact, TestCategory("Functional")] method PlacementFilter_PreferredMin2FilterCanBeCalledWithLargerCluster (line 167) | [Fact, TestCategory("Functional")] method PlacementFilter_PreferredNoMetadataFilterCanBeCalled (line 200) | [Fact, TestCategory("Functional")] type IUniqueRequiredMatchFilteredGrain (line 230) | public interface IUniqueRequiredMatchFilteredGrain : IGrainWithIntegerKey method GetHostingSilo (line 232) | Task GetHostingSilo(); class UniqueRequiredMatchFilteredGrain (line 236) | [RequiredMatchSiloMetadataPlacementFilter(["unique"]), RandomPlacement] method GetHostingSilo (line 240) | public Task GetHostingSilo() => Task.FromResult(localSilo... type IPreferredMatchFilteredGrain (line 242) | public interface IPreferredMatchFilteredGrain : IGrainWithIntegerKey method GetHostingSilo (line 244) | Task GetHostingSilo(); class PreferredMatchFilteredGrain (line 248) | [PreferredMatchSiloMetadataPlacementFilter(["unique"], 1), RandomPlacement] method GetHostingSilo (line 252) | public Task GetHostingSilo() => Task.FromResult(localSilo... type IPreferredMatchMin2FilteredGrain (line 256) | public interface IPreferredMatchMin2FilteredGrain : IGrainWithIntegerKey method GetHostingSilo (line 258) | Task GetHostingSilo(); class PreferredMatchMinTwoFilteredGrain (line 262) | [PreferredMatchSiloMetadataPlacementFilter(["unique"]), RandomPlacement] method GetHostingSilo (line 266) | public Task GetHostingSilo() => Task.FromResult(localSilo... type IPreferredMatchMultipleFilteredGrain (line 269) | public interface IPreferredMatchMultipleFilteredGrain : IGrainWithIntege... method GetHostingSilo (line 271) | Task GetHostingSilo(); class PreferredMatchMultipleFilteredGrain (line 275) | [PreferredMatchSiloMetadataPlacementFilter(["unique", "other"], 2), Rand... method GetHostingSilo (line 279) | public Task GetHostingSilo() => Task.FromResult(localSilo... class PreferredMatchNoMetadataFilteredGrain (line 283) | [PreferredMatchSiloMetadataPlacementFilter(["not.there"]), RandomPlacement] method GetHostingSilo (line 287) | public Task GetHostingSilo() => Task.FromResult(localSilo... type IPreferredMatchNoMetadataFilteredGrain (line 290) | public interface IPreferredMatchNoMetadataFilteredGrain : IGrainWithInte... method GetHostingSilo (line 292) | Task GetHostingSilo(); FILE: test/Orleans.Placement.Tests/PlacementFilterTests/TestLocalSiloDetails.cs class TestLocalSiloDetails (line 3) | internal class TestLocalSiloDetails : ILocalSiloDetails method TestLocalSiloDetails (line 5) | public TestLocalSiloDetails(string name, string clusterId, string dnsH... FILE: test/Orleans.Placement.Tests/PlacementFilterTests/TestSiloMetadataCache.cs class TestSiloMetadataCache (line 5) | internal class TestSiloMetadataCache : ISiloMetadataCache method TestSiloMetadataCache (line 9) | public TestSiloMetadataCache(Dictionary met... method GetSiloMetadata (line 14) | public SiloMetadata GetSiloMetadata(SiloAddress siloAddress) => _metad... FILE: test/Orleans.Runtime.Internal.Tests/ActivationsLifeCycleTests/ActivationCollectorTests.cs class ActivationCollectorTests (line 20) | public class ActivationCollectorTests : OrleansTestingBase, IAsyncLifetime method Initialize (line 30) | private async Task Initialize(TimeSpan collectionAgeLimit, TimeSpan qu... class SiloConfigurator (line 41) | public class SiloConfigurator : IHostConfigurator method Configure (line 43) | public void Configure(IHostBuilder hostBuilder) method InitializeAsync (line 68) | Task IAsyncLifetime.InitializeAsync() => Task.CompletedTask; method Initialize (line 70) | private async Task Initialize(TimeSpan collectionAgeLimit) method DisposeAsync (line 75) | public async Task DisposeAsync() method ActivationCollectorForceCollection (line 90) | [Fact, TestCategory("ActivationCollector"), TestCategory("Functional")] method ActivationCollectorShouldCollectIdleActivations (line 119) | [Fact, TestCategory("ActivationCollector"), TestCategory("Functional")] method ActivationCollectorShouldNotCollectBusyActivations (line 149) | [Fact, TestCategory("ActivationCollector"), TestCategory("Functional")] method ManualCollectionShouldNotCollectBusyActivations (line 210) | [Fact, TestCategory("ActivationCollector"), TestCategory("Functional")] method ActivationCollectorShouldCollectIdleActivationsSpecifiedInPerTypeConfiguration (line 284) | [Fact, TestCategory("ActivationCollector"), TestCategory("Functional")] method ActivationCollectorShouldNotCollectBusyActivationsSpecifiedInPerTypeConfiguration (line 316) | [Fact, TestCategory("ActivationCollector"), TestCategory("Functional")] method ActivationCollectorShouldNotCollectBusyStatelessWorkers (line 379) | [Fact(Skip = "Flaky test. Needs to be investigated."), TestCategory("A... method ActivationCollectorShouldCollectByCollectionSpecificAgeLimitForTwelveSeconds (line 495) | [Fact, TestCategory("ActivationCollector"), TestCategory("Functional")] method NonReentrantGrainTimer_NoKeepAlive_Test (line 532) | [Fact, TestCategory("SlowBVT"), TestCategory("Timers")] FILE: test/Orleans.Runtime.Internal.Tests/ActivationsLifeCycleTests/DeactivateOnIdleTests.cs class DeactivateOnIdleTests (line 19) | [TestCategory("ActivationCollector")] method DeactivateOnIdleTests (line 25) | public DeactivateOnIdleTests(ITestOutputHelper output) method Initialize (line 30) | private void Initialize(TestClusterBuilder builder = null) method Dispose (line 41) | public void Dispose() method DeactivateOnIdleTestInside_Basic (line 54) | [Fact, TestCategory("Functional")] method DeactivateOnIdleTest_Stress_1 (line 69) | [Fact, TestCategory("SlowBVT")] method DeactivateOnIdleTest_Stress_2_NonReentrant (line 83) | [Fact, TestCategory("Functional")] method DeactivateOnIdleTest_Stress_3_Reentrant (line 105) | [Fact, TestCategory("Functional")] method DeactivateOnIdleTest_Stress_4_Timer (line 127) | [Fact, TestCategory("Functional")] method DeactivateOnIdleTest_Stress_5 (line 140) | [Fact, TestCategory("Functional")] method DeactivateOnIdleTest_Stress_11 (line 169) | [Fact, TestCategory("Stress")] method DeactivateOnIdle_NonExistentActivation_1 (line 182) | [Fact, TestCategory("Functional")] method DeactivateOnIdle_NonExistentActivation_2 (line 188) | [Fact, TestCategory("Functional")] class ClientConfigurator (line 194) | public class ClientConfigurator : IClientBuilderConfigurator method Configure (line 196) | public void Configure(IConfiguration configuration, IClientBuilder c... class SiloConfigurator (line 202) | public class SiloConfigurator : IHostConfigurator method Configure (line 204) | public void Configure(IHostBuilder hostBuilder) method DeactivateOnIdle_NonExistentActivation_Runner (line 215) | private async Task DeactivateOnIdle_NonExistentActivation_Runner(int f... method PickGrainInNonPrimary (line 237) | private async Task PickGrainInNonPrimary() FILE: test/Orleans.Runtime.Internal.Tests/CancellationTests/SystemTargetCancellationTokenTests.cs class SystemTargetCancellationTokenTests_WaitForAcknowledgement (line 16) | public sealed class SystemTargetCancellationTokenTests_WaitForAcknowledg... class Fixture (line 19) | public sealed class Fixture : FixtureBase class SystemTargetCancellationTokenTests_NoWaitForAcknowledgement (line 28) | public sealed class SystemTargetCancellationTokenTests_NoWaitForAcknowle... class Fixture (line 31) | public sealed class Fixture : FixtureBase class SystemTargetCancellationTokenTests (line 42) | public abstract class SystemTargetCancellationTokenTests(SystemTargetCan... class FixtureBase (line 49) | public abstract class FixtureBase : BaseInProcessTestClusterFixture method ConfigureTestCluster (line 53) | protected override void ConfigureTestCluster(InProcessTestClusterBui... method GetSystemTarget (line 81) | public ICancellationTestSystemTarget GetSystemTarget(SiloAddress sil... method SystemTargetTaskCancellation (line 89) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method MultipleSystemTargetsTaskCancellation (line 109) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method SystemTargetMultipleConcurrentCancellations (line 141) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method TokenPassingWithoutCancellation_NoExceptionShouldBeThrown (line 172) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method PreCancelledTokenPassing (line 189) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksExecutionContext (line 203) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksTaskSchedulerContext (line 227) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksThrow_ExceptionDoesNotPropagate (line 250) | [Fact, TestCategory("Cancellation")] method InSiloCancellation (line 264) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InterSiloCancellation (line 274) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InterSiloClientCancellationTokenPassing (line 290) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InSiloClientCancellationTokenPassing (line 306) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method ClientCancellationTokenPassing (line 316) | private async Task ClientCancellationTokenPassing(int delay, SiloAddre... method CancellationTestCore (line 332) | private async Task CancellationTestCore(SiloAddress sourceAddress, Sil... method WaitForCallCancellation (line 346) | private static async Task WaitForCallCancellation(ICancellationTestSys... method MultipleConcurrentSystemTargetRequestsCancellation (line 364) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] class CancellationTestSystemTarget (line 407) | internal sealed class CancellationTestSystemTarget : SystemTarget, ICanc... method CancellationTestSystemTarget (line 412) | public CancellationTestSystemTarget( method Participate (line 422) | void ILifecycleParticipant.Participate(ISiloLifecycle ... method GetRuntimeInstanceId (line 428) | public Task GetRuntimeInstanceId() method LongWait (line 434) | public async Task LongWait(CancellationToken cancellationToken, TimeSp... method CallOtherLongRunningTask (line 448) | public async Task CallOtherLongRunningTask(ICancellationTestSystemTarg... method CallOtherLongRunningTaskWithLocalCancellation (line 454) | public async Task CallOtherLongRunningTaskWithLocalCancellation(ICance... method CancellationTokenCallbackResolve (line 463) | public Task CancellationTokenCallbackResolve(CancellationToken c... method CallOtherCancellationTokenCallbackResolve (line 486) | public async Task CallOtherCancellationTokenCallbackResolve(ICan... method CancellationTokenCallbackThrow (line 495) | public async Task CancellationTokenCallbackThrow(CancellationToken can... method WasCallCancelled (line 507) | public Task WasCallCancelled(Guid callId) method WaitForCancellation (line 513) | public async Task<(bool WasCancelled, Exception? Error)> WaitForCancel... method RecordCancellation (line 531) | private void RecordCancellation(Guid callId, Exception? error) FILE: test/Orleans.Runtime.Internal.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 12) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 19) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] FILE: test/Orleans.Runtime.Internal.Tests/ConcurrencyTests.cs class ConcurrencyTests (line 22) | public class ConcurrencyTests : OrleansTestingBase, IClassFixture> conn... FILE: test/Orleans.Runtime.Internal.Tests/ErrorInjectionStorageProvider.cs type ErrorInjectionPoint (line 9) | [Serializable] type ErrorInjectionBehavior (line 20) | [Serializable] class StorageProviderInjectedError (line 32) | [Serializable] method StorageProviderInjectedError (line 39) | public StorageProviderInjectedError(ErrorInjectionPoint errorPoint) method StorageProviderInjectedError (line 44) | public StorageProviderInjectedError() method StorageProviderInjectedError (line 57) | [Obsolete] method StorageProviderInjectedError (line 63) | protected StorageProviderInjectedError(string message) : base(message) method StorageProviderInjectedError (line 67) | protected StorageProviderInjectedError(string message, Exception inner... class ErrorInjectionStorageProvider (line 72) | public class ErrorInjectionStorageProvider : MockStorageProvider, IContr... method ErrorInjectionStorageProvider (line 76) | public ErrorInjectionStorageProvider( method SetErrorInjection (line 85) | public static async Task SetErrorInjection(string providerName, ErrorI... method SetErrorInjection (line 98) | public void SetErrorInjection(ErrorInjectionBehavior errorInject) method Close (line 104) | public async override Task Close() method ReadStateAsync (line 119) | public async override Task ReadStateAsync(string grainType, GrainId... method WriteStateAsync (line 135) | public async override Task WriteStateAsync(string grainType, GrainI... method ThrowIfMatches (line 151) | private void ThrowIfMatches(ErrorInjectionPoint executingPoint) method ExecuteCommand (line 171) | public override Task ExecuteCommand(int command, object arg) FILE: test/Orleans.Runtime.Internal.Tests/GatewaySelectionTest.cs class GatewaySelectionTest (line 31) | public class GatewaySelectionTest method GatewaySelectionTest (line 43) | public GatewaySelectionTest(ITestOutputHelper output) method GatewaySelection (line 53) | [Fact, TestCategory("BVT"), TestCategory("Gateway")] method Test_GatewaySelection (line 64) | protected async Task Test_GatewaySelection(IGatewayListProvider listPr... class TestListProvider (line 110) | private class TestListProvider : IGatewayListProvider method TestListProvider (line 114) | public TestListProvider(List gatewayUris) method GetGateways (line 119) | public Task> GetGateways() method InitializeGatewayListProvider (line 133) | public Task InitializeGatewayListProvider() FILE: test/Orleans.Runtime.Internal.Tests/General/ConsistentRingProviderTests_Silo.cs class ConsistentRingProviderTests_Silo (line 17) | public class ConsistentRingProviderTests_Silo : TestClusterPerTest type Fail (line 23) | private enum Fail { First, Random, Last } method ConfigureTestCluster (line 25) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class Configurator (line 31) | private class Configurator : ISiloConfigurator, IClientBuilderConfigur... method Configure (line 33) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 40) | public void Configure(IConfiguration configuration, IClientBuilder c... method Ring_Basic (line 47) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_1F_Random (line 55) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_1F_Beginning (line 61) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_1F_End (line 67) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_2F_Random (line 73) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_2F_Beginning (line 79) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_2F_End (line 85) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method FailureTest (line 91) | private async Task FailureTest(Fail failCode, int numOfFailures) method Ring_1J (line 124) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_2J (line 130) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method JoinTest (line 136) | private async Task JoinTest(int numOfJoins) method Ring_1F1J (line 151) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method Ring_1Fsec1J (line 180) | [Fact, TestCategory("Functional"), TestCategory("Ring")] method PickKey (line 208) | private uint PickKey(SiloAddress responsibleSilo) method VerificationScenario (line 224) | private async Task VerificationScenario(uint testKey) method VerifyKey (line 252) | private async Task VerifyKey(uint key, List silos) method getSilosToFail (line 274) | private async Task> getSilosToFail(Fail fail, int num... method printSilos (line 351) | private void printSilos(string msg) method AssertEventually (line 365) | private static async Task AssertEventually(Func assertion, TimeS... method AssertEventually (line 370) | private static async Task AssertEventually(Func assertion, TimeS... FILE: test/Orleans.Runtime.Internal.Tests/General/RequestContextTest.cs class RequestContextTests_Silo (line 16) | public class RequestContextTests_Silo : OrleansTestingBase, IClassFixtur... class Fixture (line 22) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 24) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method RequestContextTests_Silo (line 30) | public RequestContextTests_Silo(ITestOutputHelper output, Fixture fixt... method Dispose (line 40) | public void Dispose() method RequestContext_ActivityId_Simple (line 46) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_AC_Test1 (line 57) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_Task_Test1 (line 84) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_Task_TestRequestContext (line 120) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_RC_Set_E2E (line 130) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_CM_E2E (line 155) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_CM_E2E_ViaProxy (line 186) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_RC_None_E2E (line 217) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_CM_None_E2E (line 249) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] method RequestContext_ActivityId_CM_DynamicChange_Client (line 280) | [Fact, TestCategory("Functional"), TestCategory("RequestContext")] class RequestContextGrainObserver (line 312) | internal class RequestContextGrainObserver : ISimpleGrainObserver method RequestContextGrainObserver (line 318) | public RequestContextGrainObserver(ITestOutputHelper output, Action GetApproximateSiloStatuse... method GetActiveSilos (line 233) | public ImmutableArray GetActiveSilos() => _content.Keys... method SetSiloStatus (line 235) | public void SetSiloStatus(SiloAddress siloAddress, SiloStatus status... method IsDeadSilo (line 237) | public bool IsDeadSilo(SiloAddress silo) => GetApproximateSiloStatus... method IsFunctionalDirectory (line 239) | public bool IsFunctionalDirectory(SiloAddress siloAddress) => !GetAp... method SubscribeToSiloStatusEvents (line 242) | public bool SubscribeToSiloStatusEvents(ISiloStatusListener observer... method TryGetSiloName (line 244) | public bool TryGetSiloName(SiloAddress siloAddress, out string siloN... method UnSubscribeFromSiloStatusEvents (line 246) | public bool UnSubscribeFromSiloStatusEvents(ISiloStatusListener obse... FILE: test/Orleans.Runtime.Internal.Tests/GrainLocatorActivationResiliencyTests.cs class GrainLocatorActivationResiliencyTests (line 33) | public class GrainLocatorActivationResiliencyTests : HostedTestClusterEn... method GrainLocatorActivationResiliencyTests (line 35) | public GrainLocatorActivationResiliencyTests(DefaultClusterFixture fix... method ReactivateGrainWithPoisonGrainDirectoryEntry_LocalSilo (line 51) | [Fact, TestCategory("BVT")] method ReactivateGrainWithPoisonGrainDirectoryEntry_RemoteSilo (line 87) | [Fact, TestCategory("BVT")] FILE: test/Orleans.Runtime.Internal.Tests/GrainStateContainingGrainReferences.cs class GrainStateContainingGrainReferences (line 5) | [Serializable] method GrainStateContainingGrainReferences (line 16) | public GrainStateContainingGrainReferences() FILE: test/Orleans.Runtime.Internal.Tests/LivenessTests/ConsistentRingProviderTests.cs class ConsistentRingProviderTests (line 16) | public class ConsistentRingProviderTests(ITestOutputHelper output) method ConsistentRingProvider_Test1 (line 20) | [Fact, TestCategory("Functional"), TestCategory("Liveness"), TestCateg... method ConsistentRingProvider_Test2 (line 34) | [Fact, TestCategory("Functional"), TestCategory("Liveness"), TestCateg... method ConsistentRingProvider_Test3 (line 48) | [Fact, TestCategory("Functional"), TestCategory("Liveness"), TestCateg... method GetQueueHistogram (line 97) | private static Dictionary> GetQueueHistogram(Li... class FakeSiloStatusOracle (line 120) | internal sealed class FakeSiloStatusOracle : ISiloStatusOracle method FakeSiloStatusOracle (line 125) | public FakeSiloStatusOracle() method GetApproximateSiloStatus (line 137) | public SiloStatus GetApproximateSiloStatus(SiloAddress siloAddress) method GetApproximateSiloStatuses (line 146) | public Dictionary GetApproximateSiloStatuse... method SetSiloStatus (line 153) | public void SetSiloStatus(SiloAddress siloAddress, SiloStatus status) method IsDeadSilo (line 162) | public bool IsDeadSilo(SiloAddress silo) => GetApproximateSiloStatus... method IsFunctionalDirectory (line 164) | public bool IsFunctionalDirectory(SiloAddress siloAddress) => !GetAp... method SubscribeToSiloStatusEvents (line 166) | public bool SubscribeToSiloStatusEvents(ISiloStatusListener observer... method TryGetSiloName (line 168) | public bool TryGetSiloName(SiloAddress siloAddress, out string siloN... method UnSubscribeFromSiloStatusEvents (line 174) | public bool UnSubscribeFromSiloStatusEvents(ISiloStatusListener obse... method GetActiveSilos (line 175) | public ImmutableArray GetActiveSilos() => [.. GetApprox... FILE: test/Orleans.Runtime.Internal.Tests/MembershipTests/ClientIdPartitionDataRebuildTests.cs class ClientIdPartitionDataRebuildTests (line 16) | public class ClientIdPartitionDataRebuildTests : IDisposable class Observer (line 18) | internal class Observer : ISimpleGrainObserver method StateChanged (line 24) | public void StateChanged(int a, int b) method WaitForNotification (line 31) | public async Task WaitForNotification(int expectedA, int expectedB, ... method ClientIdPartitionDataRebuildTests (line 43) | public ClientIdPartitionDataRebuildTests(ITestOutputHelper output) method ReconstructClientIdPartitionTest_Observer (line 48) | [Fact(Skip = "Not reliable in PR build, skipping for now")] method ReconstructClientIdPartitionTest_Request (line 73) | [Fact(Skip = "Not reliable in PR build, skipping for now")] method SetupTestAndPickGrain (line 89) | private async Task SetupTestAndPickGrain(Func> g... method CreateAndDeployTestCluster (line 130) | private void CreateAndDeployTestCluster() class SiloConfigurator (line 140) | public class SiloConfigurator : ISiloConfigurator method Configure (line 142) | public void Configure(ISiloBuilder hostBuilder) class ClientConfigurator (line 155) | public class ClientConfigurator : IClientBuilderConfigurator method Configure (line 157) | public void Configure(IConfiguration configuration, IClientBuilder c... method Dispose (line 163) | public void Dispose() FILE: test/Orleans.Runtime.Internal.Tests/MembershipTests/MembershipTableTestsBase.cs class SiloInstanceTableTestConstants (line 14) | internal static class SiloInstanceTableTestConstants class MembershipTableTestsBase (line 25) | [Collection(TestEnvironmentFixture.DefaultCollection)] method MembershipTableTestsBase (line 43) | protected MembershipTableTestsBase(ConnectionStringFixture fixture, Te... method Dispose (line 74) | public void Dispose() method CreateGatewayListProvider (line 83) | protected abstract IGatewayListProvider CreateGatewayListProvider(ILog... method CreateMembershipTable (line 84) | protected abstract IMembershipTable CreateMembershipTable(ILogger logg... method GetConnectionString (line 85) | protected abstract Task GetConnectionString(); method GetAdoInvariant (line 87) | protected virtual string GetAdoInvariant() method MembershipTable_GetGateways (line 92) | protected async Task MembershipTable_GetGateways() method MembershipTable_ReadAll_EmptyTable (line 125) | protected async Task MembershipTable_ReadAll_EmptyTable() method MembershipTable_InsertRow (line 137) | protected async Task MembershipTable_InsertRow(bool extendedProtocol =... method MembershipTable_ReadRow_Insert_Read (line 158) | protected async Task MembershipTable_ReadRow_Insert_Read(bool extended... method MembershipTable_ReadAll_Insert_ReadAll (line 217) | protected async Task MembershipTable_ReadAll_Insert_ReadAll(bool exten... method MembershipTable_UpdateRow (line 251) | protected async Task MembershipTable_UpdateRow(bool extendedProtocol =... method MembershipTable_UpdateRowInParallel (line 351) | protected async Task MembershipTable_UpdateRowInParallel(bool extended... method MembershipTable_UpdateIAmAlive (line 396) | protected async Task MembershipTable_UpdateIAmAlive(bool extendedProto... method MembershipTable_CleanupDefunctSiloEntries (line 425) | protected async Task MembershipTable_CleanupDefunctSiloEntries(bool ex... method CreateMembershipEntryForTest (line 489) | private static MembershipEntry CreateMembershipEntryForTest() method GetUtcNowWithSecondsResolution (line 507) | private static DateTime GetUtcNowWithSecondsResolution() method CreateSiloAddressForTest (line 513) | private static SiloAddress CreateSiloAddressForTest() FILE: test/Orleans.Runtime.Internal.Tests/MemoryGrainStorageTests.cs class MemoryGrainStorageTests (line 31) | [TestCategory("Persistence"), TestCategory("Memory")] class Fixture (line 34) | public class Fixture : BaseTestClusterFixture class StorageSiloBuilderConfigurator (line 36) | private class StorageSiloBuilderConfigurator : ISiloConfigurator method Configure (line 38) | public void Configure(ISiloBuilder hostBuilder) method ConfigureTestCluster (line 48) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method MemoryGrainStorageTests (line 54) | public MemoryGrainStorageTests(ITestOutputHelper output, Fixture fixtu... FILE: test/Orleans.Runtime.Internal.Tests/MessageScheduling/AllowCallChainReentrancyTests.cs class AllowCallChainReentrancyTests (line 10) | public class AllowCallChainReentrancyTests : OrleansTestingBase, IClassF... class Fixture (line 15) | public class Fixture : BaseTestClusterFixture method AllowCallChainReentrancyTests (line 19) | public AllowCallChainReentrancyTests(ITestOutputHelper output, Fixture... method DeadlockDetection_1 (line 31) | [Fact, TestCategory("Functional"), TestCategory("Deadlock")] method CallChainReentrancy_2 (line 38) | [Fact, TestCategory("Functional"), TestCategory("Deadlock")] method CallChainReentrancy_3 (line 45) | [Fact, TestCategory("Functional"), TestCategory("Deadlock")] method CallChainReentrancy_4 (line 52) | [Fact, TestCategory("Functional"), TestCategory("Deadlock")] method CallChainReentrancy_5 (line 59) | [Fact, TestCategory("Functional"), TestCategory("Deadlock")] method CallChainReentrancy_6 (line 66) | [Fact, TestCategory("Functional"), TestCategory("Deadlock")] method CallChainReentrancy_WithSuppression (line 72) | [Fact, TestCategory("Functional"), TestCategory("Deadlock")] FILE: test/Orleans.Runtime.Internal.Tests/MessageScheduling/CallChainReentrancyTestHelper.cs class CallChainReentrancyTestHelper (line 9) | public class CallChainReentrancyTestHelper method CallChainReentrancy_1 (line 25) | public async Task CallChainReentrancy_1() method CallChainReentrancy_2 (line 42) | public async Task CallChainReentrancy_2() method CallChainReentrancy_3 (line 60) | public async Task CallChainReentrancy_3() method CallChainReentrancy_4 (line 80) | public async Task CallChainReentrancy_4() method CallChainReentrancy_5 (line 98) | public async Task CallChainReentrancy_5() method CallChainReentrancy_6 (line 117) | public async Task CallChainReentrancy_6() method CallChainReentrancy_WithSuppression (line 138) | public async Task CallChainReentrancy_WithSuppression() type CallChainOperation (line 178) | public enum CallChainOperation class CallChainObserver (line 184) | public class CallChainObserver : ICallChainObserver method OnEnter (line 189) | public async Task OnEnter(string grain, int callIndex) method OnExit (line 194) | public async Task OnExit(string grain, int callIndex) method WaitForOperationAsync (line 199) | public async Task WaitForOperationAsync(CallChainOperation operation... FILE: test/Orleans.Runtime.Internal.Tests/MessageScheduling/DisabledCallChainReentrancyTestRunner.cs class DisabledCallChainReentrancyTestRunner (line 8) | public class DisabledCallChainReentrancyTestRunner method DisabledCallChainReentrancyTestRunner (line 13) | public DisabledCallChainReentrancyTestRunner(IGrainFactory grainFactor... method NonReentrantGrain (line 19) | public void NonReentrantGrain(bool performDeadlockDetection) method NonReentrantGrain_WithMayInterleaveStaticPredicate_WhenPredicateReturnsFalse (line 44) | public void NonReentrantGrain_WithMayInterleaveStaticPredicate_WhenPre... method NonReentrantGrain_WithMayInterleaveInstancedPredicate_WhenPredicateReturnsFalse (line 69) | public void NonReentrantGrain_WithMayInterleaveInstancedPredicate_When... FILE: test/Orleans.Runtime.Internal.Tests/MessageScheduling/DisabledCallChainReentrancyTests.cs class DisabledCallChainReentrancyTests (line 10) | public class DisabledCallChainReentrancyTests : OrleansTestingBase, ICla... class Fixture (line 14) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 16) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method DisabledCallChainReentrancyTests (line 22) | public DisabledCallChainReentrancyTests(Fixture fixture) method NonReentrantGrain (line 27) | [Fact, TestCategory("Functional"), TestCategory("Tasks"), TestCategory... method NonReentrantGrain_WithMayInterleaveStaticPredicate_WhenPredicateReturnsFalse (line 33) | [Fact, TestCategory("Functional"), TestCategory("Tasks"), TestCategory... method NonReentrantGrain_WithMayInterleaveInstancedPredicate_WhenPredicateReturnsFalse (line 39) | [Fact, TestCategory("Functional"), TestCategory("Tasks"), TestCategory... FILE: test/Orleans.Runtime.Internal.Tests/MessageScheduling/ReentrancyTests.cs class ReentrancyTestsSiloBuilderConfigurator (line 11) | internal class ReentrancyTestsSiloBuilderConfigurator : ISiloConfigurator method Configure (line 13) | public void Configure(ISiloBuilder hostBuilder) class ReentrancyTests (line 25) | public class ReentrancyTests : OrleansTestingBase, IClassFixture GetConnectionString(); method GetAdoInvariant (line 59) | protected virtual string GetAdoInvariant() method RemindersParallelUpsert (line 64) | protected async Task RemindersParallelUpsert() method ReminderSimple (line 80) | protected async Task ReminderSimple() method RemindersRange (line 108) | protected async Task RemindersRange(int iterations = 1000) method TestRemindersHashInterval (line 140) | private async Task TestRemindersHashInterval(IReminderTable reminderTa... method CreateReminder (line 155) | private static ReminderEntry CreateReminder(GrainId grainId, string re... method MakeTestGrainReference (line 168) | private static GrainId MakeTestGrainReference() => LegacyGrainId.GetGr... FILE: test/Orleans.Runtime.Internal.Tests/RetryHelper.cs class RetryOperation (line 9) | public static class RetryOperation method Sigmoid (line 17) | public static TimeSpan Sigmoid(int retryAttempt) method LinearWithTenMilliseconds (line 29) | public static TimeSpan LinearWithTenMilliseconds(int retryAttempt) class RetryHelper (line 39) | internal static class RetryHelper method RetryOnExceptionAsync (line 50) | internal static async Task RetryOnExceptionAsync(int... FILE: test/Orleans.Runtime.Internal.Tests/SiloMetadataTests/SiloMetadataTests.cs class SiloMetadataTests (line 12) | [TestCategory("SiloMetadata")] class Fixture (line 22) | public class Fixture : IAsyncLifetime method DisposeAsync (line 25) | public async Task DisposeAsync() method InitializeAsync (line 33) | public async Task InitializeAsync() method SiloMetadata_FromConfiguration_CanBeSetAndRead (line 57) | [Fact, TestCategory("Functional")] method SiloMetadata_HasConfiguredValues (line 63) | [Fact, TestCategory("Functional")] method SiloMetadata_CanBeSetAndRead (line 79) | [Fact, TestCategory("Functional")] method SiloMetadata_NewSilosHaveMetadata (line 85) | [Fact, TestCategory("Functional")] method SiloMetadata_RemovedSiloHasNoMetadata (line 93) | [Fact, TestCategory("Functional")] method SiloMetadata_BadSiloAddressHasNoMetadata (line 112) | [Fact, TestCategory("Functional")] class SiloMetadataTestExtensions (line 124) | public static class SiloMetadataTestExtensions method AssertAllSiloMetadataMatchesOnAllSilos (line 126) | public static void AssertAllSiloMetadataMatchesOnAllSilos(this InProce... FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/CommonStorageTests.cs class CommonStorageTests (line 17) | internal class CommonStorageTests method CommonStorageTests (line 19) | public CommonStorageTests(IGrainStorage storage) => Storage = storage ... method GetTestReferenceAndState (line 32) | [System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0022")] method GetTestReferenceAndState (line 46) | internal (GrainId GrainId, GrainState GrainState) GetTestR... method PersistenceStorage_Relational_WriteReadIdCyrillic (line 57) | internal async Task PersistenceStorage_Relational_WriteReadIdCyrillic() method PersistenceStorage_WriteDuplicateFailsWithInconsistentStateException (line 78) | internal async Task PersistenceStorage_Wri... method PersistenceStorage_WriteInconsistentFailsWithInconsistentStateException (line 102) | internal async Task PersistenceStorage_Wri... method PersistenceStorage_WriteReadWriteReadStatesInParallel (line 117) | internal async Task PersistenceStorage_WriteReadWriteReadStatesInParal... method Store_WriteClearRead (line 179) | internal async Task Store_WriteClearRead(string grainTypeName, Grai... method Store_WriteRead (line 209) | internal async Task Store_WriteRead(string grainTypeName, GrainId g... FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/CommonStorageUtilities.cs class CommonStorageUtilities (line 9) | public static class CommonStorageUtilities method AssertRelationalInconsistentExceptionMessage (line 15) | public static void AssertRelationalInconsistentExceptionMessage(string... FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/HierarchicalKeyStoreTests.cs class HierarchicalKeyStoreTests (line 10) | public class HierarchicalKeyStoreTests : IClassFixture> MakeKeys(int key1, int key2) FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/LocalStoreTests.cs type ProviderType (line 12) | [Serializable] class LocalStoreTests (line 25) | [Collection(TestEnvironmentFixture.DefaultCollection)] method LocalStoreTests (line 31) | public LocalStoreTests(ITestOutputHelper output, TestEnvironmentFixtur... method Store_Read (line 37) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method Store_WriteRead (line 59) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method Store_Delete (line 83) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method Store_ReadMulti (line 129) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method GrainState_Store_WriteRead (line 169) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method GetKeys (line 199) | private static IList> GetKeys(string grainTypeNa... method AsDictionary (line 209) | private static Dictionary AsDictionary(object state) class StorageProviderUtils (line 217) | internal static class StorageProviderUtils method PrintKeys (line 219) | public static string PrintKeys(IEnumerable> keys) method PrintData (line 225) | public static string PrintData(object data) method PrintOneWrite (line 235) | public static string PrintOneWrite( FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/PersistenceGrainTests.cs class PersistenceGrainTests_Local (line 28) | public class PersistenceGrainTests_Local : OrleansTestingBase, IClassFix... class Fixture (line 30) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 33) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 39) | private class SiloConfigurator : ISiloConfigurator method Configure (line 41) | public void Configure(ISiloBuilder hostBuilder) method PersistenceGrainTests_Local (line 65) | public PersistenceGrainTests_Local(ITestOutputHelper output, Fixture f... method InitializeAsync (line 72) | public async Task InitializeAsync() method DisposeAsync (line 77) | public async Task DisposeAsync() method Dispose (line 82) | public void Dispose() method Persistence_Silo_StorageProvider_Name_Missing (line 86) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_CheckStateInit (line 96) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_CheckStorageProvider (line 105) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_Init (line 114) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_Activate_StoredValue (line 129) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_Activate_StoredValue_Generic (line 146) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method Persistence_Grain_Activate_Error (line 163) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_Read (line 183) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_Write (line 197) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_ReRead (line 221) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method MemoryStore_Read_Write (line 246) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method MemoryStore_Delete (line 270) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method MemoryStore_Stress_Read (line 284) | [Fact, TestCategory("Stress"), TestCategory("CorePerf"), TestCategory(... method Persistence_Write (line 316) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Delete (line 340) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_Read_Error (line 373) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_Write_Error (line 436) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Grain_ReRead_Error (line 510) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_Error_BeforeRead (line 592) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_Error_AfterRead (line 618) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_Error_BeforeWrite (line 656) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_InconsistentStateException_DeactivatesGrain (line 690) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_InconsistentStateException_DeactivatesOnlyCurrentGrain (line 733) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_Error_AfterWrite (line 758) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_Error_BeforeReRead (line 785) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_Error_AfterReRead (line 812) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Error_Handled_Read (line 842) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Error_Handled_Write (line 873) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Error_NotHandled_Write (line 904) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_Provider_Loop_Read (line 942) | [Fact, TestCategory("Stress"), TestCategory("CorePerf"), TestCategory(... method Persistence_Grain_BadProvider (line 967) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method OrleansException_BadProvider (line 974) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method MemoryStore_UserGrain_Read_Write (line 1000) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method Persistence_Grain_NoState (line 1038) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Serialize_GrainState_DeepCopy (line 1050) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method Serialize_GrainState_DeepCopy_Stress (line 1071) | [Fact, TestCategory("Persistence"), TestCategory("Serialization"), Tes... method ReentrentGrainWithState (line 1113) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method NonReentrentStressGrainWithoutState (line 1129) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method ReentrentGrain_Task_Delay (line 1139) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method NonReentrentGrain_Task_Delay (line 1148) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method StateInheritanceTest (line 1157) | [Fact, TestCategory("Functional"), TestCategory("Persistence"), TestCa... method SurrogatePersistence_TypeWithoutPublicConstructor_Read (line 1168) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method Persistence_RecordTypeWithoutPublicParameterlessConstructor_Read (line 1182) | [Fact, TestCategory("Functional"), TestCategory("Persistence")] method SetStoredValue (line 1196) | private void SetStoredValue(string providerName, string grainType, ... method SetErrorInjection (line 1212) | private async Task SetErrorInjection(string providerName, ErrorInjecti... method SetErrorInjection (line 1217) | private async Task SetErrorInjection(string providerName, ErrorInjecti... method CheckStorageProviderErrors (line 1222) | private async Task CheckStorageProviderErrors(Func taskFunc, Typ... method HasStorageProvider (line 1258) | private bool HasStorageProvider(string providerName) method GetStateForStorageProviderInUse (line 1270) | private ProviderState GetStateForStorageProviderInUse(string provid... class ProviderState (line 1293) | private class ProviderState method ResetMockStorageProvidersHistory (line 1299) | private void ResetMockStorageProvidersHistory() FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/RandomUtilities.cs class RandomUtilities (line 9) | public static class RandomUtilities method GetRandom (line 55) | public static T GetRandom(Range range = null) method GetRandomCharacters (line 83) | public static string GetRandomCharacters(SymbolSet symbolSet, long count) method GetRandomGrainId (line 109) | internal static GrainId GetRandomGrainId(Sym... method GetRandomGrainId (line 132) | internal static GrainId GetRandomGrainId(bool keyExtension = false) FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/Range.cs class Range (line 11) | [DebuggerDisplay("Start = {Start}, End = {End}")] method Range (line 31) | public Range(T start, T end, IComparer comparer = null) method Equals (line 44) | public override bool Equals(object obj) method Equals (line 53) | public bool Equals(Range other) method GetHashCode (line 59) | public override int GetHashCode() FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/StorageProviders/BaseJSONStorageProvider.cs class BaseJSONStorageProvider (line 26) | public abstract class BaseJSONStorageProvider : IGrainStorage method BaseJSONStorageProvider (line 42) | protected BaseJSONStorageProvider() method Close (line 50) | public Task Close() method ReadStateAsync (line 66) | public async Task ReadStateAsync(string grainType, GrainId grainId,... method WriteStateAsync (line 84) | public Task WriteStateAsync(string grainType, GrainId grainId, IGra... method ClearStateAsync (line 99) | public Task ClearStateAsync(string grainType, GrainId grainId, IGra... method ConvertToStorageFormat (line 116) | protected static string ConvertToStorageFormat(IGrainState grain... method ConvertFromStorageFormat (line 126) | protected static void ConvertFromStorageFormat(IGrainState grain... FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/StorageProviders/FileStorageProvider.cs class OrleansFileStorage (line 36) | public class OrleansFileStorage : BaseJSONStorageProvider method OrleansFileStorage (line 38) | public OrleansFileStorage(string rootDirectory) class GrainStateFileDataManager (line 55) | internal class GrainStateFileDataManager : IJSONStateDataManager method GrainStateFileDataManager (line 61) | public GrainStateFileDataManager(string storageDirectory) method Delete (line 74) | public Task Delete(string collectionName, string key) method Read (line 90) | public async Task Read(string collectionName, string key) method Write (line 110) | public async Task Write(string collectionName, string key, string enti... method Dispose (line 120) | public void Dispose() method GetStorageFilePath (line 130) | private FileInfo GetStorageFilePath(string collectionName, string key) FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/StorageProviders/IJSONStateDataManager.cs type IJSONStateDataManager (line 28) | public interface IJSONStateDataManager : IDisposable method Delete (line 35) | System.Threading.Tasks.Task Delete(string collectionName, string key); method Read (line 43) | System.Threading.Tasks.Task Read(string collectionName, string... method Write (line 51) | System.Threading.Tasks.Task Write(string collectionName, string key, s... FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/SymbolSet.cs class SymbolSet (line 7) | public class SymbolSet method SymbolSet (line 50) | public SymbolSet(IEnumerable> setRanges) FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/TestDataSets/GrainTypeGenerator.cs class GrainTypeGenerator (line 3) | public static class GrainTypeGenerator class NotApplicable (line 8) | private class NotApplicable { }; type ITestGrainWithIntegerKey (line 10) | public interface ITestGrainWithIntegerKey: IGrainWithIntegerKey { } type ITestGrainGenericWithIntegerKey (line 12) | public interface ITestGrainGenericWithIntegerKey: IGrainWithInteger... class TestGrainWithIntegerKey (line 14) | public class TestGrainWithIntegerKey: Grain, ITestGrainWithIntegerKey { } class TestGrainGenericWithIntegerKey (line 16) | public class TestGrainGenericWithIntegerKey: Grain, ITestGrainGener... type ITestGrainWithGuidKey (line 18) | public interface ITestGrainWithGuidKey: IGrainWithGuidKey { } type ITestGrainGenericWithGuidKey (line 20) | public interface ITestGrainGenericWithGuidKey: IGrainWithGuidKey { } class TestGrainWithGuidKey (line 22) | public class TestGrainWithGuidKey: Grain, ITestGrainWithGuidKey { } class TestGrainGenericWithGuidKey (line 24) | public class TestGrainGenericWithGuidKey: Grain, ITestGrainGenericW... type ITestGrainWithStringKey (line 26) | public interface ITestGrainWithStringKey: IGrainWithStringKey { } type ITestGrainGenericWithStringKey (line 28) | public interface ITestGrainGenericWithStringKey: IGrainWithStringKe... class TestGrainWithStringKey (line 30) | public class TestGrainWithStringKey: Grain, ITestGrainWithStringKey { } class TestGrainGenericWithStringKey (line 32) | public class TestGrainGenericWithStringKey: Grain, ITestGrainGeneri... method GetGrainType (line 63) | public static string GetGrainType() method GetGrainType (line 81) | public static string GetGrainType() FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/TestDataSets/StorageDataSet2CyrillicIdsAndGrainNames.cs class StorageDataSet2CyrillicIdsAndGrainNames (line 10) | internal class StorageDataSet2CyrillicIdsAndGrainNames: IEnu... method GetTestData (line 24) | public static (string, GrainId, GrainState GetEnumerator() => Enumerable.Range(0, Nu... method GetEnumerator (line 69) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/TestDataSets/StorageDataSetGeneric.cs class StorageDataSetGeneric (line 6) | internal sealed class StorageDataSetGeneric : IEn... method GetTestData (line 10) | public static (string, GrainId, GrainState GetEnumerator() => Enumerable.Range(0, Nu... method GetEnumerator (line 28) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/TestDataSets/StorageDataSetPlain.cs class StorageDataSetPlain (line 10) | internal sealed class StorageDataSetPlain: IEnumerable method GetTestData (line 24) | public static (string, GrainId, GrainState) GetTestData(in... method GetEnumerator (line 42) | public IEnumerator GetEnumerator() => Enumerable.Range(0, Nu... method GetEnumerator (line 43) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/TestDataSets/StorageDateSetGenericHuge.cs class StorageDataSetGenericHuge (line 6) | internal sealed class StorageDataSetGenericHuge :... method GetTestData (line 11) | public static (string, GrainId, GrainState GetEnumerator() => Enumerable.Range(0, Nu... method GetEnumerator (line 29) | IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/TestDataSets/TestState1.cs class TestState1 (line 6) | [Serializable] method Equals (line 19) | public override bool Equals(object obj) method Equals (line 25) | public bool Equals(TestState1 other) method GetHashCode (line 35) | public override int GetHashCode() FILE: test/Orleans.Runtime.Internal.Tests/StorageTests/TestDataSets/TestStateGeneric1.cs class TestStateGeneric1 (line 6) | [Serializable] method Equals (line 23) | public override bool Equals(object obj) method Equals (line 29) | public bool Equals(TestStateGeneric1 other) method GetHashCode (line 42) | public override int GetHashCode() FILE: test/Orleans.Runtime.Internal.Tests/TestRunners/GrainPersistenceTestRunner.cs class GrainPersistenceTestsRunner (line 12) | public abstract class GrainPersistenceTestsRunner : OrleansTestingBase method GrainPersistenceTestsRunner (line 25) | protected GrainPersistenceTestsRunner(ITestOutputHelper output, BaseTe... method ClearStateAsync_Before_WriteStateAsync (line 42) | [SkippableFact, TestCategory("Functional")] method Grain_GrainStorage_Delete (line 54) | [SkippableFact, TestCategory("Functional")] method Grain_GrainStorage_Read (line 85) | [SkippableFact, TestCategory("Functional")] method Grain_GuidKey_GrainStorage_Read_Write (line 100) | [SkippableFact, TestCategory("Functional")] method Grain_LongKey_GrainStorage_Read_Write (line 123) | [SkippableFact, TestCategory("Functional")] method Grain_LongKeyExtended_GrainStorage_Read_Write (line 146) | [SkippableFact, TestCategory("Functional")] method Grain_GuidKeyExtended_GrainStorage_Read_Write (line 177) | [SkippableFact, TestCategory("Functional")] method Grain_Generic_GrainStorage_Read_Write (line 208) | [SkippableFact, TestCategory("Functional")] method Grain_NestedGeneric_GrainStorage_Read_Write (line 232) | [SkippableFact, TestCategory("Functional")] method Grain_Generic_GrainStorage_DiffTypes (line 256) | [SkippableFact, TestCategory("Functional")] method Grain_GrainStorage_SiloRestart (line 326) | [SkippableFact, TestCategory("Functional")] method Persistence_Perf_Activate (line 391) | [SkippableFact, TestCategory("CorePerf"), TestCategory("Performance"),... method Persistence_Perf_Write (line 406) | [SkippableFact, TestCategory("CorePerf"), TestCategory("Performance"),... method Persistence_Perf_Write_Reread (line 421) | [SkippableFact, TestCategory("CorePerf"), TestCategory("Performance"),... method Persistence_Silo_StorageProvider (line 443) | protected async Task Persistence_Silo_StorageProvider(string providerN... method RunPerfTest (line 455) | private async Task RunPerfTest(int n, string testName, TimeSpan target, method RunIterations (line 504) | private async Task RunIterations(string testName, int n, Func NewRandomState(int? aP... method GenerateRandomDigitString (line 31) | private static string GenerateRandomDigitString(int stringLength) FILE: test/Orleans.Runtime.Internal.Tests/TestUtils.cs class TestUtils (line 6) | public static class TestUtils method GetDetailedGrainReport (line 12) | internal static Task GetDetailedGrainReport(IInte... FILE: test/Orleans.Runtime.Internal.Tests/TimeoutTests.cs class TimeoutTests (line 29) | public class TimeoutTests : HostedTestClusterEnsureDefaultStarted, IDisp... method TimeoutTests (line 36) | public TimeoutTests(ITestOutputHelper output, DefaultClusterFixture fi... method Dispose (line 45) | public virtual void Dispose() method Timeout_LongMethod (line 59) | [Fact, TestCategory("Functional"), TestCategory("Timeout")] method CallThatShouldHaveBeenDroppedNotExecutedTest (line 135) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/3995")... FILE: test/Orleans.Runtime.Internal.Tests/TimerTests/ReminderTests_Base.cs class ReminderTests_Base (line 21) | public class ReminderTests_Base : OrleansTestingBase, IDisposable method ReminderTests_Base (line 38) | public ReminderTests_Base(BaseTestClusterFixture fixture) method Dispose (line 54) | public void Dispose() method Test_Reminders_Basic_StopByRef (line 62) | public async Task Test_Reminders_Basic_StopByRef() method Test_Reminders_Basic_ListOps (line 93) | public async Task Test_Reminders_Basic_ListOps() method Test_Reminders_1J_MultiGrainMultiReminders (line 134) | public async Task Test_Reminders_1J_MultiGrainMultiReminders() method Test_Reminders_ReminderNotFound (line 163) | public async Task Test_Reminders_ReminderNotFound() method PerGrainMultiReminderTestChurn (line 172) | internal async Task PerGrainMultiReminderTestChurn(IReminderTest... method PerGrainFailureTest (line 227) | protected async Task PerGrainFailureTest(IReminderTestGrain2 grain) method PerGrainMultiReminderTest (line 249) | protected async Task PerGrainMultiReminderTest(IReminderTestGrai... method PerCopyGrainFailureTest (line 326) | protected async Task PerCopyGrainFailureTest(IReminderTestCopyGr... method Time (line 345) | protected static string Time() method AssertIsInRange (line 350) | protected void AssertIsInRange(long val, long lowerLimit, long upperLi... method ExecuteWithRetries (line 368) | protected async Task ExecuteWithRetries(Func functio... method HandleError (line 414) | private async Task HandleError(Exception ex, long i) FILE: test/Orleans.Runtime.Internal.Tests/TimerTests/ReminderTests_TableGrain.cs class ReminderTests_TableGrain (line 17) | [TestCategory("Functional"), TestCategory("Reminders")] class Fixture (line 20) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 27) | private class SiloConfigurator : ISiloConfigurator method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) method ReminderTests_TableGrain (line 38) | public ReminderTests_TableGrain(Fixture fixture) : base(fixture) method Rem_Grain_Basic_StopByRef (line 51) | [Fact] method Rem_Grain_Basic_ListOps (line 60) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/9555")] method Rem_Grain_MultipleReminders (line 69) | [Fact] method Rem_Grain_1J_MultiGrainMultiReminders (line 81) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4318")] method Rem_Grain_ReminderNotFounds (line 90) | [Fact] FILE: test/Orleans.Runtime.Tests/ActivationTracingTests.cs class ActivationTracingTests (line 24) | [Collection("ActivationTracing")] method ActivationTracingTests (line 29) | static ActivationTracingTests() class Fixture (line 43) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 45) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloCfg (line 53) | private class SiloCfg : ISiloConfigurator method Configure (line 56) | public void Configure(ISiloBuilder hostBuilder) class ClientCfg (line 70) | private class ClientCfg : IClientBuilderConfigurator method Configure (line 72) | public void Configure(IConfiguration configuration, IClientBuilder... method ActivationTracingTests (line 82) | public ActivationTracingTests(Fixture fixture, ITestOutputHelper output) method ActivationSpanIsCreatedOnFirstCall (line 88) | [Fact] method ActivationSpanIncludesFilter (line 141) | [Fact] method ActivationSpanIncludesMultipleFilters (line 198) | [Fact] method PersistentStateReadSpanIsCreatedDuringActivation (line 251) | [Fact] method MigrationSpansAreCreatedDuringGrainMigration (line 304) | [Fact] method MigrationPlacementFilterSpanIsParentedUnderPlaceGrainSpan (line 377) | [Fact] method MigrationSpansAreCreatedForGrainWithPersistentState (line 445) | [Fact] method DehydrateAndRehydrateSpansAreNotCreatedForGrainWithoutMigrationParticipant (line 519) | [Fact] method AsyncEnumerableSpansAreCreatedForMultipleElements (line 579) | [Fact] method OnDeactivateSpanIsCreatedOnDeactivateOnIdle (line 679) | [Fact] method OnDeactivateSpanIncludesStorageWriteDuringDeactivation (line 742) | [Fact] method OnDeactivateSpanCapturesExceptionDuringDeactivation (line 793) | [Fact] method OnDeactivateSpanPrecedesDehydrateDuringMigration (line 844) | [Fact] method OnDeactivateSpanIsNotCreatedForNonGrainBaseGrain (line 924) | [Fact] method OnDeactivateSpanInheritsTraceContextFromTriggeringCall (line 973) | [Fact] method OnDeactivateSpanIsParentedToAsyncEnumerableMethodCall (line 1021) | [Fact] method OnDeactivateSpanHasCorrectReasonTagForMigration (line 1092) | [Fact] method OnDeactivateSpanIsCreatedForInconsistentStateException (line 1158) | [Fact] method OnDeactivateSpanIsNotCreatedForActivationFailure (line 1221) | [Fact] method OnDeactivateSpanIsCreatedForGrainContextDeactivate (line 1270) | [Fact] method OnDeactivateSpanHasCorrectParentWhenTriggeredExternally (line 1329) | [Fact] method AssertNoApplicationSpansParentedByRuntimeSpans (line 1386) | private void AssertNoApplicationSpansParentedByRuntimeSpans() method PrintActivityDiagnostics (line 1422) | private void PrintActivityDiagnostics() method PrintActivityTree (line 1504) | private static void PrintActivityTree( type IDeactivationTracingTestGrain (line 1538) | public interface IDeactivationTracingTestGrain : IGrainWithIntegerKey method GetActivityId (line 1540) | Task GetActivityId(); method TriggerDeactivation (line 1541) | Task TriggerDeactivation(); class DeactivationTracingTestGrain (line 1548) | public class DeactivationTracingTestGrain : Grain, IDeactivationTracingT... method GetActivityId (line 1550) | public Task GetActivityId() method TriggerDeactivation (line 1566) | public Task TriggerDeactivation() method OnDeactivateAsync (line 1572) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... type IDeactivationWithWorkTracingTestGrain (line 1582) | public interface IDeactivationWithWorkTracingTestGrain : IGrainWithInteg... method GetActivityId (line 1584) | Task GetActivityId(); method TriggerDeactivation (line 1585) | Task TriggerDeactivation(); method WasDeactivated (line 1586) | Task WasDeactivated(); class DeactivationWorkState (line 1592) | [GenerateSerializer] class DeactivationWithWorkTracingTestGrain (line 1606) | public class DeactivationWithWorkTracingTestGrain : Grain, IDeactivation... method DeactivationWithWorkTracingTestGrain (line 1610) | public DeactivationWithWorkTracingTestGrain( method GetActivityId (line 1616) | public Task GetActivityId() method TriggerDeactivation (line 1632) | public Task TriggerDeactivation() method WasDeactivated (line 1638) | public Task WasDeactivated() => Task.FromResult(_state.State.Was... method OnDeactivateAsync (line 1640) | public override async Task OnDeactivateAsync(DeactivationReason reason... type IDeactivationWithExceptionTracingTestGrain (line 1652) | public interface IDeactivationWithExceptionTracingTestGrain : IGrainWith... method GetActivityId (line 1654) | Task GetActivityId(); method TriggerDeactivation (line 1655) | Task TriggerDeactivation(); class DeactivationWithExceptionTracingTestGrain (line 1662) | public class DeactivationWithExceptionTracingTestGrain : Grain, IDeactiv... method GetActivityId (line 1664) | public Task GetActivityId() method TriggerDeactivation (line 1680) | public Task TriggerDeactivation() method OnDeactivateAsync (line 1686) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... type IDeactivationMigrationTracingTestGrain (line 1695) | public interface IDeactivationMigrationTracingTestGrain : IGrainWithInte... method GetGrainAddress (line 1697) | ValueTask GetGrainAddress(); method SetState (line 1698) | ValueTask SetState(int state); method GetState (line 1699) | ValueTask GetState(); method TriggerDeactivation (line 1700) | ValueTask TriggerDeactivation(); class DeactivationMigrationTracingTestGrain (line 1707) | [RandomPlacement] method GetState (line 1713) | public ValueTask GetState() => new(_state); method SetState (line 1715) | public ValueTask SetState(int state) method TriggerDeactivation (line 1721) | public ValueTask TriggerDeactivation() method OnDeactivateAsync (line 1727) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... method OnDehydrate (line 1733) | public void OnDehydrate(IDehydrationContext migrationContext) method OnRehydrate (line 1739) | public void OnRehydrate(IRehydrationContext migrationContext) method GetGrainAddress (line 1745) | public ValueTask GetGrainAddress() => new(GrainContext.A... type IInconsistentStateDeactivationGrain (line 1751) | public interface IInconsistentStateDeactivationGrain : IGrainWithIntegerKey method GetActivityId (line 1753) | Task GetActivityId(); method ThrowInconsistentStateException (line 1754) | Task ThrowInconsistentStateException(); class InconsistentStateDeactivationGrain (line 1761) | public class InconsistentStateDeactivationGrain : Grain, IInconsistentSt... method GetActivityId (line 1763) | public Task GetActivityId() method ThrowInconsistentStateException (line 1779) | public Task ThrowInconsistentStateException() method OnDeactivateAsync (line 1787) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... type IActivationFailureDeactivationGrain (line 1797) | public interface IActivationFailureDeactivationGrain : IGrainWithIntegerKey method GetActivityId (line 1799) | Task GetActivityId(); class ActivationFailureDeactivationGrain (line 1806) | public class ActivationFailureDeactivationGrain : Grain, IActivationFail... method ActivationFailureDeactivationGrain (line 1808) | public ActivationFailureDeactivationGrain() method GetActivityId (line 1814) | public Task GetActivityId() method OnDeactivateAsync (line 1830) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... type IGrainContextDeactivationGrain (line 1840) | public interface IGrainContextDeactivationGrain : IGrainWithIntegerKey method GetActivityId (line 1842) | Task GetActivityId(); method DeactivateWithCustomReason (line 1843) | Task DeactivateWithCustomReason(string reason); class GrainContextDeactivationGrain (line 1850) | public class GrainContextDeactivationGrain : Grain, IGrainContextDeactiv... method GetActivityId (line 1852) | public Task GetActivityId() method DeactivateWithCustomReason (line 1868) | public Task DeactivateWithCustomReason(string reason) method OnDeactivateAsync (line 1874) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... class TracingTestPlacementFilterStrategy (line 1888) | public class TracingTestPlacementFilterAttribute() : PlacementFilterAttr... class TracingTestPlacementFilterDirector (line 1900) | public class TracingTestPlacementFilterDirector : IPlacementFilterDirector method Filter (line 1902) | public IEnumerable Filter(PlacementFilterStrategy filterS... class SecondTracingTestPlacementFilterStrategy (line 1911) | public class SecondTracingTestPlacementFilterAttribute() : PlacementFilt... class SecondTracingTestPlacementFilterDirector (line 1923) | public class SecondTracingTestPlacementFilterDirector : IPlacementFilter... method Filter (line 1925) | public IEnumerable Filter(PlacementFilterStrategy filterS... type IFilteredActivityGrain (line 1934) | public interface IFilteredActivityGrain : IGrainWithIntegerKey method GetActivityId (line 1936) | Task GetActivityId(); class FilteredActivityGrain (line 1942) | [TracingTestPlacementFilter] method GetActivityId (line 1945) | public Task GetActivityId() type IMultiFilteredActivityGrain (line 1967) | public interface IMultiFilteredActivityGrain : IGrainWithIntegerKey method GetActivityId (line 1969) | Task GetActivityId(); class MultiFilteredActivityGrain (line 1975) | [TracingTestPlacementFilter] method GetActivityId (line 1979) | public Task GetActivityId() type IPersistentStateActivityGrain (line 2005) | public interface IPersistentStateActivityGrain : IGrainWithIntegerKey method GetActivityId (line 2007) | Task GetActivityId(); method GetStateValue (line 2008) | Task GetStateValue(); class PersistentStateActivityGrainState (line 2014) | [GenerateSerializer] class PersistentStateActivityGrain (line 2024) | [TracingTestPlacementFilter] method PersistentStateActivityGrain (line 2029) | public PersistentStateActivityGrain( method GetActivityId (line 2035) | public Task GetActivityId() method GetStateValue (line 2053) | public Task GetStateValue() type IMigrationTracingTestGrain (line 2066) | public interface IMigrationTracingTestGrain : IGrainWithIntegerKey method GetGrainAddress (line 2068) | ValueTask GetGrainAddress(); method SetState (line 2069) | ValueTask SetState(int state); method GetState (line 2070) | ValueTask GetState(); class MigrationTracingTestGrainState (line 2076) | [GenerateSerializer] class MigrationTracingTestGrain (line 2088) | [RandomPlacement] method GetState (line 2093) | public ValueTask GetState() => new(_state); method SetState (line 2095) | public ValueTask SetState(int state) method OnDehydrate (line 2101) | public void OnDehydrate(IDehydrationContext migrationContext) method OnRehydrate (line 2106) | public void OnRehydrate(IRehydrationContext migrationContext) method GetGrainAddress (line 2111) | public ValueTask GetGrainAddress() => new(GrainContext.A... type IMigrationFilterTracingTestGrain (line 2121) | public interface IMigrationFilterTracingTestGrain : IGrainWithIntegerKey method GetGrainAddress (line 2123) | ValueTask GetGrainAddress(); method SetState (line 2124) | ValueTask SetState(int state); method GetState (line 2125) | ValueTask GetState(); class MigrationFilterTracingTestGrain (line 2133) | [RandomPlacement] method GetState (line 2139) | public ValueTask GetState() => new(_state); method SetState (line 2141) | public ValueTask SetState(int state) method OnDehydrate (line 2147) | public void OnDehydrate(IDehydrationContext migrationContext) method OnRehydrate (line 2152) | public void OnRehydrate(IRehydrationContext migrationContext) method GetGrainAddress (line 2157) | public ValueTask GetGrainAddress() => new(GrainContext.A... type ISimpleMigrationTracingTestGrain (line 2159) | public interface ISimpleMigrationTracingTestGrain : IGrainWithIntegerKey method GetGrainAddress (line 2161) | ValueTask GetGrainAddress(); method SetState (line 2162) | ValueTask SetState(int state); method GetState (line 2163) | ValueTask GetState(); class SimpleMigrationTracingTestGrain (line 2171) | [RandomPlacement] method GetState (line 2176) | public ValueTask GetState() => new(_state); method SetState (line 2178) | public ValueTask SetState(int state) method GetGrainAddress (line 2184) | public ValueTask GetGrainAddress() => new(GrainContext.A... type IMigrationPersistentStateTracingTestGrain (line 2190) | public interface IMigrationPersistentStateTracingTestGrain : IGrainWithI... method SetState (line 2192) | ValueTask SetState(int a, int b); method GetState (line 2193) | ValueTask<(int A, int B)> GetState(); method GetGrainAddress (line 2194) | ValueTask GetGrainAddress(); class MigrationPersistentStateTracingTestGrain (line 2201) | [RandomPlacement] method MigrationPersistentStateTracingTestGrain (line 2207) | public MigrationPersistentStateTracingTestGrain( method GetState (line 2215) | public ValueTask<(int A, int B)> GetState() => new((_stateA.State.Valu... method SetState (line 2217) | public ValueTask SetState(int a, int b) method GetGrainAddress (line 2224) | public ValueTask GetGrainAddress() => new(GrainContext.A... type IAsyncEnumerableDeactivationGrain (line 2234) | public interface IAsyncEnumerableDeactivationGrain : IGrainWithIntegerKey method GetValuesAndDeactivate (line 2236) | IAsyncEnumerable GetValuesAndDeactivate(int count); method GetActivityId (line 2237) | Task GetActivityId(); class DeactivateAfterDisposeAsyncFilter (line 2244) | public class DeactivateAfterDisposeAsyncFilter : IIncomingGrainCallFilter method Invoke (line 2246) | public async Task Invoke(IIncomingGrainCallContext context) class AsyncEnumerableDeactivationGrain (line 2267) | public class AsyncEnumerableDeactivationGrain : Grain, IAsyncEnumerableD... method GetValuesAndDeactivate (line 2269) | public async IAsyncEnumerable GetValuesAndDeactivate(int count) method GetActivityId (line 2278) | public Task GetActivityId() method OnDeactivateAsync (line 2294) | public override Task OnDeactivateAsync(DeactivationReason reason, Canc... type ITraceContextPropagationGrain (line 2309) | public interface ITraceContextPropagationGrain : IGrainWithIntegerKey method GetTraceContextInfo (line 2315) | Task GetTraceContextInfo(); method GetNestedTraceContextInfo (line 2321) | Task<(TraceContextInfo Local, TraceContextInfo Nested)> GetNestedTrace... class TraceContextInfo (line 2327) | [GenerateSerializer] class TraceContextPropagationGrain (line 2364) | public class TraceContextPropagationGrain : Grain, ITraceContextPropagat... method GetTraceContextInfo (line 2366) | public Task GetTraceContextInfo() method GetNestedTraceContextInfo (line 2386) | public async Task<(TraceContextInfo Local, TraceContextInfo Nested)> G... class GrainCallTraceContextPropagationTests (line 2404) | [Collection("ActivationTracing")] method GrainCallTraceContextPropagationTests (line 2409) | static GrainCallTraceContextPropagationTests() method GrainCallTraceContextPropagationTests (line 2426) | public GrainCallTraceContextPropagationTests(ActivationTracingTests.Fi... method ServerSideGrainCallSharesSameTraceIdAsClient (line 2437) | [Fact] method ServerSideActivityHasCorrectKindAndRemoteParent (line 2489) | [Fact] method NestedGrainCallsShareSameTraceId (line 2527) | [Fact] method TraceParentIsSetInRequestContext (line 2568) | [Fact] method ClientAndServerSpansAreProperlyLinked (line 2607) | [Fact] method ServerCreatesOwnTraceWhenClientHasNoActivity (line 2668) | [Fact] method ConcurrentGrainCallsShareSameTraceId (line 2702) | [Fact] method ServerHandlesMalformedTraceParentGracefully (line 2743) | [Fact] method TraceParentReflectsClientOutgoingSpan (line 2776) | [Fact] method TraceContextIsPropagatedDuringActivation (line 2835) | [Fact] method TraceStateIsPropagatedWithTraceParent (line 2881) | [Fact] method ActivationSpanSharesTraceIdWithTriggeringGrainCall (line 2942) | [Fact] method FullTraceHierarchyIsCorrectWhenActivationTriggeredByGrainCall (line 3012) | [Fact] method DiagnoseTraceContextInRequestContextData (line 3166) | [Fact] method ActivationStartsNewTraceWhenCallerHasNoActivity (line 3245) | [Fact] method GrainToGrainCallWithoutActivityContext (line 3315) | [Fact] method ActivationSpanHasNoParentWhenApplicationSourceNotSampled (line 3382) | [Fact] method DiagnoseActivitySourceSampling (line 3461) | [Fact] method TraceContextPropagatedFromHttpActivityToGrainCall (line 3536) | [Fact] method TraceContextPreservedWhenGrainPlacedOnDifferentSilo (line 3614) | [Fact] method TraceContextPreservedInCrossSiloGrainToGrainCall (line 3691) | [Fact] method PrintActivityDiagnostics (line 3743) | private void PrintActivityDiagnostics() FILE: test/Orleans.Runtime.Tests/ActivityPropagationTests.cs class ActivityPropagationTests (line 24) | public class ActivityPropagationTests : OrleansTestingBase, IClassFixtur... method ActivityPropagationTests (line 28) | static ActivityPropagationTests() class Fixture (line 60) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 62) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloInvokerTestSiloBuilderConfigurator (line 69) | private class SiloInvokerTestSiloBuilderConfigurator : ISiloConfigur... method Configure (line 71) | public void Configure(ISiloBuilder hostBuilder) => class ClientConfigurator (line 80) | private class ClientConfigurator : IClientBuilderConfigurator method Configure (line 82) | public void Configure(IConfiguration configuration, IClientBuilder... method ActivityPropagationTests (line 92) | public ActivityPropagationTests(Fixture fixture) method WithoutParentActivity (line 104) | [Theory] method WithParentActivity_W3C (line 135) | [Fact] method WithParentActivity_Hierarchical (line 187) | [Fact] FILE: test/Orleans.Runtime.Tests/CancellationTests/CancellationTokenTests.cs class CancellationTokenTests_WaitForAcknowledgement (line 13) | public sealed class CancellationTokenTests_WaitForAcknowledgement(Cancel... class Fixture (line 15) | public sealed class Fixture : FixtureBase class CancellationTokenTests_NoWaitForAcknowledgement (line 25) | public sealed class CancellationTokenTests_NoWaitForAcknowledgement(Canc... class Fixture (line 27) | public sealed class Fixture : FixtureBase class CancellationTokenTests (line 37) | public abstract class CancellationTokenTests(CancellationTokenTests.Fixt... class FixtureBase (line 39) | public abstract class FixtureBase : BaseInProcessTestClusterFixture method ConfigureTestCluster (line 42) | protected override void ConfigureTestCluster(InProcessTestClusterBui... method GrainTaskCancellation (line 63) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method MultipleGrainsTaskCancellation (line 81) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method GrainTaskMultipleCancellations (line 105) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method TokenPassingWithoutCancellation_NoExceptionShouldBeThrown (line 129) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method PreCancelledTokenPassing (line 144) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksExecutionContext (line 155) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksTaskSchedulerContext (line 176) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksThrow_ExceptionDoesNotPropagate (line 196) | [Fact, TestCategory("Cancellation")] method InSiloCancellation (line 208) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InterSiloCancellation (line 217) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InterSiloClientCancellationTokenPassing (line 226) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InSiloClientCancellationTokenPassing (line 235) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method ClientCancellationTokenPassing (line 244) | private async Task ClientCancellationTokenPassing(int delay, bool inte... method CancellationTestCore (line 260) | private async Task CancellationTestCore(bool interSilo, int delay) method GetGrains (line 274) | private async Task, ILongRunningTaskGr... method WaitForCallCancellation (line 312) | private async Task WaitForCallCancellation(ILongRunningTaskGrain... method WaitForCallCancellation (line 332) | private async Task WaitForCallCancellation(ILongRunningTaskGrain... method InterleavingGrainTaskCancellation (line 360) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method CancelInterleavingWhileRegularGrainRequestRunning (line 381) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method MultipleInterleavingGrainRequestsCancellation (line 415) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] FILE: test/Orleans.Runtime.Tests/CancellationTests/GrainCancellationTokenTests.cs class GrainCancellationTokenTests (line 13) | public class GrainCancellationTokenTests : OrleansTestingBase, IClassFix... class Fixture (line 17) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 19) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfig (line 25) | private class SiloConfig : ISiloConfigurator method Configure (line 27) | public void Configure(ISiloBuilder siloBuilder) method GrainCancellationTokenTests (line 34) | public GrainCancellationTokenTests(Fixture fixture) method GrainTaskCancellation (line 39) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method MultipleGrainsTaskCancellation (line 55) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method GrainTaskMultipleCancellations (line 79) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method TokenPassingWithoutCancellation_NoExceptionShouldBeThrown (line 109) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method PreCancelledTokenPassing (line 124) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksExecutionContext (line 136) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksTaskSchedulerContext (line 150) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksThrow_ExceptionShouldBePropagated (line 164) | [Fact, TestCategory("Cancellation")] method InSiloGrainCancellation (line 185) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InterSiloGrainCancellation (line 194) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InterSiloClientCancellationTokenPassing (line 203) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method InSiloClientCancellationTokenPassing (line 212) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method ClientGrainGrainTokenPassing (line 221) | private async Task ClientGrainGrainTokenPassing(int delay, bool interS... method GrainGrainCancellation (line 238) | private async Task GrainGrainCancellation(bool interSilo, int delay) method GetGrains (line 252) | private async Task, ILongRunningTaskGr... method WaitForCallCancellation (line 290) | private async Task WaitForCallCancellation(ILongRunningTaskGrain... method WaitForCallCancellation (line 310) | private async Task WaitForCallCancellation(ILongRunningTaskGrain... FILE: test/Orleans.Runtime.Tests/CancellationTests/ObserverCancellationTokenTests.cs class ObserverCancellationTokenTests_WaitForAcknowledgement (line 16) | public sealed class ObserverCancellationTokenTests_WaitForAcknowledgemen... class Fixture (line 19) | public sealed class Fixture : FixtureBase class ObserverCancellationTokenTests_NoWaitForAcknowledgement (line 28) | public sealed class ObserverCancellationTokenTests_NoWaitForAcknowledgem... class Fixture (line 31) | public sealed class Fixture : FixtureBase class ObserverCancellationTokenTests (line 40) | public abstract class ObserverCancellationTokenTests(ObserverCancellatio... class FixtureBase (line 42) | public abstract class FixtureBase : BaseInProcessTestClusterFixture method ConfigureTestCluster (line 46) | protected override void ConfigureTestCluster(InProcessTestClusterBui... method ObserverTaskCancellation (line 71) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method PreCancelledTokenPassing (line 108) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method TokenPassingWithoutCancellation_NoExceptionShouldBeThrown (line 130) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancellationTokenCallbacksExecutionContext (line 155) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method MultipleObserversCancellation (line 188) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method CancelWaitingRequest (line 246) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method InterleavingObserverTaskCancellation (line 286) | [Theory, TestCategory("BVT"), TestCategory("Cancellation")] method MultipleInterleavingRequestsCancellation (line 323) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] method CancelInterleavingWhileRegularRequestRunning (line 372) | [Fact, TestCategory("BVT"), TestCategory("Cancellation")] class LongRunningObserver (line 413) | private sealed class LongRunningObserver : ILongRunningObserver method LongWait (line 419) | public async Task LongWait(TimeSpan delay, Guid callId, Cancellation... method CancellationTokenCallbackResolve (line 438) | public Task CancellationTokenCallbackResolve(Guid callId, Canc... method InterleavingLongWait (line 456) | public async Task InterleavingLongWait(TimeSpan delay, Guid callId, ... method WaitForCallToStart (line 477) | public Task WaitForCallToStart(Guid callId) method WaitForCancellation (line 486) | public Task WaitForCancellation(Guid callId) FILE: test/Orleans.Runtime.Tests/ClientConnectionTests/ClientConnectionEventTests.cs class ClientConnectionEventTests (line 12) | public class ClientConnectionEventTests method EventSendWhenDisconnectedFromCluster (line 14) | [Fact, TestCategory("SlowBVT")] method GatewayChangedEventSentOnDisconnectAndReconnect (line 38) | [Fact, TestCategory("SlowBVT")] FILE: test/Orleans.Runtime.Tests/ClientConnectionTests/ClientConnectionRegisteredServiceEventTests.cs class ClientConnectionRegisteredServiceEventTests (line 15) | public class ClientConnectionRegisteredServiceEventTests : TestClusterPe... method InitializeAsync (line 21) | public override async Task InitializeAsync() method ConfigureTestCluster (line 28) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class EventNotifier (line 33) | public class EventNotifier method Subscribe (line 37) | public void Subscribe(Action action) => ImmutableInterlo... method Unsubscribe (line 39) | public void Unsubscribe(Action action) => method Notify (line 42) | public void Notify(TEventArgs arg) class Configurator (line 51) | public class Configurator : IClientBuilderConfigurator method Configure (line 53) | public void Configure(IConfiguration configuration, IClientBuilder c... method EventSendWhenDisconnectedFromCluster (line 66) | [Fact, TestCategory("SlowBVT")] method GatewayChangedEventSentOnDisconnectAndReconnect (line 95) | [Fact, TestCategory("SlowBVT")] FILE: test/Orleans.Runtime.Tests/ClientConnectionTests/ClusterClientTests.cs class ClusterClientTests (line 14) | [TestCategory("Functional")] method ConfigureTestCluster (line 17) | protected override void ConfigureTestCluster(TestClusterBuilder builder) method ConnectIsRetryableTest (line 25) | [Fact] class MockGatewayListProvider (line 65) | public class MockGatewayListProvider : IGatewayListProvider method InitializeGatewayListProvider (line 69) | public Task InitializeGatewayListProvider() => Task.CompletedTask; method GetGateways (line 71) | public Task> GetGateways() => Task.FromResult>... FILE: test/Orleans.Runtime.Tests/ClientConnectionTests/GatewayConnectionTests.cs class TestGatewayManager (line 18) | public class TestGatewayManager : IGatewayListProvider method TestGatewayManager (line 26) | public TestGatewayManager() method InitializeGatewayListProvider (line 31) | public Task InitializeGatewayListProvider() method GetGateways (line 36) | public Task> GetGateways() class GatewayConnectionTests (line 45) | public class GatewayConnectionTests : TestClusterPerTest method ConfigureTestCluster (line 49) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 58) | public class SiloBuilderConfigurator : IHostConfigurator method Configure (line 60) | public void Configure(IHostBuilder hostBuilder) class ClientBuilderConfigurator (line 81) | public class ClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 83) | public void Configure(IConfiguration configuration, IClientBuilder c... method InitializeAsync (line 104) | public override async Task InitializeAsync() method NoReconnectionToGatewayNotReturnedByManager (line 110) | [Fact, TestCategory("Functional")] method ConnectionFromDifferentClusterIsRejected (line 165) | [Fact, TestCategory("Functional")] FILE: test/Orleans.Runtime.Tests/ClientConnectionTests/InvalidPreambleConnectionTests.cs class InvalidPreambleConnectionTests (line 14) | public class InvalidPreambleConnectionTests : TestClusterPerTest method ConfigureTestCluster (line 16) | protected override void ConfigureTestCluster(TestClusterBuilder builder) method ShouldCloseConnectionWhenClientSendsInvalidPreambleSize (line 21) | [Fact, TestCategory("Functional")] FILE: test/Orleans.Runtime.Tests/ClientConnectionTests/StallConnectionTests.cs class StallConnectionTests (line 17) | public class StallConnectionTests : TestClusterPerTest method ConfigureTestCluster (line 21) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloConfigurator (line 29) | public class SiloConfigurator : ISiloConfigurator method Configure (line 31) | public void Configure(ISiloBuilder hostBuilder) class ClientConfigurator (line 37) | public class ClientConfigurator : IClientBuilderConfigurator method Configure (line 39) | public void Configure(IConfiguration configuration, IClientBuilder c... method ConnectToGwAfterStallConnectionOpened (line 45) | [Fact, TestCategory("Functional")] method SiloJoinAfterStallConnectionOpened (line 71) | [Fact, TestCategory("Functional")] method WaitForClusterSize (line 92) | private async Task WaitForClusterSize(int expectedSize) FILE: test/Orleans.Runtime.Tests/CollectionFixtures.cs class DefaultClusterTestCollection (line 12) | [CollectionDefinition("DefaultCluster")] class TestEnvironmentFixtureCollection (line 19) | [CollectionDefinition(TestEnvironmentFixture.DefaultCollection)] class BaseAzureTestClusterFixture (line 26) | public abstract class BaseAzureTestClusterFixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 28) | protected override void CheckPreconditionsOrThrow() FILE: test/Orleans.Runtime.Tests/Directories/GrainDirectoryTests.cs class GrainDirectoryTests (line 11) | public abstract class GrainDirectoryTests where TGrainD... method GrainDirectoryTests (line 16) | protected GrainDirectoryTests(ITestOutputHelper testOutput) method CreateGrainDirectory (line 24) | protected abstract TGrainDirectory CreateGrainDirectory(); method RegisterLookupUnregisterLookup (line 26) | [SkippableFact] method DoNotOverwriteEntry (line 46) | [SkippableFact] method OverwriteEntryIfMatch (line 83) | [SkippableFact] method DoNotDeleteDifferentActivationIdEntry (line 122) | [SkippableFact] method LookupNotFound (line 146) | [SkippableFact] FILE: test/Orleans.Runtime.Tests/Directories/MultipleGrainDirectoriesTests.cs class MultipleGrainDirectoriesTests (line 13) | public abstract class MultipleGrainDirectoriesTests : TestClusterPerTest method ConfigureTestCluster (line 15) | protected override void ConfigureTestCluster(TestClusterBuilder builder) method PingGrain (line 20) | [SkippableFact, TestCategory("Directory"), TestCategory("Functional")] method GetGrainOnPrimary (line 45) | private async Task GetGrainOnPrimary() method GetGrainOnSecondary (line 57) | private async Task GetGrainOnSecondary() FILE: test/Orleans.Runtime.Tests/DuplicateActivationsTests.cs class DuplicateActivationsTests (line 19) | public class DuplicateActivationsTests : IClassFixture Task... method SendUnserializable (line 462) | public Task SendUnserializable(UnserializableType input) => Task.Fro... method GetUnserializable (line 463) | public Task GetUnserializable() => Task.FromResu... method GetUndeserializable (line 464) | public Task GetUndeserializable() => Task.From... FILE: test/Orleans.Runtime.Tests/Forwarding/ShutdownSiloTests.cs class ShutdownSiloTests (line 17) | public class ShutdownSiloTests : TestClusterPerTest class SiloBuilderConfigurator (line 22) | internal class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 24) | public void Configure(ISiloBuilder hostBuilder) method GetTableServiceClient (line 40) | private static TableServiceClient GetTableServiceClient() method CheckPreconditionsOrThrow (line 48) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 54) | protected override void ConfigureTestCluster(TestClusterBuilder builder) method ShutdownSiloTests (line 60) | public ShutdownSiloTests() method SiloGracefulShutdown_ForwardPendingRequest (line 65) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/6423"), TestCat... method SiloGracefulShutdown_PendingRequestTimers (line 84) | [SkippableFact, TestCategory("GracefulShutdown"), TestCategory("Functi... method SiloGracefulShutdown_StuckTimers (line 97) | [SkippableFact, TestCategory("GracefulShutdown"), TestCategory("Functi... method SiloGracefulShutdown_StuckActivation (line 112) | [SkippableFact, TestCategory("GracefulShutdown"), TestCategory("Functi... method GetLongRunningTaskGrainOnSecondary (line 126) | private async Task> GetLongRunningTaskGrainOn... method GetTimerRequestGrainOnSecondary (line 140) | private async Task GetTimerRequestGrainOnSecondary() FILE: test/Orleans.Runtime.Tests/GrainActivatorTests.cs class GrainActivatorTests (line 26) | [TestCategory("DI")] class Fixture (line 31) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 33) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestSiloBuilderConfigurator (line 39) | private class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 41) | public void Configure(ISiloBuilder hostBuilder) method GrainActivatorTests (line 53) | public GrainActivatorTests(Fixture fixture) method CanUseCustomGrainActivatorToCreateGrains (line 63) | [Fact, TestCategory("BVT")] method CanUseCustomGrainActivatorToReleaseGrains (line 77) | [Fact, TestCategory("BVT")] class HardcodedGrainActivator (line 104) | private class HardcodedGrainActivator : IGrainActivator, IConfigureGra... method HardcodedGrainActivator (line 110) | public HardcodedGrainActivator(GrainClassMap grainClassMap) method Configure (line 115) | public void Configure(GrainType grainType, GrainProperties propertie... method CreateInstance (line 125) | public object CreateInstance(IGrainContext context) method DisposeInstance (line 133) | public ValueTask DisposeInstance(IGrainContext context, object insta... FILE: test/Orleans.Runtime.Tests/GrainCallFilterTests.cs type IMyRegularInterface (line 15) | internal interface IMyRegularInterface method SetExtensionValue (line 17) | [Alias("Set")] method GetExtensionValue (line 20) | [Alias("Get")] type IMyOtherInterface (line 24) | internal interface IMyOtherInterface method SetExtensionValue (line 26) | [Alias("Set")] method GetExtensionValue (line 29) | [Alias("Get")] type IMyGrainExtension (line 33) | internal interface IMyGrainExtension : IGrainExtension, IMyRegularInterf... class MyGrainExtension (line 37) | internal sealed class MyGrainExtension : IMyGrainExtension method GetExtensionValue (line 41) | ValueTask IMyRegularInterface.GetExtensionValue() => new(_value); method SetExtensionValue (line 43) | public ValueTask SetExtensionValue(int value) method GetExtensionValue (line 49) | ValueTask IMyOtherInterface.GetExtensionValue() => new(100 + _val... class GrainCallFilterTests (line 69) | [TestCategory("BVT"), TestCategory("GrainCallFilter")] class Fixture (line 72) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 74) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloInvokerTestSiloBuilderConfigurator (line 81) | private class SiloInvokerTestSiloBuilderConfigurator : ISiloConfigur... method Configure (line 83) | public void Configure(ISiloBuilder hostBuilder) class ClientConfigurator (line 151) | private class ClientConfigurator : IClientBuilderConfigurator method Configure (line 153) | public void Configure(IConfiguration configuration, IClientBuilder... class GrainCallFilterWithDependencies (line 245) | [SuppressMessage("ReSharper", "NotAccessedField.Local")] method Invoke (line 248) | public Task Invoke(IIncomingGrainCallContext context) method GrainCallFilterTests (line 266) | public GrainCallFilterTests(Fixture fixture) method GrainCallFilter_Outgoing_Test (line 279) | [Fact] method GrainCallFilter_Incoming_Order_Test (line 302) | [Fact] method GrainCallFilter_Incoming_Stream_Test (line 318) | [Fact] method GrainCallFilter_Incoming_Retry_Test (line 345) | [Fact] method GrainCallFilter_Incoming_HashSet_Test (line 359) | [Fact] method GrainCallFilter_Outgoing_Retry_Test (line 371) | [Fact] method GrainCallFilter_Incoming_GrainLevel_Test (line 390) | [Fact] method GrainCallFilter_Incoming_GenericGrain_Test (line 412) | [Fact] method GrainCallFilter_Incoming_ConstructedGenericInheritance_Test (line 427) | [Fact] method GrainCallFilter_Incoming_ExceptionHandling_Test (line 454) | [Fact] method GrainCallFilter_Incoming_FilterThrows_Test (line 469) | [Fact] method GrainCallFilter_Incoming_SetIncorrectResultType_Test (line 483) | [Fact] method GrainCallFilter_GrainExtension (line 499) | [Fact] method GrainCallFilter_Incoming_GenericInterface_ConcreteGrain_Test (line 521) | [Fact] method GrainCallFilter_Incoming_SystemWideDoesNotCallContextInvoke_Test (line 549) | [Fact] method GrainCallFilter_Incoming_GrainSpecificDoesNotCallContextInvoke_Test (line 563) | [Fact] method GrainCallFilter_Outgoing_SystemWideDoesNotCallContextInvoke_Test (line 577) | [Fact] method Observer_GrainCallFilter_Incoming_Order_Test (line 590) | [Fact] method Observer_GrainCallFilter_Incoming_Retry_Test (line 605) | [Fact] method Observer_GrainCallFilter_Incoming_HashSet_Test (line 620) | [Fact] method Observer_GrainCallFilter_Incoming_SystemWideDoesNotCallContextInvoke_Test (line 634) | [Fact] method Observer_GrainCallFilter_Incoming_GrainSpecificDoesNotCallContextInvoke_Test (line 649) | [Fact] method Observer_GrainCallFilter_Incoming_GrainLevel_Test (line 663) | [Fact] method Observer_GrainCallFilter_Incoming_GenericGrain_Test (line 684) | [Fact] method Observer_GrainCallFilter_Incoming_ConstructedGenericInheritance_Test (line 700) | [Fact] method Observer_GrainCallFilter_Incoming_ExceptionHandling_Test (line 723) | [Fact] method Observer_GrainCallFilter_Incoming_FilterThrows_Test (line 739) | [Fact] method Observer_GrainCallFilter_Incoming_SetIncorrectResultType_Test (line 754) | [Fact] FILE: test/Orleans.Runtime.Tests/GrainLevelCallFilterTests.cs class GrainLevelCallFilterTests (line 8) | [TestCategory("BVT"), TestCategory("GrainLevelCallFilter")] class Fixture (line 11) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 13) | protected override void ConfigureTestCluster(TestClusterBuilder buil... method GrainLevelCallFilterTests (line 21) | public GrainLevelCallFilterTests(Fixture fixture) method GrainCallFilter_Incoming_GrainLevel_Without_Global_Filter_Test (line 29) | [Fact] FILE: test/Orleans.Runtime.Tests/GrainServiceTests/GrainServiceTests.cs class GrainServiceTests (line 11) | public class GrainServiceTests : OrleansTestingBase, IClassFixture Echo(string what) FILE: test/Orleans.Runtime.Tests/GrainServiceTests/TestGrainService.cs class TestGrainServiceClient (line 10) | public class TestGrainServiceClient : GrainServiceClient GetHelloWorldUsingCustomService() method HasStarted (line 21) | public Task HasStarted() method HasStartedInBackground (line 26) | public Task HasStartedInBackground() method HasInit (line 31) | public Task HasInit() method GetServiceConfigProperty (line 36) | public Task GetServiceConfigProperty() method EchoViaExtension (line 41) | public Task EchoViaExtension(string what) class TestGrainService (line 47) | public sealed class TestGrainService : GrainService, ITestGrainService method TestGrainService (line 51) | public TestGrainService(GrainId id, Silo silo, ILoggerFactory loggerFa... method Init (line 60) | public async override Task Init(IServiceProvider serviceProvider) method Start (line 66) | public override Task Start() method GetHelloWorldUsingCustomService (line 72) | public Task GetHelloWorldUsingCustomService(GrainReference ref... method StartInBackground (line 77) | protected override Task StartInBackground() method HasStarted (line 83) | public Task HasStarted() method HasStartedInBackground (line 88) | public Task HasStartedInBackground() method HasInit (line 93) | public Task HasInit() method GetServiceConfigProperty (line 98) | public Task GetServiceConfigProperty() class TestGrainServicesSiloBuilderExtensions (line 104) | public static class TestGrainServicesSiloBuilderExtensions method AddTestGrainService (line 106) | public static ISiloBuilder AddTestGrainService(this ISiloBuilder build... class TestGrainServiceOptions (line 115) | public class TestGrainServiceOptions FILE: test/Orleans.Runtime.Tests/HeterogeneousSilosTests/HeterogeneousTests.cs class HeterogeneousTests (line 19) | [TestCategory("Functional")] method SetupAndDeployCluster (line 26) | private void SetupAndDeployCluster(Type defaultPlacementStrategy, para... class SiloConfigurator (line 38) | public class SiloConfigurator : IHostConfigurator method Configure (line 40) | public void Configure(IHostBuilder hostBuilder) class ClientConfigurator (line 68) | public class ClientConfigurator : IClientBuilderConfigurator method Configure (line 70) | public void Configure(IConfiguration configuration, IClientBuilder c... method Dispose (line 76) | public void Dispose() method GrainExcludedTest (line 82) | [Fact] method MergeGrainResolverTests (line 96) | [Fact] method MergeGrainResolverWithClientRefreshTests (line 105) | [Fact] method StatelessWorkerPlacementTests (line 114) | [Fact] method StatelessWorkerPlacementWithClientRefreshTests (line 121) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/9560")] method CallITestGrainMethod (line 128) | private async Task CallITestGrainMethod(IGrain grain) method CallIStatelessWorkerGrainMethod (line 134) | private async Task CallIStatelessWorkerGrainMethod(IGrain grain) method MergeGrainResolverTestsImpl (line 140) | private async Task MergeGrainResolverTestsImpl(Type defaultPlacemen... method InitializeAsync (line 193) | public Task InitializeAsync() method DisposeAsync (line 198) | public async Task DisposeAsync() FILE: test/Orleans.Runtime.Tests/HeterogeneousSilosTests/UpgradeTests/RuntimeStrategyChangeTests.cs class RuntimeStrategyChangeTests (line 13) | [TestCategory("Versioning"), TestCategory("ExcludeXAML"), TestCategory("... method ChangeCompatibilityStrategy (line 19) | [Fact] method ChangeVersionSelectorStrategy (line 64) | [Fact] method ChangeDefaultVersionCompatibilityStrategy (line 103) | [Fact] method ChangeDefaultVersionSelectorStrategy (line 137) | [Fact] FILE: test/Orleans.Runtime.Tests/HeterogeneousSilosTests/UpgradeTests/UpgradeTests.cs class MinimumVersionTests (line 11) | [TestCategory("Versioning"), TestCategory("ExcludeXAML"), TestCategory("... method AlwaysCreateActivationWithMinimumVersion (line 17) | [Fact] class LatestVersionTests (line 28) | [TestCategory("Versioning"), TestCategory("ExcludeXAML"), TestCategory("... method AlwaysCreateActivationWithLatestVersion (line 34) | [Fact] method UpgradeProxyCallNoPendingRequest (line 41) | [Fact] method UpgradeProxyCallWithPendingRequest (line 49) | [Fact] class AllVersionsCompatibleTests (line 61) | [TestCategory("Versioning"), TestCategory("ExcludeXAML"), TestCategory("... method DoNotUpgradeProxyCallNoPendingRequest (line 67) | [Fact] method DoNotUpgradeProxyCallWithPendingRequest (line 75) | [Fact] class RandomCompatibleVersionTests (line 87) | [TestCategory("Versioning"), TestCategory("ExcludeXAML"), TestCategory("... method CreateActivationWithBothVersion (line 93) | [Fact] FILE: test/Orleans.Runtime.Tests/HeterogeneousSilosTests/UpgradeTests/UpgradeTestsBase.cs class UpgradeTestsBase (line 14) | public abstract class UpgradeTestsBase : IDisposable, IAsyncLifetime method UpgradeTestsBase (line 47) | protected UpgradeTestsBase() method GetVersionTestDirectory (line 65) | private static FileInfo GetVersionTestDirectory(DirectoryInfo testDire... method Step1_StartV1Silo_Step2_StartV2Silo_Step3_StopV2Silo (line 91) | protected async Task Step1_StartV1Silo_Step2_StartV2Silo_Step3_StopV2S... method ProxyCallNoPendingRequest (line 130) | protected async Task ProxyCallNoPendingRequest(int expectedVersion) method ProxyCallWithPendingRequest (line 149) | protected async Task ProxyCallWithPendingRequest(int expectedVersion) method StartSiloV1 (line 174) | protected async Task StartSiloV1() method StartSiloV2 (line 181) | protected async Task StartSiloV2() method StartSilo (line 188) | private async Task StartSilo(FileInfo grainAssembly) method StopSilo (line 239) | protected async Task StopSilo(SiloHandle handle) method Dispose (line 246) | public void Dispose() method InitializeAsync (line 265) | public Task InitializeAsync() method DisposeAsync (line 270) | public async Task DisposeAsync() class VersionGrainsClientConfigurator (line 287) | public class VersionGrainsClientConfigurator : IClientBuilderConfigurator method Configure (line 289) | public void Configure(IConfiguration configuration, IClientBuilder c... FILE: test/Orleans.Runtime.Tests/HeterogeneousSilosTests/UpgradeTests/VersionPlacementTests.cs class VersionPlacementTests (line 11) | [TestCategory("Versioning"), TestCategory("ExcludeXAML"), TestCategory("... method ActivateDominantVersion (line 19) | [Fact] FILE: test/Orleans.Runtime.Tests/JsonNodeGrainTests.cs type IJsonNodeTestGrain (line 20) | public interface IJsonNodeTestGrain : IGrainWithIntegerKey method ProcessJsonNode (line 22) | Task ProcessJsonNode(JsonNode node); method GetJsonString (line 23) | Task GetJsonString(JsonNode node); class JsonNodeTestGrain (line 31) | public class JsonNodeTestGrain : Grain, IJsonNodeTestGrain method ProcessJsonNode (line 33) | public Task ProcessJsonNode(JsonNode node) method GetJsonString (line 39) | public Task GetJsonString(JsonNode node) class JsonNodeGrainTestFixture (line 50) | public class JsonNodeGrainTestFixture : BaseInProcessTestClusterFixture method ConfigureTestCluster (line 52) | protected override void ConfigureTestCluster(InProcessTestClusterBuild... class JsonNodeGrainTests (line 80) | [Trait("Category", "BVT")] method JsonNodeGrainTests (line 86) | public JsonNodeGrainTests(JsonNodeGrainTestFixture fixture, ITestOutpu... method GrainCanProcessJsonValue_AsJsonNode (line 97) | [Fact] method GrainCanProcessVariousJsonNodeTypes (line 118) | [Fact] method GrainCanProcessComplexJsonStructure (line 157) | [Fact] method GrainCanConvertJsonNodeToString (line 201) | [Fact] method GrainHandlesNullJsonNode (line 226) | [Fact] method MultipleConcurrentGrainCallsWithJsonNodes (line 243) | [Fact] FILE: test/Orleans.Runtime.Tests/Lifecycle/LifecycleTests.cs class LifecycleTests (line 6) | public class LifecycleTests method FullLifecycleTest (line 8) | [Fact, TestCategory("BVT"), TestCategory("Lifecycle")] method FailOnStartOnEachStageLifecycleTest (line 30) | [Fact, TestCategory("BVT"), TestCategory("Lifecycle")] method FailOnStopOnEachStageLifecycleTest (line 71) | [Fact, TestCategory("BVT"), TestCategory("Lifecycle")] class TestLifecycleSubject (line 107) | private class TestLifecycleSubject : LifecycleSubject method TestLifecycleSubject (line 109) | public TestLifecycleSubject() : base(NullLogger.Instance) method MultiStageObserverLifecycleTest (line 114) | [Fact, TestCategory("BVT"), TestCategory("Lifecycle")] method RunLifecycle (line 128) | private static async Task>> RunLi... type TestStages (line 158) | private enum TestStages class Observer (line 166) | private class Observer : ILifecycleObserver method Observer (line 176) | public Observer(bool failOnStart, bool failOnStop) method OnStart (line 182) | public Task OnStart(CancellationToken ct) method OnStop (line 190) | public Task OnStop(CancellationToken ct) class MultiStageObserver (line 202) | private class MultiStageObserver : ILifecycleParticipant method TestOptionsFormatter2 (line 447) | public TestOptionsFormatter2(IOptions options) method CreateNamed (line 453) | public static TestOptionsFormatter2 CreateNamed(string name, IOption... method Format (line 461) | public IEnumerable Format() class Resolver (line 470) | public class Resolver : IOptionFormatterResolver method Resolver (line 473) | public Resolver(IOptionsMonitor optionsMonitor) method Resolve (line 478) | public IOptionFormatter Resolve(string name) class TestOptionsFormatter (line 485) | private class TestOptionsFormatter : IOptionFormatter method TestOptionsFormatter (line 490) | public TestOptionsFormatter(IOptions options) method CreateNamed (line 496) | public static TestOptionsFormatter CreateNamed(string name, IOptions... method Format (line 503) | public IEnumerable Format() class Resolver (line 511) | public class Resolver : IOptionFormatterResolver method Resolver (line 514) | public Resolver(IOptionsMonitor optionsMonitor) method Resolve (line 519) | public IOptionFormatter Resolve(string name) class TestLoggerFactory (line 526) | private class TestLoggerFactory : ILoggerFactory method AddProvider (line 530) | public void AddProvider(ILoggerProvider provider) method CreateLogger (line 535) | public ILogger CreateLogger(string categoryName) method Dispose (line 540) | public void Dispose() method ToString (line 544) | public override string ToString() class Logger (line 549) | private class Logger : ILogger method BeginScope (line 553) | public IDisposable BeginScope(TState state) method ToString (line 558) | public override string ToString() method IsEnabled (line 563) | public bool IsEnabled(LogLevel logLevel) method Log (line 568) | public void Log(LogLevel logLevel, EventId eventId, TState... class TestLogger (line 575) | private class TestLogger : ILogger method TestLogger (line 579) | public TestLogger(ILoggerFactory loggerFactory) method BeginScope (line 584) | public IDisposable BeginScope(TState state) method IsEnabled (line 589) | public bool IsEnabled(LogLevel logLevel) method Log (line 594) | public void Log(LogLevel logLevel, EventId eventId, TState s... class TestOptionsLogger (line 601) | private class TestOptionsLogger : OptionsLogger method TestOptionsLogger (line 603) | public TestOptionsLogger(ILogger logger, IService... FILE: test/Orleans.Runtime.Tests/ManagementGrainTests.cs class ManagementGrainTests (line 29) | public class ManagementGrainTests : OrleansTestingBase, IClassFixture(Func<... method GetSimpleGrainStatisticsRunner (line 161) | private SimpleGrainStatistic[] GetSimpleGrainStatisticsRunner(string w... FILE: test/Orleans.Runtime.Tests/MembershipTests/LivenessTests.cs class LivenessTestsBase (line 18) | public abstract class LivenessTestsBase : TestClusterPerTest method LivenessTestsBase (line 24) | public LivenessTestsBase(ITestOutputHelper output) method Do_Liveness_OracleTest_1 (line 29) | protected async Task Do_Liveness_OracleTest_1() method Do_Liveness_OracleTest_2 (line 72) | protected async Task Do_Liveness_OracleTest_2(int silo2Kill, bool rest... method Do_Liveness_OracleTest_3 (line 108) | protected async Task Do_Liveness_OracleTest_3() method TestTraffic (line 135) | private async Task TestTraffic() method SendTraffic (line 150) | private async Task SendTraffic(long key, bool startTimers = false) method LogGrainIdentity (line 170) | private async Task LogGrainIdentity(ILogger logger, ILivenessTestGrain... class LivenessTests_MembershipGrain (line 182) | public class LivenessTests_MembershipGrain : LivenessTestsBase method LivenessTests_MembershipGrain (line 184) | public LivenessTests_MembershipGrain(ITestOutputHelper output) : base(... method ConfigureTestCluster (line 188) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class ClientConfigurator (line 193) | public class ClientConfigurator : IClientBuilderConfigurator method Configure (line 195) | public void Configure(IConfiguration configuration, IClientBuilder c... method Liveness_Grain_1 (line 201) | [Fact, TestCategory("Functional"), TestCategory("Membership")] method Liveness_Grain_2_Restart_GW (line 207) | [Fact, TestCategory("Functional"), TestCategory("Membership")] method Liveness_Grain_3_Restart_Silo_1 (line 213) | [Fact, TestCategory("Functional"), TestCategory("Membership")] method Liveness_Grain_4_Kill_Silo_1_With_Timers (line 219) | [Fact, TestCategory("Functional"), TestCategory("Membership")] FILE: test/Orleans.Runtime.Tests/MembershipTests/SilosStopTests.cs class SilosStopTests (line 16) | public class SilosStopTests : TestClusterPerTest class BuilderConfigurator (line 18) | private class BuilderConfigurator : ISiloConfigurator, IClientBuilderC... method Configure (line 20) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 32) | public void Configure(IConfiguration configuration, IClientBuilder c... method ConfigureTestCluster (line 39) | protected override void ConfigureTestCluster(TestClusterBuilder builder) method SiloUngracefulShutdown_OutstandingRequestsBreak (line 45) | [Fact, TestCategory("Functional"), TestCategory("Liveness")] method GetGrainOnTargetSilo (line 61) | private async Task> GetGrainOnTargetSilo(S... FILE: test/Orleans.Runtime.Tests/MinimalReminderTests.cs class MinimalReminderTests (line 11) | public class MinimalReminderTests : IClassFixture siloBuilder.Confi... method OneWayDeactivationTests (line 42) | public OneWayDeactivationTests(Fixture fixture) method OneWay_Deactivation_CacheInvalidated (line 51) | [Fact] FILE: test/Orleans.Runtime.Tests/Placement/CustomPlacementTests.cs class CustomPlacementTests (line 15) | [TestCategory("Functional"), TestCategory("Placement")] class Fixture (line 23) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 25) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestSiloBuilderConfigurator (line 31) | private class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 33) | public void Configure(ISiloBuilder hostBuilder) method ConfigureServices (line 40) | private static void ConfigureServices(IServiceCollection services) method CustomPlacementTests (line 46) | public CustomPlacementTests(Fixture fixture) method CustomPlacement_FixedSilo (line 55) | [Fact] method CustomPlacement_ExcludeOne (line 79) | [Fact] method CustomPlacement_RequestContextBased (line 101) | [Fact] method HashBasedPlacement (line 125) | [Fact] FILE: test/Orleans.Runtime.Tests/Program.cs class Program (line 5) | public static class Program method Main (line 7) | public static async Task Main(string[] args) => await StandaloneSiloHo... FILE: test/Orleans.Runtime.Tests/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: test/Orleans.Runtime.Tests/StartupTaskTests.cs class StartupTaskTests (line 13) | [TestCategory("BVT"), TestCategory("Lifecycle")] class Fixture (line 16) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 18) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class StartupTaskSiloConfigurator (line 24) | private class StartupTaskSiloConfigurator : ISiloConfigurator method Configure (line 26) | public void Configure(ISiloBuilder hostBuilder) class CallGrainStartupTask (line 40) | public class CallGrainStartupTask : IStartupTask method CallGrainStartupTask (line 44) | public CallGrainStartupTask(IGrainFactory grainFactory) method Execute (line 49) | public async Task Execute(CancellationToken cancellationToken) method StartupTaskTests (line 58) | public StartupTaskTests(Fixture fixture) method StartupTaskCanCallGrains (line 66) | [Fact] FILE: test/Orleans.Runtime.Tests/StatelessWorkerActivationTests.cs class StatelessWorkerActivationTests (line 24) | public class StatelessWorkerActivationTests : IClassFixture> condition, int maxTim... FILE: test/Orleans.Runtime.Tests/StorageFacet/Feature.Abstractions/ExampleStorageAttribute.cs class ExampleStorageAttribute (line 3) | [AttributeUsage(AttributeTargets.Parameter)] method ExampleStorageAttribute (line 10) | public ExampleStorageAttribute(string storageProviderName = null, stri... FILE: test/Orleans.Runtime.Tests/StorageFacet/Feature.Abstractions/IExampleStorage.cs type IExampleStorage (line 8) | public interface IExampleStorage method Save (line 12) | Task Save(); method GetExtendedInfo (line 16) | string GetExtendedInfo(); type IExampleStorageConfig (line 23) | public interface IExampleStorageConfig class ExampleStorageConfig (line 31) | public class ExampleStorageConfig : IExampleStorageConfig method ExampleStorageConfig (line 33) | public ExampleStorageConfig(string stateName) type IExampleStorageFactory (line 44) | public interface IExampleStorageFactory method Create (line 46) | IExampleStorage Create(IExampleStorageConfig config); type INamedExampleStorageFactory (line 52) | public interface INamedExampleStorageFactory method Create (line 54) | IExampleStorage Create(string name, IExampleStorageCon... FILE: test/Orleans.Runtime.Tests/StorageFacet/Feature.Implementations/BlobExampleStorage.cs class BlobExampleStorage (line 7) | public class BlobExampleStorage : IExampleStorage method Save (line 14) | public Task Save() method GetExtendedInfo (line 19) | public string GetExtendedInfo() method Configure (line 24) | public void Configure(IExampleStorageConfig cfg) class BlobExampleStorageFactory (line 30) | public class BlobExampleStorageFactory : IExampleStorageFactory method BlobExampleStorageFactory (line 33) | public BlobExampleStorageFactory(IGrainContextAccessor contextAccessor) method Create (line 38) | public IExampleStorage Create(IExampleStorageConfig co... class BlobExampleStorageExtensions (line 46) | public static class BlobExampleStorageExtensions method UseBlobExampleStorage (line 48) | public static void UseBlobExampleStorage(this ISiloBuilder builder, st... FILE: test/Orleans.Runtime.Tests/StorageFacet/Feature.Implementations/TableExampleStorage.cs class TableExampleStorage (line 7) | public class TableExampleStorage : IExampleStorage, ILif... method Save (line 15) | public Task Save() method GetExtendedInfo (line 20) | public string GetExtendedInfo() method LoadState (line 25) | public Task LoadState(CancellationToken ct) method Participate (line 31) | public void Participate(IGrainLifecycle lifecycle) method Configure (line 36) | public void Configure(IExampleStorageConfig cfg) class TableExampleStorageFactory (line 42) | public class TableExampleStorageFactory : IExampleStorageFactory method TableExampleStorageFactory (line 45) | public TableExampleStorageFactory(IGrainContextAccessor context) method Create (line 50) | public IExampleStorage Create(IExampleStorageConfig co... class TableExampleStorageExtensions (line 60) | public static class TableExampleStorageExtensions method UseTableExampleStorage (line 62) | public static void UseTableExampleStorage(this ISiloBuilder builder, s... FILE: test/Orleans.Runtime.Tests/StorageFacet/Feature.Infrastructure/ExampleStorageAttributeMapper.cs class ExampleStorageAttributeMapper (line 8) | public class ExampleStorageAttributeMapper : IAttributeToFactoryMapper GetFactory(ParameterInfo paramet... method Create (line 26) | private object Create(IGrainContext context, MethodInfo genericCreate,... FILE: test/Orleans.Runtime.Tests/StorageFacet/Feature.Infrastructure/ExampleStorageExtensions.cs class ExampleStorageExtensions (line 7) | public static class ExampleStorageExtensions method UseExampleStorage (line 9) | public static void UseExampleStorage(this ISiloBuilder builder) method UseAsDefaultExampleStorage (line 21) | public static void UseAsDefaultExampleStorage(this ISilo... FILE: test/Orleans.Runtime.Tests/StorageFacet/Feature.Infrastructure/NamedExampleStorageFactory.cs class NamedExampleStorageFactory (line 7) | public class NamedExampleStorageFactory : INamedExampleStorageFactory method NamedExampleStorageFactory (line 11) | public NamedExampleStorageFactory(IServiceProvider services) method Create (line 16) | public IExampleStorage Create(string name, IExampleSto... FILE: test/Orleans.Runtime.Tests/StorageFacet/StorageFacetGrain.cs type IStorageFacetGrain (line 6) | public interface IStorageFacetGrain : IGrainWithIntegerKey method GetNames (line 8) | Task GetNames(); method GetExtendedInfo (line 9) | Task GetExtendedInfo(); class StorageFacetGrain (line 12) | public class StorageFacetGrain : Grain, IStorageFacetGrain method StorageFacetGrain (line 17) | public StorageFacetGrain( method GetNames (line 25) | public Task GetNames() method GetExtendedInfo (line 30) | public Task GetExtendedInfo() type IStorageFactoryGrain (line 36) | public interface IStorageFactoryGrain : IStorageFacetGrain class StorageFactoryGrain (line 39) | public class StorageFactoryGrain : Grain, IStorageFactoryGrain method StorageFactoryGrain (line 44) | public StorageFactoryGrain( method GetNames (line 51) | public Task GetNames() method GetExtendedInfo (line 56) | public Task GetExtendedInfo() type IStorageDefaultFactoryGrain (line 62) | public interface IStorageDefaultFactoryGrain : IStorageFacetGrain class StorageDefaultFactoryGrain (line 66) | public class StorageDefaultFactoryGrain : Grain, IStorageDefaultFactoryG... method StorageDefaultFactoryGrain (line 71) | public StorageDefaultFactoryGrain( method GetNames (line 78) | public Task GetNames() method GetExtendedInfo (line 83) | public Task GetExtendedInfo() type IStorageDefaultFacetGrain (line 89) | public interface IStorageDefaultFacetGrain : IStorageFacetGrain class StorageDefaultFacetGrain (line 93) | public class StorageDefaultFacetGrain : Grain, IStorageDefaultFacetGrain method StorageDefaultFacetGrain (line 98) | public StorageDefaultFacetGrain( method GetNames (line 106) | public Task GetNames() method GetExtendedInfo (line 111) | public Task GetExtendedInfo() FILE: test/Orleans.Runtime.Tests/StorageFacet/StorageFacetTests.cs class StorageFacetTests (line 12) | public class StorageFacetTests : IClassFixture class Fixture (line 16) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 18) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestSiloBuilderConfigurator (line 23) | private class TestSiloBuilderConfigurator : ISiloConfigurator method Configure (line 25) | public void Configure(ISiloBuilder hostBuilder) method StorageFacetTests (line 49) | public StorageFacetTests(Fixture fixture) method ExampleStorageFacetHappyPath (line 54) | [Fact, TestCategory("BVT"), TestCategory("Facet")] method ExampleStorageFactoryHappyPath (line 60) | [Fact, TestCategory("BVT"), TestCategory("Facet")] method ExampleStorageHappyPath (line 66) | private async Task ExampleStorageHappyPath() method ExampleStorageFacetDefaultPath (line 80) | [Fact, TestCategory("BVT"), TestCategory("Facet")] method ExampleStorageFactoryDefaultPath (line 86) | [Fact, TestCategory("BVT"), TestCategory("Facet")] method ExampleStorageDefaultPath (line 92) | private async Task ExampleStorageDefaultPath() FILE: test/Orleans.Runtime.Tests/TestDirectoryCache.cs class TestDirectoryCache (line 8) | public class TestDirectoryCache : IGrainDirectoryCache method TestDirectoryCache (line 10) | public TestDirectoryCache(IServiceProvider serviceProvider) method AddOrUpdate (line 22) | public void AddOrUpdate(GrainAddress value, int version) method Clear (line 28) | public void Clear() method LookUp (line 34) | public bool LookUp(GrainId key, out GrainAddress result, out int version) method Remove (line 41) | public bool Remove(GrainId key) method Remove (line 53) | public bool Remove(GrainAddress key) type CacheOperation (line 60) | public record CacheOperation() FILE: test/Orleans.Runtime.Tests/TransportTests/TransportTestsBase.cs class TransportTestsBase (line 7) | public abstract class TransportTestsBase method TransportTestsBase (line 11) | protected TransportTestsBase(BaseTestClusterFixture fixture) method SimplePing (line 17) | [SkippableFact, TestCategory("BVT"), TestCategory("Transport")] method ProxyPing (line 25) | [SkippableFact, TestCategory("BVT"), TestCategory("Transport")] FILE: test/Orleans.Runtime.Tests/TransportTests/UnixSocketTransportTests.cs class UnixSocketTransportTests (line 11) | public class UnixSocketTransportTests : TransportTestsBase, IClassFixtur... method UnixSocketTransportTests (line 13) | public UnixSocketTransportTests(Fixture fixture) : base(fixture) class Fixture (line 17) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 19) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 31) | protected override void ConfigureTestCluster(TestClusterBuilder buil... FILE: test/Orleans.Serialization.UnitTests/ArcBufferWriterTests.cs class ArcBufferWriterTests (line 21) | [Trait("Category", "BVT")] method MultiPageBuffer_CorrectlyHandlesLargeWritesAndRetrieval (line 34) | [Fact] method PageBufferManagement_TracksReferenceCountsAndVersions (line 118) | [Fact] method ReplenishBuffers_ProvidesSegmentsAndFreesPages (line 190) | [Fact] method WriteBuffer_UpdatesLengthCorrectly (line 295) | [Fact] method PeekSlice_ReturnsCorrectDataWithoutConsuming (line 310) | [Fact] method ConsumeSlice_ReturnsCorrectDataAndUpdatesLength (line 326) | [Fact] method UseAfterFree_ThrowsException (line 345) | [Fact] method DoubleFree_ThrowsAndBufferCanBeResetAndDisposed (line 363) | [Fact] method NewBuffer_IsEmpty (line 387) | [Fact] method WriteEmptyBuffer_DoesNotChangeLength (line 398) | [Fact] method PeekEmptyBuffer_ReturnsEmptyAndThrowsOnOverflow (line 413) | [Fact] method ConsumeEmptyBuffer_ReturnsEmptyAndThrowsOnOverflow (line 437) | [Fact] method DisposeSliceAfterFullPageConsumption_IncrementsPageVersion (line 465) | [Fact] method PageVersionIncrementAfterWriteAndReadHeadAdvance (line 493) | [Fact] method DisposedBuffer_ThrowsOnAllOperations (line 533) | [Fact] method DoubleDisposeArcBuffer_IsSafe (line 552) | [Fact] method ResetAfterDispose_Throws (line 566) | [Fact] method AdvanceWriterNegative_Throws (line 577) | [Fact] method AdvanceReaderNegativeOrTooLarge_Throws (line 587) | [Fact] method ResetReleasesAllPages_EmptiesBuffer (line 599) | [Fact] method DisposeMultipleTimes_IsSafe (line 611) | [Fact] method WriteAfterDispose_Throws (line 622) | [Fact] method PinUnpinReferenceCounting_WorksCorrectly (line 635) | [Fact] method UnpinWithInvalidToken_Throws (line 652) | [Fact] method CheckValidityWithInvalidRefCount_Throws (line 664) | [Fact] method SliceDispose_DoesNotAffectOriginalBuffer (line 675) | [Fact] method UnsafeSlice_DoesNotPinPages (line 688) | [Fact] method CopyToWithInsufficientDestination_Throws (line 703) | [Fact] method ConsumeMoreThanAvailable_Throws (line 716) | [Fact] method SkipAdvancesReadHead_WorksCorrectly (line 727) | [Fact] method LargePageReuse_Works (line 740) | [Fact] method MinimumPageReuse_Works (line 755) | [Fact] method BoundaryValue_SlicePeekConsume (line 770) | [Fact] method DoubleFree_And_UseAfterFree_Guards (line 824) | [Fact] method NoMemoryLeak_ReferenceCountReturnsToZero (line 842) | [Fact] method EmptyAndFullBuffer_SlicePeek (line 871) | [Fact] method SliceAtEnd_ReturnsEmpty (line 894) | [Fact] method MultipleSlices_SamePage_NoLeak (line 910) | [Fact] FILE: test/Orleans.Serialization.UnitTests/Buffers/Adaptors/PooledBufferStreamTests.cs class PooledBufferStreamTests (line 19) | [Category("BVT")] method Constructor_Parameterless_InitializesWithZeroLengthAndValidCapabilities (line 26) | [Fact] method Constructor_WithMinAllocationSize_InitializesWithZeroLengthAndValidCapabilities (line 47) | [Theory] method Constructor_WithMinAllocationValues_LengthIsZero (line 73) | [Theory] method DefaultConstructor_LengthIsZero (line 92) | [Fact] method Rent_MultipleTimes_ReturnsValidInstance (line 107) | [Theory] method Return_ValidStream_RecyclesObject (line 136) | [Fact] method Return_NullStream_ThrowsException (line 159) | [Fact] method Length_OnNewStream_ReturnsZero (line 170) | [Theory] method ToArray_EmptyStream_ReturnsEmptyArray (line 190) | [Fact] method CopyTo_ValidSegments_CopiesDataCorrectly (line 207) | [Theory] method CopyTo_LargeBuffers_CopiesDataCorrectly (line 227) | [Theory] method Reset_FreshInstance_LengthIsZero (line 253) | [Fact] method Reset_AfterWrite_LengthResetToZero (line 271) | [Theory] method Reset_WithPosition_ResetsPositionToZero (line 302) | [Theory] method RentReadOnlySequence_VariousDataLengths_ReturnsExpectedSequence (line 327) | [Theory] method GenerateTestData (line 365) | private static byte[] GenerateTestData(int length) method ReturnReadOnlySequence_StartNotBufferSegment_DoesNotThrow (line 380) | [Theory] method ReturnReadOnlySequence_ValidBufferSegmentChain_CallsPoolReturnForEachSegment (line 400) | [Fact] method CountSegmentsInChain (line 464) | private static int CountSegmentsInChain(ReadOnlySequence sequence) class DummyReadOnlySequenceSegment (line 488) | private class DummyReadOnlySequenceSegment : ReadOnlySequenceSegment GetInitializeTestData() method Initialize_ValidInput_PropertiesSetCorrectly (line 882) | [Theory] method SetNext_ValidBufferSegment_SetsNextProperty (line 901) | [Fact] method SetNext_OverwriteExistingNext_SetsNextPropertyToNewValue (line 918) | [Fact] method SegmentPoolPolicy_Create_ReturnsNewBufferSegment (line 939) | [Fact] FILE: test/Orleans.Serialization.UnitTests/BuiltInCodecTests.cs class CsCheckAdaptor (line 43) | internal static class CsCheckAdaptor method ToValueProvider (line 45) | public static Action> ToValueProvider(this Gen<... type MyEnum (line 48) | [GenerateSerializer] class CodecTestTests (line 71) | [Trait("Category", "BVT")] method EveryCodecHasTests (line 74) | [Fact] class EnumTests (line 181) | public class EnumTests(ITestOutputHelper output) : FieldCodecTester CreateCodec() => ServiceProvide... method CreateValue (line 184) | protected override MyEnum CreateValue() => (MyEnum)Random.Next((int)My... method Configure (line 186) | protected override void Configure(ISerializerBuilder builder) class EnumCopierTests (line 194) | public class EnumCopierTests(ITestOutputHelper output) : CopierTester CreateCopier() => ServiceProvid... method CreateValue (line 197) | protected override MyEnum CreateValue() => (MyEnum)Random.Next((int)My... method Configure (line 199) | protected override void Configure(ISerializerBuilder builder) class DateTimeKindTests (line 207) | public class DateTimeKindTests(ITestOutputHelper output) : FieldCodecTes... method CreateCodec (line 209) | protected override IFieldCodec CreateCodec() => ServiceP... method CreateValue (line 210) | protected override DateTimeKind CreateValue() => (DateTimeKind)Random.... class DateTimeKindCopierTests (line 216) | public class DateTimeKindCopierTests(ITestOutputHelper output) : CopierT... method CreateCopier (line 218) | protected override IDeepCopier CreateCopier() => Service... method CreateValue (line 219) | protected override DateTimeKind CreateValue() => (DateTimeKind)Random.... class DayOfWeekTests (line 225) | public class DayOfWeekTests(ITestOutputHelper output) : FieldCodecTester... method CreateCodec (line 227) | protected override IFieldCodec CreateCodec() => ServiceProv... method CreateValue (line 228) | protected override DayOfWeek CreateValue() => (DayOfWeek)Random.Next((... class DayOfWeekCopierTests (line 234) | public class DayOfWeekCopierTests(ITestOutputHelper output) : CopierTest... method CreateCopier (line 236) | protected override IDeepCopier CreateCopier() => ServicePro... method CreateValue (line 237) | protected override DayOfWeek CreateValue() => (DayOfWeek)Random.Next((... class NullableIntTests (line 243) | public class NullableIntTests(ITestOutputHelper output) : FieldCodecTest... method CreateCodec (line 245) | protected override IFieldCodec CreateCodec() => ServiceProvider.... method CreateValue (line 246) | protected override int? CreateValue() => TestValues[Random.Next(TestVa... class NullableIntCopierTests (line 250) | public class NullableIntCopierTests(ITestOutputHelper output) : CopierTe... method CreateCopier (line 252) | protected override IDeepCopier CreateCopier() => ServiceProvider... method CreateValue (line 253) | protected override int? CreateValue() => TestValues[Random.Next(TestVa... class DateTimeTests (line 257) | public class DateTimeTests(ITestOutputHelper output) : FieldCodecTester<... method CreateValue (line 259) | protected override DateTime CreateValue() => DateTime.UtcNow; class DateTimeCopierTests (line 264) | public class DateTimeCopierTests(ITestOutputHelper output) : CopierTeste... method CreateValue (line 266) | protected override DateTime CreateValue() => DateTime.UtcNow; class DateOnlyTests (line 272) | public class DateOnlyTests(ITestOutputHelper output) : FieldCodecTester<... method CreateValue (line 274) | protected override DateOnly CreateValue() => DateOnly.FromDateTime(Dat... class TimeOnlyTests (line 279) | public class TimeOnlyTests(ITestOutputHelper output) : FieldCodecTester<... method CreateValue (line 281) | protected override TimeOnly CreateValue() => TimeOnly.FromDateTime(Dat... class DateOnlyCopierTests (line 286) | public class DateOnlyCopierTests(ITestOutputHelper output) : CopierTeste... method CreateValue (line 288) | protected override DateOnly CreateValue() => DateOnly.FromDateTime(Dat... class TimeOnlyCopierTests (line 293) | public class TimeOnlyCopierTests(ITestOutputHelper output) : CopierTeste... method CreateValue (line 295) | protected override TimeOnly CreateValue() => TimeOnly.FromDateTime(Dat... class TimeSpanTests (line 301) | public class TimeSpanTests(ITestOutputHelper output) : FieldCodecTester<... method CreateValue (line 303) | protected override TimeSpan CreateValue() => TimeSpan.FromMilliseconds... class TimeSpanCopierTests (line 308) | public class TimeSpanCopierTests(ITestOutputHelper output) : CopierTeste... method CreateValue (line 310) | protected override TimeSpan CreateValue() => TimeSpan.FromMilliseconds... class DateTimeOffsetTests (line 315) | public class DateTimeOffsetTests(ITestOutputHelper output) : FieldCodecT... method CreateValue (line 317) | protected override DateTimeOffset CreateValue() => DateTime.UtcNow; class DateTimeOffsetCopierTests (line 329) | public class DateTimeOffsetCopierTests(ITestOutputHelper output) : Copie... method CreateValue (line 331) | protected override DateTimeOffset CreateValue() => DateTime.UtcNow; class VersionTests (line 343) | public class VersionTests(ITestOutputHelper output) : FieldCodecTester new(); method Equals (line 357) | protected override bool Equals(Version left, Version right) => left ==... class VersionCopierTests (line 360) | public class VersionCopierTests(ITestOutputHelper output) : CopierTester... method CreateValue (line 362) | protected override Version CreateValue() => new(); method Equals (line 374) | protected override bool Equals(Version left, Version right) => left ==... class BitVector32Tests (line 379) | public class BitVector32Tests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 381) | protected override BitVector32 CreateValue() => new(Random.Next()); method Equals (line 393) | protected override bool Equals(BitVector32 left, BitVector32 right) =>... class BitVector32CopierTests (line 396) | public class BitVector32CopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 398) | protected override BitVector32 CreateValue() => new(Random.Next()); method Equals (line 410) | protected override bool Equals(BitVector32 left, BitVector32 right) =>... class KeyValuePairTests (line 413) | public class KeyValuePairTests(ITestOutputHelper output) : FieldCodecTes... method CreateValue (line 415) | protected override KeyValuePair CreateValue() => KeyVa... class KeyValuePairCopierTests (line 427) | public class KeyValuePairCopierTests(ITestOutputHelper output) : CopierT... method CreateValue (line 429) | protected override KeyValuePair CreateValue() => KeyVa... class Tuple1Tests (line 441) | public class Tuple1Tests(ITestOutputHelper output) : FieldCodecTester CreateValue() => Tuple.Create(Guid.Ne... class Tuple1CopierTests (line 454) | public class Tuple1CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 456) | protected override Tuple CreateValue() => Tuple.Create(Guid.Ne... class Tuple2Tests (line 469) | public class Tuple2Tests(ITestOutputHelper output) : FieldCodecTester CreateValue() => Tuple.Create... class Tuple2CopierTests (line 483) | public class Tuple2CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 485) | protected override Tuple CreateValue() => Tuple.Create... class Tuple3Tests (line 499) | public class Tuple3Tests(ITestOutputHelper output) : FieldCodecTester CreateValue() => Tupl... class Tuple3CopierTests (line 516) | public class Tuple3CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 518) | protected override Tuple CreateValue() => Tupl... class Tuple4Tests (line 535) | public class Tuple4Tests(ITestOutputHelper output) : FieldCodecTester CreateValue()... class Tuple4CopierTests (line 553) | public class Tuple4CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 555) | protected override Tuple CreateValue()... class Tuple5Tests (line 573) | public class Tuple5Tests(ITestOutputHelper output) : FieldCodecTester Creat... class Tuple5CopierTests (line 592) | public class Tuple5CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 594) | protected override Tuple Creat... class Tuple6Tests (line 613) | public class Tuple6Tests(ITestOutputHelper output) : FieldCodecTester default; class ValueTupleCopierTests (line 752) | public class ValueTupleCopierTests(ITestOutputHelper output) : CopierTes... method CreateValue (line 754) | protected override ValueTuple CreateValue() => default; class ValueTuple1Tests (line 759) | public class ValueTuple1Tests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 761) | protected override ValueTuple CreateValue() => ValueTuple.Crea... class ValueTuple1CopierTests (line 772) | public class ValueTuple1CopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 774) | protected override ValueTuple CreateValue() => ValueTuple.Crea... class ValueTuple2Tests (line 785) | public class ValueTuple2Tests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 787) | protected override ValueTuple CreateValue() => ValueTu... class ValueTuple2CopierTests (line 799) | public class ValueTuple2CopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 801) | protected override ValueTuple CreateValue() => ValueTu... class ValueTuple3Tests (line 813) | public class ValueTuple3Tests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 815) | protected override ValueTuple CreateValue() =>... class ValueTuple3CopierTests (line 830) | public class ValueTuple3CopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 832) | protected override ValueTuple CreateValue() =>... class ValueTuple4Tests (line 847) | public class ValueTuple4Tests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 849) | protected override ValueTuple CreateVa... class ValueTuple4CopierTests (line 865) | public class ValueTuple4CopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 867) | protected override ValueTuple CreateVa... class ValueTuple5Tests (line 883) | public class ValueTuple5Tests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 885) | protected override ValueTuple ... class ValueTuple5CopierTests (line 902) | public class ValueTuple5CopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 904) | protected override ValueTuple ... class ValueTuple6Tests (line 921) | public class ValueTuple6Tests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 923) | protected override ValueTuple true; method Equals (line 1050) | protected override bool Equals(bool left, bool right) => left == right; class BoolCopierTests (line 1054) | public class BoolCopierTests(ITestOutputHelper output) : CopierTester true; method Equals (line 1057) | protected override bool Equals(bool left, bool right) => left == right; class StringCodecTests (line 1061) | public class StringCodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 1063) | protected override string CreateValue() => Guid.NewGuid().ToString(); method Equals (line 1064) | protected override bool Equals(string left, string right) => StringCom... class StringCopierTests (line 1068) | public class StringCopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 1070) | protected override string CreateValue() => Guid.NewGuid().ToString(); method Equals (line 1071) | protected override bool Equals(string left, string right) => StringCom... class ObjectCodecTests (line 1077) | public class ObjectCodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 1079) | protected override object CreateValue() => new(); method Equals (line 1080) | protected override bool Equals(object left, object right) => Reference... class ObjectCopierTests (line 1084) | public class ObjectCopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 1086) | protected override object CreateValue() => new(); method Equals (line 1087) | protected override bool Equals(object left, object right) => Reference... class BitArrayCodecTests (line 1092) | public class BitArrayCodecTests(ITestOutputHelper output) : FieldCodecTe... method CreateValue (line 1094) | protected override BitArray CreateValue() => new BitArray(Guid.NewGuid... method Equals (line 1096) | protected override bool Equals(BitArray left, BitArray right) => Refer... class BitArrayCopierTests (line 1107) | public class BitArrayCopierTests(ITestOutputHelper output) : CopierTeste... method CreateValue (line 1109) | protected override BitArray CreateValue() => new BitArray(Guid.NewGuid... method Equals (line 1111) | protected override bool Equals(BitArray left, BitArray right) => Refer... class ByteArrayCodecTests (line 1122) | public class ByteArrayCodecTests(ITestOutputHelper output) : FieldCodecT... method CreateValue (line 1124) | protected override byte[] CreateValue() => Guid.NewGuid().ToByteArray(); method Equals (line 1126) | protected override bool Equals(byte[] left, byte[] right) => Reference... class ByteArrayCopierTests (line 1136) | public class ByteArrayCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 1138) | protected override byte[] CreateValue() => Guid.NewGuid().ToByteArray(); method Equals (line 1140) | protected override bool Equals(byte[] left, byte[] right) => Reference... class MemoryCodecTests (line 1150) | public class MemoryCodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 1152) | protected override Memory CreateValue() method Equals (line 1160) | protected override bool Equals(Memory left, Memory right) =>... class MemoryCopierTests (line 1164) | public class MemoryCopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 1166) | protected override Memory CreateValue() method Equals (line 1174) | protected override bool Equals(Memory left, Memory right) =>... class ReadOnlyMemoryCodecTests (line 1178) | public class ReadOnlyMemoryCodecTests(ITestOutputHelper output) : FieldC... method CreateValue (line 1180) | protected override ReadOnlyMemory CreateValue() method Equals (line 1188) | protected override bool Equals(ReadOnlyMemory left, ReadOnlyMemor... class ReadOnlyMemoryCopierTests (line 1192) | public class ReadOnlyMemoryCopierTests(ITestOutputHelper output) : Copie... method CreateValue (line 1194) | protected override ReadOnlyMemory CreateValue() method Equals (line 1202) | protected override bool Equals(ReadOnlyMemory left, ReadOnlyMemor... class ArraySegmentCodecTests (line 1206) | public class ArraySegmentCodecTests(ITestOutputHelper output) : FieldCod... method CreateValue (line 1208) | protected override ArraySegment CreateValue() method Equals (line 1216) | protected override bool Equals(ArraySegment left, ArraySegment CreateValue() method Equals (line 1230) | protected override bool Equals(ArraySegment left, ArraySegment Enumerable.Range(0, Random.N... method Equals (line 1237) | protected override bool Equals(int[] left, int[] right) => ReferenceEq... class ArrayCopierTests (line 1241) | public class ArrayCopierTests(ITestOutputHelper output) : CopierTester Enumerable.Range(0, Random.N... method Equals (line 1244) | protected override bool Equals(int[] left, int[] right) => ReferenceEq... class ImmutableArrayCodecTests (line 1248) | public class ImmutableArrayCodecTests(ITestOutputHelper output) : FieldC... method CreateValue (line 1250) | protected override ImmutableArray CreateValue() => Enumerable.Ran... method Equals (line 1251) | protected override bool Equals(ImmutableArray left, ImmutableArra... class ImmutableArrayCopierTests (line 1255) | public class ImmutableArrayCopierTests(ITestOutputHelper output) : Copie... method CreateValue (line 1257) | protected override ImmutableArray CreateValue() => Enumerable.Ran... method Equals (line 1258) | protected override bool Equals(ImmutableArray left, ImmutableArra... class PooledBufferCodecTests (line 1262) | public class PooledBufferCodecTests(ITestOutputHelper output) : FieldCod... method CreateValue (line 1264) | protected override PooledBuffer CreateValue() method Equals (line 1281) | protected override bool Equals(PooledBuffer left, PooledBuffer right) ... method GetWriteCopy (line 1283) | protected override PooledBuffer GetWriteCopy(PooledBuffer input) class PooledBufferCopierTests (line 1291) | public class PooledBufferCopierTests(ITestOutputHelper output) : CopierT... method CreateValue (line 1297) | protected override PooledBuffer CreateValue() method Equals (line 1315) | protected override bool Equals(PooledBuffer left, PooledBuffer right) ... class UInt128CodecTests (line 1320) | public class UInt128CodecTests(ITestOutputHelper output) : FieldCodecTes... method CreateValue (line 1322) | protected override UInt128 CreateValue() => new (unchecked((ulong)Rand... class UInt128CopierTests (line 1343) | public class UInt128CopierTests(ITestOutputHelper output) : CopierTester... method CreateValue (line 1345) | protected override UInt128 CreateValue() => new (unchecked((ulong)Rand... class BigIntegerCodecTests (line 1367) | public class BigIntegerCodecTests(ITestOutputHelper output) : FieldCodec... method CreateValue (line 1372) | protected override BigInteger CreateValue() class BigIntegerCopierTests (line 1420) | public class BigIntegerCopierTests(ITestOutputHelper output) : CopierTes... method CreateValue (line 1424) | protected override BigInteger CreateValue() class UInt64CodecTests (line 1474) | public class UInt64CodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 1476) | protected override ulong CreateValue() class UInt64CopierTests (line 1505) | public class UInt64CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 1507) | protected override ulong CreateValue() class UInt32CodecTests (line 1533) | public class UInt32CodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 1535) | protected override uint CreateValue() => (uint)Guid.NewGuid().GetHashC... class UInt32CopierTests (line 1555) | public class UInt32CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 1557) | protected override uint CreateValue() => (uint)Guid.NewGuid().GetHashC... class UInt16CodecTests (line 1575) | public class UInt16CodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 1577) | protected override ushort CreateValue() => (ushort)Guid.NewGuid().GetH... class UInt16CopierTests (line 1592) | public class UInt16CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 1594) | protected override ushort CreateValue() => (ushort)Guid.NewGuid().GetH... class ByteCodecTests (line 1609) | public class ByteCodecTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 1611) | protected override byte CreateValue() => (byte)Guid.NewGuid().GetHashC... class ByteCopierTests (line 1617) | public class ByteCopierTests(ITestOutputHelper output) : CopierTester (byte)Guid.NewGuid().GetHashC... class Int128CodecTests (line 1626) | public class Int128CodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 1628) | protected override Int128 CreateValue() => new (unchecked((ulong)Rando... class Int128CopierTests (line 1649) | public class Int128CopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 1651) | protected override Int128 CreateValue() => new Int128(unchecked((ulong... class Int64CodecTests (line 1673) | public class Int64CodecTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 1675) | protected override long CreateValue() class Int64CopierTests (line 1703) | public class Int64CopierTests(ITestOutputHelper output) : CopierTester Guid.NewGuid().GetHashCode(); method CanRoundTripViaSerializer_WriteReadByteByByte (line 1755) | [Fact] class Int32CopierTests (line 1784) | public class Int32CopierTests(ITestOutputHelper output) : CopierTester Guid.NewGuid().GetHashCode(); class Int16CodecTests (line 1807) | public class Int16CodecTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 1809) | protected override short CreateValue() => (short)Guid.NewGuid().GetHas... class Int16CopierTests (line 1827) | public class Int16CopierTests(ITestOutputHelper output) : CopierTester (short)Guid.NewGuid().GetHas... class SByteCodecTests (line 1847) | public class SByteCodecTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 1849) | protected override sbyte CreateValue() => (sbyte)Guid.NewGuid().GetHas... class SByteCopierTests (line 1864) | public class SByteCopierTests(ITestOutputHelper output) : CopierTester (sbyte)Guid.NewGuid().GetHas... class CharCodecTests (line 1881) | public class CharCodecTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 1885) | protected override char CreateValue() => (char)('!' + _createValueCoun... class CharCopierTests (line 1900) | public class CharCopierTests(ITestOutputHelper output) : CopierTester (char)('!' + _createValueCoun... class GuidCodecTests (line 1919) | public class GuidCodecTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 1921) | protected override Guid CreateValue() => Guid.NewGuid(); class GuidCopierTests (line 1932) | public class GuidCopierTests(ITestOutputHelper output) : CopierTester Guid.NewGuid(); class TypeCodecTests (line 1945) | public class TypeCodecTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 1965) | protected override Type CreateValue() => _values[_valueIndex++ % _valu... class TypeCopierTests (line 1969) | public class TypeCopierTests(ITestOutputHelper output) : CopierTester _values[_valueIndex++ % _valu... class FloatCodecTests (line 1995) | public class FloatCodecTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 1997) | protected override float CreateValue() => float.MaxValue * (float)Rand... class FloatCopierTests (line 2003) | public class FloatCopierTests(ITestOutputHelper output) : CopierTester float.MaxValue * (float)Rand... class HalfCodecTests (line 2012) | public class HalfCodecTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 2014) | protected override Half CreateValue() => (Half)BitConverter.UInt16Bits... class HalfCopierTests (line 2020) | public class HalfCopierTests(ITestOutputHelper output) : CopierTester (Half)BitConverter.UInt16Bits... class DoubleCodecTests (line 2029) | public class DoubleCodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 2031) | protected override double CreateValue() => double.MaxValue * Random.Ne... class DoubleCopierTests (line 2037) | public class DoubleCopierTests(ITestOutputHelper output) : CopierTester<... method CreateValue (line 2039) | protected override double CreateValue() => double.MaxValue * Random.Ne... class DecimalCodecTests (line 2045) | public class DecimalCodecTests(ITestOutputHelper output) : FieldCodecTes... method CreateValue (line 2047) | protected override decimal CreateValue() => decimal.MaxValue * (decima... class DecimalCopierTests (line 2052) | public class DecimalCopierTests(ITestOutputHelper output) : CopierTester... method CreateValue (line 2054) | protected override decimal CreateValue() => decimal.MaxValue * (decima... class ListCodecTests (line 2059) | public class ListCodecTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 2061) | protected override List CreateValue() method Equals (line 2073) | protected override bool Equals(List left, List right) => Ref... class TypeWithListBase (line 2077) | [GenerateSerializer] method TypeWithListBase (line 2080) | public TypeWithListBase() : this(true) { } method TypeWithListBase (line 2081) | public TypeWithListBase(bool addDefaultValue) method ToString (line 2092) | public override string ToString() => $"[OtherProperty: {OtherProperty}... class ListBaseCodecTests (line 2095) | public class ListBaseCodecTests(ITestOutputHelper output) : FieldCodecTe... method AddValues (line 2097) | private static TypeWithListBase AddValues(TypeWithListBase value) method CreateValue (line 2107) | protected override TypeWithListBase CreateValue() => AddValues(new() {... method Equals (line 2108) | protected override bool Equals(TypeWithListBase left, TypeWithListBase... class ListBaseCopierTests (line 2111) | public class ListBaseCopierTests(ITestOutputHelper output) : CopierTeste... method AddValues (line 2113) | private static TypeWithListBase AddValues(TypeWithListBase value) method CreateValue (line 2123) | protected override TypeWithListBase CreateValue() => AddValues(new() {... method Equals (line 2124) | protected override bool Equals(TypeWithListBase left, TypeWithListBase... class ListCopierTests (line 2127) | public class ListCopierTests(ITestOutputHelper output) : CopierTester CreateValue() method Equals (line 2141) | protected override bool Equals(List left, List right) => Ref... class ImmutableListCodecTests (line 2145) | public class ImmutableListCodecTests(ITestOutputHelper output) : FieldCo... method CreateValue (line 2147) | protected override ImmutableList CreateValue() method Equals (line 2159) | protected override bool Equals(ImmutableList left, ImmutableList<... class ImmutableListCopierTests (line 2163) | public class ImmutableListCopierTests(ITestOutputHelper output) : Copier... method CreateValue (line 2166) | protected override ImmutableList CreateValue() method Equals (line 2178) | protected override bool Equals(ImmutableList left, ImmutableList<... class SortedListCodecTests (line 2182) | public class SortedListCodecTests(ITestOutputHelper output) : FieldCodec... method CreateValue (line 2184) | protected override SortedList CreateValue() method Equals (line 2197) | protected override bool Equals(SortedList left, SortedLis... class SortedListCopierTests (line 2201) | public class SortedListCopierTests(ITestOutputHelper output) : CopierTes... method CreateValue (line 2203) | protected override SortedList CreateValue() method Equals (line 2216) | protected override bool Equals(SortedList left, SortedLis... class SortedSetCodecTests (line 2220) | public class SortedSetCodecTests(ITestOutputHelper output) : FieldCodecT... method CreateValue (line 2222) | protected override SortedSet CreateValue() method Equals (line 2235) | protected override bool Equals(SortedSet left, SortedSet rig... class SortedSetCopierTests (line 2239) | public class SortedSetCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 2241) | protected override SortedSet CreateValue() method Equals (line 2254) | protected override bool Equals(SortedSet left, SortedSet rig... class ImmutableSortedSetCodecTests (line 2258) | public class ImmutableSortedSetCodecTests(ITestOutputHelper output) : Fi... method CreateValue (line 2260) | protected override ImmutableSortedSet CreateValue() method Equals (line 2273) | protected override bool Equals(ImmutableSortedSet left, Immutable... class ImmutableSortedSetCopierTests (line 2277) | public class ImmutableSortedSetCopierTests(ITestOutputHelper output) : C... method CreateValue (line 2280) | protected override ImmutableSortedSet CreateValue() method Equals (line 2293) | protected override bool Equals(ImmutableSortedSet left, Immutable... class ArrayListCodecTests (line 2297) | public class ArrayListCodecTests(ITestOutputHelper output) : FieldCodecT... method CreateValue (line 2299) | protected override ArrayList CreateValue() method Equals (line 2311) | protected override bool Equals(ArrayList left, ArrayList right) => Ref... class ArrayListCopierTests (line 2315) | public class ArrayListCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 2317) | protected override ArrayList CreateValue() method Equals (line 2329) | protected override bool Equals(ArrayList left, ArrayList right) => Ref... class CollectionCodecTests (line 2333) | public class CollectionCodecTests(ITestOutputHelper output) : FieldCodec... method CreateValue (line 2335) | protected override Collection CreateValue() method Equals (line 2347) | protected override bool Equals(Collection left, Collection r... class CollectionCopierTests (line 2351) | public class CollectionCopierTests(ITestOutputHelper output) : CopierTes... method CreateValue (line 2353) | protected override Collection CreateValue() method Equals (line 2365) | protected override bool Equals(Collection left, Collection r... class TypeWithCollectionBase (line 2369) | [GenerateSerializer] method TypeWithCollectionBase (line 2372) | public TypeWithCollectionBase() : this(true) { } method TypeWithCollectionBase (line 2373) | public TypeWithCollectionBase(bool addDefaultValue) method ToString (line 2384) | public override string ToString() => $"[OtherProperty: {OtherProperty}... class CollectionBaseCodecTests (line 2387) | public class CollectionBaseCodecTests(ITestOutputHelper output) : FieldC... method AddValues (line 2389) | private static TypeWithCollectionBase AddValues(TypeWithCollectionBase... method CreateValue (line 2399) | protected override TypeWithCollectionBase CreateValue() => AddValues(n... method Equals (line 2400) | protected override bool Equals(TypeWithCollectionBase left, TypeWithCo... class CollectionBaseCopierTests (line 2403) | public class CollectionBaseCopierTests(ITestOutputHelper output) : Copie... method AddValues (line 2405) | private static TypeWithCollectionBase AddValues(TypeWithCollectionBase... method CreateValue (line 2415) | protected override TypeWithCollectionBase CreateValue() => AddValues(n... method Equals (line 2416) | protected override bool Equals(TypeWithCollectionBase left, TypeWithCo... class ReadOnlyCollectionCodecTests (line 2419) | public class ReadOnlyCollectionCodecTests(ITestOutputHelper output) : Fi... method CreateValue (line 2421) | protected override ReadOnlyCollection CreateValue() method Equals (line 2433) | protected override bool Equals(ReadOnlyCollection left, ReadOnlyC... class ReadOnlyCollectionCopierTests (line 2437) | public class ReadOnlyCollectionCopierTests(ITestOutputHelper output) : C... method CreateValue (line 2439) | protected override ReadOnlyCollection CreateValue() method Equals (line 2451) | protected override bool Equals(ReadOnlyCollection left, ReadOnlyC... class StackCodecTests (line 2455) | public class StackCodecTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 2457) | protected override Stack CreateValue() method Equals (line 2469) | protected override bool Equals(Stack left, Stack right) => R... class StackCopierTests (line 2473) | public class StackCopierTests(ITestOutputHelper output) : CopierTester CreateValue() method Equals (line 2487) | protected override bool Equals(Stack left, Stack right) => R... class ImmutableStackCodecTests (line 2491) | public class ImmutableStackCodecTests(ITestOutputHelper output) : FieldC... method CreateValue (line 2493) | protected override ImmutableStack CreateValue() method Equals (line 2505) | protected override bool Equals(ImmutableStack left, ImmutableStac... class ImmutableStackCopierTests (line 2509) | public class ImmutableStackCopierTests(ITestOutputHelper output) : Copie... method CreateValue (line 2512) | protected override ImmutableStack CreateValue() method Equals (line 2524) | protected override bool Equals(ImmutableStack left, ImmutableStac... class QueueCodecTests (line 2528) | public class QueueCodecTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 2530) | protected override Queue CreateValue() method Equals (line 2542) | protected override bool Equals(Queue left, Queue right) => R... class QueueCopierTests (line 2546) | public class QueueCopierTests(ITestOutputHelper output) : CopierTester CreateValue() method Equals (line 2560) | protected override bool Equals(Queue left, Queue right) => R... class ConcurrentQueueCodecTests (line 2564) | public class ConcurrentQueueCodecTests(ITestOutputHelper output) : Field... method CreateValue (line 2566) | protected override ConcurrentQueue CreateValue() method Equals (line 2578) | protected override bool Equals(ConcurrentQueue left, ConcurrentQu... class ConcurrentQueueCopierTests (line 2582) | public class ConcurrentQueueCopierTests(ITestOutputHelper output) : Copi... method CreateValue (line 2584) | protected override ConcurrentQueue CreateValue() method Equals (line 2596) | protected override bool Equals(ConcurrentQueue left, ConcurrentQu... class ImmutableQueueCodecTests (line 2600) | public class ImmutableQueueCodecTests(ITestOutputHelper output) : FieldC... method CreateValue (line 2602) | protected override ImmutableQueue CreateValue() method Equals (line 2614) | protected override bool Equals(ImmutableQueue left, ImmutableQueu... class ImmutableQueueCopierTests (line 2618) | public class ImmutableQueueCopierTests(ITestOutputHelper output) : Copie... method CreateValue (line 2621) | protected override ImmutableQueue CreateValue() method Equals (line 2633) | protected override bool Equals(ImmutableQueue left, ImmutableQueu... class DictionaryCodecTests (line 2637) | public class DictionaryCodecTests(ITestOutputHelper output) : FieldCodec... method CreateValue (line 2639) | protected override Dictionary CreateValue() method Equals (line 2652) | protected override bool Equals(Dictionary left, Dictionar... class DictionaryCopierTests (line 2655) | public class DictionaryCopierTests(ITestOutputHelper output) : CopierTes... method CreateValue (line 2657) | protected override Dictionary CreateValue() method Equals (line 2670) | protected override bool Equals(Dictionary left, Dictionar... class TypeWithDictionaryBase (line 2673) | [GenerateSerializer] method TypeWithDictionaryBase (line 2676) | public TypeWithDictionaryBase() : this(true) { } method TypeWithDictionaryBase (line 2677) | public TypeWithDictionaryBase(bool addDefaultValue, IEqualityComparer<... method ToString (line 2690) | public override string ToString() => $"[OtherProperty: {OtherProperty}... class DictionaryBaseCodecTests (line 2693) | public class DictionaryBaseCodecTests(ITestOutputHelper output) : FieldC... method CreateValue (line 2706) | protected override TypeWithDictionaryBase CreateValue() => new() { Oth... method Equals (line 2707) | protected override bool Equals(TypeWithDictionaryBase left, TypeWithDi... class DictionaryBaseCopierTests (line 2714) | public class DictionaryBaseCopierTests(ITestOutputHelper output) : Copie... method CreateValue (line 2718) | protected override TypeWithDictionaryBase CreateValue() => new() { Oth... method Equals (line 2719) | protected override bool Equals(TypeWithDictionaryBase left, TypeWithDi... class DictionaryWithComparerCodecTests (line 2722) | public class DictionaryWithComparerCodecTests(ITestOutputHelper output) ... method CreateValue (line 2742) | protected override Dictionary CreateValue() method Equals (line 2770) | protected override bool Equals(Dictionary left, Dictionar... class CaseInsensitiveEqualityComparer (line 2772) | [GenerateSerializer] method Equals (line 2775) | public bool Equals(string left, string right) method GetHashCode (line 2795) | public int GetHashCode(string s) => s.ToUpper().GetHashCode(); class DictionaryWithComparerCopierTests (line 2799) | public class DictionaryWithComparerCopierTests(ITestOutputHelper output)... method CreateValue (line 2801) | protected override Dictionary CreateValue() method Equals (line 2816) | protected override bool Equals(Dictionary left, Dictionar... class ConcurrentDictionaryCodecTests (line 2819) | public class ConcurrentDictionaryCodecTests(ITestOutputHelper output) : ... method CreateValue (line 2821) | protected override ConcurrentDictionary CreateValue() method Equals (line 2835) | protected override bool Equals(ConcurrentDictionary left,... class ConcurrentDictionaryCopierTests (line 2859) | public class ConcurrentDictionaryCopierTests(ITestOutputHelper output) :... method CreateValue (line 2861) | protected override ConcurrentDictionary CreateValue() method Equals (line 2875) | protected override bool Equals(ConcurrentDictionary left,... class ReadOnlyDictionaryCodecTests (line 2899) | public class ReadOnlyDictionaryCodecTests(ITestOutputHelper output) : Fi... method CreateValue (line 2901) | protected override ReadOnlyDictionary CreateValue() method Equals (line 2914) | protected override bool Equals(ReadOnlyDictionary left, R... class ReadOnlyDictionaryCopierTests (line 2917) | public class ReadOnlyDictionaryCopierTests(ITestOutputHelper output) : C... method CreateValue (line 2919) | protected override ReadOnlyDictionary CreateValue() method Equals (line 2932) | protected override bool Equals(ReadOnlyDictionary left, R... class ImmutableDictionaryCodecTests (line 2935) | public class ImmutableDictionaryCodecTests(ITestOutputHelper output) : F... method CreateValue (line 2937) | protected override ImmutableDictionary CreateValue() method Equals (line 2950) | protected override bool Equals(ImmutableDictionary left, ... class ImmutableDictionaryCopierTests (line 2953) | public class ImmutableDictionaryCopierTests(ITestOutputHelper output) : ... method CreateValue (line 2956) | protected override ImmutableDictionary CreateValue() method Equals (line 2969) | protected override bool Equals(ImmutableDictionary left, ... class SortedDictionaryCodecTests (line 2972) | public class SortedDictionaryCodecTests(ITestOutputHelper output) : Fiel... method CreateValue (line 2974) | protected override SortedDictionary CreateValue() method Equals (line 2987) | protected override bool Equals(SortedDictionary left, Sor... class SortedDictionaryCopierTests (line 2990) | public class SortedDictionaryCopierTests(ITestOutputHelper output) : Cop... method CreateValue (line 2992) | protected override SortedDictionary CreateValue() method Equals (line 3005) | protected override bool Equals(SortedDictionary left, Sor... class ImmutableSortedDictionaryCodecTests (line 3008) | public class ImmutableSortedDictionaryCodecTests(ITestOutputHelper outpu... method CreateValue (line 3010) | protected override ImmutableSortedDictionary CreateValue() method Equals (line 3023) | protected override bool Equals(ImmutableSortedDictionary ... class ImmutableSortedDictionaryCopierTests (line 3026) | public class ImmutableSortedDictionaryCopierTests(ITestOutputHelper outp... method CreateValue (line 3030) | protected override ImmutableSortedDictionary CreateValue() method Equals (line 3043) | protected override bool Equals(ImmutableSortedDictionary ... class NameValueCollectionCodecTests (line 3046) | public class NameValueCollectionCodecTests(ITestOutputHelper output) : F... method CreateValue (line 3048) | protected override NameValueCollection CreateValue() method Equals (line 3061) | protected override bool Equals(NameValueCollection left, NameValueColl... class NameValueCollectionCopierTests (line 3065) | public class NameValueCollectionCopierTests(ITestOutputHelper output) : ... method CreateValue (line 3067) | protected override NameValueCollection CreateValue() method Equals (line 3080) | protected override bool Equals(NameValueCollection left, NameValueColl... class IPAddressTests (line 3084) | public class IPAddressTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 3090) | protected override IPAddress CreateValue() class IPAddressCopierTests (line 3106) | public class IPAddressCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 3110) | protected override IPAddress CreateValue() class IPEndPointTests (line 3128) | public class IPEndPointTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 3142) | protected override IPEndPoint CreateValue() class IPEndPointCopierTests (line 3158) | public class IPEndPointCopierTests(ITestOutputHelper output) : CopierTes... method CreateValue (line 3170) | protected override IPEndPoint CreateValue() class HashSetTests (line 3188) | public class HashSetTests(ITestOutputHelper output) : FieldCodecTester CreateValue() method Equals (line 3204) | protected override bool Equals(HashSet left, HashSet r... class HashSetCopierTests (line 3207) | public class HashSetCopierTests(ITestOutputHelper output) : CopierTester... method CreateValue (line 3209) | protected override HashSet CreateValue() method Equals (line 3223) | protected override bool Equals(HashSet left, HashSet r... class TypeWithHashSetBase (line 3226) | [GenerateSerializer] method TypeWithHashSetBase (line 3229) | public TypeWithHashSetBase() : this(true) { } method TypeWithHashSetBase (line 3230) | public TypeWithHashSetBase(bool addDefaultValue, IEqualityComparer $"[OtherProperty: {OtherProperty}... class HashSetBaseCodecTests (line 3247) | public class HashSetBaseCodecTests(ITestOutputHelper output) : FieldCode... method AddValues (line 3249) | private static TypeWithHashSetBase AddValues(TypeWithHashSetBase value) method CreateValue (line 3269) | protected override TypeWithHashSetBase CreateValue() => AddValues(new(... method Equals (line 3270) | protected override bool Equals(TypeWithHashSetBase left, TypeWithHashS... class HashSetBaseCopierTests (line 3277) | public class HashSetBaseCopierTests(ITestOutputHelper output) : CopierTe... method AddValues (line 3279) | private static TypeWithHashSetBase AddValues(TypeWithHashSetBase value) method CreateValue (line 3299) | protected override TypeWithHashSetBase CreateValue() => AddValues(new(... method Equals (line 3301) | protected override bool Equals(TypeWithHashSetBase left, TypeWithHashS... class ImmutableHashSetTests (line 3308) | public class ImmutableHashSetTests(ITestOutputHelper output) : FieldCode... method CreateValue (line 3310) | protected override ImmutableHashSet CreateValue() method Equals (line 3324) | protected override bool Equals(ImmutableHashSet left, Immutabl... class ImmutableHashSetCopierTests (line 3327) | public class ImmutableHashSetCopierTests(ITestOutputHelper output) : Cop... method CreateValue (line 3329) | protected override ImmutableHashSet CreateValue() method Equals (line 3343) | protected override bool Equals(ImmutableHashSet left, Immutabl... class ImmutableHashSetMutableCopierTests (line 3348) | public sealed class ImmutableHashSetMutableCopierTests(ITestOutputHelper... method CreateValue (line 3350) | protected override ImmutableHashSet CreateValue() method Equals (line 3364) | protected override bool Equals(ImmutableHashSet left, Immutabl... class UriTests (line 3369) | public class UriTests(ITestOutputHelper output) : FieldCodecTester new Uri($"http://www.{Guid.New... method Equals (line 3376) | protected override bool Equals(Uri left, Uri right) => ReferenceEquals... class UriCopierTests (line 3379) | public class UriCopierTests(ITestOutputHelper output) : CopierTester new Uri($"http://www.{Guid.New... method Equals (line 3385) | protected override bool Equals(Uri left, Uri right) => ReferenceEquals... class FSharpUnitTests (line 3390) | public class FSharpUnitTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 3392) | protected override Unit CreateValue() => null; class FSharpUnitCopierTests (line 3396) | public class FSharpUnitCopierTests(ITestOutputHelper output) : CopierTes... method CreateValue (line 3399) | protected override Unit CreateValue() => null; class FSharpOptionTests (line 3403) | public class FSharpOptionTests(ITestOutputHelper output) : FieldCodecTes... method CreateValue (line 3407) | protected override FSharpOption CreateValue() => FSharpOption CreateValue() => FSharpOption left, FSharpOption CreateValue() => FSharpOption<... class FSharpRefTests (line 3426) | public class FSharpRefTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 3430) | protected override FSharpRef CreateValue() => new(Guid.NewGuid()); method Equals (line 3432) | protected override bool Equals(FSharpRef left, FSharpRef r... class FSharpRefCopierTests (line 3435) | public class FSharpRefCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 3439) | protected override FSharpRef CreateValue() => new(Guid.NewGuid()); method Equals (line 3441) | protected override bool Equals(FSharpRef left, FSharpRef r... class FSharpValueOptionTests (line 3444) | public class FSharpValueOptionTests(ITestOutputHelper output) : FieldCod... method CreateValue (line 3448) | protected override FSharpValueOption CreateValue() => FSharpValu... class FSharpValueOptionCopierTests (line 3451) | public class FSharpValueOptionCopierTests(ITestOutputHelper output) : Co... method CreateValue (line 3455) | protected override FSharpValueOption CreateValue() => FSharpValu... method Equals (line 3457) | protected override bool Equals(FSharpValueOption left, FSharpVal... class FSharpResultTests (line 3460) | public class FSharpResultTests(ITestOutputHelper output) : FieldCodecTes... method CreateValue (line 3464) | protected override FSharpResult CreateValue() => FSharpResu... class FSharpChoice2Tests (line 3467) | public class FSharpChoice2Tests(ITestOutputHelper output) : FieldCodecTe... method CreateValue (line 3471) | protected override FSharpChoice CreateValue() => FSharpChoi... class FSharpChoice2CopierTests (line 3474) | public class FSharpChoice2CopierTests(ITestOutputHelper output) : Copier... method CreateValue (line 3478) | protected override FSharpChoice CreateValue() => FSharpChoi... class FSharpChoice3Tests (line 3481) | public class FSharpChoice3Tests(ITestOutputHelper output) : FieldCodecTe... method CreateValue (line 3485) | protected override FSharpChoice CreateValue() => FSha... class FSharpChoice3CopierTests (line 3488) | public class FSharpChoice3CopierTests(ITestOutputHelper output) : Copier... method CreateValue (line 3492) | protected override FSharpChoice CreateValue() => FSha... class FSharpChoice4Tests (line 3495) | public class FSharpChoice4Tests(ITestOutputHelper output) : FieldCodecTe... method CreateValue (line 3499) | protected override FSharpChoice CreateValue() =... class FSharpChoice4CopierTests (line 3502) | public class FSharpChoice4CopierTests(ITestOutputHelper output) : Copier... method CreateValue (line 3506) | protected override FSharpChoice CreateValue() =... class FSharpChoice5Tests (line 3509) | public class FSharpChoice5Tests(ITestOutputHelper output) : FieldCodecTe... method CreateValue (line 3513) | protected override FSharpChoice CreateVal... class FSharpChoice5CopierTests (line 3516) | public class FSharpChoice5CopierTests(ITestOutputHelper output) : Copier... method CreateValue (line 3520) | protected override FSharpChoice CreateVal... class FSharpChoice6Tests (line 3523) | public class FSharpChoice6Tests(ITestOutputHelper output) : FieldCodecTe... method CreateValue (line 3527) | protected override FSharpChoice Cre... class FSharpChoice6CopierTests (line 3530) | public class FSharpChoice6CopierTests(ITestOutputHelper output) : Copier... method CreateValue (line 3534) | protected override FSharpChoice Cre... class FSharpSetTests (line 3537) | public class FSharpSetTests(ITestOutputHelper output) : FieldCodecTester... method CreateValue (line 3539) | protected override FSharpSet CreateValue() method Equals (line 3553) | protected override bool Equals(FSharpSet left, FSharpSet CreateValue() method Equals (line 3572) | protected override bool Equals(FSharpSet left, FSharpSet CreateValue() method Equals (line 3593) | protected override bool Equals(FSharpMap left, FSharpM... class FSharpMapCopierTests (line 3596) | public class FSharpMapCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 3598) | protected override FSharpMap CreateValue() method Equals (line 3612) | protected override bool Equals(FSharpMap left, FSharpM... class FSharpListTests (line 3615) | public class FSharpListTests(ITestOutputHelper output) : FieldCodecTeste... method CreateValue (line 3617) | protected override FSharpList CreateValue() method Equals (line 3631) | protected override bool Equals(FSharpList left, FSharpList CreateValue() method Equals (line 3650) | protected override bool Equals(FSharpList left, FSharpList TestValues[Random.Next... method Equals (line 3659) | protected override bool Equals(CultureInfo left, CultureInfo right) =>... class CultureInfoCopierTests (line 3662) | public class CultureInfoCopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 3665) | protected override CultureInfo CreateValue() => TestValues[Random.Next... method Equals (line 3669) | protected override bool Equals(CultureInfo left, CultureInfo right) =>... class CompareInfoTests (line 3672) | public class CompareInfoTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 3674) | protected override CompareInfo CreateValue() => TestValues[Random.Next... method Equals (line 3678) | protected override bool Equals(CompareInfo left, CompareInfo right) =>... class CompareInfoCopierTests (line 3681) | public class CompareInfoCopierTests(ITestOutputHelper output) : CopierTe... method CreateValue (line 3684) | protected override CompareInfo CreateValue() => TestValues[Random.Next... method Equals (line 3688) | protected override bool Equals(CompareInfo left, CompareInfo right) =>... class ResponseCodecTests (line 3691) | public class ResponseCodecTests(ITestOutputHelper output) : FieldCodecTe... method CreateValue (line 3693) | protected override Response CreateValue() => Response.FromResult(Guid.... method Equals (line 3703) | protected override bool Equals(Response left, Response right) class ResponseCopierTests (line 3737) | public class ResponseCopierTests(ITestOutputHelper output) : CopierTeste... method CreateValue (line 3742) | protected override Response CreateValue() => Response.FromResult(Guid.... method Equals (line 3753) | protected override bool Equals(Response left, Response right) class Response1CodecTests (line 3787) | public class Response1CodecTests(ITestOutputHelper output) : FieldCodecT... method CreateValue (line 3789) | protected override Response CreateValue() => (Response)Respo... method Equals (line 3797) | protected override bool Equals(Response left, Response right) class Response1CopierTests (line 3831) | public class Response1CopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 3836) | protected override Response CreateValue() => (Response)Respo... method Equals (line 3844) | protected override bool Equals(Response left, Response right) class ExceptionCodecTests (line 3878) | public class ExceptionCodecTests(ITestOutputHelper output) : FieldCodecT... method CreateValue (line 3883) | protected override Exception CreateValue() method Equals (line 3895) | protected override bool Equals(Exception left, Exception right) class ExceptionCopierTests (line 3911) | public class ExceptionCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 3916) | protected override Exception CreateValue() method Equals (line 3928) | protected override bool Equals(Exception left, Exception right) class AggregateExceptionCodecTests (line 3944) | public class AggregateExceptionCodecTests(ITestOutputHelper output) : Fi... method CreateValue (line 3949) | protected override AggregateException CreateValue() method Equals (line 3968) | protected override bool Equals(AggregateException left, AggregateExcep... class AggregateExceptionCopierTests (line 3984) | public class AggregateExceptionCopierTests(ITestOutputHelper output) : C... method CreateValue (line 3989) | protected override AggregateException CreateValue() method Equals (line 4008) | protected override bool Equals(AggregateException left, AggregateExcep... class CancellationTokenCopierTests (line 4037) | public class CancellationTokenCopierTests(ITestOutputHelper output) : Co... method CreateValue (line 4039) | protected override CancellationToken CreateValue() => default; class GrainCancellationTokenCodecTests (line 4048) | public class GrainCancellationTokenCodecTests(ITestOutputHelper output) ... method Configure (line 4053) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 4065) | protected override GrainCancellationToken CreateValue() => CreateToken... method Equals (line 4074) | protected override bool Equals(GrainCancellationToken left, GrainCance... method CreateToken (line 4090) | private static GrainCancellationToken CreateToken(bool isCanceled) method GetTokenId (line 4101) | private static Guid GetTokenId(GrainCancellationToken token) class IdSpanCodecTests (line 4105) | public class IdSpanCodecTests(ITestOutputHelper output) : FieldCodecTest... method CreateValue (line 4107) | protected override IdSpan CreateValue() => IdSpan.Create(Guid.NewGuid(... class SiloAddressCodecTests (line 4118) | public class SiloAddressCodecTests(ITestOutputHelper output) : FieldCode... method CreateValue (line 4122) | protected override SiloAddress CreateValue() class IAddressableCodecTests (line 4134) | public class IAddressableCodecTests(ITestOutputHelper output) : FieldCod... method Configure (line 4136) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 4146) | protected override IAddressable CreateValue() method Equals (line 4159) | protected override bool Equals(IAddressable left, IAddressable right) class XDocumentCodecTests (line 4180) | public class XDocumentCodecTests(ITestOutputHelper output) : FieldCodecT... method CreateValue (line 4184) | protected override XDocument CreateValue() => CreateDocument(); method Equals (line 4193) | protected override bool Equals(XDocument left, XDocument right) method CreateDocument (line 4208) | private static XDocument CreateDocument() class XDocumentCopierTests (line 4212) | public class XDocumentCopierTests(ITestOutputHelper output) : CopierTest... method CreateValue (line 4216) | protected override XDocument CreateValue() => CreateDocument(); method Equals (line 4224) | protected override bool Equals(XDocument left, XDocument right) method CreateDocument (line 4239) | private static XDocument CreateDocument() class GrainReferenceCopierTests (line 4243) | public class GrainReferenceCopierTests(ITestOutputHelper output) : Copie... method Configure (line 4247) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 4252) | protected override GrainReference CreateValue() method Equals (line 4265) | protected override bool Equals(GrainReference left, GrainReference right) class GrainReferenceTestHelper (line 4281) | internal static class GrainReferenceTestHelper method CreateGrainId (line 4288) | internal static GrainId CreateGrainId() method CreateGrainReference (line 4291) | internal static GrainReference CreateGrainReference(IServiceProvider s... class TestGrainReferenceRuntime (line 4309) | internal sealed class TestGrainReferenceRuntime : IGrainReferenceRuntime method Cast (line 4311) | public object Cast(IAddressable grain, Type interfaceType) => grain; method InvokeMethodAsync (line 4313) | public ValueTask InvokeMethodAsync(GrainReference reference, IIn... method InvokeMethodAsync (line 4316) | public ValueTask InvokeMethodAsync(GrainReference reference, IInvokabl... method InvokeMethod (line 4319) | public void InvokeMethod(GrainReference reference, IInvokable request,... class TestGrainFactory (line 4323) | internal sealed class TestGrainFactory(IServiceProvider serviceProvider)... method GetGrain (line 4328) | public IAddressable GetGrain(GrainId grainId, GrainInterfaceType inter... method GetGrain (line 4331) | public IAddressable GetGrain(GrainId grainId) method GetGrain (line 4334) | public TGrainInterface GetGrain(GrainId grainId) wher... method GetGrain (line 4337) | public TGrainInterface GetGrain(Guid primaryKey, stri... method GetGrain (line 4340) | public TGrainInterface GetGrain(long primaryKey, stri... method GetGrain (line 4343) | public TGrainInterface GetGrain(string primaryKey, st... method GetGrain (line 4346) | public TGrainInterface GetGrain(Guid primaryKey, stri... method GetGrain (line 4349) | public TGrainInterface GetGrain(long primaryKey, stri... method CreateObjectReference (line 4352) | public TGrainObserverInterface CreateObjectReference(IGrainObser... method GetGrain (line 4358) | public IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey) method GetGrain (line 4361) | public IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey) method GetGrain (line 4364) | public IGrain GetGrain(Type grainInterfaceType, string grainPrimaryKey) method GetGrain (line 4367) | public IGrain GetGrain(Type grainInterfaceType, Guid grainPrimaryKey, ... method GetGrain (line 4370) | public IGrain GetGrain(Type grainInterfaceType, long grainPrimaryKey, ... method GetGrain (line 4373) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey, stri... method GetGrain (line 4376) | public IAddressable GetGrain(Type interfaceType, IdSpan grainKey) method ThrowUnsupported (line 4379) | private static T ThrowUnsupported() => throw new NotSupportedExcept... method ThrowUnsupported (line 4381) | private static void ThrowUnsupported() => throw new NotSupportedExcept... FILE: test/Orleans.Serialization.UnitTests/ConverterTests.cs class ConverterCodecTests (line 22) | public class ConverterCodecTests : FieldCodecTester new(12, "hi",... method Equals (line 29) | protected override bool Equals(MyForeignLibraryType left, MyForeignLib... class ConverterCopierTests (line 33) | public class ConverterCopierTests : CopierTester new(12, "hi",... method Equals (line 40) | protected override bool Equals(MyForeignLibraryType left, MyForeignLib... class WrappedConverterCodecTests (line 44) | public class WrappedConverterCodecTests : FieldCodecTester new() { ... method Equals (line 51) | protected override bool Equals(WrapsMyForeignLibraryType left, WrapsMy... class WrappedConverterCopierTests (line 55) | public class WrappedConverterCopierTests : CopierTester new() { ... method Equals (line 62) | protected override bool Equals(WrapsMyForeignLibraryType left, WrapsMy... class StructConverterCodecTests (line 66) | public class StructConverterCodecTests : ValueTypeFieldCodecTester new(12, ... method Equals (line 73) | protected override bool Equals(MyForeignLibraryValueType left, MyForei... class StructConverterCopierTests (line 77) | public class StructConverterCopierTests : CopierTester new(12, ... method Equals (line 84) | protected override bool Equals(MyForeignLibraryValueType left, MyForei... class WrappedStructConverterCodecTests (line 88) | public class WrappedStructConverterCodecTests : ValueTypeFieldCodecTeste... method WrappedStructConverterCodecTests (line 90) | public WrappedStructConverterCodecTests(ITestOutputHelper output) : ba... method CreateValue (line 94) | protected override WrapsMyForeignLibraryValueType CreateValue() => new... method Equals (line 95) | protected override bool Equals(WrapsMyForeignLibraryValueType left, Wr... class WrappedStructConverterCopierTests (line 99) | public class WrappedStructConverterCopierTests : CopierTester new... method Equals (line 106) | protected override bool Equals(WrapsMyForeignLibraryValueType left, Wr... class DerivedConverterCodecTests (line 110) | public class DerivedConverterCodecTests : FieldCodecTester ne... method Equals (line 117) | protected override bool Equals(DerivedFromMyForeignLibraryType left, D... class DerivedConverterCopierTests (line 121) | public class DerivedConverterCopierTests : CopierTester ne... method Equals (line 128) | protected override bool Equals(DerivedFromMyForeignLibraryType left, D... class CombinedConverterCopierTests (line 133) | public class CombinedConverterCopierTests : CopierTester new() { ... method Equals (line 140) | protected override bool Equals(MyFirstForeignLibraryType left, MyFirst... FILE: test/Orleans.Serialization.UnitTests/GeneratedSerializerTests.cs class GeneratedSerializerTests (line 41) | [Trait("Category", "BVT")] method GeneratedSerializerTests (line 50) | public GeneratedSerializerTests() method GeneratedSerializersRoundTripThroughCodec (line 65) | [Fact] method GeneratedRecordSerializersRoundTripThroughCodec (line 82) | [Fact] method AutoGeneratedPublicPropertyIdsTest (line 99) | [Fact] method RecursiveTypeSerializersRoundTripThroughSerializer (line 126) | [Fact] method RecursiveTypeSerializersRoundTripThroughCodec (line 138) | [Fact] method GeneratedRecordWithPCtorSerializersRoundTripThroughCodec (line 150) | [Fact] method GeneratedLibExternalRecordStructWithPCtorSerializersRoundTripThroughCodec (line 167) | [Fact] method GeneratedLibExternalRecordWithPCtorSerializersRoundTripThroughCodec (line 185) | [Fact] method GeneratedLibExternalGenericRecordStructWithPCtorSerializersRoundTripThroughCodec (line 202) | [Fact] method GeneratedReadonlyLibExternalGenericRecordStructWithPCtorSerializersRoundTripThroughCodec (line 226) | [Fact] method GeneratedLibExternalGenericRecordWithPCtorSerializersRoundTripThroughCodec (line 252) | [Fact] method RequiredMembersAreSupported (line 278) | [Fact] method GeneratedRecordWithExcludedPCtorSerializersRoundTripThroughCodec (line 305) | [Fact] method GeneratedRecordWithExclusiveCtorSerializersRoundTripThroughCodec (line 322) | [Fact] method RecordSerializedAsRegularClass (line 336) | [Fact] method GeneratedSerializersRoundTripThroughSerializer (line 356) | [Fact] method GeneratedSerializersRoundTripThroughSerializer_ImmutableClass (line 366) | [Fact] method GeneratedSerializersRoundTripThroughSerializer_ImmutableStruct (line 378) | [Fact] method UnmarkedFieldsAreNotSerialized (line 388) | [Fact] method GenericPocosCanRoundTrip (line 398) | [Fact] method NestedGenericPocoWithTypeAlias (line 413) | [Fact] method GenericArityAliasTest (line 428) | [Fact] method ArraysAreSupported (line 442) | [Fact] method ArraysPocoRoundTrip (line 451) | [Fact] method MultiDimensionalArraysAreSupported (line 468) | [Fact] method SystemCollectionsRoundTrip (line 486) | [Fact] method ClassWithLargeCollectionAndUriRoundTrip (line 526) | [Fact] method ClassWithManualSerializablePropertyRoundTrip (line 545) | [Fact] method ImmutableClassWithImplicitFieldIdsRoundTrip (line 575) | [Fact] method CopyImmutableAndSealedTypes (line 585) | [Fact] method DuplicateReferencesSerializeTargetJustOnce (line 610) | [Fact] method DuplicateReferencesSerializeTargetMultipleTimesWhenSuppressReferenceTrackingEnabled (line 622) | [Fact] method DuplicateReferencesToAnyExceptionTypesSerializeTargetMultipleTimes (line 634) | [Fact] method DuplicateReferencesToExceptionTypeWithSurrogateSerializeTargetMultipleTimes (line 645) | [Fact] method TypeReferencesAreEncodedOnce (line 656) | [Fact] method TypeCodecDoesNotUpdateTypeReferences (line 666) | [Fact] method TypeCodecConsumesTypeReferences (line 681) | [Fact] method TypeDerivedFromList (line 697) | [Fact] method TypeDerivedFromDictionary (line 709) | [Fact] method Dispose (line 730) | public void Dispose() => _serviceProvider?.Dispose(); method RoundTripThroughCodec (line 732) | private T RoundTripThroughCodec(T original) method Copy (line 765) | private T Copy(T original) method RoundTripThroughUntypedSerializer (line 771) | private object RoundTripThroughUntypedSerializer(object original, out ... FILE: test/Orleans.Serialization.UnitTests/GenericBaseClassTest.cs class GenericBaseClassTest (line 22) | [Trait("Category", "BVT")] method GenericBaseClassTest (line 27) | public GenericBaseClassTest() method DerivedNoGeneric (line 35) | [Fact] FILE: test/Orleans.Serialization.UnitTests/ISerializableTests.cs method ISerializableTests (line 45) | public ISerializableTests(ITestOutputHelper log) method SerializationLoop (line 59) | private object SerializationLoop(object original) method ISerializableObjectWithCallbacks (line 94) | [Fact] method ISerializableStructWithCallbacks (line 130) | [Fact] method BaseException (line 154) | public BaseException() { } method BaseException (line 156) | public BaseException(string message, Exception innerException) : base(me... method BaseException (line 158) | [Obsolete] method GetObjectData (line 168) | [Obsolete] method UnserializableConformingException (line 183) | public UnserializableConformingException(string message, Exception inner... method UnserializableConformingException (line 186) | [Obsolete] method GetObjectData (line 195) | [Obsolete] class UnserializableNonConformingException (line 205) | public class UnserializableNonConformingException : Exception method UnserializableNonConformingException (line 207) | public UnserializableNonConformingException(string message) : base(mes... class BanningTypeResolver (line 211) | private class BanningTypeResolver : TypeResolver method BanningTypeResolver (line 216) | public BanningTypeResolver(params Type[] blockedTypes) method ResolveType (line 225) | public override Type ResolveType(string name) method TryResolveType (line 236) | public override bool TryResolveType(string name, out Type type) method Serialize_UnserializableException (line 253) | [Fact] class SimpleISerializableObject (line 316) | [Serializable] method SimpleISerializableObject (line 322) | public SimpleISerializableObject() method SimpleISerializableObject (line 327) | public SimpleISerializableObject(SerializationInfo info, StreamingCont... method GetObjectData (line 339) | public void GetObjectData(SerializationInfo info, StreamingContext con... method OnSerializingMethod (line 345) | [OnSerializing] method OnSerializedMethod (line 352) | [OnSerialized] method OnDeserializingMethod (line 359) | [OnDeserializing] method OnDeserializedMethod (line 366) | [OnDeserialized] method OnDeserialization (line 373) | void IDeserializationCallback.OnDeserialization(object sender) => Hist... type SimpleISerializableStruct (line 376) | [Serializable] method SimpleISerializableStruct (line 382) | public SimpleISerializableStruct(SerializationInfo info, StreamingCont... method GetObjectData (line 396) | public void GetObjectData(SerializationInfo info, StreamingContext con... method OnSerializingMethod (line 402) | [OnSerializing] method OnSerializedMethod (line 409) | [OnSerialized] method OnDeserializingMethod (line 416) | [OnDeserializing] method OnDeserializedMethod (line 423) | [OnDeserialized] method OnDeserialization (line 430) | void IDeserializationCallback.OnDeserialization(object sender) => Hist... FILE: test/Orleans.Serialization.UnitTests/InvokableTestInterfaces.cs type IHasNoNamespace (line 10) | public interface IHasNoNamespace : IMyInvokableBaseType class MyInvokableProxyBase (line 16) | [Alias("_my_proxy_base_")] method MyInvokableProxyBase (line 26) | protected MyInvokableProxyBase(CopyContextPool copyContextPool, CodecP... method GetInvokable (line 32) | protected TInvokable GetInvokable() where TInvokable : cla... method InvokeAsync (line 34) | protected ValueTask InvokeAsync(IInvokable body) method InvokeAsync (line 40) | protected ValueTask InvokeAsync(IInvokable body) class AltInvokableProxyBase (line 51) | [Alias("groan")] method GetInvokable (line 59) | protected TInvokable GetInvokable() where TInvokable : cla... method InvokeAsync (line 61) | protected ValueTask InvokeAsync(IInvokable body) => default; method InvokeAsync (line 63) | protected ValueTask InvokeAsync(IInvokable body) => default; type IMyInvokableBaseType (line 70) | [Alias("my_interface")] type IProxyAliasTestGrain (line 76) | [Alias("_proxy_alias_test_")] method Method (line 80) | [Id(125)] method Method (line 83) | [Alias("Method")] method Method (line 86) | [Alias("StringMethod")] method OtherMethod (line 89) | [Alias("MyOtherMethod")] type IGenericProxyAliasTestGrain (line 93) | [Alias("test.IGenericProxyAliasTestGrain`3"), GenerateMethodSerializers(... method Method (line 96) | [Id(777)] type IG2 (line 100) | public interface IG2 : IMyInvokableBaseType class HalfOpenGrain1 (line 103) | public class HalfOpenGrain1 : IG2 class HalfOpenGrain2 (line 105) | public class HalfOpenGrain2 : IG2 class OpenGeneric (line 108) | public class OpenGeneric : IG2 class ClosedGeneric (line 111) | public class ClosedGeneric : IG2 class ClosedGenericWithManyInterfaces (line 114) | public class ClosedGenericWithManyInterfaces : IG2, IG2<... class Dummy1 (line 117) | public class Dummy1 { } class Dummy2 (line 119) | public class Dummy2 { } type IG (line 121) | public interface IG : IMyInvokableBaseType class G1 (line 125) | public class G1 : Root.IA class Root (line 129) | public class Root type IA (line 131) | public interface IA : IMyInvokableBaseType class G (line 136) | public class G : IG> type IGrainWithGenericMethods (line 141) | public interface IGrainWithGenericMethods : IMyInvokableBaseType method GetTypesExplicit (line 143) | Task GetTypesExplicit(); method GetTypesInferred (line 144) | Task GetTypesInferred(T t, U u, V v); method GetTypesInferred (line 145) | Task GetTypesInferred(T t, U u, int v); method RoundTrip (line 146) | Task RoundTrip(T val); method RoundTrip (line 147) | Task RoundTrip(int val); method Default (line 148) | Task Default(); method Default (line 149) | Task Default(); method Constraints (line 150) | Task Constraints(TGrain grain) where TGrain : IMyInvok... method ValueTaskMethod (line 151) | ValueTask ValueTaskMethod(bool useCache); class GrainWithGenericMethods (line 154) | public class GrainWithGenericMethods : IGrainWithGenericMethods method GetTypesExplicit (line 158) | public Task GetTypesExplicit() method GetTypesInferred (line 163) | public Task GetTypesInferred(T t, U u, V v) method GetTypesInferred (line 168) | public Task GetTypesInferred(T t, U u, int v) method RoundTrip (line 173) | public Task RoundTrip(T val) method RoundTrip (line 178) | public Task RoundTrip(int val) method Default (line 183) | public Task Default() method Default (line 188) | public Task Default() method Constraints (line 193) | public Task Constraints(TGrain grain) where TGrain : I... method SetValue (line 198) | public void SetValue(T value) method GetValue (line 203) | public Task GetValue() => Task.FromResult((T) this.state); method ValueTaskMethod (line 205) | public ValueTask ValueTaskMethod(bool useCache) type IGenericGrainWithGenericMethods (line 216) | public interface IGenericGrainWithGenericMethods : IMyInvokableBaseType method Method (line 218) | Task Method(T value); method Method (line 220) | Task Method(T value); type IRuntimeCodeGenGrain (line 224) | public interface IRuntimeCodeGenGrain : IMyInvokableBaseType method SetState (line 231) | Task SetState(T value); method @static (line 237) | Task<@event> @static(); class GenericGrainState (line 240) | [Serializable] class @event (line 251) | [GenerateSerializer] type @enum (line 256) | public enum @enum method Equals (line 317) | public override bool Equals(object obj) method GetHashCode (line 335) | public override int GetHashCode() method Equals (line 347) | public bool Equals(@event other) class EventEqualityComparer (line 376) | private sealed class EventEqualityComparer : IEqualityComparer<@event> method Equals (line 378) | public bool Equals(@event x, @event y) method GetHashCode (line 383) | public int GetHashCode(@event obj) class NestedGeneric (line 390) | [GenerateSerializer] class Nested (line 396) | [GenerateSerializer] class NestedConstructedGeneric (line 404) | [GenerateSerializer] class Nested (line 410) | [GenerateSerializer] type INestedGenericGrain (line 418) | public interface INestedGenericGrain : IMyInvokableBaseType method Do (line 420) | Task Do(NestedGeneric value); method Do (line 421) | Task Do(NestedConstructedGeneric value); class NestedGenericGrain (line 427) | public class NestedGenericGrain : INestedGenericGrain method Do (line 429) | public Task Do(NestedGeneric value) method Do (line 434) | public Task Do(NestedConstructedGeneric value) FILE: test/Orleans.Serialization.UnitTests/ManualVersionToleranceTests.cs class ManualVersionToleranceTests (line 32) | public class ManualVersionToleranceTests method ManualVersionToleranceTests (line 41) | public ManualVersionToleranceTests(ITestOutputHelper log) method VersionTolerance_RoundTrip_Tests (line 67) | [Fact] method GetSession (line 142) | private SerializerSession GetSession() => _serviceProvider.GetRequired... method RoundTripTest (line 144) | private void RoundTripTest(SubType expected, bool assertRef = true) method TestSkip (line 187) | private void TestSkip(SubType expected) method GetReadReferenceTable (line 212) | private static StringBuilder GetReadReferenceTable(SerializerSession s... method GetWriteReferenceTable (line 223) | private static StringBuilder GetWriteReferenceTable(SerializerSession ... method ObjectWithNewFieldTest (line 234) | [Fact] method ObjectWithoutNewFieldTest (line 298) | [Fact] method GetGeneratedSerializer (line 361) | private static void GetGeneratedSerializer(out IFieldCodec seria... class ObjectWithNewField (line 369) | [GenerateSerializer] method ObjectWithNewField (line 379) | public ObjectWithNewField(string blah, object newField) method ToString (line 386) | public override string ToString() => $"{nameof(Blah)}: {Blah}; {name... class ObjectWithNewFieldTypeSerializer (line 389) | public class ObjectWithNewFieldTypeSerializer : IBaseCodec(ref Writer write... method Deserialize (line 399) | public void Deserialize(ref Reader reader, ObjectWit... class ObjectWithoutNewField (line 404) | [GenerateSerializer] method ObjectWithoutNewField (line 412) | public ObjectWithoutNewField(string blah) method ToString (line 418) | public override string ToString() => $"{nameof(Blah)}: {Blah}; {name... class ObjectWithoutNewFieldTypeSerializer (line 421) | public class ObjectWithoutNewFieldTypeSerializer : IBaseCodec(ref Writer write... method Deserialize (line 432) | public void Deserialize(ref Reader reader, ObjectWit... class BaseType (line 440) | public class BaseType : IEquatable method Equals (line 445) | public bool Equals(BaseType other) => other is not null method Equals (line 449) | public override bool Equals(object obj) => obj is BaseType baseType ... method GetHashCode (line 451) | public override int GetHashCode() => HashCode.Combine(BaseTypeString... method ToString (line 453) | public override string ToString() => $"{nameof(BaseTypeString)}: {Ba... class SubType (line 459) | public class SubType : BaseType, IEquatable method Equals (line 470) | public bool Equals(SubType other) method ToString (line 484) | public override string ToString() method Equals (line 490) | public override bool Equals(object obj) => obj is SubType subType &&... method GetHashCode (line 492) | public override int GetHashCode() class SubTypeSerializer (line 504) | public class SubTypeSerializer : IBaseCodec method SubTypeSerializer (line 511) | public SubTypeSerializer(IBaseCodec baseTypeSerializer, IF... method Serialize (line 519) | public void Serialize(ref Writer write... method Deserialize (line 533) | public void Deserialize(ref Reader reader, SubType obj) class BaseTypeSerializer (line 565) | public class BaseTypeSerializer : IBaseCodec method Serialize (line 567) | public void Serialize(ref Writer write... method Deserialize (line 573) | public void Deserialize(ref Reader reader, BaseType ... FILE: test/Orleans.Serialization.UnitTests/MemoryPackSerializerTests.cs class MemoryPackCodecTests (line 32) | [Trait("Category", "BVT")] method MemoryPackCodecTests (line 35) | public MemoryPackCodecTests(ITestOutputHelper output) : base(output) method Configure (line 39) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 44) | protected override MyMemoryPackClass? CreateValue() => new() { IntProp... method MemoryPackSerializerDeepCopyTyped (line 56) | [Fact] method MemoryPackSerializerDeepCopyUntyped (line 68) | [Fact] method MemoryPackSerializerRoundTripThroughCodec (line 80) | [Fact] method MemoryPackSerializerRoundTripThroughUntypedSerializer (line 90) | [Fact] class MemoryPackUnionCodecTests (line 103) | [Trait("Category", "BVT")] method MemoryPackUnionCodecTests (line 106) | public MemoryPackUnionCodecTests(ITestOutputHelper output) : base(output) method Configure (line 110) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 115) | protected override IMyMemoryPackUnion? CreateValue() => new MyMemoryPa... class MemoryPackCodecCopierTests (line 126) | [Trait("Category", "BVT")] method MemoryPackCodecCopierTests (line 129) | public MemoryPackCodecCopierTests(ITestOutputHelper output) : base(out... method Configure (line 133) | protected override void Configure(ISerializerBuilder builder) method CreateCopier (line 137) | protected override IDeepCopier CreateCopier() => S... method CreateValue (line 139) | protected override MyMemoryPackClass? CreateValue() => new() { IntProp... FILE: test/Orleans.Serialization.UnitTests/MessagePackSerializerTests.cs class MessagePackCodecTests (line 32) | [Trait("Category", "BVT")] method MessagePackCodecTests (line 35) | public MessagePackCodecTests(ITestOutputHelper output) : base(output) method Configure (line 39) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 44) | protected override MyMessagePackClass? CreateValue() => new() { IntPro... method MessagePackSerializerDeepCopyTyped (line 56) | [Fact] method MessagePackSerializerDeepCopyUntyped (line 68) | [Fact] method MessagePackSerializerRoundTripThroughCodec (line 80) | [Fact] method MessagePackSerializerRoundTripThroughUntypedSerializer (line 90) | [Fact] class MessagePackUnionCodecTests (line 103) | [Trait("Category", "BVT")] method MessagePackUnionCodecTests (line 106) | public MessagePackUnionCodecTests(ITestOutputHelper output) : base(out... method Configure (line 110) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 115) | protected override IMyMessagePackUnion? CreateValue() => new MyMessage... class MessagePackCodecCopierTests (line 126) | [Trait("Category", "BVT")] method MessagePackCodecCopierTests (line 129) | public MessagePackCodecCopierTests(ITestOutputHelper output) : base(ou... method Configure (line 133) | protected override void Configure(ISerializerBuilder builder) method CreateCopier (line 137) | protected override IDeepCopier CreateCopier() => ... method CreateValue (line 139) | protected override MyMessagePackClass? CreateValue() => new() { IntPro... FILE: test/Orleans.Serialization.UnitTests/Models.cs type Person (line 15) | [Alias("test.person.alias"), GenerateSerializer] type Person2 (line 25) | [GenerateSerializer] type Person3 (line 35) | [GenerateSerializer(IncludePrimaryConstructorParameters = false)] type Person4 (line 45) | [GenerateSerializer] type Person5 (line 48) | [GenerateSerializer(IncludePrimaryConstructorParameters = false)] class Person5_Class (line 58) | [GenerateSerializer] class MyJsonSerializableAttribute (line 67) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class MyNewtonsoftJsonSerializableAttribute (line 72) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] type IMyBase (line 77) | internal interface IMyBase type IMySub (line 82) | internal interface IMySub : IMyBase class MyValue (line 87) | [GenerateSerializer] method MyValue (line 93) | public MyValue(int value) => Value = value; method Equals (line 98) | public bool Equals(MyValue other) method Equals (line 103) | public override bool Equals(object obj) method GetHashCode (line 108) | public override int GetHashCode() => Value; class MyImmutableBase (line 111) | [GenerateSerializer] class MyMutableSub (line 119) | [GenerateSerializer] class MyImmutableSub (line 126) | [GenerateSerializer] class MyMutableBase (line 134) | [GenerateSerializer] class MySealedSub (line 141) | [GenerateSerializer] class MySealedImmutableSub (line 148) | [GenerateSerializer] class MyUnsealedImmutableSub (line 156) | [GenerateSerializer] class MySuppressReferenceTrackingValue (line 164) | [GenerateSerializer] method MySuppressReferenceTrackingValue (line 168) | public MySuppressReferenceTrackingValue(int value) : base(value) class MyCustomException (line 173) | [GenerateSerializer] method MyCustomException (line 176) | public MyCustomException() { } method MyCustomException (line 177) | public MyCustomException(string message) : base(message) { } method MyCustomException (line 178) | public MyCustomException(string message, Exception inner) : base(messa... method MyCustomException (line 182) | public MyCustomException(SerializationInfo info, StreamingContext cont... class MyCustomForeignException (line 188) | public class MyCustomForeignException : Exception method MyCustomForeignException (line 190) | public MyCustomForeignException(int customInt) method MyCustomForeignException (line 198) | public MyCustomForeignException(SerializationInfo info, StreamingConte... type MyCustomForeignExceptionSurrogate (line 204) | [GenerateSerializer] method MyCustomForeignExceptionSurrogate (line 210) | public MyCustomForeignExceptionSurrogate(int customInt) class MyCustomForeignExceptionSurrogateConverter (line 216) | [RegisterConverter] method ConvertFromSurrogate (line 219) | public MyCustomForeignException ConvertFromSurrogate(in MyCustomForeig... method ConvertToSurrogate (line 222) | public MyCustomForeignExceptionSurrogate ConvertToSurrogate(in MyCusto... class SomeClassWithSerializers (line 226) | [GenerateSerializer] method ToString (line 239) | public override string ToString() => $"{nameof(IntField)}: {IntField},... method ToString (line 578) | public override string ToString() => $"{nameof(IntField)}: {IntField},... class MyForeignLibraryType (line 244) | public class MyForeignLibraryType method MyForeignLibraryType (line 246) | public MyForeignLibraryType() { } method MyForeignLibraryType (line 248) | public MyForeignLibraryType(int num, string str, DateTimeOffset dto) method Equals (line 259) | public override bool Equals(object obj) => method GetHashCode (line 265) | public override int GetHashCode() => HashCode.Combine(Num, String, Dat... type MyForeignLibraryTypeSurrogate (line 268) | [GenerateSerializer] class MyForeignLibraryTypeSurrogateConverter (line 281) | [RegisterConverter] method ConvertFromSurrogate (line 284) | public MyForeignLibraryType ConvertFromSurrogate(in MyForeignLibraryTy... method ConvertToSurrogate (line 287) | public MyForeignLibraryTypeSurrogate ConvertToSurrogate(in MyForeignLi... method Populate (line 289) | public void Populate(in MyForeignLibraryTypeSurrogate surrogate, MyFor... class WrapsMyForeignLibraryType (line 297) | [GenerateSerializer] method Equals (line 309) | public override bool Equals(object obj) => obj is WrapsMyForeignLibrar... method GetHashCode (line 310) | public override int GetHashCode() => HashCode.Combine(IntValue, Foreig... class DerivedFromMyForeignLibraryType (line 313) | [GenerateSerializer] method DerivedFromMyForeignLibraryType (line 316) | public DerivedFromMyForeignLibraryType() { } method DerivedFromMyForeignLibraryType (line 317) | public DerivedFromMyForeignLibraryType(int intValue, int num, string s... method Equals (line 325) | public override bool Equals(object obj) => obj is DerivedFromMyForeign... method GetHashCode (line 326) | public override int GetHashCode() => HashCode.Combine(base.GetHashCode... type MyForeignLibraryValueType (line 329) | public struct MyForeignLibraryValueType method MyForeignLibraryValueType (line 331) | public MyForeignLibraryValueType(int num, string str, DateTimeOffset dto) method Equals (line 342) | public override readonly bool Equals(object obj) => method GetHashCode (line 348) | public override readonly int GetHashCode() => HashCode.Combine(Num, St... type MyForeignLibraryValueTypeSurrogate (line 351) | [GenerateSerializer] class MyForeignLibraryValueTypeSurrogateConverter (line 364) | [RegisterConverter] method ConvertFromSurrogate (line 367) | public MyForeignLibraryValueType ConvertFromSurrogate(in MyForeignLibr... method ConvertToSurrogate (line 370) | public MyForeignLibraryValueTypeSurrogate ConvertToSurrogate(in MyFore... type WrapsMyForeignLibraryValueType (line 374) | [GenerateSerializer] method Equals (line 386) | public override readonly bool Equals(object obj) => obj is WrapsMyFore... method GetHashCode (line 387) | public override readonly int GetHashCode() => HashCode.Combine(IntValu... class MyNonJsonBaseClass (line 390) | [GenerateSerializer] method ToString (line 397) | public override string ToString() => $"{nameof(IntProperty)}: {IntProp... method Equals (line 398) | public bool Equals(MyNonJsonBaseClass other) => other is not null && (... method Equals (line 399) | public override bool Equals(object obj) => Equals(obj as MyNonJsonBase... method GetHashCode (line 400) | public override int GetHashCode() => HashCode.Combine(IntProperty); class MyNewtonsoftJsonClass (line 403) | [MyNewtonsoftJsonSerializable] method ToString (line 418) | public override string ToString() => $"{nameof(SubTypeProperty)}: {Sub... method Equals (line 419) | public bool Equals(MyNewtonsoftJsonClass other) => other is not null &... method Equals (line 422) | public override bool Equals(object obj) => Equals(obj as MyJsonClass); method GetHashCode (line 423) | public override int GetHashCode() => HashCode.Combine(base.GetHashCode... class MyJsonClass (line 426) | [MyJsonSerializable] method ToString (line 441) | public override string ToString() => $"{nameof(SubTypeProperty)}: {Sub... method Equals (line 442) | public bool Equals(MyJsonClass other) => other is not null && base.Equ... method Equals (line 445) | public override bool Equals(object obj) => Equals(obj as MyJsonClass); method GetHashCode (line 446) | public override int GetHashCode() => HashCode.Combine(base.GetHashCode... type TestId (line 449) | [System.Text.Json.Serialization.JsonConverter(typeof(StronglyTypedIdJson... type StronglyTypedId (line 452) | public abstract record StronglyTypedId(TValue Value) class StronglyTypedIdJsonConverter (line 458) | file class StronglyTypedIdJsonConverter : Syst... method Read (line 462) | public override TStronglyTypedId Read(ref Utf8JsonReader reader, Type ... method Write (line 474) | public override void Write(Utf8JsonWriter writer, TStronglyTypedId val... class StronglyTypedIdHelper (line 487) | file static class StronglyTypedIdHelper method GetFactory (line 491) | public static Func GetFactory(Type stronglyTyp... method CreateFactory (line 499) | private static Func CreateFactory(Type strongl... method IsStronglyTypedId (line 519) | public static bool IsStronglyTypedId(Type type) => IsStronglyTypedId(t... method IsStronglyTypedId (line 521) | public static bool IsStronglyTypedId(Type type, out Type idType) type MyCustomEnum (line 541) | [GenerateSerializer] class RecursiveClass (line 550) | [GenerateSerializer] class SomeClassWithSerializers (line 560) | [GenerateSerializer] method ToString (line 239) | public override string ToString() => $"{nameof(IntField)}: {IntField},... method ToString (line 578) | public override string ToString() => $"{nameof(IntField)}: {IntField},... class PocoWithAutogeneratedIds (line 581) | [GenerateSerializer(GenerateFieldIds = GenerateFieldIds.PublicProperties)] method Equals (line 596) | public override bool Equals(object obj) => Equals(obj as PocoWithAutog... method Equals (line 597) | public bool Equals(PocoWithAutogeneratedIds other) => other is not null method GetHashCode (line 610) | public override int GetHashCode() class SerializableClassWithCompiledBase (line 631) | [GenerateSerializer] class ClassWithRequiredMembers (line 640) | [GenerateSerializer] class SubClassWithRequiredMembersInBase (line 650) | [GenerateSerializer] class DerivedFromDictionary (line 656) | [GenerateSerializer] method DerivedFromDictionary (line 659) | public DerivedFromDictionary(IEqualityComparer comparer) : base(... class GenericPoco (line 667) | [GenerateSerializer] class GenericPocoWithConstraint (line 678) | [GenerateSerializer] class Outer (line 690) | public sealed class Outer class InnerNonGen (line 692) | [GenerateSerializer] class InnerGen (line 698) | [GenerateSerializer] class ArrayPoco (line 705) | [GenerateSerializer] class ImmutableClass (line 727) | [GenerateSerializer] method ImmutableClass (line 731) | public ImmutableClass(int intProperty, int intField, int unmarkedField... method GetIntField (line 744) | public int GetIntField() => _intField; method ToString (line 750) | public override string ToString() => $"{nameof(_intField)}: {_intField... type ImmutableStruct (line 753) | [GenerateSerializer] method ImmutableStruct (line 756) | public ImmutableStruct(int intProperty, int intField) method GetIntField (line 766) | public readonly int GetIntField() => _intField; method ToString (line 768) | public override readonly string ToString() => $"{nameof(_intField)}: {... class SystemCollectionsClass (line 771) | [GenerateSerializer] class ClassWithLargeCollectionAndUri (line 793) | [GenerateSerializer] class ClassWithManualSerializableProperty (line 803) | [GenerateSerializer] class ClassWithImplicitFieldIds (line 828) | [GenerateSerializer(GenerateFieldIds = GenerateFieldIds.PublicProperties... method ClassWithImplicitFieldIds (line 834) | public ClassWithImplicitFieldIds(string stringValue, MyCustomEnum enum... method ToString (line 840) | public override string ToString() => $"{nameof(StringValue)}: {StringV... class ClassWithTypeFields (line 843) | [GenerateSerializer] class MyFirstForeignLibraryType (line 851) | public class MyFirstForeignLibraryType method Equals (line 858) | public override bool Equals(object obj) => method GetHashCode (line 864) | public override int GetHashCode() => HashCode.Combine(Num, String, Dat... class MySecondForeignLibraryType (line 867) | public class MySecondForeignLibraryType method Equals (line 873) | public override bool Equals(object obj) => method GetHashCode (line 879) | public override int GetHashCode() => HashCode.Combine(Name, Value, Tim... type MyFirstForeignLibraryTypeSurrogate (line 882) | [GenerateSerializer] type MySecondForeignLibraryTypeSurrogate (line 896) | [GenerateSerializer] class MyCombinedForeignLibraryValueTypeSurrogateConverter (line 909) | [RegisterConverter] method ConvertFromSurrogate (line 914) | public MyFirstForeignLibraryType ConvertFromSurrogate(in MyFirstForeig... method ConvertToSurrogate (line 916) | public MyFirstForeignLibraryTypeSurrogate ConvertToSurrogate(in MyFirs... method ConvertFromSurrogate (line 919) | public MySecondForeignLibraryType ConvertFromSurrogate(in MySecondFore... method ConvertToSurrogate (line 921) | public MySecondForeignLibraryTypeSurrogate ConvertToSurrogate(in MySec... type MyMessagePackClass (line 925) | [MessagePackObject] type MyMessagePackSubClass (line 941) | [MessagePackObject] type IMyMessagePackUnion (line 948) | [Union(0, typeof(MyMessagePackUnionVariant1))] type MyMessagePackUnionVariant1 (line 954) | [MessagePackObject] type MyMessagePackUnionVariant2 (line 961) | [MessagePackObject] type MyMemoryPackClass (line 968) | [MemoryPackable] type MyMemoryPackSubClass (line 980) | [MemoryPackable] type IMyMemoryPackUnion (line 986) | [MemoryPackable] type MyMemoryPackUnionVariant1 (line 993) | [MemoryPackable] type MyMemoryPackUnionVariant2 (line 999) | [MemoryPackable] FILE: test/Orleans.Serialization.UnitTests/NewtonsoftJsonCodecTests.cs class NewtonsoftJsonCodecTests (line 30) | [Trait("Category", "BVT")] method NewtonsoftJsonCodecTests (line 33) | public NewtonsoftJsonCodecTests(ITestOutputHelper output) : base(output) method Configure (line 37) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 42) | protected override MyNewtonsoftJsonClass CreateValue() => new MyNewton... method NewtonsoftJsonDeepCopyTyped (line 54) | [Fact] method NewtonsoftJsonDeepCopyUntyped (line 65) | [Fact] method NewtonsoftJsonRoundTripThroughCodec (line 76) | [Fact] method NewtonsoftJsonRoundTripThroughUntypedSerializer (line 86) | [Fact] method CanSerializeNativeJsonTypes (line 97) | [Fact] class NewtonsoftJsonCodecCopierTests (line 112) | [Trait("Category", "BVT")] method NewtonsoftJsonCodecCopierTests (line 115) | public NewtonsoftJsonCodecCopierTests(ITestOutputHelper output) : base... method Configure (line 119) | protected override void Configure(ISerializerBuilder builder) method CreateCopier (line 124) | protected override IDeepCopier CreateCopier() =... method CreateValue (line 126) | protected override MyNewtonsoftJsonClass CreateValue() => new MyNewton... method CanCopyNativeJsonTypes (line 136) | [Fact] FILE: test/Orleans.Serialization.UnitTests/NumericsWideningAndNarrowingTests.cs class NumericsWideningAndNarrowingTests (line 30) | public class NumericsWideningAndNarrowingTests method NumericsWideningAndNarrowingTests (line 35) | public NumericsWideningAndNarrowingTests() method UnsignedIntegerWideningAndNarrowingVersionToleranceTests (line 46) | [Fact] method SignedIntegerWideningAndNarrowingVersionToleranceTests (line 67) | [Fact] method FloatWideningAndNarrowingVersionToleranceTests (line 88) | [Fact] method ConversionRoundTrip (line 101) | private void ConversionRoundTrip() method FloatConversionRoundTrip (line 110) | private void FloatConversionRoundTrip() method WideningRoundTrip (line 119) | private void WideningRoundTrip() method NarrowingRoundTrip (line 138) | private void NarrowingRoundTrip() method NarrowingOverflow (line 157) | private void NarrowingOverflow() method FloatWideningRoundTrip (line 174) | private void FloatWideningRoundTrip() method FloatNarrowingRoundTrip (line 195) | private void FloatNarrowingRoundTrip() method RoundTripValue (line 216) | private void RoundTripValue(TLeft leftValue) method RoundTripValueDirectly (line 224) | private void RoundTripValueDirectly(TLeft leftValue) method RoundTripValueIndirectly (line 240) | private void RoundTripValueIndirectly(TLeft leftValue) class ValueHolder (line 256) | [GenerateSerializer] method NumericsWideningAndNarrowingTests (line 295) | public NumericsWideningAndNarrowingTests() method UnsignedIntegerWideningAndNarrowingVersionToleranceTests (line 306) | [Fact] method SignedIntegerWideningAndNarrowingVersionToleranceTests (line 322) | [Fact] method FloatWideningAndNarrowingVersionToleranceTests (line 338) | [Fact] method ConversionRoundTrip (line 353) | private void ConversionRoundTrip(INumber n, INumber w) method FloatConversionRoundTrip (line 360) | private void FloatConversionRoundTrip(INumber n, INumber w) method WideningRoundTrip (line 367) | private void WideningRoundTrip(INumber n, INumber w) method NarrowingRoundTrip (line 384) | private void NarrowingRoundTrip(INumber n, INumber w) method NarrowingOverflow (line 401) | private void NarrowingOverflow(INumber n, INumber w) method FloatWideningRoundTrip (line 416) | private void FloatWideningRoundTrip(INumber n, INumber w) method FloatNarrowingRoundTrip (line 435) | private void FloatNarrowingRoundTrip(INumber n, INumber w) method RoundTripValue (line 454) | private void RoundTripValue(TLeft leftValue, INumber(TLeft leftValue, IN... method RoundTripValueIndirectly (line 474) | private void RoundTripValueIndirectly(TLeft leftValue, ... class ValueHolder (line 488) | [GenerateSerializer] type INumber (line 495) | public interface INumber method Sign (line 500) | public int Sign(T value); method Add (line 501) | public T Add(T x, T y); method Subtract (line 502) | public T Subtract(T x, T y); method Divide (line 503) | public T Divide(T x, T y); method CreateTruncating (line 504) | public T CreateTruncating(TFrom from); class ByteNumber (line 507) | public sealed class ByteNumber : INumber method Sign (line 512) | public int Sign(byte value) => Math.Sign(value); method Add (line 514) | public byte Add(byte x, byte y) => (byte)(x + y); method Subtract (line 516) | public byte Subtract(byte x, byte y) => (byte)(x - y); method Divide (line 518) | public byte Divide(byte x, byte y) => (byte)(x / y); method CreateTruncating (line 520) | public byte CreateTruncating(TFrom from) => (byte)Convert.Cha... class UShortNumber (line 523) | public sealed class UShortNumber : INumber method Sign (line 528) | public int Sign(ushort value) => 1; method Add (line 530) | public ushort Add(ushort x, ushort y) => (ushort)(x + y); method Subtract (line 532) | public ushort Subtract(ushort x, ushort y) => (ushort)(x - y); method Divide (line 534) | public ushort Divide(ushort x, ushort y) => (ushort)(x / y); method CreateTruncating (line 536) | public ushort CreateTruncating(TFrom from) => (ushort)Convert... class UIntNumber (line 539) | public sealed class UIntNumber : INumber method Sign (line 544) | public int Sign(uint value) => 1; method Add (line 546) | public uint Add(uint x, uint y) => x + y; method Subtract (line 548) | public uint Subtract(uint x, uint y) => x - y; method Divide (line 550) | public uint Divide(uint x, uint y) => x / y; method CreateTruncating (line 552) | public uint CreateTruncating(TFrom from) => (uint)Convert.Cha... class ULongNumber (line 555) | public sealed class ULongNumber : INumber method Sign (line 560) | public int Sign(ulong value) => 1; method Add (line 562) | public ulong Add(ulong x, ulong y) => x + y; method Subtract (line 564) | public ulong Subtract(ulong x, ulong y) => x - y; method Divide (line 566) | public ulong Divide(ulong x, ulong y) => x / y; method CreateTruncating (line 568) | public ulong CreateTruncating(TFrom from) => (ulong)Convert.C... class SByteNumber (line 571) | public sealed class SByteNumber : INumber method Sign (line 576) | public int Sign(sbyte value) => Math.Sign(value); method Add (line 578) | public sbyte Add(sbyte x, sbyte y) => (sbyte)(x + y); method Subtract (line 580) | public sbyte Subtract(sbyte x, sbyte y) => (sbyte)(x - y); method Divide (line 582) | public sbyte Divide(sbyte x, sbyte y) => (sbyte)(x / y); method CreateTruncating (line 584) | public sbyte CreateTruncating(TFrom from) => (sbyte)Convert.C... class ShortNumber (line 587) | public sealed class ShortNumber : INumber method Sign (line 592) | public int Sign(short value) => Math.Sign(value); method Add (line 594) | public short Add(short x, short y) => (short)(x + y); method Subtract (line 596) | public short Subtract(short x, short y) => (short)(x - y); method Divide (line 598) | public short Divide(short x, short y) => (short)(x / y); method CreateTruncating (line 600) | public short CreateTruncating(TFrom from) => (short)Convert.C... class IntNumber (line 603) | public sealed class IntNumber : INumber method Sign (line 608) | public int Sign(int value) => Math.Sign(value); method Add (line 610) | public int Add(int x, int y) => x + y; method Subtract (line 612) | public int Subtract(int x, int y) => x - y; method Divide (line 614) | public int Divide(int x, int y) => x / y; method CreateTruncating (line 616) | public int CreateTruncating(TFrom from) => (int)Convert.Chang... class LongNumber (line 619) | public sealed class LongNumber : INumber method Sign (line 624) | public int Sign(long value) => Math.Sign(value); method Add (line 626) | public long Add(long x, long y) => x + y; method Subtract (line 628) | public long Subtract(long x, long y) => x - y; method Divide (line 630) | public long Divide(long x, long y) => x / y; method CreateTruncating (line 632) | public long CreateTruncating(TFrom from) => (long)Convert.Cha... class FloatNumber (line 635) | public sealed class FloatNumber : INumber method Sign (line 640) | public int Sign(float value) => Math.Sign(value); method Add (line 642) | public float Add(float x, float y) => x + y; method Subtract (line 644) | public float Subtract(float x, float y) => x - y; method Divide (line 646) | public float Divide(float x, float y) => x / y; method CreateTruncating (line 648) | public float CreateTruncating(TFrom from) => (float)Convert.C... class DoubleNumber (line 651) | public sealed class DoubleNumber : INumber method Sign (line 656) | public int Sign(double value) => Math.Sign(value); method Add (line 658) | public double Add(double x, double y) => x + y; method Subtract (line 660) | public double Subtract(double x, double y) => x - y; method Divide (line 662) | public double Divide(double x, double y) => x / y; method CreateTruncating (line 664) | public double CreateTruncating(TFrom from) => (double)Convert... class DecimalNumber (line 667) | public sealed class DecimalNumber : INumber method Sign (line 672) | public int Sign(decimal value) => Math.Sign(value); method Add (line 674) | public decimal Add(decimal x, decimal y) => x + y; method Subtract (line 676) | public decimal Subtract(decimal x, decimal y) => x - y; method Divide (line 678) | public decimal Divide(decimal x, decimal y) => x / y; method CreateTruncating (line 680) | public decimal CreateTruncating(TFrom from) => (decimal)Conve... class HalfNumber (line 684) | public sealed class HalfNumber : INumber method Sign (line 689) | public int Sign(Half value) => Math.Sign(value); method Add (line 691) | public Half Add(Half x, Half y) => x + y; method Subtract (line 693) | public Half Subtract(Half x, Half y) => x - y; method Divide (line 695) | public Half Divide(Half x, Half y) => x / y; method CreateTruncating (line 697) | public Half CreateTruncating(TFrom from) => (Half)Convert.Cha... class NumericsWideningAndNarrowingTests (line 275) | public class NumericsWideningAndNarrowingTests method NumericsWideningAndNarrowingTests (line 35) | public NumericsWideningAndNarrowingTests() method UnsignedIntegerWideningAndNarrowingVersionToleranceTests (line 46) | [Fact] method SignedIntegerWideningAndNarrowingVersionToleranceTests (line 67) | [Fact] method FloatWideningAndNarrowingVersionToleranceTests (line 88) | [Fact] method ConversionRoundTrip (line 101) | private void ConversionRoundTrip() method FloatConversionRoundTrip (line 110) | private void FloatConversionRoundTrip() method WideningRoundTrip (line 119) | private void WideningRoundTrip() method NarrowingRoundTrip (line 138) | private void NarrowingRoundTrip() method NarrowingOverflow (line 157) | private void NarrowingOverflow() method FloatWideningRoundTrip (line 174) | private void FloatWideningRoundTrip() method FloatNarrowingRoundTrip (line 195) | private void FloatNarrowingRoundTrip() method RoundTripValue (line 216) | private void RoundTripValue(TLeft leftValue) method RoundTripValueDirectly (line 224) | private void RoundTripValueDirectly(TLeft leftValue) method RoundTripValueIndirectly (line 240) | private void RoundTripValueIndirectly(TLeft leftValue) class ValueHolder (line 256) | [GenerateSerializer] method NumericsWideningAndNarrowingTests (line 295) | public NumericsWideningAndNarrowingTests() method UnsignedIntegerWideningAndNarrowingVersionToleranceTests (line 306) | [Fact] method SignedIntegerWideningAndNarrowingVersionToleranceTests (line 322) | [Fact] method FloatWideningAndNarrowingVersionToleranceTests (line 338) | [Fact] method ConversionRoundTrip (line 353) | private void ConversionRoundTrip(INumber n, INumber w) method FloatConversionRoundTrip (line 360) | private void FloatConversionRoundTrip(INumber n, INumber w) method WideningRoundTrip (line 367) | private void WideningRoundTrip(INumber n, INumber w) method NarrowingRoundTrip (line 384) | private void NarrowingRoundTrip(INumber n, INumber w) method NarrowingOverflow (line 401) | private void NarrowingOverflow(INumber n, INumber w) method FloatWideningRoundTrip (line 416) | private void FloatWideningRoundTrip(INumber n, INumber w) method FloatNarrowingRoundTrip (line 435) | private void FloatNarrowingRoundTrip(INumber n, INumber w) method RoundTripValue (line 454) | private void RoundTripValue(TLeft leftValue, INumber(TLeft leftValue, IN... method RoundTripValueIndirectly (line 474) | private void RoundTripValueIndirectly(TLeft leftValue, ... class ValueHolder (line 488) | [GenerateSerializer] type INumber (line 495) | public interface INumber method Sign (line 500) | public int Sign(T value); method Add (line 501) | public T Add(T x, T y); method Subtract (line 502) | public T Subtract(T x, T y); method Divide (line 503) | public T Divide(T x, T y); method CreateTruncating (line 504) | public T CreateTruncating(TFrom from); class ByteNumber (line 507) | public sealed class ByteNumber : INumber method Sign (line 512) | public int Sign(byte value) => Math.Sign(value); method Add (line 514) | public byte Add(byte x, byte y) => (byte)(x + y); method Subtract (line 516) | public byte Subtract(byte x, byte y) => (byte)(x - y); method Divide (line 518) | public byte Divide(byte x, byte y) => (byte)(x / y); method CreateTruncating (line 520) | public byte CreateTruncating(TFrom from) => (byte)Convert.Cha... class UShortNumber (line 523) | public sealed class UShortNumber : INumber method Sign (line 528) | public int Sign(ushort value) => 1; method Add (line 530) | public ushort Add(ushort x, ushort y) => (ushort)(x + y); method Subtract (line 532) | public ushort Subtract(ushort x, ushort y) => (ushort)(x - y); method Divide (line 534) | public ushort Divide(ushort x, ushort y) => (ushort)(x / y); method CreateTruncating (line 536) | public ushort CreateTruncating(TFrom from) => (ushort)Convert... class UIntNumber (line 539) | public sealed class UIntNumber : INumber method Sign (line 544) | public int Sign(uint value) => 1; method Add (line 546) | public uint Add(uint x, uint y) => x + y; method Subtract (line 548) | public uint Subtract(uint x, uint y) => x - y; method Divide (line 550) | public uint Divide(uint x, uint y) => x / y; method CreateTruncating (line 552) | public uint CreateTruncating(TFrom from) => (uint)Convert.Cha... class ULongNumber (line 555) | public sealed class ULongNumber : INumber method Sign (line 560) | public int Sign(ulong value) => 1; method Add (line 562) | public ulong Add(ulong x, ulong y) => x + y; method Subtract (line 564) | public ulong Subtract(ulong x, ulong y) => x - y; method Divide (line 566) | public ulong Divide(ulong x, ulong y) => x / y; method CreateTruncating (line 568) | public ulong CreateTruncating(TFrom from) => (ulong)Convert.C... class SByteNumber (line 571) | public sealed class SByteNumber : INumber method Sign (line 576) | public int Sign(sbyte value) => Math.Sign(value); method Add (line 578) | public sbyte Add(sbyte x, sbyte y) => (sbyte)(x + y); method Subtract (line 580) | public sbyte Subtract(sbyte x, sbyte y) => (sbyte)(x - y); method Divide (line 582) | public sbyte Divide(sbyte x, sbyte y) => (sbyte)(x / y); method CreateTruncating (line 584) | public sbyte CreateTruncating(TFrom from) => (sbyte)Convert.C... class ShortNumber (line 587) | public sealed class ShortNumber : INumber method Sign (line 592) | public int Sign(short value) => Math.Sign(value); method Add (line 594) | public short Add(short x, short y) => (short)(x + y); method Subtract (line 596) | public short Subtract(short x, short y) => (short)(x - y); method Divide (line 598) | public short Divide(short x, short y) => (short)(x / y); method CreateTruncating (line 600) | public short CreateTruncating(TFrom from) => (short)Convert.C... class IntNumber (line 603) | public sealed class IntNumber : INumber method Sign (line 608) | public int Sign(int value) => Math.Sign(value); method Add (line 610) | public int Add(int x, int y) => x + y; method Subtract (line 612) | public int Subtract(int x, int y) => x - y; method Divide (line 614) | public int Divide(int x, int y) => x / y; method CreateTruncating (line 616) | public int CreateTruncating(TFrom from) => (int)Convert.Chang... class LongNumber (line 619) | public sealed class LongNumber : INumber method Sign (line 624) | public int Sign(long value) => Math.Sign(value); method Add (line 626) | public long Add(long x, long y) => x + y; method Subtract (line 628) | public long Subtract(long x, long y) => x - y; method Divide (line 630) | public long Divide(long x, long y) => x / y; method CreateTruncating (line 632) | public long CreateTruncating(TFrom from) => (long)Convert.Cha... class FloatNumber (line 635) | public sealed class FloatNumber : INumber method Sign (line 640) | public int Sign(float value) => Math.Sign(value); method Add (line 642) | public float Add(float x, float y) => x + y; method Subtract (line 644) | public float Subtract(float x, float y) => x - y; method Divide (line 646) | public float Divide(float x, float y) => x / y; method CreateTruncating (line 648) | public float CreateTruncating(TFrom from) => (float)Convert.C... class DoubleNumber (line 651) | public sealed class DoubleNumber : INumber method Sign (line 656) | public int Sign(double value) => Math.Sign(value); method Add (line 658) | public double Add(double x, double y) => x + y; method Subtract (line 660) | public double Subtract(double x, double y) => x - y; method Divide (line 662) | public double Divide(double x, double y) => x / y; method CreateTruncating (line 664) | public double CreateTruncating(TFrom from) => (double)Convert... class DecimalNumber (line 667) | public sealed class DecimalNumber : INumber method Sign (line 672) | public int Sign(decimal value) => Math.Sign(value); method Add (line 674) | public decimal Add(decimal x, decimal y) => x + y; method Subtract (line 676) | public decimal Subtract(decimal x, decimal y) => x - y; method Divide (line 678) | public decimal Divide(decimal x, decimal y) => x / y; method CreateTruncating (line 680) | public decimal CreateTruncating(TFrom from) => (decimal)Conve... class HalfNumber (line 684) | public sealed class HalfNumber : INumber method Sign (line 689) | public int Sign(Half value) => Math.Sign(value); method Add (line 691) | public Half Add(Half x, Half y) => x + y; method Subtract (line 693) | public Half Subtract(Half x, Half y) => x - y; method Divide (line 695) | public Half Divide(Half x, Half y) => x / y; method CreateTruncating (line 697) | public Half CreateTruncating(TFrom from) => (Half)Convert.Cha... FILE: test/Orleans.Serialization.UnitTests/PolymorphismTests.cs class CustomException (line 13) | [GenerateSerializer] method CustomException (line 16) | public CustomException() { } method CustomException (line 17) | public CustomException(string message) : base(message) { } method CustomException (line 18) | public CustomException(string message, Exception inner) : base(message... method CustomException (line 23) | public CustomException(SerializationInfo info, StreamingContext contex... class PolymorphismTests (line 50) | public class PolymorphismTests method PolymorphismTests (line 54) | public PolymorphismTests() class TypeConfigurationProvider (line 61) | private class TypeConfigurationProvider : IConfigureOptions(TActual original) method DeepCopy (line 277) | private T DeepCopy(T original) class SomeBaseClass (line 283) | [Id(1000)] class SomeSubClass (line 294) | [Id(1001)] class OtherSubClass (line 305) | [Id(1002)] class SomeSubClassChild (line 316) | [Id(1003)] FILE: test/Orleans.Serialization.UnitTests/PooledBufferTests.cs class PooledBufferTests (line 29) | [Trait("Category", "BVT")] method LargeBufferRoundTrip (line 32) | [Fact] method LargeBufferRoundTrip_Single (line 75) | [Fact] method LargeBufferRoundTrip_ReaderWriter (line 90) | [Fact] method PooledBuffer_WriteTwice (line 136) | [Fact] method PooledBuffer_SerializerRoundTrip (line 172) | [Fact] method PooledBuffer_SerializerRoundTrip_Embedded (line 212) | [Fact] type LargeObject (line 253) | [GenerateSerializer] method PooledBuffer_SliceEnumerators_OffsetCrossSegment_Correctness (line 276) | [Fact] method PooledBuffer_SliceEnumerators_OffsetAfterFirstSegment_CoversPositionGreaterThanZero (line 324) | [Fact] FILE: test/Orleans.Serialization.UnitTests/Properties/IsExternalInit.cs class IsExternalInit (line 3) | internal static class IsExternalInit {} FILE: test/Orleans.Serialization.UnitTests/Properties/RequiredMemberAttribute.cs class RequiredMemberAttribute (line 3) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | Attri... FILE: test/Orleans.Serialization.UnitTests/ProtobufSerializerTests.cs class ProtobufSerializerTests (line 37) | [Trait("Category", "BVT")] method ProtobufSerializerTests (line 40) | public ProtobufSerializerTests(ITestOutputHelper output) : base(output) method Configure (line 44) | protected override void Configure(ISerializerBuilder builder) method CreateValue (line 49) | protected override MyProtobufClass? CreateValue() => new() { IntProper... method ProtobufSerializerDeepCopyTyped (line 59) | [Fact] method ProtobufSerializerDeepCopyUntyped (line 70) | [Fact] method ProtobufSerializerRoundTripThroughCodec (line 81) | [Fact] method ProtobufSerializerRoundTripThroughUntypedSerializer (line 91) | [Fact] class ProtobufCodecCopierTests (line 103) | [Trait("Category", "BVT")] method ProtobufCodecCopierTests (line 106) | public ProtobufCodecCopierTests(ITestOutputHelper output) : base(output) method Configure (line 110) | protected override void Configure(ISerializerBuilder builder) method CreateCopier (line 114) | protected override IDeepCopier CreateCopier() => Ser... method CreateValue (line 116) | protected override MyProtobufClass? CreateValue() => new MyProtobufCla... class ProtobufRepeatedFieldCodecTests (line 127) | [Trait("Category", "BVT")] method ProtobufRepeatedFieldCodecTests (line 130) | public ProtobufRepeatedFieldCodecTests(ITestOutputHelper output) : bas... method CreateValue (line 134) | protected override RepeatedField CreateValue() method Equals (line 145) | protected override bool Equals(RepeatedField left, RepeatedField<... class ProtobufRepeatedFieldCopierTests (line 149) | [Trait("Category", "BVT")] method ProtobufRepeatedFieldCopierTests (line 152) | public ProtobufRepeatedFieldCopierTests(ITestOutputHelper output) : ba... method CreateCopier (line 156) | protected override IDeepCopier> CreateCopier() => S... method CreateValue (line 158) | protected override RepeatedField CreateValue() method Equals (line 169) | protected override bool Equals(RepeatedField left, RepeatedField<... class MapFieldCodecTests (line 173) | [Trait("Category", "BVT")] method MapFieldCodecTests (line 176) | public MapFieldCodecTests(ITestOutputHelper output) : base(output) method CreateValue (line 180) | protected override MapField CreateValue() method Equals (line 192) | protected override bool Equals(MapField left, MapField CreateValue() method Equals (line 214) | protected override bool Equals(MapField left, MapField Guid.NewGuid().ToByteSt... method Equals (line 226) | protected override bool Equals(ByteString left, ByteString right) => R... class ByteStringCopierTests (line 236) | [Trait("Category", "BVT")] method ByteStringCopierTests (line 239) | public ByteStringCopierTests(ITestOutputHelper output) : base(output) method CreateValue (line 243) | protected override ByteString CreateValue() => Guid.NewGuid().ToByteSt... method Equals (line 245) | protected override bool Equals(ByteString left, ByteString right) => R... class ProtobufGuidExtensions (line 255) | public static class ProtobufGuidExtensions method ToByteString (line 257) | public static ByteString ToByteString(this Guid guid) FILE: test/Orleans.Serialization.UnitTests/ReaderWriterTests.cs class ReaderWriterPoolingStreamTest (line 37) | [Trait("Category", "BVT")] method ReaderWriterPoolingStreamTest (line 40) | public ReaderWriterPoolingStreamTest(ITestOutputHelper output) : base(... method CreateBuffer (line 44) | protected override Stream CreateBuffer() => new MemoryStream(); method CreateReader (line 45) | protected override Reader CreateReader(Stream buffer, Ser... method CreateWriter (line 51) | protected override Writer CreateWriter(Stre... method GetBuffer (line 52) | protected override Stream GetBuffer(Stream originalBuffer, PoolingStre... method DisposeBuffer (line 53) | protected override void DisposeBuffer(Stream buffer, PoolingStreamBuff... method VarUInt32RoundTrip (line 59) | [Fact] method VarUInt64RoundTrip (line 62) | [Fact] method Int64RoundTrip (line 65) | [Fact] method Int32RoundTrip (line 68) | [Fact] method UInt64RoundTrip (line 71) | [Fact] method UInt32RoundTrip (line 74) | [Fact] method ByteRoundTrip (line 77) | [Fact] class ReaderWriterStreamTest (line 81) | [Trait("Category", "BVT")] method ReaderWriterStreamTest (line 84) | public ReaderWriterStreamTest(ITestOutputHelper output) : base(output) method CreateBuffer (line 88) | protected override Stream CreateBuffer() => new MemoryStream(); method CreateReader (line 89) | protected override Reader CreateReader(Stream buffer, Ser... method CreateWriter (line 95) | protected override Writer CreateWriter(Stream... method GetBuffer (line 96) | protected override Stream GetBuffer(Stream originalBuffer, ArrayStream... method DisposeBuffer (line 97) | protected override void DisposeBuffer(Stream buffer, ArrayStreamBuffer... method VarUInt32RoundTrip (line 99) | [Fact] method VarUInt64RoundTrip (line 102) | [Fact] method Int64RoundTrip (line 105) | [Fact] method Int32RoundTrip (line 108) | [Fact] method UInt64RoundTrip (line 111) | [Fact] method UInt32RoundTrip (line 114) | [Fact] method ByteRoundTrip (line 117) | [Fact] class ReaderWriterMemoryStreamTest (line 121) | [Trait("Category", "BVT")] method ReaderWriterMemoryStreamTest (line 124) | public ReaderWriterMemoryStreamTest(ITestOutputHelper output) : base(o... method CreateBuffer (line 128) | protected override MemoryStream CreateBuffer() => new(); method CreateReader (line 129) | protected override Reader CreateReader(MemoryStream buffe... method CreateWriter (line 135) | protected override Writer CreateWriter(Memor... method GetBuffer (line 136) | protected override MemoryStream GetBuffer(MemoryStream originalBuffer,... method DisposeBuffer (line 137) | protected override void DisposeBuffer(MemoryStream buffer, MemoryStrea... method VarUInt32RoundTrip (line 139) | [Fact] method VarUInt64RoundTrip (line 142) | [Fact] method Int64RoundTrip (line 145) | [Fact] method Int32RoundTrip (line 148) | [Fact] method UInt64RoundTrip (line 151) | [Fact] method UInt32RoundTrip (line 154) | [Fact] method ByteRoundTrip (line 157) | [Fact] class ReaderWriterSpanTest (line 161) | [Trait("Category", "BVT")] method ReaderWriterSpanTest (line 164) | public ReaderWriterSpanTest(ITestOutputHelper output) : base(output) method CreateBuffer (line 168) | protected override byte[] CreateBuffer() => new byte[100]; method CreateReader (line 169) | protected override Reader CreateReader(byte[] buffer,... method CreateWriter (line 170) | protected override Writer CreateWriter(byte[] buffer... method GetBuffer (line 171) | protected override byte[] GetBuffer(byte[] originalBuffer, SpanBufferW... method DisposeBuffer (line 172) | protected override void DisposeBuffer(byte[] buffer, SpanBufferWriter ... method VarUInt32RoundTrip (line 176) | [Fact] method VarUInt64RoundTrip (line 179) | [Fact] method Int64RoundTrip (line 182) | [Fact] method Int32RoundTrip (line 185) | [Fact] method UInt64RoundTrip (line 188) | [Fact] method UInt32RoundTrip (line 191) | [Fact] method ByteRoundTrip (line 194) | [Fact] class ReaderWriterSegmentWriterTest (line 198) | [Trait("Category", "BVT")] method ReaderWriterSegmentWriterTest (line 201) | public ReaderWriterSegmentWriterTest(ITestOutputHelper output) : base(... method CreateBuffer (line 205) | protected override TestMultiSegmentBufferWriter CreateBuffer() => new(... method CreateReader (line 206) | protected override Reader CreateReader(TestMult... method CreateWriter (line 207) | protected override Writer CreateWriter(T... method GetBuffer (line 208) | protected override TestMultiSegmentBufferWriter GetBuffer(TestMultiSeg... method DisposeBuffer (line 209) | protected override void DisposeBuffer(TestMultiSegmentBufferWriter buf... method VarUInt32RoundTrip (line 213) | [Fact] method VarUInt64RoundTrip (line 216) | [Fact] method Int64RoundTrip (line 219) | [Fact] method Int32RoundTrip (line 222) | [Fact] method UInt64RoundTrip (line 225) | [Fact] method UInt32RoundTrip (line 228) | [Fact] method ByteRoundTrip (line 231) | [Fact] method SkipBufferEdge_ReadOnlySequence (line 234) | [Fact] method SkipBufferEdge_BufferSlice (line 248) | [Fact] class ReaderWriterTestBase (line 293) | public abstract class ReaderWriterTestBase whe... method ReaderWriterTestBase (line 302) | public ReaderWriterTestBase(ITestOutputHelper testOutputHelper) method GetSession (line 311) | protected SerializerSession GetSession() => _sessionPool.GetSession(); method CreateBuffer (line 312) | protected abstract TBuffer CreateBuffer(); method CreateReader (line 313) | protected abstract Reader CreateReader(TBuffer buffer, Seriali... method CreateWriter (line 314) | protected abstract Writer CreateWriter(TBuffer buffer, Serial... method GetBuffer (line 315) | protected abstract TBuffer GetBuffer(TBuffer originalBuffer, TOutput o... method DisposeBuffer (line 316) | protected abstract void DisposeBuffer(TBuffer buffer, TOutput output); method CreateTestPredicate (line 318) | private Func CreateTestPredicate(WriteValue writeValue,... method VarUInt32RoundTrip (line 360) | public abstract void VarUInt32RoundTrip(); method VarUInt64RoundTrip (line 361) | public abstract void VarUInt64RoundTrip(); method Int64RoundTrip (line 362) | public abstract void Int64RoundTrip(); method Int32RoundTrip (line 363) | public abstract void Int32RoundTrip(); method UInt64RoundTrip (line 364) | public abstract void UInt64RoundTrip(); method UInt32RoundTrip (line 365) | public abstract void UInt32RoundTrip(); method ByteRoundTrip (line 366) | protected abstract void ByteRoundTrip(); method VarUInt32RoundTripTest (line 368) | protected void VarUInt32RoundTripTest() method VarUInt64RoundTripTest (line 376) | protected void VarUInt64RoundTripTest() method Int64RoundTripTest (line 384) | protected void Int64RoundTripTest() method Int32RoundTripTest (line 393) | protected void Int32RoundTripTest() method UInt64RoundTripTest (line 401) | protected void UInt64RoundTripTest() method UInt32RoundTripTest (line 409) | protected void UInt32RoundTripTest() method ByteRoundTripTest (line 417) | protected void ByteRoundTripTest() FILE: test/Orleans.Serialization.UnitTests/RecordSerializationTests.cs class RecordSerializationTests (line 31) | public class RecordSerializationTests method RecordSerializationTests (line 36) | public RecordSerializationTests() method CanSerializeEmptyAbstractRecord (line 44) | [Fact] method CanSerializePopulatedAbstractRecord (line 56) | [Fact] method CanSerializeRecordsWithEmptyHierarchyLayers (line 68) | [Fact] method CanSerializeRecordsInList (line 80) | [Fact] method Can_Roundtrip_WithListOfObject_Fruit (line 96) | [Fact] method Can_Roundtrip_With_Them_Apples (line 113) | [Fact] method Can_Roundtrip_WithListOfObject_Apple (line 132) | [Fact] method Can_Roundtrip_WithListOfFruit_Fruit (line 154) | [Fact] method Can_Roundtrip_WithListOfFruit_Apple (line 171) | [Fact] method Can_Roundtrip_WithListOfApple_Apple (line 188) | [Fact] method Can_Roundtrip_Fruit_Apple (line 205) | [Fact] method Can_Roundtrip_Foo (line 218) | [Fact] type EmptyAbstractRecord (line 266) | [GenerateSerializer] type DerivedFromEmptyAbstractRecord (line 271) | [GenerateSerializer] type NonEmptyAbstractRecord (line 283) | [GenerateSerializer] type DerivedFromNonEmptyAbstractRecord (line 295) | [GenerateSerializer] type RecordHierarchyDerived (line 307) | [GenerateSerializer] type RecordHierarchyMiddle (line 313) | [GenerateSerializer] type RecordHierarchyBase (line 316) | [GenerateSerializer] class FooWithListOfObject (line 322) | [GenerateSerializer] class TwoObjects (line 332) | [GenerateSerializer] class FooWithListOfFruit (line 342) | [GenerateSerializer] class FooWithListOfApple (line 352) | [GenerateSerializer] type FruitRecord (line 362) | [GenerateSerializer] type AppleRecord (line 365) | [GenerateSerializer] type FooRecord (line 368) | [GenerateSerializer] FILE: test/Orleans.Serialization.UnitTests/Request.cs class UnitTestRequestBase (line 7) | [GenerateSerializer] method GetArgumentCount (line 10) | public virtual int GetArgumentCount() => 0; method Invoke (line 11) | public abstract ValueTask Invoke(); method GetTarget (line 12) | public abstract object GetTarget(); method SetTarget (line 13) | public abstract void SetTarget(ITargetHolder holder); method GetArgument (line 14) | public virtual object GetArgument(int index) => throw new ArgumentOutO... method SetArgument (line 15) | public virtual void SetArgument(int index, object value) => throw new ... method Dispose (line 16) | public abstract void Dispose(); method GetMethodName (line 17) | public abstract string GetMethodName(); method GetInterfaceName (line 18) | public abstract string GetInterfaceName(); method GetActivityName (line 20) | public abstract string GetActivityName(); method GetInterfaceType (line 21) | public abstract Type GetInterfaceType(); method GetMethod (line 23) | public abstract MethodInfo GetMethod(); class UnitTestRequest (line 26) | [GenerateSerializer] method Invoke (line 29) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 48) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 62) | protected abstract ValueTask InvokeInner(); method Invoke (line 68) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 86) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 100) | protected abstract ValueTask InvokeInner(); class UnitTestRequest (line 65) | [GenerateSerializer] method Invoke (line 29) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 48) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 62) | protected abstract ValueTask InvokeInner(); method Invoke (line 68) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 86) | private static async ValueTask CompleteInvokeAsync(ValueTask... method InvokeInner (line 100) | protected abstract ValueTask InvokeInner(); class UnitTestTaskRequest (line 103) | [GenerateSerializer] method Invoke (line 106) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 125) | private static async ValueTask CompleteInvokeAsync(Task InvokeInner(); method Invoke (line 145) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 165) | private static async ValueTask CompleteInvokeAsync(Task resu... method InvokeInner (line 179) | protected abstract Task InvokeInner(); class UnitTestTaskRequest (line 142) | [GenerateSerializer] method Invoke (line 106) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 125) | private static async ValueTask CompleteInvokeAsync(Task InvokeInner(); method Invoke (line 145) | public sealed override ValueTask Invoke() method CompleteInvokeAsync (line 165) | private static async ValueTask CompleteInvokeAsync(Task resu... method InvokeInner (line 179) | protected abstract Task InvokeInner(); class UnitTestVoidRequest (line 182) | [GenerateSerializer] method Invoke (line 185) | public sealed override ValueTask Invoke() method InvokeInner (line 199) | protected abstract void InvokeInner(); FILE: test/Orleans.Serialization.UnitTests/TypeEncodingTests.cs class TypeEncodingTests (line 37) | public class TypeEncodingTests method TypeEncodingTests (line 43) | public TypeEncodingTests() method CompoundTypeAliasesAreEncodedAsExpected (line 52) | [Fact] method GeneratedProxyClassesHaveExpectedCompoundTypeNames (line 66) | [Fact] method GeneratedProxyClassesHaveExpectedCompoundTypeNames_Generic (line 99) | [Fact] method SerializePayload (line 120) | private (byte[] Serialized, string FormattedBitStream) SerializePayloa... method AliasAttributeIsApplied (line 128) | [Fact] class MyTypeAliasClass (line 145) | [Alias("_custom_type_alias_")] class MyCompoundTypeAliasBaseClass (line 150) | [GenerateSerializer] class MyCompoundTypeAliasClass (line 157) | [GenerateSerializer] FILE: test/Orleans.Streaming.Tests/OrleansRuntime/Streams/CachedMessageBlockTests.cs class CachedMessageBlockTests (line 11) | public class CachedMessageBlockTests class TestQueueMessage (line 16) | private class TestQueueMessage class TestBatchContainer (line 22) | [GenerateSerializer] method GetEvents (line 31) | public IEnumerable> GetEvents() method ImportRequestContext (line 36) | public bool ImportRequestContext() class TestCacheDataAdapter (line 42) | private class TestCacheDataAdapter : ICacheDataAdapter method GetBatchContainer (line 44) | public IBatchContainer GetBatchContainer(ref CachedMessage cachedMes... method GetSequenceToken (line 53) | public StreamSequenceToken GetSequenceToken(ref CachedMessage cached... method GetStreamPosition (line 59) | private StreamPosition GetStreamPosition(TestQueueMessage queueMessage) method QueueMessageToCachedMessage (line 66) | private CachedMessage QueueMessageToCachedMessage(TestQueueMessage que... class MyTestPooled (line 77) | private class MyTestPooled : IObjectPool method Allocate (line 79) | public CachedMessageBlock Allocate() method Free (line 84) | public void Free(CachedMessageBlock resource) method Add1Remove1Test (line 89) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method Add2Remove1UntilFull (line 100) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method FirstMessageWithSequenceNumberTest (line 131) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method NextInStreamTest (line 155) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method AddAndCheck (line 216) | private void AddAndCheck(CachedMessageBlock block, ICacheDataAdapter d... method AddAndCheck (line 226) | private void AddAndCheck(CachedMessageBlock block, ICacheDataAdapter d... method RemoveAndCheck (line 243) | private void RemoveAndCheck(CachedMessageBlock block, int first, int l... FILE: test/Orleans.Streaming.Tests/OrleansRuntime/Streams/FixedSizeBufferTests.cs class FixedSizeBufferTests (line 9) | public class FixedSizeBufferTests class MyTestPooled (line 13) | private class MyTestPooled : IObjectPool method Allocate (line 18) | public FixedSizeBuffer Allocate() method Free (line 24) | public void Free(FixedSizeBuffer resource) method EmptyBlockGetSegmentTooLargeBvt (line 30) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method EmptyBlockTryGetMaxSegmentBvt (line 44) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method FillBlockTestBvt (line 56) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method MyTestPurge (line 76) | private void MyTestPurge(IDisposable resource, FixedSizeBuffer actualB... FILE: test/Orleans.Streaming.Tests/OrleansRuntime/Streams/ObjectPoolTests.cs class ObjectPoolTests (line 9) | public class ObjectPoolTests class Accumulator (line 11) | private class Accumulator class TestPooledResource (line 17) | private class TestPooledResource : PooledResource method TestPooledResource (line 23) | public TestPooledResource(Accumulator accumulator) method OnResetState (line 30) | public override void OnResetState() method Alloc1Free1Test (line 37) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method Alloc10Free1Test (line 52) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method ReuseResourceTest (line 78) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] FILE: test/Orleans.Streaming.Tests/OrleansRuntime/Streams/PooledQueueCacheTests.cs class PooledQueueCacheTests (line 10) | public class PooledQueueCacheTests class TestQueueMessage (line 18) | private class TestQueueMessage class TestBatchContainer (line 27) | [GenerateSerializer] method GetEvents (line 39) | public IEnumerable> GetEvents() method ImportRequestContext (line 44) | public bool ImportRequestContext() class TestCacheDataAdapter (line 51) | private class TestCacheDataAdapter : ICacheDataAdapter method GetBatchContainer (line 53) | public IBatchContainer GetBatchContainer(ref CachedMessage cachedMes... method GetSequenceToken (line 67) | public StreamSequenceToken GetSequenceToken(ref CachedMessage cached... class CachedMessageConverter (line 74) | private class CachedMessageConverter method CachedMessageConverter (line 81) | public CachedMessageConverter(IObjectPool bufferPoo... method ToCachedMessage (line 87) | public CachedMessage ToCachedMessage(TestQueueMessage queueMessage, ... method GetStreamPosition (line 100) | private StreamPosition GetStreamPosition(TestQueueMessage queueMessage) method SerializeMessageIntoPooledSegment (line 106) | private ArraySegment SerializeMessageIntoPooledSegment(TestQue... method GoldenPathTest (line 140) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method CacheDrainTest (line 157) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method AvoidCacheMissNotEmptyCache (line 172) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method AvoidCacheMissEmptyCache (line 178) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method AvoidCacheMissMultipleStreamsActive (line 184) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method AvoidCacheMiss (line 237) | private void AvoidCacheMiss(bool emptyCache) method SimpleCacheMiss (line 295) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method RunGoldenPath (line 351) | private int RunGoldenPath(PooledQueueCache cache, CachedMessageConvert... FILE: test/Orleans.Streaming.Tests/StreamingTests/BroadcastChannels/BroadcastChannelTests.cs class BroadcastChannelTests (line 13) | [TestCategory("BVT")] class Fixture (line 23) | public class Fixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 25) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 30) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 35) | public class SiloConfigurator : ISiloConfigurator method Configure (line 37) | public void Configure(ISiloBuilder hostBuilder) class ClientConfigurator (line 43) | public class ClientConfigurator : IClientBuilderConfigurator method Configure (line 45) | public void Configure(IConfiguration configuration, IClientBuilder... method BroadcastChannelTests (line 53) | public BroadcastChannelTests(Fixture fixture) method ClientPublishSingleChannelTest (line 59) | [Fact] method ClientPublishSingleChannelMultipleConsumersTest (line 62) | [Fact] method ClientPublishMultipleChannelTest (line 65) | [Fact] method MultipleSubscribersOneBadActorChannelTest (line 68) | [Fact] method NonFireAndForgetClientPublishSingleChannelTest (line 71) | [Fact] method NonFireAndForgetClientPublishMultipleChannelTest (line 74) | [Fact] method NonFireAndForgetClientPublishSingleChannelMultipleConsumersTest (line 77) | [Fact] method NonFireAndForgetMultipleSubscribersOneBadActorChannelTest (line 80) | [Fact] method ClientPublishSingleChannelTestImpl (line 83) | private async Task ClientPublishSingleChannelTestImpl(IBroadcastChanne... method ClientPublishMultipleChannelTestImpl (line 111) | private async Task ClientPublishMultipleChannelTestImpl(IBroadcastChan... method MultipleSubscribersChannelTestImpl (line 137) | private async Task MultipleSubscribersChannelTestImpl(IBroadcastChanne... method MultipleSubscribersOneBadActorChannelTestImpl (line 173) | private async Task MultipleSubscribersOneBadActorChannelTestImpl(IBroa... method Get (line 242) | private static async Task> Get(Func>> func, in... FILE: test/Orleans.Streaming.Tests/StreamingTests/ClientStreamTestRunner.cs class ClientStreamTestRunner (line 11) | public class ClientStreamTestRunner method ClientStreamTestRunner (line 17) | public ClientStreamTestRunner(TestCluster testHost) method StreamProducerOnDroppedClientTest (line 22) | public async Task StreamProducerOnDroppedClientTest(string streamProvi... method StreamConsumerOnDroppedClientTest (line 42) | public async Task StreamConsumerOnDroppedClientTest(string streamProvi... method SubscribeToStream (line 101) | private Task SubscribeToStream(string streamProviderName, Guid streamG... method ProduceEventsFromClient (line 109) | private async Task ProduceEventsFromClient(string streamProviderName, ... method GenerateEvents (line 124) | private async Task GenerateEvents(string streamProviderName, Guid stre... method CheckCounters (line 134) | private async Task CheckCounters(Func> getConsumed, Fu... FILE: test/Orleans.Streaming.Tests/StreamingTests/ControllableStreamGeneratorProviderTests.cs class ControllableStreamGeneratorProviderTests (line 20) | public class ControllableStreamGeneratorProviderTests : OrleansTestingBa... class Fixture (line 25) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 31) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 36) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 38) | public void Configure(ISiloBuilder hostBuilder) method ControllableStreamGeneratorProviderTests (line 55) | public ControllableStreamGeneratorProviderTests(Fixture fixture) method ValidateControllableGeneratedStreamsTest (line 60) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method Validate2ControllableGeneratedStreamsTest (line 67) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method ValidateControllableGeneratedStreams (line 75) | private async Task ValidateControllableGeneratedStreams() method CheckCounters (line 104) | private async Task CheckCounters(SimpleGeneratorOptions generato... FILE: test/Orleans.Streaming.Tests/StreamingTests/ControllableStreamProviderTests.cs class ControllableStreamProviderTests (line 15) | public class ControllableStreamProviderTests : OrleansTestingBase, IClas... class Fixture (line 17) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 27) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) method ControllableStreamProviderTests (line 46) | public ControllableStreamProviderTests(Fixture fixture) method ControllableAdapterEchoTest (line 51) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] method ControllableAdapterFactoryEchoTest (line 59) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] method ControllableAdapterEchoTestRunner (line 67) | private async Task ControllableAdapterEchoTestRunner(ControllableTestS... FILE: test/Orleans.Streaming.Tests/StreamingTests/DeactivationTestRunner.cs class DeactivationTestRunner (line 10) | internal class DeactivationTestRunner class Counter (line 16) | private class Counter method Increment (line 20) | public Task Increment() method Clear (line 26) | public void Clear() method DeactivationTestRunner (line 32) | public DeactivationTestRunner(string streamProviderName, IClusterClien... method DeactivationTest (line 45) | public async Task DeactivationTest(Guid streamGuid, string streamNames... method DeactivationTest_ClientConsumer (line 86) | public async Task DeactivationTest_ClientConsumer(Guid streamGuid, str... FILE: test/Orleans.Streaming.Tests/StreamingTests/Filtering/StreamFilteringTestsBase.cs class CustomStreamFilter (line 12) | public class CustomStreamFilter : IStreamFilter method CustomStreamFilter (line 16) | public CustomStreamFilter(ILogger logger) method ShouldDeliver (line 21) | public bool ShouldDeliver(StreamId streamId, object item, string filte... method ShouldDeliverImpl (line 37) | private bool ShouldDeliverImpl(StreamId streamId, object item, string ... class StreamFilteringTestsBase (line 67) | public abstract class StreamFilteringTestsBase : OrleansTestingBase method StreamFilteringTestsBase (line 79) | protected StreamFilteringTestsBase(BaseTestClusterFixture fixture) method IgnoreBadFilter (line 84) | public virtual async Task IgnoreBadFilter() method OnlyEvenItems (line 119) | public virtual async Task OnlyEvenItems() method MultipleSubscriptionsDifferentFilterData (line 158) | public virtual async Task MultipleSubscriptionsDifferentFilterData() method EnsureStreamFilterIsRegistered (line 193) | private void EnsureStreamFilterIsRegistered() FILE: test/Orleans.Streaming.Tests/StreamingTests/GeneratedStreamRecoveryTests.cs class GeneratedImplicitSubscriptionStreamRecoveryTests (line 19) | public class GeneratedImplicitSubscriptionStreamRecoveryTests : OrleansT... class Fixture (line 26) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 30) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 35) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 37) | public void Configure(ISiloBuilder hostBuilder) method GeneratedImplicitSubscriptionStreamRecoveryTests (line 54) | public GeneratedImplicitSubscriptionStreamRecoveryTests(Fixture fixture) method Recoverable100EventStreamsWithTransientErrorsTest (line 62) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] method Recoverable100EventStreamsWith1NonTransientErrorTest (line 72) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] method GenerateEvents (line 82) | private async Task GenerateEvents(string streamNamespace, int streamCo... FILE: test/Orleans.Streaming.Tests/StreamingTests/ImplicitSubscriptionKeyTypeGrainTests.cs class ImplicitSubscriptionKeyTypeGrainTests (line 15) | public sealed class ImplicitSubscriptionKeyTypeGrainTests : OrleansTesti... class Fixture (line 20) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 24) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 30) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 32) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 41) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 43) | public void Configure(IConfiguration configuration, IClientBuilder... method ImplicitSubscriptionKeyTypeGrainTests (line 50) | public ImplicitSubscriptionKeyTypeGrainTests(Fixture fixture) method LongKey (line 56) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] method CheckValue (line 69) | private async Task CheckValue(IImplicitSubscriptionKeyTypeGrain ... FILE: test/Orleans.Streaming.Tests/StreamingTests/ImplicitSubscritionRecoverableStreamTestRunner.cs class ImplicitSubscritionRecoverableStreamTestRunner (line 8) | public class ImplicitSubscritionRecoverableStreamTestRunner method ImplicitSubscritionRecoverableStreamTestRunner (line 13) | public ImplicitSubscritionRecoverableStreamTestRunner(IGrainFactory gr... method Recoverable100EventStreamsWithTransientErrors (line 19) | public async Task Recoverable100EventStreamsWithTransientErrors(Func CheckCounters(string streamNamespace, int str... FILE: test/Orleans.Streaming.Tests/StreamingTests/MemoryProgrammaticSubcribeTests.cs class MemoryProgrammaticSubcribeTests (line 13) | [TestCategory("BVT"), TestCategory("Streaming")] class Fixture (line 16) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 18) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class TestClusterConfigurator (line 24) | private class TestClusterConfigurator : ISiloConfigurator, IClientBu... method Configure (line 26) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 37) | public void Configure(IConfiguration configuration, IClientBuilder... method MemoryProgrammaticSubcribeTests (line 41) | public MemoryProgrammaticSubcribeTests(Fixture fixture) : base(fixture) FILE: test/Orleans.Streaming.Tests/StreamingTests/MemoryStreamBatchingTests.cs class MemoryStreamBatchingTests (line 15) | [TestCategory("BVT")] class Fixture (line 18) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MyClientBuilderConfigurator (line 28) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 30) | public void Configure(IConfiguration configuration, IClientBuilder... class MySiloBuilderConfigurator (line 38) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 40) | public void Configure(ISiloBuilder hostBuilder) => hostBuilder.Add... method MemoryStreamBatchingTests (line 50) | public MemoryStreamBatchingTests(Fixture fixture, ITestOutputHelper ou... FILE: test/Orleans.Streaming.Tests/StreamingTests/MemoryStreamCacheMissTests.cs class MemoryStreamCacheMissTests (line 11) | [TestCategory("Functional"), TestCategory("Streaming"), TestCategory("St... method MemoryStreamCacheMissTests (line 14) | public MemoryStreamCacheMissTests(ITestOutputHelper output) method ConfigureTestCluster (line 19) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 27) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 46) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 48) | public void Configure(IConfiguration configuration, IClientBuilder c... FILE: test/Orleans.Streaming.Tests/StreamingTests/MemoryStreamProviderBatchedClientTests.cs class MemoryStreamProviderBatchedClientTests (line 15) | public class MemoryStreamProviderBatchedClientTests : OrleansTestingBase... class Fixture (line 17) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MyClientBuilderConfigurator (line 28) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 30) | public void Configure(IConfiguration configuration, IClientBuilder... class MySiloBuilderConfigurator (line 35) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 37) | public void Configure(ISiloBuilder hostBuilder) => method MemoryStreamProviderBatchedClientTests (line 52) | public MemoryStreamProviderBatchedClientTests(Fixture fixture) method BatchedMemoryStreamProducerOnDroppedClientTest (line 58) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] method BatchedMemoryStreamConsumerOnDroppedClientTest (line 65) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] FILE: test/Orleans.Streaming.Tests/StreamingTests/MemoryStreamProviderClientTests.cs class MemoryStreamProviderClientTests (line 23) | public class MemoryStreamProviderClientTests : OrleansTestingBase, IClas... class Fixture (line 30) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 35) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MyClientBuilderConfigurator (line 41) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 43) | public void Configure(IConfiguration configuration, IClientBuilder... class MySiloBuilderConfigurator (line 54) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 56) | public void Configure(ISiloBuilder hostBuilder)=> hostBuilder.AddM... method MemoryStreamProviderClientTests (line 68) | public MemoryStreamProviderClientTests(Fixture fixture) method MemoryStreamProducerOnDroppedClientTest (line 81) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] method MemoryStreamConsumerOnDroppedClientTest (line 95) | [Fact, TestCategory("Functional"), TestCategory("Streaming")] FILE: test/Orleans.Streaming.Tests/StreamingTests/MemoryStreamResumeTests.cs class MemoryStreamResumeTests (line 10) | [TestCategory("SlowBVT"), TestCategory("Streaming"), TestCategory("Strea... method ConfigureTestCluster (line 13) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class MySiloBuilderConfigurator (line 20) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 22) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 43) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 45) | public void Configure(IConfiguration configuration, IClientBuilder c... FILE: test/Orleans.Streaming.Tests/StreamingTests/MultipleStreamsTestRunner.cs class MultipleStreamsTestRunner (line 8) | public class MultipleStreamsTestRunner method MultipleStreamsTestRunner (line 20) | internal MultipleStreamsTestRunner(IInternalClusterClient client, stri... method Heading (line 29) | private void Heading(string testName) method StreamTest_MultipleStreams_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 34) | public async Task StreamTest_MultipleStreams_ManyDifferent_ManyProduce... FILE: test/Orleans.Streaming.Tests/StreamingTests/PlugableQueueBalancerTests/LeaseBasedQueueBalancer.cs class LeaseBasedQueueBalancerForTest (line 6) | public class LeaseBasedQueueBalancerForTest : IStreamQueueBalancer method LeaseBasedQueueBalancerForTest (line 12) | public LeaseBasedQueueBalancerForTest(string name, IGrainFactory grain... method Initialize (line 18) | public async Task Initialize(IStreamQueueMapper queueMapper) method Shutdown (line 24) | public Task Shutdown() method GetMyQueues (line 29) | public IEnumerable GetMyQueues() method GetInitialLease (line 34) | private async Task GetInitialLease() method SubscribeToQueueDistributionChangeEvents (line 50) | public bool SubscribeToQueueDistributionChangeEvents(IStreamQueueBalan... method UnSubscribeFromQueueDistributionChangeEvents (line 56) | public bool UnSubscribeFromQueueDistributionChangeEvents(IStreamQueueB... FILE: test/Orleans.Streaming.Tests/StreamingTests/PlugableQueueBalancerTests/LeaseManagerGrain.cs type ILeaseManagerGrain (line 8) | public interface ILeaseManagerGrain : IGrainWithStringKey method Acquire (line 10) | Task Acquire(); method Renew (line 11) | Task Renew(QueueId leaseNumber); method Release (line 12) | Task Release(QueueId leaseNumber); method GetLeaseResposibility (line 13) | Task GetLeaseResposibility(); method SetQueuesAsLeases (line 14) | Task SetQueuesAsLeases(IEnumerable queues); method RecordBalancerResponsibility (line 16) | Task RecordBalancerResponsibility(string balancerId, int ownedQueues); method GetResponsibilityMap (line 17) | Task> GetResponsibilityMap(); class LeaseManagerGrain (line 21) | public class LeaseManagerGrain : Grain, ILeaseManagerGrain method OnActivateAsync (line 27) | public override Task OnActivateAsync(CancellationToken cancellationToken) method GetLeaseResposibility (line 34) | public Task GetLeaseResposibility() method Acquire (line 41) | public Task Acquire() method Renew (line 55) | public Task Renew(QueueId leaseNumber) method Release (line 65) | public Task Release(QueueId leaseNumber) method SetQueuesAsLeases (line 72) | public Task SetQueuesAsLeases(IEnumerable queueIds) method RecordBalancerResponsibility (line 87) | public Task RecordBalancerResponsibility(string balancerId, int ownedQ... method GetResponsibilityMap (line 93) | public Task> GetResponsibilityMap() FILE: test/Orleans.Streaming.Tests/StreamingTests/PlugableQueueBalancerTests/PluggableQueueBalancerTestBase.cs class PluggableQueueBalancerTestBase (line 9) | public class PluggableQueueBalancerTestBase : OrleansTestingBase method ShouldUseInjectedQueueBalancerAndBalanceCorrectly (line 14) | public virtual async Task ShouldUseInjectedQueueBalancerAndBalanceCorr... class SiloBuilderConfigurator (line 21) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 23) | public void Configure(ISiloBuilder hostBuilder) method CheckLeases (line 29) | private async Task CheckLeases(ILeaseManagerGrain leaseManager, ... FILE: test/Orleans.Streaming.Tests/StreamingTests/PlugableQueueBalancerTests/PluggableQueueBalancerTestsWithMemoryStreamProvider.cs class PluggableQueueBalancerTestsWithMemoryStreamProvider (line 13) | public class PluggableQueueBalancerTestsWithMemoryStreamProvider : Plugg... class Fixture (line 21) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 23) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 31) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 33) | public void Configure(ISiloBuilder hostBuilder) class MyClientBuilderConfigurator (line 48) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 50) | public void Configure(IConfiguration configuration, IClientBuilder... method PluggableQueueBalancerTestsWithMemoryStreamProvider (line 59) | public PluggableQueueBalancerTestsWithMemoryStreamProvider(Fixture fix... method PluggableQueueBalancerTest_ShouldUseInjectedQueueBalancerAndBalanceCorrectly (line 64) | [Fact(Skip = "https://github.com/dotnet/orleans/issues/4317"), TestCat... FILE: test/Orleans.Streaming.Tests/StreamingTests/ProgrammaticSubscribeTests/ProgrammaticSubscribeTestsRunner.cs class ProgrammaticSubscribeTestsRunner (line 14) | public abstract class ProgrammaticSubscribeTestsRunner method ProgrammaticSubscribeTestsRunner (line 19) | public ProgrammaticSubscribeTestsRunner(BaseTestClusterFixture fixture) method Programmatic_Subscribe_Provider_WithExplicitPubsub_TryGetStreamSubscrptionManager (line 24) | [SkippableFact] method Programmatic_Subscribe_CanUseNullNamespace (line 31) | [SkippableFact] method StreamingTests_Consumer_Producer_Subscribe (line 42) | [SkippableFact] method StreamingTests_Consumer_Producer_UnSubscribe (line 74) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5635")] method StreamingTests_Consumer_Producer_GetSubscriptions (line 119) | [SkippableFact] method StreamingTests_Consumer_Producer_ConsumerUnsubscribeOnAdd (line 142) | [SkippableFact] method StreamingTests_Consumer_Producer_SubscribeToTwoStream_MessageWithPolymorphism (line 168) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5650")] method StreamingTests_Consumer_Producer_SubscribeToStreamsHandledByDifferentStreamProvider (line 212) | [SkippableFact] method ProducerHasProducedSinceLastCheck (line 259) | public static async Task ProducerHasProducedSinceLastCheck(int n... method CheckCounters (line 272) | public static async Task CheckCounters(List... class SubscriptionManager (line 293) | public class SubscriptionManager method SubscriptionManager (line 298) | public SubscriptionManager(TestCluster cluster) method SetupStreamingSubscriptionForStream (line 306) | public async Task> SetupStreamingSubscription... method AddSubscription (line 320) | public async Task AddSubscription... method GetSubscriptions (line 329) | public Task> GetSubscriptions(FullStre... method RemoveSubscription (line 334) | public async Task RemoveSubscription(FullStreamIdentity streamId, Guid... FILE: test/Orleans.Streaming.Tests/StreamingTests/ProgrammaticSubscribeTests/SubscriptionObserverWithImplicitSubscribingTestRunner.cs class SubscriptionObserverWithImplicitSubscribingTestRunner (line 10) | public abstract class SubscriptionObserverWithImplicitSubscribingTestRun... method SubscriptionObserverWithImplicitSubscribingTestRunner (line 17) | public SubscriptionObserverWithImplicitSubscribingTestRunner(BaseTestC... method StreamingTests_ImplicitSubscribProvider_DontHaveSubscriptionManager (line 22) | [SkippableFact] method StreamingTests_Consumer_Producer_Subscribe (line 29) | [SkippableFact] method StreamingTests_Consumer_Producer_SubscribeToTwoStream_MessageWithPolymorphism (line 50) | [SkippableFact] method StreamingTests_Consumer_Producer_SubscribeToStreamsHandledByDifferentStreamProvider (line 80) | [SkippableFact] FILE: test/Orleans.Streaming.Tests/StreamingTests/PubSubRendezvousGrainTests.cs class PubSubRendezvousGrainTests (line 10) | public class PubSubRendezvousGrainTests : OrleansTestingBase, IClassFixt... class Fixture (line 14) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 16) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloHostConfigurator (line 21) | public class SiloHostConfigurator : ISiloConfigurator method Configure (line 23) | public void Configure(ISiloBuilder hostBuilder) method PubSubRendezvousGrainTests (line 32) | public PubSubRendezvousGrainTests(Fixture fixture) method RegisterConsumerFaultTest (line 37) | [Fact, TestCategory("BVT"), TestCategory("Streaming"), TestCategory("P... method UnregisterConsumerFaultTest (line 63) | [Fact, TestCategory("BVT"), TestCategory("Streaming"), TestCategory("P... method RegisterProducerFaultTest (line 109) | [Fact(Skip = "This test fails because the producer must be grain refer... method UnregisterProducerFaultTest (line 139) | [Fact(Skip = "This test fails because the producer must be grain refer... class DummyStreamProducerExtension (line 180) | [Serializable] method DummyStreamProducerExtension (line 187) | public DummyStreamProducerExtension() method AddSubscriber (line 192) | public Task AddSubscriber(GuidId subscriptionId, QualifiedStreamId s... method RemoveSubscriber (line 197) | public Task RemoveSubscriber(GuidId subscriptionId, QualifiedStreamI... method Equals (line 202) | public override bool Equals(object obj) method GetHashCode (line 210) | public override int GetHashCode() method Equals (line 215) | private bool Equals(DummyStreamProducerExtension other) FILE: test/Orleans.Streaming.Tests/StreamingTests/SampleStreamingTests.cs class SampleStreamingTests (line 21) | public class SampleStreamingTests method SampleStreamingTests (line 30) | public SampleStreamingTests(string streamProvider, ILogger logger, Tes... method StreamingTests_Consumer_Producer (line 44) | public async Task StreamingTests_Consumer_Producer(Guid streamId) method StreamingTests_Producer_Consumer (line 71) | public async Task StreamingTests_Producer_Consumer(Guid streamId) method StreamingTests_Producer_InlineConsumer (line 99) | public async Task StreamingTests_Producer_InlineConsumer(Guid streamId) method CheckCounters (line 127) | private async Task CheckCounters(ISampleStreaming_ProducerGrain ... FILE: test/Orleans.Streaming.Tests/StreamingTests/SingleStreamTestRunner.cs class SingleStreamTestRunner (line 12) | public class SingleStreamTestRunner method SingleStreamTestRunner (line 29) | internal SingleStreamTestRunner(IInternalClusterClient client, string ... method Heading (line 38) | private void Heading(string testName) method StreamTest_01_OneProducerGrainOneConsumerGrain (line 44) | public async Task StreamTest_01_OneProducerGrainOneConsumerGrain() method StreamTest_02_OneProducerGrainOneConsumerClient (line 62) | public async Task StreamTest_02_OneProducerGrainOneConsumerClient() method StreamTest_03_OneProducerClientOneConsumerGrain (line 78) | public async Task StreamTest_03_OneProducerClientOneConsumerGrain() method StreamTest_04_OneProducerClientOneConsumerClient (line 94) | public async Task StreamTest_04_OneProducerClientOneConsumerClient() method StreamTest_05_ManyDifferent_ManyProducerGrainsManyConsumerGrains (line 112) | public async Task StreamTest_05_ManyDifferent_ManyProducerGrainsManyCo... method StreamTest_06_ManyDifferent_ManyProducerGrainManyConsumerClients (line 122) | public async Task StreamTest_06_ManyDifferent_ManyProducerGrainManyCon... method StreamTest_07_ManyDifferent_ManyProducerClientsManyConsumerGrains (line 132) | public async Task StreamTest_07_ManyDifferent_ManyProducerClientsManyC... method StreamTest_08_ManyDifferent_ManyProducerClientsManyConsumerClients (line 142) | public async Task StreamTest_08_ManyDifferent_ManyProducerClientsManyC... method StreamTest_09_ManySame_ManyProducerGrainsManyConsumerGrains (line 154) | public async Task StreamTest_09_ManySame_ManyProducerGrainsManyConsume... method StreamTest_10_ManySame_ManyConsumerGrainsManyProducerGrains (line 169) | public async Task StreamTest_10_ManySame_ManyConsumerGrainsManyProduce... method StreamTest_11_ManySame_ManyProducerGrainsManyConsumerClients (line 184) | public async Task StreamTest_11_ManySame_ManyProducerGrainsManyConsume... method StreamTest_12_ManySame_ManyProducerClientsManyConsumerGrains (line 196) | public async Task StreamTest_12_ManySame_ManyProducerClientsManyConsum... method StreamTest_13_SameGrain_ConsumerFirstProducerLater (line 210) | public async Task StreamTest_13_SameGrain_ConsumerFirstProducerLater(b... method StreamTest_14_SameGrain_ProducerFirstConsumerLater (line 223) | public async Task StreamTest_14_SameGrain_ProducerFirstConsumerLater(b... method StreamTest_15_ConsumeAtProducersRequest (line 238) | public async Task StreamTest_15_ConsumeAtProducersRequest() method StreamTest_Create_OneProducerGrainOneConsumerGrain (line 253) | internal async Task StreamTest_Create_OneProducerGrainOneConsumerGrain() method StreamTest_16_Deactivation_OneProducerGrainOneConsumerGrain (line 260) | public async Task StreamTest_16_Deactivation_OneProducerGrainOneConsum... method StreamTest_19_ConsumerImplicitlySubscribedToProducerClient (line 309) | public async Task StreamTest_19_ConsumerImplicitlySubscribedToProducer... method StreamTest_20_ConsumerImplicitlySubscribedToProducerGrain (line 329) | public async Task StreamTest_20_ConsumerImplicitlySubscribedToProducer... method StreamTest_21_GenericConsumerImplicitlySubscribedToProducerGrain (line 349) | public async Task StreamTest_21_GenericConsumerImplicitlySubscribedToP... method StreamTest_22_TestImmutabilityDuringStreaming (line 370) | public async Task StreamTest_22_TestImmutabilityDuringStreaming() method BasicTestAsync (line 422) | public async Task BasicTestAsync(bool fullTest = true) method StopProxies (line 449) | public async Task StopProxies() method CheckCounters (line 456) | private async Task CheckCounters(ProducerProxy producer, Consume... method AssertProducerCount (line 481) | private async Task AssertProducerCount(int expectedCount, string provi... method ValidatePubSub (line 497) | private Task ValidatePubSub(StreamId streamId, string providerName) method CheckGrainsDeactivated (line 504) | private async Task CheckGrainsDeactivated(ProducerProxy producer... FILE: test/Orleans.Streaming.Tests/StreamingTests/StatelessWorkersStreamTests.cs class StatelessWorkersStreamTests (line 14) | [TestCategory("Streaming")] class Fixture (line 21) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 23) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 29) | public class SiloConfigurator : ISiloConfigurator method Configure (line 31) | public void Configure(ISiloBuilder hostBuilder) class ClientConfiguretor (line 38) | public class ClientConfiguretor : IClientBuilderConfigurator method Configure (line 40) | public void Configure(IConfiguration configuration, IClientBuilder... method StatelessWorkersStreamTests (line 49) | public StatelessWorkersStreamTests(Fixture fixture) method SubscribeToStream_FromStatelessWorker_Fail (line 55) | [Fact, TestCategory("Functional")] class StatelessWorkersStreamTestsRunner (line 67) | public class StatelessWorkersStreamTestsRunner method StatelessWorkersStreamTestsRunner (line 75) | public StatelessWorkersStreamTestsRunner(string streamProvider, ILogge... method BecomeConsumer (line 82) | public async Task BecomeConsumer(Guid streamId) method ProduceMessage (line 88) | public async Task ProduceMessage(Guid streamId) FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamBatchingTestRunner.cs class StreamBatchingTestRunner (line 10) | public abstract class StreamBatchingTestRunner method StreamBatchingTestRunner (line 16) | protected StreamBatchingTestRunner(BaseTestClusterFixture fixture, ITe... method SingleSendBatchConsume (line 22) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5649")... method BatchSendSingleConsume (line 38) | [SkippableFact, TestCategory("Functional"), TestCategory("Streaming")] method BatchSendBatchConsume (line 56) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/5632")... method CheckCounters (line 74) | private async Task CheckCounters(IStreamBatchingTestConsumerGrai... FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamGeneratorProviderTests.cs class StreamGeneratorProviderTests (line 20) | public class StreamGeneratorProviderTests : OrleansTestingBase, IClassFi... class Fixture (line 25) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 36) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MySiloBuilderConfigurator (line 41) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 43) | public void Configure(ISiloBuilder hostBuilder) method StreamGeneratorProviderTests (line 63) | public StreamGeneratorProviderTests(Fixture fixture) method ValidateGeneratedStreamsTest (line 70) | [Fact, TestCategory("BVT"), TestCategory("Streaming")] method CheckCounters (line 77) | private async Task CheckCounters(bool assertIsTrue) FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamProvidersTests.cs class StreamProvidersTests_ProviderConfigNotLoaded (line 20) | public class StreamProvidersTests_ProviderConfigNotLoaded : IClassFixtur... class Fixture (line 22) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 26) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloHostConfigurator (line 33) | public class SiloHostConfigurator : ISiloConfigurator method Configure (line 35) | public void Configure(ISiloBuilder hostBuilder) method StreamProvidersTests_ProviderConfigNotLoaded (line 54) | public StreamProvidersTests_ProviderConfigNotLoaded(ITestOutputHelper ... method ProvidersTests_ConfigNotLoaded (line 60) | [Fact, TestCategory("Functional"), TestCategory("Streaming"), TestCate... method ServiceId_ProviderRuntime (line 70) | [Fact, TestCategory("Functional"), TestCategory("Config"), TestCategor... method ServiceId_SiloRestart (line 80) | [Fact, TestCategory("Functional"), TestCategory("Config"), TestCategor... FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamPubSubReliabilityTests.cs class StreamPubSubReliabilityTests (line 18) | public class StreamPubSubReliabilityTests : OrleansTestingBase, IClassFi... class Fixture (line 20) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 22) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloConfigurator (line 30) | public class SiloConfigurator : ISiloConfigurator method Configure (line 32) | public void Configure(ISiloBuilder hostBuilder) class ClientConfiguretor (line 44) | public class ClientConfiguretor : IClientBuilderConfigurator method Configure (line 46) | public void Configure(IConfiguration configuration, IClientBuilder c... method StreamPubSubReliabilityTests (line 62) | public StreamPubSubReliabilityTests(Fixture fixture) method InitializeAsync (line 71) | public async Task InitializeAsync() method DisposeAsync (line 76) | public Task DisposeAsync() => Task.CompletedTask; method PubSub_Store_Baseline (line 78) | [Fact, TestCategory("Functional"), TestCategory("Streaming"), TestCate... method PubSub_Store_ReadError (line 84) | [Fact, TestCategory("Functional"), TestCategory("Streaming"), TestCate... method PubSub_Store_WriteError (line 100) | [Fact, TestCategory("Functional"), TestCategory("Streaming"), TestCate... method Test_PubSub_Stream (line 109) | private async Task Test_PubSub_Stream(string streamProviderName, Guid ... method SetErrorInjection (line 144) | private async Task SetErrorInjection(string providerName, ErrorInjecti... FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamTestHelperClasses.cs class Streaming_ConsumerClientObject (line 11) | public class Streaming_ConsumerClientObject : IAsyncObserver... method Streaming_ConsumerClientObject (line 17) | private Streaming_ConsumerClientObject(ILogger logger, IClusterClient ... method NewObserver (line 23) | public static Streaming_ConsumerClientObject NewObserver(ILogger logge... method OnNextAsync (line 28) | public Task OnNextAsync(StreamItem item, StreamSequenceToken token = n... method OnCompletedAsync (line 33) | public Task OnCompletedAsync() method OnErrorAsync (line 38) | public Task OnErrorAsync(Exception ex) method BecomeConsumer (line 43) | public Task BecomeConsumer(Guid streamId, string providerToUse) method BecomeConsumer (line 49) | public Task BecomeConsumer(Guid streamId, string providerToUse, string... method StopBeingConsumer (line 55) | public Task StopBeingConsumer() method GetConsumerCount (line 60) | public Task GetConsumerCount() method GetItemsConsumed (line 65) | public Task GetItemsConsumed() method DeactivateConsumerOnIdle (line 70) | public Task DeactivateConsumerOnIdle() class Streaming_ProducerClientObject (line 76) | public class Streaming_ProducerClientObject : IStreaming_ProducerGrain method Streaming_ProducerClientObject (line 80) | private Streaming_ProducerClientObject(ILogger logger, IClusterClient ... method NewObserver (line 86) | public static Streaming_ProducerClientObject NewObserver(ILogger logge... method BecomeProducer (line 93) | public Task BecomeProducer(Guid streamId, string providerToUse, string... method ProduceSequentialSeries (line 99) | public Task ProduceSequentialSeries(int count) method ProduceParallelSeries (line 104) | public Task ProduceParallelSeries(int count) method GetItemsProduced (line 109) | public Task GetItemsProduced() method ProducePeriodicSeries (line 114) | public Task ProducePeriodicSeries(int count) method GetStreamId (line 137) | public Task GetStreamId() method GetProviderName (line 142) | public Task GetProviderName() method AddNewConsumerGrain (line 147) | public Task AddNewConsumerGrain(Guid consumerGrainId) method GetExpectedItemsProduced (line 152) | public Task GetExpectedItemsProduced() method GetProducerCount (line 157) | public Task GetProducerCount() method StopBeingProducer (line 162) | public Task StopBeingProducer() method VerifyFinished (line 167) | public Task VerifyFinished() method DeactivateProducerOnIdle (line 172) | public Task DeactivateProducerOnIdle() class ConsumerProxy (line 178) | internal class ConsumerProxy method ConsumerProxy (line 184) | private ConsumerProxy(IStreaming_ConsumerGrain[] targets, ILogger logg... method NewConsumerProxy (line 191) | private static async Task NewConsumerProxy(Guid streamI... method NewConsumerGrainsAsync (line 207) | public static Task NewConsumerGrainsAsync(Guid streamId... method NewProducerConsumerGrainsAsync (line 238) | public static Task NewProducerConsumerGrainsAsync(Guid ... method NewConsumerClientObjectsAsync (line 268) | public static Task NewConsumerClientObjectsAsync(Guid s... method NewConsumerGrainAsync_WithoutBecomeConsumer (line 279) | public static ConsumerProxy NewConsumerGrainAsync_WithoutBecomeConsume... method BecomeConsumer (line 295) | private async Task BecomeConsumer(Guid streamId, string providerToUse) method GetItemsConsumed (line 309) | private async Task GetItemsConsumed() method GetConsumerCount (line 321) | private async Task GetConsumerCount() method StopBeingConsumer (line 333) | public Task StopBeingConsumer() method DeactivateOnIdle (line 339) | public async Task DeactivateOnIdle() method GetNumActivations (line 345) | public Task GetNumActivations(IInternalGrainFactory grainFactory) method GetNumActivations (line 350) | public static async Task GetNumActivations(IEnumerable ta... class ProducerProxy (line 360) | internal class ProducerProxy method ProducerProxy (line 379) | private ProducerProxy(IStreaming_ProducerGrain[] targets, Guid streamI... method NewProducerProxy (line 389) | private static async Task NewProducerProxy(IStreaming_P... method NewProducerGrainsAsync (line 403) | public static Task NewProducerGrainsAsync(Guid streamId... method NewProducerConsumerGrainsAsync (line 434) | public static Task NewProducerConsumerGrainsAsync(Guid ... method NewProducerClientObjectsAsync (line 464) | public static Task NewProducerClientObjectsAsync(Guid s... method BecomeProducer (line 475) | private Task BecomeProducer(Guid streamId, string providerToUse, strin... method ProduceSequentialSeries (line 484) | public async Task ProduceSequentialSeries(int count) method ProduceParallelSeries (line 492) | public Task ProduceParallelSeries(int count) method ProducePeriodicSeries (line 499) | public Task ProducePeriodicSeries(int count) method AddNewConsumerGrain (line 506) | public async Task AddNewConsumerGrain() method GetExpectedItemsProduced (line 519) | private async Task GetExpectedItemsProduced() method GetProducerCount (line 528) | private async Task GetProducerCount() method StopBeingProducer (line 545) | public async Task StopBeingProducer() method DeactivateOnIdle (line 565) | public Task DeactivateOnIdle() method GetNumActivations (line 571) | public Task GetNumActivations(IInternalGrainFactory grainFactory) FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamTestUtils.cs class StreamTestUtils (line 11) | internal class StreamTestUtils method LogStartTest (line 15) | internal static void LogStartTest(string testName, Guid streamId, stri... method LogEndTest (line 29) | internal static void LogEndTest(string testName, ILogger logger) method GetStreamPubSub (line 34) | internal static IStreamPubSub GetStreamPubSub(IInternalClusterClient c... method CheckPubSubCounts (line 40) | internal static async Task CheckPubSubCounts(IInternalClusterClient cl... method Assert_AreEqual (line 76) | internal static void Assert_AreEqual(ITestOutputHelper output, int exp... FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamingCacheMissTests.cs class StreamingCacheMissTests (line 24) | public abstract class StreamingCacheMissTests : TestClusterPerTest class CustomStreamFilter (line 37) | protected class CustomStreamFilter : IStreamFilter method ShouldDeliver (line 39) | public bool ShouldDeliver(StreamId streamId, object item, string fil... method StreamingCacheMissTests (line 46) | public StreamingCacheMissTests(ITestOutputHelper output) method PreviousEventEvictedFromCacheTest (line 59) | [SkippableFact] method PreviousEventEvictedFromCacheWithFilterTest (line 103) | [SkippableFact] FILE: test/Orleans.Streaming.Tests/StreamingTests/StreamingResumeTests.cs class StreamingResumeTests (line 9) | public abstract class StreamingResumeTests : TestClusterPerTest method ResumeAfterInactivity (line 18) | [SkippableFact] method ResumeAfterInactivityNotInCache (line 24) | [SkippableFact] method ResumeAfterInactivityImpl (line 30) | protected virtual async Task ResumeAfterInactivityImpl(bool waitForCac... method ResumeAfterDeactivation (line 73) | [SkippableFact] method ResumeAfterDeactivationActiveStream (line 102) | [SkippableFact] method ResumeAfterSlowSubscriber (line 138) | [SkippableFact] FILE: test/Orleans.Streaming.Tests/StreamingTests/SubscriptionMultiplicityTestRunner.cs class SubscriptionMultiplicityTestRunner (line 14) | public class SubscriptionMultiplicityTestRunner method SubscriptionMultiplicityTestRunner (line 21) | public SubscriptionMultiplicityTestRunner(string streamProviderName, T... method MultipleParallelSubscriptionTest (line 32) | public async Task MultipleParallelSubscriptionTest(Guid streamGuid, st... method MultipleLinearSubscriptionTest (line 55) | public async Task MultipleLinearSubscriptionTest(Guid streamGuid, stri... method MultipleSubscriptionTest_AddRemove (line 91) | public async Task MultipleSubscriptionTest_AddRemove(Guid streamGuid, ... method ResubscriptionTest (line 138) | public async Task ResubscriptionTest(Guid streamGuid, string streamNam... method ResubscriptionAfterDeactivationTest (line 170) | public async Task ResubscriptionAfterDeactivationTest(Guid streamGuid,... method ActiveSubscriptionTest (line 211) | public async Task ActiveSubscriptionTest(Guid streamGuid, string strea... method TwoIntermitentStreamTest (line 261) | public async Task TwoIntermitentStreamTest(Guid streamGuid) method SubscribeFromClientTest (line 305) | public async Task SubscribeFromClientTest(Guid streamGuid, string stre... method CheckCounters (line 333) | private async Task CheckCounters(ISampleStreaming_ProducerGrain ... method CheckCounters (line 384) | private async Task CheckCounters(ISampleStreaming_ProducerGrain ... method RunFor (line 417) | private async Task RunFor(Func func, TimeSpan duration) FILE: test/Orleans.Streaming.Tests/StreamingTests/SystemTargetRouteTests.cs class SystemTargetRouteTests (line 16) | public class SystemTargetRouteTests : OrleansTestingBase, IClassFixture<... class Fixture (line 21) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 25) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class MyClientBuilderConfigurator (line 32) | private class MyClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 34) | public void Configure(IConfiguration configuration, IClientBuilder... class MySiloBuilderConfigurator (line 39) | private class MySiloBuilderConfigurator : ISiloConfigurator method Configure (line 41) | public void Configure(ISiloBuilder hostBuilder) => hostBuilder method SystemTargetRouteTests (line 50) | public SystemTargetRouteTests(Fixture fixture) method PersistentStreamingOverSingleGatewayTest (line 55) | [SkippableFact(Skip = "https://github.com/dotnet/orleans/issues/4320")... method OnNextAsync (line 94) | private Task OnNextAsync(int e, StreamSequenceToken token) method CheckCounters (line 100) | private Task CheckCounters(int eventsProduced, bool assertIsTrue) FILE: test/Orleans.Streaming.Tests/TestStreamProviders/Controllable/ControllableTestStreamProvider.cs type ControllableTestStreamProviderCommands (line 10) | [GenerateSerializer] class ControllableTestAdapterFactory (line 17) | public class ControllableTestAdapterFactory : IQueueAdapter, IQueueAdapt... method QueueMessageBatchAsync (line 21) | public Task QueueMessageBatchAsync(StreamId streamId, IEnumerable CreateAdapter() method GetQueueAdapterCache (line 45) | public IQueueAdapterCache GetQueueAdapterCache() method GetStreamQueueMapper (line 50) | public IStreamQueueMapper GetStreamQueueMapper() method GetDeliveryFailureHandler (line 57) | public Task GetDeliveryFailureHandler(QueueId q... method ExecuteCommand (line 62) | public Task ExecuteCommand(int command, object arg) method Create (line 74) | public static ControllableTestAdapterFactory Create(IServiceProvider s... FILE: test/TestInfrastructure/Orleans.TestingHost.Tests/Grains/SimpleGrain.cs type ISimpleGrain (line 3) | public interface ISimpleGrain : IGrainWithIntegerKey method SetA (line 5) | Task SetA(int a); method SetB (line 6) | Task SetB(int b); method IncrementA (line 7) | Task IncrementA(); method GetAxB (line 8) | Task GetAxB(); method GetAxB (line 9) | Task GetAxB(int a, int b); method GetA (line 10) | Task GetA(); class SimpleGrain (line 16) | public class SimpleGrain : Grain, ISimpleGrain method SetA (line 21) | public Task SetA(int a) method SetB (line 27) | public Task SetB(int b) method IncrementA (line 33) | public Task IncrementA() method GetAxB (line 39) | public Task GetAxB() method GetAxB (line 44) | public Task GetAxB(int a, int b) method GetA (line 49) | public Task GetA() FILE: test/TestInfrastructure/Orleans.TestingHost.Tests/TestClusterTests.cs class T0 (line 26) | public class T0 method CanInitialize (line 28) | [Fact, TestCategory("Functional")] class T1 (line 40) | public class T1 method CanInitialize (line 42) | [Fact, TestCategory("Functional")] class T2 (line 54) | public class T2 method CanInitialize (line 56) | [Fact, TestCategory("Functional")] class T3 (line 68) | public class T3 method CanInitialize (line 70) | [Fact, TestCategory("Functional")] class T4 (line 83) | public class T4 method CanInitialize (line 85) | [Fact, TestCategory("Functional")] class T5 (line 98) | public class T5 method CanInitialize (line 100) | [Fact, TestCategory("Functional")] class T6 (line 113) | public class T6 method CanInitialize (line 115) | [Fact, TestCategory("Functional")] class T7 (line 128) | public class T7 method CanInitialize (line 130) | [Fact, TestCategory("Functional")] class T8 (line 143) | public class T8 method CanInitialize (line 145) | [Fact, TestCategory("Functional")] class T9 (line 158) | public class T9 method CanInitialize (line 160) | [Fact, TestCategory("Functional")] class T10 (line 178) | public class T10 method ClientBuilder_HostConfigurator (line 183) | [Fact, TestCategory("Functional")] method ClientBuilder_ClientHostConfigurator (line 186) | [Fact, TestCategory("Functional")] method ClientBuilder_ClientConfigurator (line 189) | [Fact, TestCategory("Functional")] method Test (line 192) | private static async Task Test(bool hostInvoked, bool c... class HostConfigurator (line 214) | private class HostConfigurator : IHostConfigurator method Configure (line 216) | public void Configure(IHostBuilder hostBuilder) => _hostWasInvoked =... class ClientHostConfigurator (line 224) | private class ClientHostConfigurator : IHostConfigurator, IClientBuild... method Configure (line 227) | public void Configure(IHostBuilder hostBuilder) => _hostWasInvoked =... method Configure (line 228) | public void Configure(IConfiguration configuration, IClientBuilder c... class ClientConfigurator (line 235) | private class ClientConfigurator : IClientBuilderConfigurator method Configure (line 237) | public void Configure(IConfiguration configuration, IClientBuilder c... class TestClusterTests (line 246) | public class TestClusterTests : IAsyncLifetime method CanInitialize (line 257) | [Fact, TestCategory("Functional")] method CanInitializeWithLegacyConfiguration (line 278) | [Fact, TestCategory("Functional")] class SiloConfigurator (line 299) | public class SiloConfigurator : ISiloConfigurator method Configure (line 301) | public void Configure(ISiloBuilder hostBuilder) method InitializeAsync (line 307) | public Task InitializeAsync() method DisposeAsync (line 312) | public async Task DisposeAsync() FILE: test/TestInfrastructure/TestExtensions/BaseClusterFixture.cs class BaseTestClusterFixture (line 10) | public abstract class BaseTestClusterFixture : Xunit.IAsyncLifetime method BaseTestClusterFixture (line 14) | static BaseTestClusterFixture() method BaseTestClusterFixture (line 19) | protected BaseTestClusterFixture() method EnsurePreconditionsMet (line 32) | public void EnsurePreconditionsMet() method CheckPreconditionsOrThrow (line 37) | protected virtual void CheckPreconditionsOrThrow() { } method ConfigureTestCluster (line 39) | protected virtual void ConfigureTestCluster(TestClusterBuilder builder) method GetClientServiceId (line 51) | public string GetClientServiceId() => Client.ServiceProvider.GetRequir... method InitializeAsync (line 53) | public virtual async Task InitializeAsync() method DisposeAsync (line 70) | public virtual async Task DisposeAsync() FILE: test/TestInfrastructure/TestExtensions/BaseInProcessTestClusterFixture.cs class BaseInProcessTestClusterFixture (line 10) | public abstract class BaseInProcessTestClusterFixture : Xunit.IAsyncLife... method BaseInProcessTestClusterFixture (line 14) | static BaseInProcessTestClusterFixture() method BaseInProcessTestClusterFixture (line 19) | protected BaseInProcessTestClusterFixture() method EnsurePreconditionsMet (line 32) | public void EnsurePreconditionsMet() method CheckPreconditionsOrThrow (line 37) | protected virtual void CheckPreconditionsOrThrow() { } method ConfigureTestCluster (line 39) | protected virtual void ConfigureTestCluster(InProcessTestClusterBuilde... method GetClientServiceId (line 51) | public string GetClientServiceId() => Client.ServiceProvider.GetRequir... method InitializeAsync (line 53) | public virtual async Task InitializeAsync() method DisposeAsync (line 67) | public virtual async Task DisposeAsync() FILE: test/TestInfrastructure/TestExtensions/DefaultClusterFixture.cs class DefaultClusterFixture (line 8) | public class DefaultClusterFixture : Xunit.IAsyncLifetime method DefaultClusterFixture (line 10) | static DefaultClusterFixture() method InitializeAsync (line 23) | public virtual async Task InitializeAsync() method DisposeAsync (line 39) | public virtual async Task DisposeAsync() class SiloHostConfigurator (line 54) | public class SiloHostConfigurator : ISiloConfigurator method Configure (line 56) | public void Configure(ISiloBuilder hostBuilder) FILE: test/TestInfrastructure/TestExtensions/HierarchicalKeyStore.cs class HierarchicalKeyStore (line 7) | internal class HierarchicalKeyStore : ILocalDataStore method HierarchicalKeyStore (line 20) | public HierarchicalKeyStore(int keyLayers) method WriteRow (line 25) | public string WriteRow(IList> keys, IDictionary<... method ReadRow (line 46) | public IDictionary ReadRow(IList... method ReadMultiRow (line 61) | public IList> ReadMultiRow(IList> keys, string eTag) method Clear (line 92) | public void Clear() method DumpData (line 100) | public string DumpData(bool printDump = true) method GetDataStore (line 117) | private Dictionary GetDataStore(IList> FindDataStores(IList>... method NewEtag (line 167) | private string NewEtag() FILE: test/TestInfrastructure/TestExtensions/HostedTestClusterBase.cs class HostedTestClusterEnsureDefaultStarted (line 13) | [Collection("DefaultCluster")] method HostedTestClusterEnsureDefaultStarted (line 24) | protected HostedTestClusterEnsureDefaultStarted(DefaultClusterFixture ... class TestClusterExtensions (line 30) | public static class TestClusterExtensions method RoundTripSystemTextJsonSerialization (line 32) | public static T RoundTripSystemTextJsonSerialization(this TestClust... method RoundTripSerializationForTesting (line 38) | public static T RoundTripSerializationForTesting(this TestCluster c... method DeepCopy (line 44) | public static T DeepCopy(this TestCluster cluster, T value) method GetSerializer (line 50) | public static Serializer GetSerializer(this TestCluster cluster) FILE: test/TestInfrastructure/TestExtensions/ILocalDataStore.cs type ILocalDataStore (line 3) | public interface ILocalDataStore method WriteRow (line 6) | string WriteRow(IList> keys, IDictionary ReadRow(IList> keys); method ReadMultiRow (line 8) | IList> ReadMultiRow(IList> keys, string eTag); method Clear (line 10) | void Clear(); FILE: test/TestInfrastructure/TestExtensions/MockStorageProvider.cs class SiloBuilderExtensions (line 11) | public static class SiloBuilderExtensions method AddTestStorageProvider (line 13) | public static ISiloBuilder AddTestStorageProvider(this ISiloBuilder... method AddTestStorageProvider (line 18) | public static ISiloBuilder AddTestStorageProvider(this ISiloBuilder... class MockStorageProvider (line 37) | [DebuggerDisplay("MockStorageProvider:{Name}")] type Commands (line 40) | public enum Commands class StateForTest (line 49) | [Serializable] method MockStorageProvider (line 82) | public MockStorageProvider(ILoggerFactory loggerFactory, DeepCopier co... method MockStorageProvider (line 86) | public MockStorageProvider(string name, ILoggerFactory loggerFactory, ... method MockStorageProvider (line 90) | public MockStorageProvider(string name, int numKeys, ILoggerFactory lo... method GetProviderState (line 106) | public StateForTest GetProviderState() class SetValueArgs (line 117) | [Serializable] method SetValue (line 134) | public void SetValue(SetValueArgs args) method SetValue (line 139) | private void SetValue(Type stateType, string grainType, GrainId grainI... method GetLastState (line 159) | public object GetLastState() method GetLastState (line 164) | public T GetLastState() method GetLastState (line 169) | private object GetLastState(string grainType, GrainId grainId, IGra... method Close (line 187) | public virtual Task Close() method ReadStateAsync (line 195) | public virtual Task ReadStateAsync(string grainType, GrainId grainI... method WriteStateAsync (line 208) | public virtual Task WriteStateAsync(string grainType, GrainId grain... method ClearStateAsync (line 225) | public virtual Task ClearStateAsync(string grainType, GrainId grain... method GetId (line 241) | private static string GetId(GrainId grainId) => grainId.ToString(); method MakeGrainStateKeys (line 243) | private static IList> MakeGrainStateKeys(string ... method ResetHistory (line 252) | public void ResetHistory() method ExecuteCommand (line 265) | public virtual Task ExecuteCommand(int command, object arg) FILE: test/TestInfrastructure/TestExtensions/OrleansTestingBase.cs class OrleansTestingBase (line 3) | public abstract class OrleansTestingBase method GetRandomGrainId (line 5) | public static long GetRandomGrainId() => Random.Shared.Next(); FILE: test/TestInfrastructure/TestExtensions/Runners/GoldenPathLeaseProviderTestRunner.cs class GoldenPathLeaseProviderTestRunner (line 7) | public class GoldenPathLeaseProviderTestRunner method GoldenPathLeaseProviderTestRunner (line 14) | protected GoldenPathLeaseProviderTestRunner(ILeaseProvider leaseProvid... method ProviderCanAcquireLeases (line 20) | [SkippableFact] method ProviderCanReleaseLeases (line 37) | [SkippableFact] method ProviderCanRenewLeases (line 49) | [SkippableFact] method Provider_TryAcquireLeaseWhichBelongToOtherEntity_Return_LeaseNotAvailable (line 68) | [SkippableFact] method Provider_TryRenewLeaseWithWrongToken_Return_InvalidToken (line 82) | [SkippableFact] method Provider_LifeCycle_Acqurie_Renew_Release_ShouldBeAbleToAcquireLeaseOnTheSameResourceAfterRelease (line 102) | [SkippableFact] FILE: test/TestInfrastructure/TestExtensions/SerializationTestEnvironment.cs class SerializationTestEnvironment (line 7) | public class SerializationTestEnvironment : IDisposable method SerializationTestEnvironment (line 9) | public SerializationTestEnvironment(Action configureCl... method InitializeWithDefaults (line 27) | public static SerializationTestEnvironment InitializeWithDefaults(Acti... method Dispose (line 42) | public void Dispose() FILE: test/TestInfrastructure/TestExtensions/SiloAddressUtils.cs class SiloAddressUtils (line 6) | public static class SiloAddressUtils method NewLocalSiloAddress (line 10) | public static SiloAddress NewLocalSiloAddress(int gen) FILE: test/TestInfrastructure/TestExtensions/TestCategory.cs class TestCategoryAttribute (line 16) | [TraitDiscoverer("CategoryDiscoverer", "TestExtensions")] method TestCategoryAttribute (line 20) | public TestCategoryAttribute(string category) { } class CategoryDiscoverer (line 23) | public class CategoryDiscoverer : ITraitDiscoverer method CategoryDiscoverer (line 25) | public CategoryDiscoverer(IMessageSink diagnosticMessageSink) method GetTraits (line 29) | public IEnumerable> GetTraits(IAttributeI... FILE: test/TestInfrastructure/TestExtensions/TestClusterPerTest.cs class TestClusterPerTest (line 8) | public abstract class TestClusterPerTest : OrleansTestingBase, Xunit.IAs... method TestClusterPerTest (line 11) | static TestClusterPerTest() method TestClusterPerTest (line 27) | protected TestClusterPerTest() method EnsurePreconditionsMet (line 40) | public void EnsurePreconditionsMet() method CheckPreconditionsOrThrow (line 45) | protected virtual void CheckPreconditionsOrThrow() { } method ConfigureTestCluster (line 47) | protected virtual void ConfigureTestCluster(TestClusterBuilder builder) method InitializeAsync (line 51) | public virtual async Task InitializeAsync() method DisposeAsync (line 67) | public virtual async Task DisposeAsync() FILE: test/TestInfrastructure/TestExtensions/TestConstants.cs class TestConstants (line 6) | internal static class TestConstants FILE: test/TestInfrastructure/TestExtensions/TestDefaultConfiguration.cs class TestDefaultConfiguration (line 10) | public class TestDefaultConfiguration method TestDefaultConfiguration (line 15) | static TestDefaultConfiguration() method InitializeDefaults (line 20) | public static void InitializeDefaults() method GetValue (line 72) | public static bool GetValue(string key, out string value) method BuildDefaultConfiguration (line 79) | private static IConfiguration BuildDefaultConfiguration() method ConfigureHostConfiguration (line 88) | public static void ConfigureHostConfiguration(IConfigurationBuilder bu... class SerializablePhysicalFileProvider (line 104) | private class SerializablePhysicalFileProvider : IFileProvider method GetDirectoryContents (line 111) | public IDirectoryContents GetDirectoryContents(string subpath) method GetFileInfo (line 116) | public IFileInfo GetFileInfo(string subpath) method Watch (line 121) | public IChangeToken Watch(string filter) method FileProvider (line 126) | private PhysicalFileProvider FileProvider() method TryAddJsonFileInAncestorFolder (line 133) | private static bool TryAddJsonFileInAncestorFolder(IConfigurationBuild... method TryAddJsonFileFromEnvironmentVariable (line 151) | private static bool TryAddJsonFileFromEnvironmentVariable(IConfigurati... method ConfigureTestCluster (line 161) | public static void ConfigureTestCluster(TestClusterBuilder builder) FILE: test/TestInfrastructure/TestExtensions/TestEnvironmentFixture.cs class TestEnvironmentFixture (line 3) | public class TestEnvironmentFixture : SerializationTestEnvironment FILE: test/TestInfrastructure/TestExtensions/TestOutputHelperExtensions.cs class TestOutputHelperExtensions (line 3) | public static class TestOutputHelperExtensions method WriteLine (line 5) | public static void WriteLine(this ITestOutputHelper output, object value) FILE: test/TestInfrastructure/TestExtensions/TestUtils.cs class TestUtils (line 10) | public class TestUtils method GetRandomGrainId (line 12) | public static long GetRandomGrainId() => Random.Shared.Next(); method CheckForAzureStorage (line 14) | public static void CheckForAzureStorage() method CheckForEventHub (line 39) | public static void CheckForEventHub() method CheckForRedis (line 48) | public static void CheckForRedis() method CalibrateTimings (line 56) | public static double CalibrateTimings() method TimeRunAsync (line 73) | public static async Task TimeRunAsync(int numIterations, Tim... method GetActivationCount (line 97) | public static async Task GetActivationCount(IGrainFactory grainFa... class RequestContextTestUtils (line 114) | public static class RequestContextTestUtils method SetActivityId (line 116) | public static void SetActivityId(Guid id) method GetActivityId (line 121) | public static Guid GetActivityId() method ClearActivityId (line 126) | public static void ClearActivityId() FILE: test/TestInfrastructure/TestExtensions/XunitLoggerProvider.cs class XunitLoggerProvider (line 6) | public class XunitLoggerProvider : ILoggerProvider method XunitLoggerProvider (line 10) | public XunitLoggerProvider(ITestOutputHelper output) method CreateLogger (line 15) | public ILogger CreateLogger(string categoryName) => new XunitLogger(th... method Dispose (line 17) | public void Dispose() class XunitLogger (line 21) | private class XunitLogger : ILogger, IDisposable method XunitLogger (line 26) | public XunitLogger(ITestOutputHelper output, string category) method BeginScope (line 32) | public IDisposable BeginScope(TState state) => this; method Dispose (line 34) | public void Dispose() { } method IsEnabled (line 36) | public bool IsEnabled(LogLevel logLevel) => true; method Log (line 38) | public void Log(LogLevel logLevel, EventId eventId, TState s... FILE: test/TesterInternal/ActivationsLifeCycleTests/ActivationCancellationTests.cs class ActivationCancellationLoggingTests (line 39) | public class ActivationCancellationLoggingTests : OrleansTestingBase, IC... class Fixture (line 44) | public class Fixture : BaseTestClusterFixture method ConfigureTestCluster (line 49) | protected override void ConfigureTestCluster(TestClusterBuilder buil... class SiloHostConfigurator (line 55) | private class SiloHostConfigurator : ISiloConfigurator, IHostConfigu... method Configure (line 57) | public void Configure(ISiloBuilder hostBuilder) method Configure (line 74) | public void Configure(IHostBuilder hostBuilder) method ActivationCancellationLoggingTests (line 84) | public ActivationCancellationLoggingTests(Fixture fixture, ITestOutput... method GetActivationLogs (line 91) | private (IReadOnlyList ErrorLogs, IReadOnlyList Wa... method AssertLogEventExists (line 117) | private static void AssertLogEventExists(IEnumerable logs, i... method AssertLogEventNotExists (line 125) | private static void AssertLogEventNotExists(IEnumerable logs... method OperationCanceledException_WhenCancellationTokenObserved_LogsInfoNotError (line 138) | [Fact, TestCategory("Functional"), TestCategory("ActivationCancellatio... method ObjectDisposedException_WhenCancellationRequested_LogsWarningNotError (line 173) | [Fact, TestCategory("Functional"), TestCategory("ActivationCancellatio... method TaskCanceledException_WhenCancellationRequested_LogsInfoNotError (line 208) | [Fact, TestCategory("Functional"), TestCategory("ActivationCancellatio... method GenericException_DuringActivation_LogsError (line 246) | [Fact, TestCategory("BVT"), TestCategory("ActivationCancellation")] method ObjectDisposedException_WhenNotCancelled_LogsError (line 272) | [Fact, TestCategory("BVT"), TestCategory("ActivationCancellation")] method OperationCanceledException_WhenNotCancelled_LogsError (line 298) | [Fact, TestCategory("BVT"), TestCategory("ActivationCancellation")] method SuccessfulActivation_NoErrorOrWarningLogs (line 327) | [Fact, TestCategory("BVT"), TestCategory("ActivationCancellation")] class InMemoryLoggerProvider (line 350) | public class InMemoryLoggerProvider : ILoggerProvider method CreateLogger (line 355) | public ILogger CreateLogger(string categoryName) => new InMemoryLogger... method Dispose (line 357) | public void Dispose() { } method Clear (line 359) | public void Clear() method GetLogs (line 367) | public IReadOnlyList GetLogs() method AddLog (line 375) | internal void AddLog(LogEntry entry) class InMemoryLogger (line 383) | private class InMemoryLogger(InMemoryLoggerProvider provider, string c... method BeginScope (line 385) | public IDisposable? BeginScope(TState state) where TState : ... method IsEnabled (line 387) | public bool IsEnabled(LogLevel logLevel) => true; method Log (line 389) | public void Log(LogLevel logLevel, EventId eventId, TState s... type LogEntry (line 396) | public record LogEntry(string Category, LogLevel Level, EventId EventId,... FILE: test/Transactions/Orleans.Transactions.Azure.Test/AzureTransactionalStateStorageTests.cs class TestState (line 15) | public class TestState : IEquatable method Equals (line 19) | public bool Equals(TestState other) class AzureTransactionalStateStorageTests (line 28) | public class AzureTransactionalStateStorageTests : TransactionalStateSto... method AzureTransactionalStateStorageTests (line 32) | public AzureTransactionalStateStorageTests(TestFixture fixture, ITestO... method StateStorageFactory (line 37) | private static async Task> State... method InitTableAsync (line 46) | private static async Task InitTableAsync(ILogger logger) method GetCloudTableCreationClient (line 65) | private static TableServiceClient GetCloudTableCreationClient(ILogger ... FILE: test/Transactions/Orleans.Transactions.Azure.Test/ConsistencySkewedClockTests.cs class ConsistencySkewedClockTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions-dev")] method ConsistencySkewedClockTests (line 13) | public ConsistencySkewedClockTests(SkewedClockTestFixture fixture, ITe... FILE: test/Transactions/Orleans.Transactions.Azure.Test/ConsistencyTests.cs class ConsistencyTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions-dev")] method ConsistencyTests (line 13) | public ConsistencyTests(TestFixture fixture, ITestOutputHelper output) FILE: test/Transactions/Orleans.Transactions.Azure.Test/FaultInjection/ControlledInjection/TransactionFaultInjectionTests.cs class TransactionFaultInjectionTests (line 11) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method TransactionFaultInjectionTests (line 14) | public TransactionFaultInjectionTests(ControlledFaultInjectionTestFixt... FILE: test/Transactions/Orleans.Transactions.Azure.Test/FaultInjection/RandomInjection/ConsistencyFaultInjectionTests.cs class ConsistencyFaultInjectionTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions-dev")] method ConsistencyFaultInjectionTests (line 13) | public ConsistencyFaultInjectionTests(RandomFaultInjectedTestFixture f... FILE: test/Transactions/Orleans.Transactions.Azure.Test/GoldenPathTests.cs class GoldenPathTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method GoldenPathTests (line 13) | public GoldenPathTests(TestFixture fixture, ITestOutputHelper output) FILE: test/Transactions/Orleans.Transactions.Azure.Test/GrainFaultTests.cs class GrainFaultTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method GrainFaultTests (line 13) | public GrainFaultTests(TestFixture fixture, ITestOutputHelper output) FILE: test/Transactions/Orleans.Transactions.Azure.Test/SkewedClockGoldenPathTransactionTests.cs class SkewedClockGoldenPathTransactionTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method SkewedClockGoldenPathTransactionTests (line 13) | public SkewedClockGoldenPathTransactionTests(SkewedClockTestFixture fi... FILE: test/Transactions/Orleans.Transactions.Azure.Test/TestFixture.cs class TestFixture (line 13) | public class TestFixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 15) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 21) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 27) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 29) | public void Configure(ISiloBuilder hostBuilder) class ClientBuilderConfigurator (line 41) | public class ClientBuilderConfigurator : IClientBuilderConfigurator method Configure (line 43) | public void Configure(IConfiguration configuration, IClientBuilder c... class ControlledFaultInjectionTestFixture (line 51) | public class ControlledFaultInjectionTestFixture : BaseTestClusterFixture method CheckPreconditionsOrThrow (line 53) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 59) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 64) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 66) | public void Configure(ISiloBuilder hostBuilder) class SkewedClockTestFixture (line 84) | public class SkewedClockTestFixture : TestFixture method ConfigureTestCluster (line 86) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class RandomFaultInjectedTestFixture (line 94) | public class RandomFaultInjectedTestFixture : TestFixture method ConfigureTestCluster (line 96) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class TxSiloBuilderConfigurator (line 102) | public class TxSiloBuilderConfigurator : ISiloConfigurator method Configure (line 105) | public void Configure(ISiloBuilder hostBuilder) FILE: test/Transactions/Orleans.Transactions.Azure.Test/TocFaultTransactionTests.cs class TocFaultTransactionTests (line 11) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method TocFaultTransactionTests (line 14) | public TocFaultTransactionTests(TestFixture fixture, ITestOutputHelper... FILE: test/Transactions/Orleans.Transactions.Azure.Test/TocGoldenPathTests.cs class TocGoldenPathTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method TocGoldenPathTests (line 13) | public TocGoldenPathTests(TestFixture fixture, ITestOutputHelper output) FILE: test/Transactions/Orleans.Transactions.Azure.Test/TransactionConcurrencyTests.cs class TransactionConcurrencyTests (line 10) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method TransactionConcurrencyTests (line 13) | public TransactionConcurrencyTests(TestFixture fixture, ITestOutputHel... FILE: test/Transactions/Orleans.Transactions.Azure.Test/TransactionRecoveryTests.cs class TransactionRecoveryTests (line 16) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method TransactionRecoveryTests (line 22) | public TransactionRecoveryTests(ITestOutputHelper helper) method InitializeAsync (line 28) | public override async Task InitializeAsync() method CheckPreconditionsOrThrow (line 34) | protected override void CheckPreconditionsOrThrow() method ConfigureTestCluster (line 40) | protected override void ConfigureTestCluster(TestClusterBuilder builder) method TransactionWillRecoverAfterRandomSiloGracefulShutdown (line 48) | [SkippableTheory] method TransactionWillRecoverAfterRandomSiloUnGracefulShutdown (line 56) | [SkippableTheory] class SiloBuilderConfiguratorUsingAzureClustering (line 64) | private class SiloBuilderConfiguratorUsingAzureClustering : ISiloConfi... method Configure (line 66) | public void Configure(ISiloBuilder hostBuilder) class ClientBuilderConfiguratorUsingAzureClustering (line 72) | private class ClientBuilderConfiguratorUsingAzureClustering : IClientB... method Configure (line 74) | public void Configure(IConfiguration configuration, IClientBuilder c... FILE: test/Transactions/Orleans.Transactions.Azure.Test/TransactionScopeTests.cs class TransactionScopeTests (line 13) | [TestCategory("AzureStorage"), TestCategory("Transactions"), TestCategor... method TransactionScopeTests (line 16) | public TransactionScopeTests(TestFixture fixture, ITestOutputHelper ou... FILE: test/Transactions/Orleans.Transactions.Tests/Disabled/DisabledTransactionsTests.cs class DisabledTransactionsTests (line 11) | [TestCategory("BVT"), TestCategory("Transactions")] method DisabledTransactionsTests (line 14) | public DisabledTransactionsTests(DefaultClusterFixture fixture, ITestO... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/ConsistencySkewedClockTests.cs class ConsistencySkewedClockTests (line 10) | [TestCategory("Transactions-dev")] method ConsistencySkewedClockTests (line 13) | public ConsistencySkewedClockTests(SkewedClockMemoryTransactionsFixtur... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/ConsistencyTests.cs class ConsistencyTests (line 10) | [TestCategory("Transactions-dev")] method ConsistencyTests (line 13) | public ConsistencyTests(MemoryTransactionsFixture fixture, ITestOutput... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/GoldenPathTransactionMemoryTests.cs class GoldenPathTransactionMemoryTests (line 10) | [TestCategory("BVT"), TestCategory("Transactions")] method GoldenPathTransactionMemoryTests (line 13) | public GoldenPathTransactionMemoryTests(MemoryTransactionsFixture fixt... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/GrainFaultTransactionMemoryTests.cs class GrainFaultTransactionMemoryTests (line 10) | [TestCategory("BVT"), TestCategory("Transactions")] method GrainFaultTransactionMemoryTests (line 13) | public GrainFaultTransactionMemoryTests(MemoryTransactionsFixture fixt... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/MemoryTransactionsFixture.cs class MemoryTransactionsFixture (line 9) | public class MemoryTransactionsFixture : BaseTestClusterFixture method ConfigureTestCluster (line 11) | protected override void ConfigureTestCluster(TestClusterBuilder builder) class SiloBuilderConfigurator (line 16) | public class SiloBuilderConfigurator : ISiloConfigurator method Configure (line 18) | public void Configure(ISiloBuilder hostBuilder) class SkewedClockMemoryTransactionsFixture (line 28) | public class SkewedClockMemoryTransactionsFixture : MemoryTransactionsFi... method ConfigureTestCluster (line 30) | protected override void ConfigureTestCluster(TestClusterBuilder builder) FILE: test/Transactions/Orleans.Transactions.Tests/Memory/SkewedClockGoldenPathTransactionMemoryTests.cs class SkewedClockGoldenPathTransactionMemoryTests (line 10) | [TestCategory("BVT"), TestCategory("Transactions")] method SkewedClockGoldenPathTransactionMemoryTests (line 13) | public SkewedClockGoldenPathTransactionMemoryTests(SkewedClockMemoryTr... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/TocFaultTransactionMemoryTests.cs class TocFaultTransactionMemoryTests (line 8) | [TestCategory("BVT"), TestCategory("Transactions")] method TocFaultTransactionMemoryTests (line 11) | public TocFaultTransactionMemoryTests(MemoryTransactionsFixture fixtur... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/TocGoldenPathMemoryTests.cs class TocGoldenPathTransactionMemoryTests (line 7) | [TestCategory("BVT"), TestCategory("Transactions")] method TocGoldenPathTransactionMemoryTests (line 10) | public TocGoldenPathTransactionMemoryTests(MemoryTransactionsFixture f... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/TransactionAttributionTest.cs class TransactionAttributionTest (line 6) | [TestCategory("BVT"), TestCategory("Transactions")] method TransactionAttributionTest (line 9) | public TransactionAttributionTest(MemoryTransactionsFixture fixture, I... FILE: test/Transactions/Orleans.Transactions.Tests/Memory/TransactionConcurrencyTests.cs class TransactionConcurrencyTests (line 8) | [TestCategory("BVT"), TestCategory("Transactions")] method TransactionConcurrencyTests (line 11) | public TransactionConcurrencyTests(MemoryTransactionsFixture fixture, ... FILE: test/Transactions/Orleans.Transactions.Tests/Runners/TransactionAttributionTestRunner.cs class TransactionAttributionTestRunner (line 7) | public abstract class TransactionAttributionTestRunner method TransactionAttributionTestRunner (line 12) | protected TransactionAttributionTestRunner(IGrainFactory grainFactory,... method AllSupportedAttributesFromOutsideTransactionTest (line 28) | [Fact] method AllSupportedAttributesFromWithinTransactionTest (line 87) | [Fact] method CreateOrJoinTest (line 142) | [Fact] method CreateTest (line 177) | [Fact] method SupportedTest (line 218) | [Fact] method JoinFailTest (line 259) | [Fact] method NotAllowedFailTest (line 273) | [Fact] FILE: test/Transactions/Orleans.Transactions.Tests/TransactionOverloadDetectorTests.cs class TransactionOverloadDetectorTests (line 9) | [TestCategory("BVT"), TestCategory("Transactions")] method TransactionOverloadDetectorTests (line 14) | public TransactionOverloadDetectorTests(ITestOutputHelper output) method RateLimitTest (line 19) | [SkippableTheory]