コード例 #1
0
 public NotificationService(SceneAccessor sceneAccessor)
     : this(sceneAccessor, ServerTask.Update)
 {
 }
コード例 #2
0
 // Used for tests
 public NotificationService(SceneAccessor sceneAccessor, Action<amBXScene> updateScene)
 {
     this.sceneAccessor = sceneAccessor;
       action = updateScene;
 }
コード例 #3
0
 public IntegratedListing(SceneAccessor sceneAccessor, NotificationClient notificationClient)
 {
     this.sceneAccessor = sceneAccessor;
       this.notificationClient = notificationClient;
       Scenes = new Dictionary<string, string>();
 }