Skip to content

Disable saveEventually/deleteEventually on tvOS. #580

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Parse/PFObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS

@returns The task that encapsulates the work being done.
*/
- (BFTask PF_GENERIC(NSNumber *)*)saveEventually PF_WATCH_UNAVAILABLE;
- (BFTask PF_GENERIC(NSNumber *)*)saveEventually PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;

/*!
@abstract Saves this object to the server at some unspecified time in the future,
Expand All @@ -374,7 +374,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
@param callback The block to execute.
It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
*/
- (void)saveEventually:(nullable PFBooleanResultBlock)callback PF_WATCH_UNAVAILABLE;
- (void)saveEventually:(nullable PFBooleanResultBlock)callback PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;

///--------------------------------------
/// @name Saving Many Objects
Expand Down Expand Up @@ -826,7 +826,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS

@returns The task that encapsulates the work being done.
*/
- (BFTask PF_GENERIC(NSNumber *)*)deleteEventually PF_WATCH_UNAVAILABLE;
- (BFTask PF_GENERIC(NSNumber *)*)deleteEventually PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;

///--------------------------------------
/// @name Dirtiness
Expand Down