Class RPBroadcastSampleHandler

  • All Implemented Interfaces:
    NSExtensionRequestHandling, NSObject

    public class RPBroadcastSampleHandler
    extends RPBroadcastHandler
    RPBroadcastSampleHandler Subclass this class to handle CMSampleBuffer objects as they are captured by ReplayKit. To enable this mode of handling, set the RPBroadcastProcessMode in the extension's info.plist to RPBroadcastProcessModeSampleBuffer.
    • Constructor Detail

      • RPBroadcastSampleHandler

        protected RPBroadcastSampleHandler​(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()
      • broadcastFinished

        public void broadcastFinished()
        Method is called when the RPBroadcastController finishBroadcast method is called from the broadcasting application.
      • broadcastPaused

        public void broadcastPaused()
        Method is called when the RPBroadcastController pauseBroadcast method is called from the broadcasting application.
      • broadcastResumed

        public void broadcastResumed()
        Method is called when the RPBroadcastController resumeBroadcast method is called from the broadcasting application.
      • broadcastStartedWithSetupInfo

        public void broadcastStartedWithSetupInfo​(NSDictionary<java.lang.String,​? extends NSObject> setupInfo)
        Method is called when the RPBroadcastController startBroadcast method is called from the broadcasting application.
        Parameters:
        setupInfo - Dictionary that can be supplied by the UI extension to the sample handler.
      • finishBroadcastWithError

        public void finishBroadcastWithError​(NSError error)
        Method that should be called when broadcasting can not proceed due to an error. Calling this method will stop the broadcast and deliver the error back to the broadcasting app through RPBroadcastController's delegate.
        Parameters:
        error - NSError object that will be passed back to the broadcasting app through RPBroadcastControllerDelegate's broadcastController:didFinishWithError: method.
      • processSampleBufferWithType

        public void processSampleBufferWithType​(CMSampleBufferRef sampleBuffer,
                                                long sampleBufferType)
        Method is called as video and audio data become available during a broadcast session and is delivered as CMSampleBuffer objects.
        Parameters:
        sampleBuffer - CMSampleBuffer object which contains either video or audio data.
        sampleBufferType - Determine's the type of the sample buffer defined by the RPSampleBufferType enum.
      • broadcastAnnotatedWithApplicationInfo

        public void broadcastAnnotatedWithApplicationInfo​(NSDictionary<?,​?> applicationInfo)
        Method is called when broadcast is started from Control Center and provides extension information about the first application opened or used during the broadcast.
        Parameters:
        applicationInfo - Dictionary that contains information about the first application opened or used buring the broadcast.