| 12345678910111213141516171819202122232425262728 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- /**
- * Allows to cancel the associated asynchronous operation
- *
- * The associated asynchronous operation is not automatically canceled if this
- * object goes out of scope.
- */
- NS_SWIFT_NAME(Cancelable)
- __attribute__((visibility ("default")))
- @interface MBXCancelable : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- /**
- * Cancels the associated asynchronous operation
- *
- * If the associated asynchronous operation has already finished, this call is ignored.
- */
- - (void)cancel;
- @end
|