|
LuxChat
2.0
Instant messenger for iOS
|
#import <PFCloud+Synchronous.h>
Class Methods | |
| (nullable id) | + callFunction:withParameters: |
| (nullable id) | + callFunction:withParameters:error: |
Copyright (c) 2015-present, Parse, LLC. All rights reserved.
This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. This category lists all methods of PFCloud class that are synchronous, but have asynchronous counterpart, Calling one of these synchronous methods could potentially block the current thread for a large amount of time, since it might be fetching from network or saving/loading data from disk.
| + (nullable id) callFunction: | (NSString *) | function | |
| withParameters: | (nullable NSDictionary *) | PF_SWIFT_UNAVAILABLE | |
Calls the given cloud function synchronously with the parameters provided.
| function | The function name to call. |
| parameters | The parameters to send to the function. |
Extends class PFCloud.
| + (nullable id) callFunction: | (NSString *) | function | |
| withParameters: | (nullable NSDictionary *) | parameters | |
| error: | (NSError **) | error | |
Calls the given cloud function synchronously with the parameters provided and sets the error if there is one.
| function | The function name to call. |
| parameters | The parameters to send to the function. |
| error | Pointer to an NSError that will be set if necessary. |
NSDictionary, an NSArray, NSNumber or NSString. Extends class PFCloud.
1.8.9.1