18 instantiations of CustomResourceSnapshot
Aspire.Hosting (5)
ApplicationModel\ResourceNotificationService.cs (1)
745previousState ??= new CustomResourceSnapshot()
ConnectionStringBuilderExtensions.cs (1)
44.WithInitialState(new CustomResourceSnapshot
Dashboard\DashboardLifecycleHook.cs (1)
166var snapshot = new CustomResourceSnapshot
ExternalServiceBuilderExtensions.cs (1)
80.WithInitialState(new CustomResourceSnapshot
ParameterResourceBuilderExtensions.cs (1)
162var state = new CustomResourceSnapshot
Aspire.Hosting.GitHub.Models (1)
GitHubModelsExtensions.cs (1)
33.WithInitialState(new()
Aspire.Hosting.Tests (5)
Backchannel\AppHostBackchannelTests.cs (1)
95.WithInitialState(new () {
Dashboard\ResourcePublisherTests.cs (1)
184return new GenericResourceSnapshot(new()
ResourceCommandAnnotationTests.cs (1)
57ResourceSnapshot = new CustomResourceSnapshot
ResourceNotificationTests.cs (1)
22.WithInitialState(new()
WithUrlsTests.cs (1)
402.WithInitialState(new()
CustomResources.AppHost (3)
TalkingClockResource.cs (2)
40.WithInitialState(new CustomResourceSnapshot // Aspire type for custom resource state. 129.WithInitialState(new()
TestResource.cs (1)
15.WithInitialState(new()
HealthChecksSandbox.AppHost (1)
Program.cs (1)
51.WithInitialState(new()
Stress.AppHost (3)
Program.cs (1)
31.WithInitialState(new CustomResourceSnapshot
TestResource.cs (2)
16.WithInitialState(new() 33.WithInitialState(new()
49 references to CustomResourceSnapshot
Aspire.Hosting (42)
ApplicationModel\ResourceCommandAnnotation.cs (1)
164public required CustomResourceSnapshot ResourceSnapshot { get; init; }
ApplicationModel\ResourceNotificationService.cs (21)
163var snapshot = resourceEvent.Snapshot; 209static bool IsContinuableState(WaitBehavior waitBehavior, CustomResourceSnapshot snapshot) => 291static bool ShouldYield(WaitBehavior waitBehavior, CustomResourceSnapshot snapshot) => 325var snapshot = resourceEvent.Snapshot; 353static bool IsKnownTerminalState(CustomResourceSnapshot snapshot) => 553/// Updates the snapshot of the <see cref="CustomResourceSnapshot"/> for a resource. 558public Task PublishUpdateAsync(IResource resource, string resourceId, Func<CustomResourceSnapshot, CustomResourceSnapshot> stateFactory) 568var previousState = GetCurrentSnapshot(resource, notificationState); 570var newState = stateFactory(previousState); 648private CustomResourceSnapshot UpdateCommands(IResource resource, CustomResourceSnapshot previousState) 711static ResourceCommandSnapshot CreateCommandFromAnnotation(ResourceCommandAnnotation annotation, CustomResourceSnapshot previousState, IServiceProvider serviceProvider) 720/// Updates the snapshot of the <see cref="CustomResourceSnapshot"/> for a resource. 724public async Task PublishUpdateAsync(IResource resource, Func<CustomResourceSnapshot, CustomResourceSnapshot> stateFactory) 733private static CustomResourceSnapshot GetCurrentSnapshot(IResource resource, ResourceNotificationState notificationState) 735var previousState = notificationState.LastSnapshot; 777public CustomResourceSnapshot? LastSnapshot { get; set; } 805public class ResourceEvent(IResource resource, string resourceId, CustomResourceSnapshot snapshot) 820public CustomResourceSnapshot Snapshot { get; } = snapshot;
ApplicationModel\ResourceSnapshotAnnotation.cs (2)
9public class ResourceSnapshotAnnotation(CustomResourceSnapshot initialSnapshot) : IResourceAnnotation 14public CustomResourceSnapshot InitialSnapshot { get; } = initialSnapshot ?? throw new ArgumentNullException(nameof(initialSnapshot));
Backchannel\AppHostRpcTarget.cs (1)
93var healthStatus = CustomResourceSnapshot.ComputeHealthStatus(resourceEvent.Snapshot.HealthReports, resourceEvent.Snapshot.State?.Text);
CustomResourceExtensions.cs (2)
18/// <param name="initialSnapshot">The factory to create the initial <see cref="CustomResourceSnapshot"/> for this resource.</param> 20public static IResourceBuilder<TResource> WithInitialState<TResource>(this IResourceBuilder<TResource> builder, CustomResourceSnapshot initialSnapshot)
Dashboard\DashboardLifecycleHook.cs (1)
166var snapshot = new CustomResourceSnapshot
Dashboard\DashboardServiceData.cs (1)
40static GenericResourceSnapshot CreateResourceSnapshot(IResource resource, string resourceId, DateTime creationTimestamp, CustomResourceSnapshot snapshot)
Dashboard\GenericResourceSnapshot.cs (1)
9internal sealed class GenericResourceSnapshot(CustomResourceSnapshot state) : ResourceSnapshot
Dashboard\ResourceSnapshot.cs (1)
49yield return (KnownProperties.Resource.HealthState, CustomResourceSnapshot.ComputeHealthStatus(HealthReports, State) is not { } healthStatus ? Value.ForNull() : Value.ForString(healthStatus.ToString()), IsSensitive: false);
Dcp\DcpExecutor.cs (2)
354private async Task ProcessResourceChange<T>(WatchEventType watchEventType, T resource, ConcurrentDictionary<string, T> resourceByName, string resourceKind, Func<T, CustomResourceSnapshot, CustomResourceSnapshot> snapshotFactory) where T : CustomResource
Dcp\DcpExecutorEvents.cs (2)
13internal record OnResourceChangedContext(CancellationToken CancellationToken, string ResourceType, IResource Resource, string DcpResourceName, ResourceStatus Status, Func<CustomResourceSnapshot, CustomResourceSnapshot> UpdateSnapshot);
Dcp\ResourceSnapshotBuilder.cs (4)
20public CustomResourceSnapshot ToSnapshot(Container container, CustomResourceSnapshot previous) 94public CustomResourceSnapshot ToSnapshot(Executable executable, CustomResourceSnapshot previous)
Orchestrator\ApplicationOrchestrator.cs (2)
189static Task PublishUpdateAsync(ResourceNotificationService notificationService, IResource resource, string? resourceId, Func<CustomResourceSnapshot, CustomResourceSnapshot> stateFactory)
ParameterResourceBuilderExtensions.cs (1)
162var state = new CustomResourceSnapshot
Aspire.Hosting.Azure (2)
Provisioning\Provisioners\AzureProvisioner.cs (2)
49async Task UpdateStateAsync((IResource Resource, IAzureResource AzureResource) resource, Func<CustomResourceSnapshot, CustomResourceSnapshot> stateFactory)
Aspire.Hosting.Tests (5)
AddParameterTests.cs (2)
32var state = annotation.InitialSnapshot; 382var state = annotation.InitialSnapshot;
Health\HealthStatusTests.cs (1)
26var actualStatus = CustomResourceSnapshot.ComputeHealthStatus(reports, state);
Orchestrator\ParameterProcessorTests.cs (1)
73var updates = new List<(IResource Resource, CustomResourceSnapshot Snapshot)>();
ResourceNotificationTests.cs (1)
32var state = annotation.InitialSnapshot;