Radical Documentation
View on GitHub
release-1
release-1
  • Home
  • Presentation
    • AbstractViewModel
    • Conventions
      • Bootstrap Conventions
      • Runtime Conventions
      • Conventions override
    • Commands and DelegateCommand
    • IViewResolver
      • Default view behaviors
      • view life cycle events
        • Callback expectations
        • notify messages
    • Message broker MVVM built-in messages
    • Application boot process demystified
      • Application shutdown
      • Singleton applications
    • AbstractMementoViewModel
      • Simple ViewModel graphs
      • Collections and complex ViewModel graphs
    • Validation and Validation Services
  • UI Composition
    • UI Composition
      • Region content lifecycle
      • TabControl region
      • Create a custom region
  • Concepts
    • Inversion of Control
      • Castle Windsor
      • Autofac
      • Unity (v2 & v3)
      • Puzzle Container
    • Entities
      • Property System
    • Messaging and Message Broker
      • POCO messages
      • Standalone message handlers
    • Observers
      • PropertyObserver
      • MementoObserver
      • BrokerObserver
  • Memento
    • Change Tracking Service
      • MementoEntity and MementoEntityCollection
      • Handling change tracking:
        • Simple model
        • Collections
        • Complex objects graph
      • Atomic operations
      • Change Tracking Service API
      • Property Metadata for the ChangeTrackingService
      • Handling collection sync
  • Behaviors
    • DataGrid Behaviors
    • Password
    • Generic routed event handler to command behavior
    • Overlay adorner
      • Busy status manager
    • TextBox behaviors:
      • Command
      • Auto select
      • DisableUndoManager
  • Markup Extensions
    • Editor binding
    • Auto Command binding
  • How to
    • Get the view of a given view model
    • Bi-directional communication between different windows/views
    • Handle the busy status during async/long running operations
    • Implement a customer improvement program
    • Manage focus
    • Create a splash screen
    • Access view model after view is closed
    • Intercept ViewModels before it's used
Powered by GitBook
On this page
  1. Presentation
  2. Application boot process demystified

Application shutdown

In order to shutdown an application built using Radical Presentation there are 3 main options.

Canonical WPF way: App.Current.Shutdown();

There is no reason to not use the default WPF standard way to shutdown the application, the only thing we cannot do in this case is to prevent the shutdown process to complete, we have no control over it.

When the App.Current.Shutdown() method is called the bootstrapper raises, via the message broker, the following events:

  • ApplicationShutdown: that simply notifies to the application that is shutting down;

2 way shutdown via ApplicationBootstrapper.Shutdown();

If we need an option to cancel the application shutdown process we should use the Shutdown() method exposed by the ApplicationBootstrapper. In this way the following events are broadcasted/dispatched by the message broker:

  1. ApplicationShutdownRequested is dispatched synchronously to the application and has a Cancel property that can be set to true to cancel the shutdown process;

  2. ApplicationShutdownCanceled is broadcasted whenever the shutdown process is cancelled;

  3. ApplicationShutdown is finally dispatched asynchronously to notify to the application that is shutting down;

2 way shutdown via ApplicationShutdownRequest message

Exactly the same approach as above can be obtained broadcasting, via the message broker, the ApplicationShutdownRequest message, without the need to have a reference to the bootstrapper.

PreviousApplication boot process demystifiedNextSingleton applications

Last updated 5 years ago