Package org.gnome.gio
Interface MountOperation.AbortedCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
MountOperation
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface declaration of the
AbortedCallback
callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
run()
Emitted by the backend when e.g.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment)
method.default void
upcall
(MemorySegment sourceMountOperation) Theupcall
method is called from native code.
-
Method Details
-
run
void run()Emitted by the backend when e.g. a device becomes unavailable while a mount operation is in progress.Implementations of GMountOperation should handle this signal by dismissing open password dialogs.
-
upcall
Theupcall
method is called from native code. The parameters are marshaled andrun()
is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment)
method.- Specified by:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-