-
- All Known Implementing Classes:
Snmp.AsyncPendingRequest
,Snmp.PendingRequest
public interface PduHandleCallback<P>
ThePduHandleCallback
can be used to get informed about aPduHandle
creation before a request is actually sent out.- Since:
- 1.8
- Version:
- 1.8
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
pduHandleAssigned(PduHandle handle, P pdu)
A new PduHandle has been created for a PDU.
-
-
-
Method Detail
-
pduHandleAssigned
void pduHandleAssigned(PduHandle handle, P pdu)
A new PduHandle has been created for a PDU. This event callback notification can be used to get informed about a new PduHandle (just) before a PDU has been sent out.- Parameters:
handle
- aPduHandle
instance that uniquely identifies a request - thus in most cases the request ID.pdu
- the request PDU for which the handle has been created.
-
-