All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.silverspoon.bulldog.linux.jni.NativePollResult Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package io.silverspoon.bulldog.linux.jni;

import io.silverspoon.bulldog.core.util.BulldogUtil;

public class NativePollResult {

   private int events;
   private int fd;
   private byte[] data;

   public NativePollResult(int fd, int events, byte[] data) {
      this.fd = fd;
      this.events = events;
      this.data = data;
   }

   public int getEvents() {
      return events;
   }

   public int getFileDescriptor() {
      return fd;
   }

   public byte[] getData() {
      return data;
   }

   public String getDataAsString() {
      return BulldogUtil.bytesToString(getData());
   }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy