blob: 0a5fe621b87df2e8187e64fd7fe1264a0a89cbd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#include "stdafx.h"
#include <iostream>
#include "InputOutputStream.h"
#include "PacketListener.h"
#include "SetTimePacket.h"
SetTimePacket::SetTimePacket()
{
time = 0;
}
SetTimePacket::SetTimePacket(int64_t time)
{
this->time = time;
}
void SetTimePacket::read(DataInputStream *dis) //throws IOException
{
time = dis->readLong();
}
void SetTimePacket::write(DataOutputStream *dos) //throws IOException
{
dos->writeLong(time);
}
void SetTimePacket::handle(PacketListener *listener)
{
listener->handleSetTime(shared_from_this());
}
int SetTimePacket::getEstimatedSize()
{
return 8;
}
bool SetTimePacket::canBeInvalidated()
{
return true;
}
bool SetTimePacket::isInvalidatedBy(std::shared_ptr<Packet> packet)
{
return true;
}
bool SetTimePacket::isAync()
{
return true;
}
|