Toggle navigation
Home
java.nio.file.Path to org.cryptomator.ui.model.AppLaunchEvent
No. of Instances - 7
No. of Commits - 1
No. of Projects - {'cryptomator'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Rename Variable
fileOpenRequests
to
launchEventQueue
path
to
launchEvent
fileOpenRequests
to
launchEventQueue
path
to
launchEvent
fileOpenRequests
to
launchEventQueue
fileOpenRequests
to
launchEventQueue
fileOpenRequests
to
launchEventQueue
fileOpenRequests
to
launchEventQueue
Add or Remove Method invocation
fileOpenRequests.offer(path)
to
launchEventQueue.offer(launchEvent)
Tasks.create(fileOpenRequests::take).onSuccess(path -> { addVault(path,true); stage.setIconified(false); stage.show(); stage.toFront(); stage.requestFocus(); } )
to
Tasks.create(launchEventQueue::take).onSuccess(event -> { stage.setIconified(false); stage.show(); stage.toFront(); stage.requestFocus(); event.getPathsToOpen().forEach(path -> addVault(path,true)); } )