source:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/SlaveDummy.cs
@
5055
Last change on this file since 5055 was 5055, checked in by cneumuel, 14 years ago | |
---|---|
File size: 410 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace HeuristicLab.Clients.Hive.Slave { |
7 | public class SlaveDummy { |
8 | public void SayHello() { |
9 | using (var service = ServiceLocator.Instance.GetService()) { |
10 | var job = service.Obj.GetJob(Guid.NewGuid()); |
11 | |
12 | service.Obj.Hello(Guid.NewGuid(), "blubb", 4, 1024); |
13 | } |
14 | } |
15 | } |
16 | } |
Note: See TracBrowser
for help on using the repository browser.