using DistributedGA.Core.Domain; namespace DistributedGA.Core.Interface { public interface IMessageSender { void Init(PeerInfo source); void SendData(PeerInfo destination, byte[][] data); } }