Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/JobUpdaterHub.cs @ 13712

Last change on this file since 13712 was 13712, checked in by jlodewyc, 8 years ago

#2582 Distribution childs and priority done. Display current jobs and start graphs

File size: 480 bytes
Line 
1using Microsoft.AspNet.SignalR;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Clients.Hive.WebJobManager
8{
9    public class JobUpdaterHub : Hub
10    {
11        private RefreshableJob Job;
12
13        public void initConnection(RefreshableJob j)
14        {
15            Job = j;
16        }
17        public void sendUpdate()
18        {
19            Clients.All.sendUpdate();
20        }
21    }
22}
Note: See TracBrowser for help on using the repository browser.