Skip to content

Commit

Permalink
Merge pull request #657 from immense/jaredg-add-hub-events
Browse files Browse the repository at this point in the history
Update submodule.
  • Loading branch information
bitbound authored Jun 8, 2023
2 parents 8b91947 + 64cfa0c commit 495e347
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions Server/Services/RcImplementations/HubEventHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,21 @@ public Task InvokeCtrlAltDel(RemoteControlSession session, string viewerConnecti
return _serviceHub.Clients.Client(ex.AgentConnectionId).SendAsync("CtrlAltDel");
}

public Task NotifyDesktopSessionAdded(RemoteControlSession sessionInfo)
{
return Task.CompletedTask;
}

public Task NotifyDesktopSessionDisposed(RemoteControlSession sessionInfo)
{
return Task.CompletedTask;
}

public Task NotifyDesktopSessionRemoved(RemoteControlSession sessionInfo)
{
return Task.CompletedTask;
}

public Task NotifyRemoteControlEnded(RemoteControlSession sessionInfo)
{
return Task.CompletedTask;
Expand Down
2 changes: 1 addition & 1 deletion submodules/Immense.RemoteControl

0 comments on commit 495e347

Please sign in to comment.