Exemplo n.º 1
0
 private void onIncrementFailed(string errCode)
 {
     NpLogUtil.DebugLog(this.mEnableLog, "onIncrementFailed : errCode = " + errCode);
     if (this.mIncrementFailedCb != null)
     {
         this.mIncrementFailedCb(errCode);
     }
 }
Exemplo n.º 2
0
 private void onIncrementSucceeded()
 {
     NpLogUtil.DebugLog(this.mEnableLog, "onIncrementSucceeded");
     if (this.mIncrementSuccessCb != null)
     {
         this.mIncrementSuccessCb();
     }
 }
Exemplo n.º 3
0
 private void onUnlockSucceeded()
 {
     NpLogUtil.DebugLog(this.mEnableLog, "onUnlockSucceeded");
     if (this.mUnlockSuccessCb != null)
     {
         this.mUnlockSuccessCb();
     }
 }
Exemplo n.º 4
0
 private void onConflictCb(string keys)
 {
     NpLogUtil.DebugLog(this.mEnableLog, "OnConflictCb");
     if (this.mConflictCb != null)
     {
         this.mConflictCb(keys);
     }
 }
Exemplo n.º 5
0
 private void onLoadSucceeded(string loadData)
 {
     NpLogUtil.DebugLog(this.mEnableLog, "onLoadSucceeded : loadData = " + loadData);
     if (this.mLoadSuccessCb != null)
     {
         this.mLoadSuccessCb(loadData);
     }
 }
Exemplo n.º 6
0
 private void onSignInSucceeded()
 {
     NpLogUtil.DebugLog(this.mEnableLog, "onSignInSucceeded");
     if (this.mSignInSucceededCb != null)
     {
         this.mSignInSucceededCb();
     }
 }