Alex Bikfalvi
SimStream Documentation
StreamMessagePullSegmentResponse.h
00001 #pragma once 00002 00003 #include "StreamMessage.h" 00004 00005 class CStreamMessagePullSegmentResponse : public CStreamMessage 00006 { 00007 private: 00008 __uint32 srcId; 00009 __uint32 srcIdEntry; 00010 __uint32 dstId; 00011 __uint32 dstIdEntry; 00012 00013 __uint32 first; 00014 __uint8 count; 00015 __uint64 success; 00016 __uint64 fail; 00017 00018 public: 00019 CStreamMessagePullSegmentResponse( 00020 __uint32 stream, 00021 __uint32 srcId, 00022 __uint32 srcIdEntry, 00023 __uint32 dstId, 00024 __uint32 dstIdEntry, 00025 __uint32 first, 00026 __uint8 count, 00027 __uint64 success, 00028 __uint64 fail 00029 ); 00030 virtual ~CStreamMessagePullSegmentResponse() { } 00031 00032 inline __uint32 SrcId() { return this->srcId; } 00033 inline __uint32 SrcIdEntry() { return this->srcIdEntry; } 00034 inline __uint32 DstId() { return this->dstId; } 00035 inline __uint32 DstIdEntry() { return this->dstIdEntry; } 00036 00037 inline __uint32 First() { return this->first; } 00038 inline __uint8 Count() { return this->count; } 00039 inline __uint64 Success() { return this->success; } 00040 inline __uint64 Fail() { return this->fail; } 00041 00042 virtual CPacket* Copy(); 00043 };
Last updated: February 8, 2011