Class | Description |
---|---|
BSD | |
BSD.kevent |
struct kevent {
uintptr_t ident; // identifier for this event
short filter; // filter for event
u_short flags; // action flags for kqueue
u_int fflags; // filter flag value
intptr_t data; // filter data value
void *udata; // opaque user data identifier
};
|
BSDPathWatchService | |
Linux | |
LinuxPathWatchKey | |
LinuxPathWatchService |
This Linux implementation of the WatchService interface works without
the use of threads or asynchronous I/O, using Linux' inotify file system
event facitily.
|
NativeLibLoader |
This class loads native libraries packaged in the JAR file that this class resides in.
|
PathImpl |
This is a minimal implementation of JDK7's Path class,
so all we offer here is what is required for WatchService
and friends to work
|
PathWatchEvent | |
PathWatchEventKind | |
PathWatchEventModifier | |
PathWatchKey | |
PathWatchService | |
PollingPathWatchService | |
Solaris | |
Solaris.file_obj | |
Unix | |
Unix.timespec | |
VoidWatchEvent | |
VoidWatchEventKind | |
Windows | |
WindowsPathWatchService |