public interface IRfidUhfEventListener
Modifier and Type | Method and Description |
---|---|
void |
onRfidUhfAccessResult(BaseUHF uhf,
ResultCode code,
ActionState action,
java.lang.String epc,
java.lang.String data,
java.lang.Object params)
It is called when the device receives the result of executing the functions of Read Memory,
Write Memory, Lock and so on.
|
void |
onRfidUhfReadTag(BaseUHF uhf,
java.lang.String tag,
java.lang.Object params)
Called when the device reads the tag while performing the Inventory function.
|
void onRfidUhfAccessResult(BaseUHF uhf, ResultCode code, ActionState action, java.lang.String epc, java.lang.String data, java.lang.Object params)
uhf
- An instance of BaseUHF where the event is invoked.code
- The ResultCode enumeration indicating the result that the Device accessed the Tag.action
- An ActionState enumeration indicating the behavior that the Device accessed the Tag.epc
- An Hex type string representing the EPC value of the tag accessed by the Device.data
- This is an Hex type string that indicates the data of the memory that is read
when the Device performs the "Read Memory" function.params
- params If the event is accompanied by additional information, a non-null value
is passed to the instance.void onRfidUhfReadTag(BaseUHF uhf, java.lang.String tag, java.lang.Object params)
uhf
- An instance of BaseUHF where the event is invoked.tag
- An Hex type string representing the tag value read by the Device.params
- If the event is accompanied by additional information, a non-null value is passed to the instance.