예제 #1
0
 public virtual void UnSubscribeForMonitor(PresentationKey presentationKey, UserIdentity identity)
 {
 }
예제 #2
0
     protected override void ObjectChanged(UserIdentity userIdentity, IList<ObjectInfo> objectInfoList,
 PresentationInfo presentationInfo, bool presentationLevel)
     {
         base.ObjectChanged(userIdentity, objectInfoList, presentationInfo, presentationLevel);
         PresentationKey presentationKey = new PresentationKey(presentationInfo.UniqueName);
         if (presentationLevel)
             _globalNotifier.Notify(userIdentity, this, "ObjectChanged", userIdentity, objectInfoList);
         else
             _presentationNotifier.Notify(userIdentity, presentationKey,
             "ObjectChanged", userIdentity, objectInfoList);
     }
예제 #3
0
 public static SlideKey CreateSlideKey(PresentationKey presentationKey, int slideId)
 {
     return new SlideKey(presentationKey, slideId);
 }
예제 #4
0
 public override void UnSubscribeForMonitor(PresentationKey presentationKey, UserIdentity identity)
 {
     _presentationNotifier.Unsubscribe(presentationKey, identity);
 }