Last change
on this file since 15632 was
13971,
checked in by thasling, 8 years ago
|
#2615:
increased message size to 20MB
made changes in some interfaces
|
File size:
339 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.ServiceModel;
|
---|
3 | using DistributedGA.Core.Domain;
|
---|
4 |
|
---|
5 | namespace DistributedGA.Core.Interface {
|
---|
6 |
|
---|
7 | [ServiceContract]
|
---|
8 | public interface IMessageContract {
|
---|
9 |
|
---|
10 | [OperationContract]
|
---|
11 | void SendData(PeerInfo sender, byte[] data);
|
---|
12 |
|
---|
13 | event EventHandler<MessageRecieveEventArgs> MessageRecieved;
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.