C# Class Summer.Batch.Core.Launch.Support.VmSystemExiter

Implementation of the ISystemExiter interface that calls the standards Environment.Exit method. It should be noted that there will be no unit tests for this class, since there is only one line of actual code, that would only be testable by mocking System or Runtime.
Inheritance: ISystemExiter
Afficher le fichier Open project: SummerBatch/SummerBatchCore

Méthodes publiques

Méthode Description
Exit ( int status ) : void

Terminates the current running Virtual Machine. Delegates to Environment.Exit .

Method Details

Exit() public méthode

Terminates the current running Virtual Machine. Delegates to Environment.Exit .
public Exit ( int status ) : void
status int exit status
Résultat void