public StartupActionsHealthCheck(StartupActionsContext context)
 {
     _context = context;
 }
Example #2
0
 public WaitForStartupActionsBeforeServingRequestsMiddleware(StartupActionsContext context, RequestDelegate next, IApplicationLifetime applicationLifetime)
 {
     _context             = context;
     _next                = next;
     _applicationLifetime = applicationLifetime;
 }
Example #3
0
 public RunStartupActionsService(StartupActionsContext startupContext, IServiceProvider serviceProvider)
 {
     _startupContext  = startupContext;
     _serviceProvider = serviceProvider;
 }