org.hidetake.groovy.ssh.operation.DryRunOperation.groovy Maven / Gradle / Ivy
package org.hidetake.groovy.ssh.operation
import org.hidetake.groovy.ssh.interaction.InteractionHandler
class DryRunOperation implements Operation {
@Override
int startSync() {
0
}
@Override
void startAsync(Closure closure) {
closure.call(0)
}
@Override
void addInteraction(@DelegatesTo(InteractionHandler) Closure closure) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy