1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SuperSocket.SocketBase;
- using SuperSocket.SocketBase.Config;
- using SuperSocket.SocketBase.Provider;
- namespace SuperSocket.SocketEngine
- {
-
-
-
- public interface IRemoteWorkItem : IWorkItemBase, IStatusInfoSource
- {
-
-
-
-
-
-
-
-
-
-
- bool Setup(string serverType, string bootstrapUri, string assemblyImportRoot, IServerConfig config, ProviderFactoryInfo[] factories, string startupConfigFile);
- }
- }
|