Package org.freedesktop.gstreamer.gst
Interface StreamCollection.StreamNotifyCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
StreamCollection
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface StreamCollection.StreamNotifyCallback
extends FunctionPointer
Functional interface declaration of the
StreamNotifyCallback callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidThe stream notify signal is used to be notified of property changes to streams within the collection.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)method.default voidupcall(MemorySegment sourceStreamCollection, MemorySegment propStream, MemorySegment prop) Theupcallmethod is called from native code.
-
Method Details
-
run
-
upcall
default void upcall(MemorySegment sourceStreamCollection, MemorySegment propStream, MemorySegment prop) Theupcallmethod is called from native code. The parameters are marshaled andrun(org.freedesktop.gstreamer.gst.Stream, org.gnome.gobject.ParamSpec)is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-