net.minecraft.network.packet
Class Packet0KeepAlive

java.lang.Object
  extended by net.minecraft.network.packet.Packet
      extended by net.minecraft.network.packet.Packet0KeepAlive

public class Packet0KeepAlive
extends Packet


Field Summary
 int randomId
           
 
Fields inherited from class net.minecraft.network.packet.Packet
creationTimeMillis, isChunkDataPacket, packetIdToClassMap, receivedID, receivedSize, sentID, sentSize
 
Constructor Summary
Packet0KeepAlive()
           
Packet0KeepAlive(int par1)
           
 
Method Summary
 boolean canProcessAsync()
          If this returns true, the packet may be processed on any thread; otherwise it is queued for the main thread to handle.
 boolean containsSameEntityIDAs(Packet par1Packet)
          eg return packet30entity.entityId == entityId; WARNING : will throw if you compare a packet to a different packet class
 int getPacketSize()
          Abstract.
 boolean isRealPacket()
          only false for the abstract Packet class, all real packets return true
 void processPacket(NetHandler par1NetHandler)
          Passes this Packet on to the NetHandler for processing.
 void readPacketData(DataInputStream par1DataInputStream)
          Abstract.
 void writePacketData(DataOutputStream par1DataOutputStream)
          Abstract.
 
Methods inherited from class net.minecraft.network.packet.Packet
addIdClassMapping, getNewPacket, getPacketId, readBytesFromStream, readItemStack, readNBTTagCompound, readPacket, readString, toString, writeByteArray, writeItemStack, writePacket, writeString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

randomId

public int randomId
Constructor Detail

Packet0KeepAlive

public Packet0KeepAlive()

Packet0KeepAlive

public Packet0KeepAlive(int par1)
Method Detail

processPacket

public void processPacket(NetHandler par1NetHandler)
Passes this Packet on to the NetHandler for processing.

Specified by:
processPacket in class Packet

readPacketData

public void readPacketData(DataInputStream par1DataInputStream)
                    throws IOException
Abstract. Reads the raw packet data from the data stream.

Specified by:
readPacketData in class Packet
Throws:
IOException

writePacketData

public void writePacketData(DataOutputStream par1DataOutputStream)
                     throws IOException
Abstract. Writes the raw packet data to the data stream.

Specified by:
writePacketData in class Packet
Throws:
IOException

getPacketSize

public int getPacketSize()
Abstract. Return the size of the packet (not counting the header).

Specified by:
getPacketSize in class Packet

isRealPacket

public boolean isRealPacket()
only false for the abstract Packet class, all real packets return true

Overrides:
isRealPacket in class Packet

containsSameEntityIDAs

public boolean containsSameEntityIDAs(Packet par1Packet)
eg return packet30entity.entityId == entityId; WARNING : will throw if you compare a packet to a different packet class

Overrides:
containsSameEntityIDAs in class Packet

canProcessAsync

public boolean canProcessAsync()
If this returns true, the packet may be processed on any thread; otherwise it is queued for the main thread to handle.

Overrides:
canProcessAsync in class Packet