C# Class OpenStory.Server.Processing.GameServerBase

Represents a generic game server.
Inheritance: IRegisteredService
Mostrar archivo Open project: shoftee/OpenStory

Public Methods

Method Description
Initialize ( OsServiceConfiguration serviceConfiguration ) : void
Ping ( ) : void
Start ( ) : void
Stop ( ) : void

Protected Methods

Method Description
OnInitializing ( OsServiceConfiguration serviceConfiguration ) : void

Executed when the server is being initialized.

OnStarting ( ) : void

Executed when the server is being started.

OnStopping ( ) : void

Executed when the server is being stopped.

Method Details

Initialize() public method

public Initialize ( OsServiceConfiguration serviceConfiguration ) : void
serviceConfiguration OsServiceConfiguration
return void

OnInitializing() protected method

Executed when the server is being initialized.
protected OnInitializing ( OsServiceConfiguration serviceConfiguration ) : void
serviceConfiguration OsServiceConfiguration
return void

OnStarting() protected method

Executed when the server is being started.
protected OnStarting ( ) : void
return void

OnStopping() protected method

Executed when the server is being stopped.
protected OnStopping ( ) : void
return void

Ping() public method

public Ping ( ) : void
return void

Start() public method

public Start ( ) : void
return void

Stop() public method

public Stop ( ) : void
return void