Example #1
0
 /// <summary>
 /// Refresh session epoch and handle checkpointing phases. Used only
 /// in case of thread-affinitized sessions (async support is disabled).
 /// </summary>
 public void Refresh()
 {
     if (supportAsync)
     {
         UnsafeResumeThread();
     }
     fht.InternalRefresh(ctx, this);
     if (supportAsync)
     {
         UnsafeSuspendThread();
     }
 }