Last change
on this file since 851 was
783,
checked in by msteinbi, 16 years ago
|
First version of a dummy implementation of the ClientCommunicator (#371)
|
File size:
443 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Runtime.Serialization;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Hive.Contracts {
|
---|
8 |
|
---|
9 |
|
---|
10 | /// <summary>
|
---|
11 | /// Response Heartbeat class
|
---|
12 | /// Return value to hearbeats sent by the client
|
---|
13 | /// </summary>
|
---|
14 | [DataContract]
|
---|
15 | public class ResponseHB : Response {
|
---|
16 | [DataMember]
|
---|
17 | public List<MessageContainer> ActionRequest { get; set; }
|
---|
18 | }
|
---|
19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.