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
Show file Open project: SummerBatch/SummerBatchCore

Public Methods

Method Description
Exit ( int status ) : void

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

Method Details

Exit() public method

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