669670671672673674675
public FocusModeCommand useManualFocusAsync() { return execute( new FocusModeCommand( FocusModeCommand.Mode.MANUAL ) ); } public Boolean driveLens( final EdsEvfDriveLens mode ) { return executeNow( new DriveLensCommand( mode ) ); }
673674675676677678679
public Boolean driveLens( final EdsEvfDriveLens mode ) { return executeNow( new DriveLensCommand( mode ) ); } public DriveLensCommand driveLensAsync( final EdsEvfDriveLens mode ) { return execute( new DriveLensCommand( mode ) ); }