Class CKFetchShareMetadataOperation

  • All Implemented Interfaces:
    NSObject

    public class CKFetchShareMetadataOperation
    extends CKOperation
    CKFetchShareMetadataOperation Fetch the @c CKShareMetadata for a share URL. Since you can't know what container this share is in before you fetch its metadata, you may run this operation in any container you have access to
    • Constructor Detail

      • CKFetchShareMetadataOperation

        protected CKFetchShareMetadataOperation​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • version_static

        public static long version_static()
      • fetchShareMetadataCompletionBlock

        public CKFetchShareMetadataOperation.Block_fetchShareMetadataCompletionBlock_ret fetchShareMetadataCompletionBlock()
        This block is called when the operation completes. The @code -[NSOperation completionBlock] @endcode will also be called if both are set. Each @c CKOperation instance has a private serial queue. This queue is used for all callback block invocations.
      • rootRecordDesiredKeys

        public NSArray<java.lang.String> rootRecordDesiredKeys()
        Declares which user-defined keys should be fetched and added to the resulting @c rootRecord. Only consulted if @c shouldFetchRootRecord is @c YES. If nil, declares the entire root record should be downloaded. If set to an empty array, declares that no user fields should be downloaded. Defaults to @c nil.
      • setFetchShareMetadataCompletionBlock

        public void setFetchShareMetadataCompletionBlock​(CKFetchShareMetadataOperation.Block_setFetchShareMetadataCompletionBlock value)
        This block is called when the operation completes. The @code -[NSOperation completionBlock] @endcode will also be called if both are set. Each @c CKOperation instance has a private serial queue. This queue is used for all callback block invocations.
      • setPerShareMetadataBlock

        public void setPerShareMetadataBlock​(CKFetchShareMetadataOperation.Block_setPerShareMetadataBlock value)
        Called once for each share URL that the server processed Each @c CKOperation instance has a private serial queue. This queue is used for all callback block invocations.
      • setRootRecordDesiredKeys

        public void setRootRecordDesiredKeys​(NSArray<java.lang.String> value)
        Declares which user-defined keys should be fetched and added to the resulting @c rootRecord. Only consulted if @c shouldFetchRootRecord is @c YES. If nil, declares the entire root record should be downloaded. If set to an empty array, declares that no user fields should be downloaded. Defaults to @c nil.
      • setShareURLs

        public void setShareURLs​(NSArray<? extends NSURL> value)
      • setShouldFetchRootRecord

        public void setShouldFetchRootRecord​(boolean value)
        If set to YES, the resulting @c CKShareMetadata will have a @c rootRecord object filled out. Defaults to @c NO. The resulting @c CKShareMetadata will have a @c rootRecordID property regardless of the value of this property.
      • shouldFetchRootRecord

        public boolean shouldFetchRootRecord()
        If set to YES, the resulting @c CKShareMetadata will have a @c rootRecord object filled out. Defaults to @c NO. The resulting @c CKShareMetadata will have a @c rootRecordID property regardless of the value of this property.