Esempio n. 1
0
 /**
  * Perform the operation on the specified inputs, storing the results in the specified outputs.
  *
  * @param inputs An array obtained from {@link #createInputSockets(EventBus)}. The caller can set
  *     the value of each socket to an actual parameter for the operation.
  * @param outputs An array obtained from {@link #createOutputSockets(EventBus)}. The outputs of
  *     the operation will be stored in these sockets.
  * @param data Optional data to be passed to the operation
  */
 default void perform(InputSocket<?>[] inputs, OutputSocket<?>[] outputs, Optional<?> data) {
   perform(inputs, outputs);
 }