Interface Parser
-
- All Known Implementing Classes:
BmpParser
,ForwardParser
,IpfixTcpParser
,IpfixUdpParser
,Netflow5UdpParser
,Netflow9UdpParser
,ParserBase
,SFlowUdpParser
,UdpParserBase
public interface Parser
Interface used by the daemon to manage parsers. When messages are received, they should be forwarded to the givenAsyncDispatcher
.- Author:
- jwhite
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
dumpInternalState()
String
getDescription()
String
getName()
void
start(ScheduledExecutorService executorService)
void
stop()
-
-
-
Method Detail
-
getName
String getName()
-
getDescription
String getDescription()
-
dumpInternalState
Object dumpInternalState()
-
start
void start(ScheduledExecutorService executorService)
-
stop
void stop()
-
-