C# Class TransportService.Messages.ChunkResponse

Inheritance: GenericMessage
Show file Open project: zencoders/sambatyon Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
ChunkResponse ( ) : System

Default constructor of the class

ChunkResponse ( int servingBuffer, string RID, int CID, byte payload, Uri SenderAddress ) : System

Constructor of the class that initialize attributes of the message.

Method Details

ChunkResponse() public method

Default constructor of the class
public ChunkResponse ( ) : System
return System

ChunkResponse() public method

Constructor of the class that initialize attributes of the message.
public ChunkResponse ( int servingBuffer, string RID, int CID, byte payload, Uri SenderAddress ) : System
servingBuffer int Serving buffer of te peer (that send the message). It is used for load balance
RID string Resource identificator
CID int Chunk identificator (foundamentally a progressive integer)
payload byte Payload of the chunk
SenderAddress System.Uri Address of the sender of this message
return System