Class MSConversation

  • All Implemented Interfaces:
    NSObject

    public class MSConversation
    extends NSObject
    • Constructor Detail

      • MSConversation

        protected MSConversation​(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()
      • insertAttachmentWithAlternateFilenameCompletionHandler

        public void insertAttachmentWithAlternateFilenameCompletionHandler​(NSURL URL,
                                                                           java.lang.String filename,
                                                                           MSConversation.Block_insertAttachmentWithAlternateFilenameCompletionHandler completionHandler)
        insertAttachment:withAlternateFilename:completionHandler: The NSURL instance provided in the URL parameter is inserted into the Messages.app input field. This must be a file URL. Calling this method when the presentation context is `MSMessagesAppPresentationContextMedia` will result in the completion handler getting called with an error object whose error code is `MSMessageErrorCodeAPIUnavailableInPresentationContext` if the attachment type is not an image type supported by `MSSticker`.
        Parameters:
        URL - The URL to the media file to be inserted.
        filename - If you supply a string here, the message UI uses it for the attachment. Use an alternate filename to better describe the attachment or to make the name more readable.
        completionHandler - A completion handler called when the insert is complete.
      • insertMessageCompletionHandler

        public void insertMessageCompletionHandler​(MSMessage message,
                                                   MSConversation.Block_insertMessageCompletionHandler completionHandler)
        insertMessage:completionHandler: Stages the provided MSMessage object for sending. This method inserts a MSMessage object into the Messages input field, Subsequent calls to this method will replace any existing message on the input field. If the message was successfully inserted on the input field, the completion handler will be called with a nil error parameter otherwise the error parameter will be populated with an NSError object describing the failure. Calling this method when the presentation context is `MSMessagesAppPresentationContextMedia` will result in the completion handler getting called with an error object whose error code is `MSMessageErrorCodeAPIUnavailableInPresentationContext`.
        Parameters:
        message - The MSMessage instance describing the message to be sent.
        completionHandler - A completion handler called when the message has been staged or if there was an error.
      • insertStickerCompletionHandler

        public void insertStickerCompletionHandler​(MSSticker sticker,
                                                   MSConversation.Block_insertStickerCompletionHandler completionHandler)
        insertSticker:completionHandler: The sticker is inserted into the Messages.app input field.
        Parameters:
        sticker - The sticker to be inserted.
        completionHandler - A completion handler called when the insert is complete.
      • insertTextCompletionHandler

        public void insertTextCompletionHandler​(java.lang.String text,
                                                MSConversation.Block_insertTextCompletionHandler completionHandler)
        insertText:completionHandler: The NSString instance provided in the text parameter is inserted into the Messages.app input field. Calling this method when the presentation context is `MSMessagesAppPresentationContextMedia` will result in the completion handler getting called with an error object whose error code is `MSMessageErrorCodeAPIUnavailableInPresentationContext`.
        Parameters:
        text - The text to be inserted.
        completionHandler - A completion handler called when the insert is complete.
      • localParticipantIdentifier

        public NSUUID localParticipantIdentifier()
        [@property] localParticipantIdentifier A NSUUID that identifies conversation participant on this device. This NSUUID that identifies conversation participant on this device, this value will be stable while the extension is enabled. If the extension is disabled and re-enabled or the containing App is removed and re-installed this value will change.
      • remoteParticipantIdentifiers

        public NSArray<? extends NSUUID> remoteParticipantIdentifiers()
        [@property] remoteParticipantIdentifiers A NSArray of NSUUID instances, each uniquely identifies a remote participant in the conversation. Each NSUUID identifies the a remote participant in the conversation scoped to this device. These values will be stable while the extension is enabled. If the extension is disabled and re-enabled or the containing App is removed and re-installed these values will change.
      • selectedMessage

        public MSMessage selectedMessage()
        [@property] selectedMessage An MSMessage instance that may be edited and returned to Messages If the extension has been invoked in response to the user interacting with a message in the conversation transcript this property will contain the message. Otherwise this property will be nil. The message object provided may be saved to the file system. Later, this saved object may be loaded, modified and staged for sending.
      • sendAttachmentWithAlternateFilenameCompletionHandler

        public void sendAttachmentWithAlternateFilenameCompletionHandler​(NSURL URL,
                                                                         java.lang.String filename,
                                                                         MSConversation.Block_sendAttachmentWithAlternateFilenameCompletionHandler completionHandler)
        sendAttachment:withAlternateFilename:completionHandler: Start sending a file located at the provided URL. This must be a file URL. This method begins sending the file at the provided file URL. The app must be visible and have had a recent touch interaction since either last launch or last send to succeed. If the message started sending successfully, the completion handler will be called with a nil error parameter. Otherwise the error parameter will be populated with an NSError object describing the failure. Calling this method when the presentation context is `MSMessagesAppPresentationContextMedia` will result in the completion handler getting called with an error object whose error code is `MSMessageErrorCodeAPIUnavailableInPresentationContext`.
        Parameters:
        URL - The URL to the media file to be inserted.
        filename - If you supply a string here, the message UI uses it for the attachment. Use an alternate filename to better describe the attachment or to make the name more readable.
        completionHandler - A completion handler called when the insert is complete.
      • sendMessageCompletionHandler

        public void sendMessageCompletionHandler​(MSMessage message,
                                                 MSConversation.Block_sendMessageCompletionHandler completionHandler)
        sendMessage:completionHandler: Start sending a message This method begins sending the provided MSMessage. The app must be visible and have had a recent touch interaction since either last launch or last send to succeed. If the message started sending successfully, the completion handler will be called with a nil error parameter. Otherwise the error parameter will be populated with an NSError object describing the failure. Calling this method when the presentation context is `MSMessagesAppPresentationContextMedia` will result in the completion handler getting called with an error object whose error code is `MSMessageErrorCodeAPIUnavailableInPresentationContext`.
        Parameters:
        message - The MSMessage instance describing the message to be sent.
        completionHandler - A completion handler called when the message has been staged or if there was an error.
      • sendStickerCompletionHandler

        public void sendStickerCompletionHandler​(MSSticker sticker,
                                                 MSConversation.Block_sendStickerCompletionHandler completionHandler)
        sendSticker:completionHandler: Start sending a sticker Calling this method when the presentation context is `MSMessagesAppPresentationContextMedia` will result in the completion handler getting called with an error object whose error code is `MSMessageErrorCodeAPIUnavailableInPresentationContext`.
        Parameters:
        sticker - The sticker to be inserted.
        completionHandler - A completion handler called when the insert is complete.
      • sendTextCompletionHandler

        public void sendTextCompletionHandler​(java.lang.String text,
                                              MSConversation.Block_sendTextCompletionHandler completionHandler)
        sendText:completionHandler: Start sending text This method begins sending the provided NSString. The app must be visible and have had a recent touch interaction since either last launch or last send to succeed. If the message started sending successfully, the completion handler will be called with a nil error parameter. Otherwise the error parameter will be populated with an NSError object describing the failure. Calling this method when the presentation context is `MSMessagesAppPresentationContextMedia` will result in the completion handler getting called with an error object whose error code is `MSMessageErrorCodeAPIUnavailableInPresentationContext`.
        Parameters:
        text - The text to be inserted.
        completionHandler - A completion handler called when the insert is complete.