123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace LYFZ.StandardInterface
- {
-
-
-
- public interface IServiceRunning
- {
-
-
-
- string ServiceName
- {
- set;
- get;
- }
-
-
-
- void InitializeConstructor();
-
-
-
- void SetTimerRunWork();
-
-
-
-
-
-
- void RunWork(object source, System.Timers.ElapsedEventArgs e);
-
-
-
-
- void ServiceWriteLog(string txt);
-
-
-
-
- void OnStart(string[] args);
-
-
-
- void OnStop();
-
-
-
- void OnPause();
-
-
-
- void OnContinue();
-
-
-
- void OnShutdown();
- }
- }
|