Esempio n. 1
0
 public IOSClient()
 {
     mCloudEncrypter = DummyEncrypter;
     if (Logger.DebugLogEnabled)
     {
         Logger.d("Note: debug logs enabled on IOSClient.");
         GPGSEnableDebugLog(true);
     }
     if (sInstance != null)
     {
         Logger.e("Second instance of IOSClient created. This is not supposed to happen " +
                  "and will likely break things.");
     }
     sInstance = this;
 }
Esempio n. 2
0
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter)
 {
     Logger.d("Ignoring cloud cache encrypter (not used in Android)");
     // Not necessary in Android (since the library takes care of storing
     // data locally)
 }
Esempio n. 3
0
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter)
 {
     Logger.d("Ignoring cloud cache encrypter (not used in Android)");
 }
Esempio n. 4
0
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter)
 {
     this.mClient.SetCloudCacheEncrypter(encrypter);
 }
Esempio n. 5
0
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter)
 {
     Logger.d("IOSClient: cloud cache encrypter is now set.");
     mCloudEncrypter = encrypter;
 }
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter) {
     Logger.d("IOSClient: cloud cache encrypter is now set.");
     mCloudEncrypter = encrypter;
 }
        public IOSClient() {
            mCloudEncrypter = DummyEncrypter;
            if (Logger.DebugLogEnabled) {
                Logger.d("Note: debug logs enabled on IOSClient.");
                GPGSEnableDebugLog(true);
            }
            if (sInstance != null) {
                Logger.e("Second instance of IOSClient created. This is not supposed to happen " +
                    "and will likely break things.");
            }
            sInstance = this;

            mRtmpClient = new IOSRtmpClient();
            mTbmpClient = new IOSTbmpClient();
        }
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter)
 {
 }
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter)
 {
     Logger.d("Ignoring cloud cache encrypter (not used in Android)");
     // Not necessary in Android (since the library takes care of storing
     // data locally)
 }
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter) {}
 /// <summary>
 /// Sets the cloud cache encrypter. The cloud cache encrypter is a delegate that
 /// encrypts a byte buffer before it is saved to local storage, and decrypts the
 /// buffer after it's read from storage. It is only used in platforms where the
 /// cloud cache is implemented by the plugin as opposed to the underlying system
 /// (currently, only iOS).</summary>
 /// <param name='encrypter'>
 /// The encrypter delegate.
 /// </param>
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter) {
     mClient.SetCloudCacheEncrypter(encrypter);
 }