示例#1
0
 public static void Start(string local_path, string url_path, ErrorCollectorHandler handler, long userSN, int playerPlatformType, int authPlatformType, string bundleVersion)
 {
     if (ErrorCollectorManager.SetObject(userSN, playerPlatformType, authPlatformType, bundleVersion))
     {
         EC_Manager.Instance.Init(url_path, handler, local_path);
     }
     ErrorCollectorManager.OnEnable(false, false);
 }
示例#2
0
 public void Init(string url_IP, ErrorCollectorHandler handler, string local_Location)
 {
     Connector.Start("ErrorCollector", "ErrorCollector", handler, local_Location, url_IP, false, false, true);
 }
示例#3
0
 public void Init(string server_IP, int server_PORT, ErrorCollectorHandler handler, string local_Location)
 {
     Connector.Start("ErrorCollector", "ErrorCollector", server_IP, server_PORT, handler, local_Location, false, false, true);
 }