Esempio n. 1
0
 public AEPacketRaw getEvents() {
   if (input == null) {
     return null;
   }
   return input.readPacket();
 }
Esempio n. 2
0
 public AEPacketRaw acquireAvailableEventsFromDriver() throws HardwareInterfaceException {
   if (input == null) {
     throw new HardwareInterfaceException("no input connection");
   }
   return input.readPacket();
 }