0
如果我有一個JavaFX的財產,我從這個屬性創建事件流:如何通過訂閱事件流來獲取屬性的來源?
EventStreams.nonNullValuesOf(node.boundsInParentProperty())
有沒有在創建時設置源(在這種情況下,「節點」)或獲取該對象的可能性後來在訂閱?
例如:
EventStream<...> stream = EventStreams.nonNullValuesOf(node.boundsInParentProperty());
...
stream.subscribe((node, bounds) -> ...);
或創建時間:
EventStream<...> stream = EventStreams.valueAndSource(node.boundsInParentProperty(), node);