Last change
on this file since 1027 was
783,
checked in by msteinbi, 16 years ago
|
First version of a dummy implementation of the ClientCommunicator (#371)
|
File size:
443 bytes
|
Rev | Line | |
---|
[780] | 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]
|
---|
[783] | 17 | public List<MessageContainer> ActionRequest { get; set; }
|
---|
[780] | 18 | }
|
---|
| 19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.