Package net.i2p.data.i2cp
Class GetBandwidthLimitsMessage
- java.lang.Object
- 
- net.i2p.data.i2cp.I2CPMessageImpl
- 
- net.i2p.data.i2cp.GetBandwidthLimitsMessage
 
 
- 
- All Implemented Interfaces:
- I2CPMessage
 
 public class GetBandwidthLimitsMessage extends I2CPMessageImpl Request the router tells us the current bw limits- Author:
- zzz
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intMESSAGE_TYPE
 - 
Constructor SummaryConstructors Constructor Description GetBandwidthLimitsMessage()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoReadMessage(InputStream in, int size)Read in the payload part of the message (after the initial 4 byte size and 1 byte type)protected byte[]doWriteMessage()Write out the payload part of the message (not including the 4 byte size and 1 byte type)intgetType()Return the unique identifier for this type of message, as specified in the network specification document under #ClientAccessLayerMessagesStringtoString()- 
Methods inherited from class net.i2p.data.i2cp.I2CPMessageImplreadBytes, readMessage, readMessage, sessionId, writeBytes, writeMessage
 
- 
 
- 
- 
- 
Field Detail- 
MESSAGE_TYPEpublic static final int MESSAGE_TYPE - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
doReadMessageprotected void doReadMessage(InputStream in, int size) throws I2CPMessageException, IOException Description copied from class:I2CPMessageImplRead in the payload part of the message (after the initial 4 byte size and 1 byte type)- Specified by:
- doReadMessagein class- I2CPMessageImpl
- Parameters:
- in- InputStream
- size- payload size
- Throws:
- I2CPMessageException
- IOException
 
 - 
doWriteMessageprotected byte[] doWriteMessage() throws I2CPMessageException, IOExceptionDescription copied from class:I2CPMessageImplWrite out the payload part of the message (not including the 4 byte size and 1 byte type)- Specified by:
- doWriteMessagein class- I2CPMessageImpl
- Returns:
- byte array
- Throws:
- I2CPMessageException
- IOException
 
 - 
getTypepublic int getType() Description copied from interface:I2CPMessageReturn the unique identifier for this type of message, as specified in the network specification document under #ClientAccessLayerMessages- Returns:
- unique identifier for this type of message
 
 
- 
 
-