use of com.owncloud.android.operations.common.SyncOperation in project android by owncloud.
the class ReceiveExternalFilesActivity method startSyncFolderOperation.
private void startSyncFolderOperation(OCFile folder) {
mSyncInProgress = true;
// perform folder synchronization
SyncOperation synchFolderOp = new RefreshFolderOperation(folder, false, getAccount(), getApplicationContext());
synchFolderOp.execute(getStorageManager(), this, null, null);
}
Aggregations