forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
30
Kha/Tools/macos/std/eval/luv/FsPoll.hx
Normal file
30
Kha/Tools/macos/std/eval/luv/FsPoll.hx
Normal file
@ -0,0 +1,30 @@
|
||||
package eval.luv;
|
||||
|
||||
import eval.luv.File;
|
||||
|
||||
/**
|
||||
Filesystem polling.
|
||||
|
||||
@see https://aantron.github.io/luv/luv/Luv/FS_poll
|
||||
**/
|
||||
@:using(eval.luv.Handle)
|
||||
@:coreType abstract FsPoll to Handle {
|
||||
/**
|
||||
Allocates and initializes an FS polling handle.
|
||||
|
||||
The handle should be cleaned up with `eval.luv.Handle.close` when no longer needed.
|
||||
**/
|
||||
static public function init(loop:Loop):Result<FsPoll>;
|
||||
|
||||
/**
|
||||
Starts the handle and polls the given path for changes.
|
||||
|
||||
The default value of `interval` is 2000 (milliseconds).
|
||||
**/
|
||||
public function start(path:NativeString, ?interval:Int, callback:(result:Result<{previous:FileStat,current:FileStat}>)->Void):Void;
|
||||
|
||||
/**
|
||||
Stops the handle.
|
||||
**/
|
||||
public function stop():Result<Result.NoData>;
|
||||
}
|
Reference in New Issue
Block a user