2013-12-05 05:57:44 +00:00
|
|
|
//
|
|
|
|
// LACamliUploadOperation.h
|
|
|
|
// photobackup
|
|
|
|
//
|
|
|
|
// Created by Nick O'Neill on 11/29/13.
|
|
|
|
// Copyright (c) 2013 The Camlistore Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@class LACamliFile,LACamliClient;
|
|
|
|
|
|
|
|
@interface LACamliUploadOperation : NSOperation
|
|
|
|
|
|
|
|
@property LACamliClient *client;
|
|
|
|
@property LACamliFile *file;
|
2013-12-09 04:50:03 +00:00
|
|
|
@property UIBackgroundTaskIdentifier taskID;
|
2013-12-05 05:57:44 +00:00
|
|
|
|
2014-01-02 19:46:39 +00:00
|
|
|
@property (readonly) BOOL failedTransfer;
|
2013-12-05 05:57:44 +00:00
|
|
|
@property (readonly) BOOL isExecuting;
|
|
|
|
@property (readonly) BOOL isFinished;
|
|
|
|
|
|
|
|
- (BOOL)isConcurrent;
|
|
|
|
- (id)initWithFile:(LACamliFile *)file andClient:(LACamliClient *)client;
|
|
|
|
|
|
|
|
@end
|