Package tigase.server.xmppclient
Class RegistrationThrottlingProcessor
- java.lang.Object
-
- tigase.server.xmppclient.RegistrationThrottlingProcessor
-
- All Implemented Interfaces:
XMPPIOProcessor
@Bean(name="registration-throttling-processor", active=true) public class RegistrationThrottlingProcessor extends java.lang.Object implements XMPPIOProcessor
Created by andrzej on 16.11.2016.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringID
-
Constructor Summary
Constructors Constructor Description RegistrationThrottlingProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Returns identifier of processorvoidgetStatistics(StatisticsList list)Returns statistics generated by this processorvoidpacketsSent(XMPPIOService service)Method is called when all waiting data was written to socket.voidprocessCommand(XMPPIOService service, Packet packet)Process command execution which may be sent from other component and should be processed by processorbooleanprocessIncoming(XMPPIOService service, Packet packet)Process packets read from socket as they are sent to SessionManager.booleanprocessOutgoing(XMPPIOService service, Packet packet)Process outgoing packets as they are added to XMPPIOService outgoing packets queue.booleanserviceStopped(XMPPIOService service, boolean streamClosed)Method called when XMPPIOService is closed.voidstreamError(XMPPIOService service, StreamError streamError)Method called when XMPP stream error is about to be sentElement[]supStreamFeatures(XMPPIOService service)Returns array of features added by this processor
-
-
-
Field Detail
-
ID
public static final java.lang.String ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public java.lang.String getId()
Description copied from interface:XMPPIOProcessorReturns identifier of processor- Specified by:
getIdin interfaceXMPPIOProcessor
-
getStatistics
public void getStatistics(StatisticsList list)
Description copied from interface:XMPPIOProcessorReturns statistics generated by this processor- Specified by:
getStatisticsin interfaceXMPPIOProcessor
-
supStreamFeatures
public Element[] supStreamFeatures(XMPPIOService service)
Description copied from interface:XMPPIOProcessorReturns array of features added by this processor- Specified by:
supStreamFeaturesin interfaceXMPPIOProcessor
-
processIncoming
public boolean processIncoming(XMPPIOService service, Packet packet)
Description copied from interface:XMPPIOProcessorProcess packets read from socket as they are sent to SessionManager.- Specified by:
processIncomingin interfaceXMPPIOProcessor- Returns:
- true if packet should not be forwarded
-
processOutgoing
public boolean processOutgoing(XMPPIOService service, Packet packet)
Description copied from interface:XMPPIOProcessorProcess outgoing packets as they are added to XMPPIOService outgoing packets queue.- Specified by:
processOutgoingin interfaceXMPPIOProcessor- Returns:
- true if packet should be removed
-
packetsSent
public void packetsSent(XMPPIOService service) throws java.io.IOException
Description copied from interface:XMPPIOProcessorMethod is called when all waiting data was written to socket.- Specified by:
packetsSentin interfaceXMPPIOProcessor- Throws:
java.io.IOException
-
processCommand
public void processCommand(XMPPIOService service, Packet packet)
Description copied from interface:XMPPIOProcessorProcess command execution which may be sent from other component and should be processed by processor- Specified by:
processCommandin interfaceXMPPIOProcessor
-
serviceStopped
public boolean serviceStopped(XMPPIOService service, boolean streamClosed)
Description copied from interface:XMPPIOProcessorMethod called when XMPPIOService is closed.- Specified by:
serviceStoppedin interfaceXMPPIOProcessor- Returns:
- true if connecton manager should not be notified about stopping of this service
-
streamError
public void streamError(XMPPIOService service, StreamError streamError)
Description copied from interface:XMPPIOProcessorMethod called when XMPP stream error is about to be sent- Specified by:
streamErrorin interfaceXMPPIOProcessor
-
-