Package org.syncany.operations.ls
Class LsOperation
- java.lang.Object
-
- org.syncany.operations.Operation
-
- org.syncany.operations.ls.LsOperation
-
public class LsOperation extends Operation
-
-
Constructor Summary
Constructors Constructor Description LsOperation(Config config, LsOperationOptions options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LsOperationResult
execute()
Executes the operation synchronously and returns a result when the operation exits.
-
-
-
Constructor Detail
-
LsOperation
public LsOperation(Config config, LsOperationOptions options)
-
-
Method Detail
-
execute
public LsOperationResult execute() throws java.lang.Exception
Description copied from class:Operation
Executes the operation synchronously and returns a result when the operation exits. Using covariance is recommend, that is OperationFoo should override execute so as to return a OperationFooResult rather than OperationResult.
-
-