Last change
on this file since 13712 was
13712,
checked in by jlodewyc, 9 years ago
|
#2582 Distribution childs and priority done. Display current jobs and start graphs
|
File size:
480 bytes
|
Line | |
---|
1 | using Microsoft.AspNet.SignalR;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Linq;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace 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.