-
- All Known Implementing Classes:
PropertiesBasedPacketFactoryBinder,StaticPacketFactoryBinder
public interface PacketFactoryBinderPcap4J modules can provide a factory to build new packets as they are received.
The implementing modules must also provide aPacketFactoryBinderProvider- Since:
- pcap4j 1.8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T,N extends NamedNumber<?,?>>
PacketFactory<T,N>getPacketFactory(java.lang.Class<T> targetClass, java.lang.Class<N> numberClass)Provides aPacketFactoryto build the received packets.
-
-
-
Method Detail
-
getPacketFactory
<T,N extends NamedNumber<?,?>> PacketFactory<T,N> getPacketFactory(java.lang.Class<T> targetClass, java.lang.Class<N> numberClass)
Provides aPacketFactoryto build the received packets.- Type Parameters:
T- the type of object the factory method returns.N- the type of object that is given to the factory method.- Parameters:
targetClass- targetClassnumberClass- numberClass- Returns:
- the factory
-
-