diff --git a/HaishinKit.xcodeproj/project.pbxproj b/HaishinKit.xcodeproj/project.pbxproj index 6919cec3a..0c7e7914b 100644 --- a/HaishinKit.xcodeproj/project.pbxproj +++ b/HaishinKit.xcodeproj/project.pbxproj @@ -2232,7 +2232,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.13; - MARKETING_VERSION = 1.6.0; + MARKETING_VERSION = 1.7.0; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11"; ONLY_ACTIVE_ARCH = YES; @@ -2278,7 +2278,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.13; - MARKETING_VERSION = 1.6.0; + MARKETING_VERSION = 1.7.0; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11"; ONLY_ACTIVE_ARCH = NO; @@ -2586,7 +2586,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.6.0; + MARKETING_VERSION = 1.7.0; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; @@ -2640,7 +2640,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.6.0; + MARKETING_VERSION = 1.7.0; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; MTL_FAST_MATH = YES; diff --git a/README.md b/README.md index 9040879ab..b2332047a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ * Camera and Microphone streaming library via RTMP and SRT for iOS, macOS, tvOS and visionOS. * README.md contains unreleased content, which can be tested on the main branch. -* [API Documentation](https://shogo4405.github.io/HaishinKit.swift/documentation/haishinkit) +* [API Documentation](https://shogo4405.github.io/)

Sponsored with 💖 by
diff --git a/docs/Classes.html b/docs/Classes.html new file mode 100644 index 000000000..1dac239b0 --- /dev/null +++ b/docs/Classes.html @@ -0,0 +1,1097 @@ + + + + Classes Reference + + + + + + + + + + + + + +

+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Classes

+

The following classes are available globally.

+ +
+
+
+
    +
  • +
    + + + + TSReader + +
    +
    +
    +
    +
    +
    +

    The TSReader class represents read MPEG-2 transport stream data.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class TSReader
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + TSWriter + +
    +
    +
    +
    +
    +
    +

    The TSWriter class represents writes MPEG-2 transport stream data.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class TSWriter
    +
    extension TSWriter: IOMuxer
    +
    extension TSWriter: Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IORecorder + +
    +
    +
    +
    +
    +
    +

    The IORecorder class represents video and audio recorder.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class IORecorder
    +
    extension IORecorder: Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOUIScreenCaptureUnit + +
    +
    +
    +
    +
    +
    +

    The IOUIScreenCaptureUnit class captures the UIView.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOVideoCaptureUnit + +
    +
    +
    +
    +
    +
    +

    An object that provides the interface to control the AVCaptureDevice’s transport behavior.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public class IOVideoCaptureUnit : IOCaptureUnit
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + MTHKView + +
    +
    +
    +
    +
    +
    +

    A view that displays a video content of a NetStream object which uses Metal api.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class MTHKView : MTKView
    +
    extension MTHKView: NetStreamDrawable
    +
    extension MTHKView: MTKViewDelegate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + PiPHKView + +
    +
    +
    +
    +
    +
    +

    A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    + +
    +
    +
    +
    +
  • +
  • +
    + + + + PiPHKView + +
    +
    +
    +
    +
    +
    +

    A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class PiPHKView : NSView
    +
    extension PiPHKView: NetStreamDrawable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + VideoEffect + +
    +
    +
    +
    +
    +
    +

    An object that apply a video effect.

    + +

    Example code:

    +
    final class MonochromeEffect: VideoEffect {
    +    let filter: CIFilter? = CIFilter(name: "CIColorMonochrome")
    +
    +    override func execute(_ image: CIImage, info: CMSampleBuffer?) -> CIImage {
    +        guard let filter: CIFilter = filter else {
    +            return image
    +        }
    +        filter.setValue(image, forKey: "inputImage")
    +        filter.setValue(CIColor(red: 0.75, green: 0.75, blue: 0.75), forKey: "inputColor")
    +        filter.setValue(1.0, forKey: "inputIntensity")
    +        return filter.outputImage ?? image
    +    }
    +}
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class VideoEffect : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetBitRateStrategy + +
    +
    +
    +
    +
    +
    +

    The NetBitRateStrategy class provides a no operative bitrate storategy.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class NetBitRateStrategy : NetBitRateStrategyConvertible
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The VideoAdaptiveNetBitRateStrategy class provides an algorithm that focuses on video bitrate control.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class VideoAdaptiveNetBitRateStrategy : NetBitRateStrategyConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetClient + +
    +
    +
    +
    +
    +
    +

    The NetClient class creates a two-way connection between a NetService.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class NetClient : NetSocket
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetService + +
    +
    +
    +
    +
    +
    +

    The NetService class creates a two-way connection between a client and a server as a server.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class NetService : NSObject
    +
    extension NetService: NetServiceDelegate
    +
    extension NetService: Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetSocket + +
    +
    +
    +
    +
    +
    +

    The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class NetSocket : NSObject
    +
    extension NetSocket: StreamDelegate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetStream + +
    +
    +
    +
    +
    +
    +

    The NetStream class is the foundation of a RTMPStream.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class NetStream : NSObject
    +
    extension NetStream: IOScreenCaptureUnitDelegate
    +
    extension NetStream: SCStreamOutput
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Event + +
    +
    +
    +
    +
    +
    +

    The Event interface is used to provide information.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class Event
    +
    extension Event: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + EventDispatcher + +
    +
    +
    +
    +
    +
    +

    The EventDispatcher interface is in implementation which supports the DOM Event Model.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class EventDispatcher : EventDispatcherConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPResponder + +
    +
    +
    +
    +
    +
    +

    The RTMPResponder class provides to use handle RTMPConnection’s callback.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class RTMPResponder
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPConnection + +
    +
    +
    +
    +
    +
    +

    The RTMPConneciton class create a two-way RTMP connection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class RTMPConnection : EventDispatcher
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPSharedObject + +
    +
    +
    +
    +
    +
    +

    The RTMPSharedObject class is used to read and write data on a server.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class RTMPSharedObject : EventDispatcher
    +
    extension RTMPSharedObject: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPStream + +
    +
    +
    +
    +
    +
    +

    An object that provides the interface to control a one-way channel over a RtmpConnection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class RTMPStream : NetStream
    +
    extension RTMPStream: EventDispatcherConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ByteArray + +
    +
    +
    +
    +
    +
    +

    The ByteArray class provides methods and properties the reading or writing with binary data.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class ByteArray : ByteArrayConvertible
    +
    extension ByteArray: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + InstanceHolder + +
    +
    +
    +
    +
    +
    +

    The InstanceHolder class provides a shared instance memory management.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class InstanceHolder<T> where T : Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTConnection + +
    +
    +
    +
    +
    +
    +

    The SRTConnection class create a two-way SRT connection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class SRTConnection : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTLogger + +
    +
    +
    +
    +
    +
    +

    An object for writing interpolated string messages to srt logging system.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class SRTLogger
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTStream + +
    +
    +
    +
    +
    +
    +

    An object that provides the interface to control a one-way channel over a SRTConnection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class SRTStream : NetStream
    +
    extension SRTStream: TSWriterDelegate
    +
    extension SRTStream: TSReaderDelegate
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/ByteArray.html b/docs/Classes/ByteArray.html new file mode 100644 index 000000000..92b814580 --- /dev/null +++ b/docs/Classes/ByteArray.html @@ -0,0 +1,1257 @@ + + + + ByteArray Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ByteArray

+
+
+ +
public class ByteArray : ByteArrayConvertible
+
extension ByteArray: CustomDebugStringConvertible
+ +
+
+

The ByteArray class provides methods and properties the reading or writing with binary data.

+ +
+
+
+
    +
  • +
    + + + + Error + +
    +
    +
    +
    +
    +
    +

    The ByteArray error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Error : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates an empty ByteArray.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a ByteArray with data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: Data)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + length + +
    +
    +
    +
    +
    +
    +

    Specifies the length of buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var length: Int { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + position + +
    +
    +
    +
    +
    +
    +

    Specifies the position of buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var position: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bytesAvailable + +
    +
    +
    +
    +
    +
    +

    The bytesAvalibale or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bytesAvailable: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + subscript(_:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public subscript(i: Int) -> UInt8 { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt8() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt8() throws -> UInt8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt8(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt8(_ value: UInt8) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt8() + +
    +
    +
    +
    +
    +
    +

    Readning an Int8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt8() throws -> Int8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt8(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an Int8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeInt8(_ value: Int8) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt16() + +
    +
    +
    +
    +
    +
    +

    Readning an UInt16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt16() throws -> UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt16(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt16(_ value: UInt16) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt16() + +
    +
    +
    +
    +
    +
    +

    Reading an Int16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt16() throws -> Int16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt16(_:) + +
    +
    +
    +
    +
    +
    +

    Reading an Int16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeInt16(_ value: Int16) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt24() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt24 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt24() throws -> UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt24(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt24 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt24(_ value: UInt32) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt32() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt32() throws -> UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt32(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt32(_ value: UInt32) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt32() + +
    +
    +
    +
    +
    +
    +

    Reading an Int32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt32() throws -> Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt32(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an Int32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeInt32(_ value: Int32) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt64(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt64(_ value: UInt64) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt64() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt64() throws -> UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt64(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an Int64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func writeInt64(_ value: Int64) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt64() + +
    +
    +
    +
    +
    +
    +

    Reading an Int64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt64() throws -> Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readDouble() + +
    +
    +
    +
    +
    +
    +

    Reading a Double value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readDouble() throws -> Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeDouble(_:) + +
    +
    +
    +
    +
    +
    +

    Writing a Double value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeDouble(_ value: Double) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readFloat() + +
    +
    +
    +
    +
    +
    +

    Reading a Float value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readFloat() throws -> Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeFloat(_:) + +
    +
    +
    +
    +
    +
    +

    Writeing a Float value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeFloat(_ value: Float) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUTF8() + +
    +
    +
    +
    +
    +
    +

    Reading a string as UTF8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUTF8() throws -> String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUTF8(_:) + +
    +
    +
    +
    +
    +
    +

    Writing a string as UTF8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUTF8(_ value: String) throws -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clear() + +
    +
    +
    +
    +
    +
    +

    Clear the buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func clear() -> Self
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/ByteArray/Error.html b/docs/Classes/ByteArray/Error.html new file mode 100644 index 000000000..6a58ac958 --- /dev/null +++ b/docs/Classes/ByteArray/Error.html @@ -0,0 +1,394 @@ + + + + Error Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Error

+
+
+ +
public enum Error : Swift.Error
+ +
+
+

The ByteArray error domain codes.

+ +
+
+
+
    +
  • +
    + + + + eof + +
    +
    +
    +
    +
    +
    +

    Error cause end of data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case eof
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + parse + +
    +
    +
    +
    +
    +
    +

    Failed to parse

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case parse
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/Event.html b/docs/Classes/Event.html new file mode 100644 index 000000000..a6ed36149 --- /dev/null +++ b/docs/Classes/Event.html @@ -0,0 +1,570 @@ + + + + Event Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Event

+
+
+ +
public final class Event
+
extension Event: CustomDebugStringConvertible
+ +
+
+

The Event interface is used to provide information.

+ +
+
+
+
    +
  • +
    + + + + Name + +
    +
    +
    +
    +
    +
    +

    A structure that defines the name of an event.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct Name : RawRepresentable, ExpressibleByStringLiteral
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + from(_:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func from(_ notification: Notification) -> Event
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + type + +
    +
    +
    +
    +
    +
    +

    The type represents the event name.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var type: Name { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bubbles + +
    +
    +
    +
    +
    +
    +

    The isBubbles indicates whether ot not an event is a bubbling event.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var bubbles: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The data indicates the to provide information.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var data: Any? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + target + +
    +
    +
    +
    +
    +
    +

    The target indicates the [IEventDispatcher].

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var target: AnyObject? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Creates a new event.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(type: Name, bubbles: Bool = false, data: Any? = nil)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/Event/Name.html b/docs/Classes/Event/Name.html new file mode 100644 index 000000000..8a26aebdb --- /dev/null +++ b/docs/Classes/Event/Name.html @@ -0,0 +1,578 @@ + + + + Name Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Name

+
+
+ +
public struct Name : RawRepresentable, ExpressibleByStringLiteral
+ +
+
+

A structure that defines the name of an event.

+ +
+
+
+
    +
  • +
    + + + + RawValue + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias RawValue = String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + StringLiteralType + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias StringLiteralType = String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sync + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let sync: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + event + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let event: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ioError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let ioError: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rtmpStatus + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let rtmpStatus: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rawValue + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let rawValue: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(rawValue:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(rawValue: String)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(stringLiteral:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(stringLiteral value: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/EventDispatcher.html b/docs/Classes/EventDispatcher.html new file mode 100644 index 000000000..b7f2ff2cb --- /dev/null +++ b/docs/Classes/EventDispatcher.html @@ -0,0 +1,502 @@ + + + + EventDispatcher Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

EventDispatcher

+
+
+ +
public class EventDispatcher : EventDispatcherConvertible
+ +
+
+

The EventDispatcher interface is in implementation which supports the DOM Event Model.

+ +
+
+
+
    +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a new event dispatcher.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(target:) + +
    +
    +
    +
    +
    +
    +

    Creates a new event dispatcher to proxy target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(target: AnyObject)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Registers the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func addEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject? = nil, useCapture: Bool = false)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Unregister the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func removeEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject? = nil, useCapture: Bool = false)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + dispatch(event:) + +
    +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func dispatch(event: Event)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func dispatch(_ type: Event.Name, bubbles: Bool, data: Any?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/IORecorder.html b/docs/Classes/IORecorder.html new file mode 100644 index 000000000..7dc6fc7a8 --- /dev/null +++ b/docs/Classes/IORecorder.html @@ -0,0 +1,596 @@ + + + + IORecorder Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IORecorder

+
+
+ +
public final class IORecorder
+
extension IORecorder: Running
+ +
+
+

The IORecorder class represents video and audio recorder.

+ +
+
+
+
    +
  • +
    + + + + Error + +
    +
    +
    +
    +
    +
    +

    The IORecorder error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Error : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultOutputSettings + +
    +
    +
    +
    +
    +
    +

    The default output settings for an IORecorder.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultOutputSettings: [AVMediaType : [String : Any]]
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any IORecorderDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + outputSettings + +
    +
    +
    +
    +
    +
    +

    Specifies the recorder settings.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var outputSettings: [AVMediaType : [String : Any]]
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    The running indicies whether recording or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    +

    Append a sample buffer for recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Append a pixel buffer for recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ pixelBuffer: CVPixelBuffer, withPresentationTime: CMTime)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Running +

+
+
+
    +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/IORecorder/Error.html b/docs/Classes/IORecorder/Error.html new file mode 100644 index 000000000..e8a04d6f6 --- /dev/null +++ b/docs/Classes/IORecorder/Error.html @@ -0,0 +1,448 @@ + + + + Error Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Error

+
+
+ +
public enum Error : Swift.Error
+ +
+
+

The IORecorder error domain codes.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Failed to create the AVAssetWriter.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreateAssetWriter(error: any Swift.Error)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Failed to create the AVAssetWriterInput.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreateAssetWriterInput(error: NSException)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Failed to append the PixelBuffer or SampleBuffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToAppend(error: (any Swift.Error)?)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Failed to finish writing the AVAssetWriter.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToFinishWriting(error: (any Swift.Error)?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/IOUIScreenCaptureUnit.html b/docs/Classes/IOUIScreenCaptureUnit.html new file mode 100644 index 000000000..782049a04 --- /dev/null +++ b/docs/Classes/IOUIScreenCaptureUnit.html @@ -0,0 +1,556 @@ + + + + IOUIScreenCaptureUnit Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOUIScreenCaptureUnit

+
+
+ + +
+
+

The IOUIScreenCaptureUnit class captures the UIView.

+ +
+
+
+
    +
  • +
    + + + + enabledScale + +
    +
    +
    +
    +
    +
    +

    Specifies the boolean value that indicates whether the snapshot image downsize or not.

    + +
    +
    +
    +
  • +
  • +
    + + + + afterScreenUpdates + +
    +
    +
    +
    +
    +
    +

    Specifies the boolean value that indicates whether the snapshot should be rendered after recent changes have been incorporated.

    + +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the number of shaphot that must pass before the display link notifies the target again.

    + +
    +
    +
    +
  • +
  • +
    + + + + attributes + +
    +
    +
    +
    +
    +
    +

    Specifies the CVPixelBufferPool’s attrivutes.

    + +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
  • +
    + + + + init(shared:) + +
    +
    +
    +
    +
    +
    +

    Creates an IOUIScreenCaptureUnit object to capture UIApplication.

    + +
    +
    +
    +
  • +
  • +
    + + + + init(viewToCapture:) + +
    +
    +
    +
    +
    +
    +

    Create an IOUIScreenCaptureUnit object to capture UIView.

    + +
    +
    +
    +
  • +
  • +
    + + + + onScreen(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Running +

+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/Classes/IOVideoCaptureUnit.html b/docs/Classes/IOVideoCaptureUnit.html new file mode 100644 index 000000000..968ede752 --- /dev/null +++ b/docs/Classes/IOVideoCaptureUnit.html @@ -0,0 +1,468 @@ + + + + IOVideoCaptureUnit Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOVideoCaptureUnit

+
+
+ +
@available(tvOS 17.0, *)
+public class IOVideoCaptureUnit : IOCaptureUnit
+ +
+
+

An object that provides the interface to control the AVCaptureDevice’s transport behavior.

+ +
+
+
+
    +
  • +
    + + + + defaultVideoSettings + +
    +
    +
    +
    +
    +
    +

    The default videoSettings for a device.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultVideoSettings: [NSString : AnyObject]
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + device + +
    +
    +
    +
    +
    +
    +

    The current video device object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var device: AVCaptureDevice? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the videoOrientation indicates whether to rotate the video flowing through the connection to a given orientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isVideoMirrored + +
    +
    +
    +
    +
    +
    +

    Spcifies the video mirroed indicates whether the video flowing through the connection should be mirrored about its vertical axis.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isVideoMirrored: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the preferredVideoStabilizationMode most appropriate for use with the connection.

    + +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/InstanceHolder.html b/docs/Classes/InstanceHolder.html new file mode 100644 index 000000000..1db7d17b6 --- /dev/null +++ b/docs/Classes/InstanceHolder.html @@ -0,0 +1,421 @@ + + + + InstanceHolder Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

InstanceHolder

+
+
+ +
public class InstanceHolder<T> where T : Equatable
+ +
+
+

The InstanceHolder class provides a shared instance memory management.

+ +
+
+
+
    +
  • +
    + + + + init(factory:) + +
    +
    +
    +
    +
    +
    +

    Creates a new InstanceHolder.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(factory: @escaping () -> T)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + retain() + +
    +
    +
    +
    +
    +
    +

    Retains an instance object if needed.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func retain() -> T?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + release(_:) + +
    +
    +
    +
    +
    +
    +

    Releases an instance object if needed.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func release(_ instance: T?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/MTHKView.html b/docs/Classes/MTHKView.html new file mode 100644 index 000000000..59e23ada5 --- /dev/null +++ b/docs/Classes/MTHKView.html @@ -0,0 +1,637 @@ + + + + MTHKView Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

MTHKView

+
+
+ +
public class MTHKView : MTKView
+
extension MTHKView: NetStreamDrawable
+
extension MTHKView: MTKViewDelegate
+ +
+
+

A view that displays a video content of a NetStream object which uses Metal api.

+ +
+
+
+
    +
  • +
    + + + + videoGravity + +
    +
    +
    +
    +
    +
    +

    Specifies how the video is displayed within a player layer’s bounds.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoGravity: AVLayerVideoGravity
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the orientation of AVCaptureVideoOrientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the capture video preview enabled or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public var isCaptureVideoPreviewEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(frame:) + +
    +
    +
    +
    +
    +
    +

    Initializes and returns a newly allocated view object with the specified frame rectangle.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(frame: CGRect)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(coder:) + +
    +
    +
    +
    +
    +
    +

    Returns an object initialized from data in a given unarchiver.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public required init(coder aDecoder: NSCoder)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + awakeFromNib() + +
    +
    +
    +
    +
    +
    +

    Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override open func awakeFromNib()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

NetStreamDrawable +

+
+
+
    +
  • +
    + + + + attachStream(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func attachStream(_ stream: NetStream?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + enqueue(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func enqueue(_ sampleBuffer: CMSampleBuffer?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

MTKViewDelegate +

+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func mtkView(_ view: MTKView, drawableSizeWillChange size: CGSize)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + draw(in:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func draw(in view: MTKView)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/NetBitRateStrategy.html b/docs/Classes/NetBitRateStrategy.html new file mode 100644 index 000000000..1c2e5f513 --- /dev/null +++ b/docs/Classes/NetBitRateStrategy.html @@ -0,0 +1,523 @@ + + + + NetBitRateStrategy Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetBitRateStrategy

+
+
+ +
public final class NetBitRateStrategy : NetBitRateStrategyConvertible
+ +
+
+

The NetBitRateStrategy class provides a no operative bitrate storategy.

+ +
+
+
+
    +
  • +
    + + + + shared + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let shared: NetBitRateStrategy
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stream + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var stream: NetStream?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumVideoBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumVideoBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumAudioBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumAudioBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setUp() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func setUp()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func sufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func insufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/NetClient.html b/docs/Classes/NetClient.html new file mode 100644 index 000000000..82618a8f7 --- /dev/null +++ b/docs/Classes/NetClient.html @@ -0,0 +1,366 @@ + + + + NetClient Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetClient

+
+
+ +
public final class NetClient : NetSocket
+ +
+
+

The NetClient class creates a two-way connection between a NetService.

+ +
+
+
+
    +
  • +
    + + + + listen() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func listen()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/NetService.html b/docs/Classes/NetService.html new file mode 100644 index 000000000..013edcca4 --- /dev/null +++ b/docs/Classes/NetService.html @@ -0,0 +1,663 @@ + + + + NetService Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetService

+
+
+ +
open class NetService : NSObject
+
extension NetService: NetServiceDelegate
+
extension NetService: Running
+ +
+
+

The NetService class creates a two-way connection between a client and a server as a server.

+ +
+
+
+
    +
  • +
    + + + + txtData + +
    +
    +
    +
    +
    +
    +

    The TXT record for the receiver.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open var txtData: Data? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + domain + +
    +
    +
    +
    +
    +
    +

    The domain for the service.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let domain: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + type + +
    +
    +
    +
    +
    +
    +

    The network service type.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let type: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + name + +
    +
    +
    +
    +
    +
    +

    The name of service.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let name: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + port + +
    +
    +
    +
    +
    +
    +

    The port.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let port: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    The service is running or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clients + +
    +
    +
    +
    +
    +
    +

    The current connected client objects.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var clients: [NetClient] { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new NetService object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(domain: String, type: String, name: String, port: Int32)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

NSNetServiceDelegate +

+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func netService(_ sender: Foundation.NetService, didAcceptConnectionWith inputStream: InputStream, outputStream: OutputStream)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Runnbale +

+
+
+
    +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/NetSocket.html b/docs/Classes/NetSocket.html new file mode 100644 index 000000000..cb05e26ca --- /dev/null +++ b/docs/Classes/NetSocket.html @@ -0,0 +1,814 @@ + + + + NetSocket Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetSocket

+
+
+ +
open class NetSocket : NSObject
+
extension NetSocket: StreamDelegate
+ +
+
+

The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream.

+ +
+
+
+
    +
  • +
    + + + + defaultTimeout + +
    +
    +
    +
    +
    +
    +

    The default time to wait for TCP/IP Handshake done.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultTimeout: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultWindowSizeC + +
    +
    +
    +
    +
    +
    +

    The defulat stream’s TCP window size.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultWindowSizeC: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + inputBuffer + +
    +
    +
    +
    +
    +
    +

    The current incoming data buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var inputBuffer: Data
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + timeout + +
    +
    +
    +
    +
    +
    +

    Specifies time to wait for TCP/IP Handshake done.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var timeout: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connected + +
    +
    +
    +
    +
    +
    +

    Specifies instance connected to server(true) or not(false).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var connected: Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + windowSizeC + +
    +
    +
    +
    +
    +
    +

    Specifies the output buffer size in bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var windowSizeC: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesIn + +
    +
    +
    +
    +
    +
    +

    Specifies statistics of total incoming bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalBytesIn: Atomic<Int64>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + qualityOfService + +
    +
    +
    +
    +
    +
    +

    Specifies instance’s quality of service for a Socket IO.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var qualityOfService: DispatchQoS
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + securityLevel + +
    +
    +
    +
    +
    +
    +

    Specifies instance determine to use the secure-socket layer (SSL) security level.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var securityLevel: StreamSocketSecurityLevel
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + outputBufferSize + +
    +
    +
    +
    +
    +
    +

    Specifies the output buffer size in bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var outputBufferSize: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesOut + +
    +
    +
    +
    +
    +
    +

    Specifies statistics of total outgoing bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var totalBytesOut: Atomic<Int64> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queueBytesOut + +
    +
    +
    +
    +
    +
    +

    Specifies statistics of total outgoing queued bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var queueBytesOut: Atomic<Int64> { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Creates a two-way connection to a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func connect(withName: String, port: Int)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Does output data buffer to the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func doOutput(data: Data, locked: UnsafeMutablePointer<UInt32>? = nil) -> Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func close()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + listen() + +
    +
    +
    +
    +
    +
    +

    Listen incoming data buffer from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func listen()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

StreamDelegate +

+
+
+
    +
  • +
    + + + + stream(_:handle:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stream(_ aStream: Stream, handle eventCode: Stream.Event)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/NetStream.html b/docs/Classes/NetStream.html new file mode 100644 index 000000000..732725a79 --- /dev/null +++ b/docs/Classes/NetStream.html @@ -0,0 +1,1368 @@ + + + + NetStream Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetStream

+
+
+ +
open class NetStream : NSObject
+
extension NetStream: IOScreenCaptureUnitDelegate
+
extension NetStream: SCStreamOutput
+ +
+
+

The NetStream class is the foundation of a RTMPStream.

+ +
+
+
+
    +
  • +
    + + + + ReadyState + +
    +
    +
    +
    +
    +
    +

    The enumeration defines the state a ReadyState NetStream is in.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum ReadyState : Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lockQueue + +
    +
    +
    +
    +
    +
    +

    The lockQueue.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let lockQueue: DispatchQueue
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitrateStrategy + +
    +
    +
    +
    +
    +
    +

    Specifies the adaptibe bitrate strategy.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitrateStrategy: any NetBitRateStrategyConvertible { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isMonitoringEnabled + +
    +
    +
    +
    +
    +
    +

    Specifies the audio monitoring enabled or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isMonitoringEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + context + +
    +
    +
    +
    +
    +
    +

    Specifies the context object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var context: CIContext { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + torch + +
    +
    +
    +
    +
    +
    +

    Specifiet the device torch indicating wheter the turn on(TRUE) or not(FALSE).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var torch: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameRate + +
    +
    +
    +
    +
    +
    +

    Specifies the frame rate of a device capture.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var frameRate: Float64 { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sessionPreset + +
    +
    +
    +
    +
    +
    +

    Specifies the sessionPreset for the AVCaptureSession.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public var sessionPreset: AVCaptureSession.Preset { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the video orientation for stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the multi camera capture properties.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var multiCamCaptureSettings: MultiCamCaptureSettings { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hasAudio + +
    +
    +
    +
    +
    +
    +

    Specifies the hasAudio indicies whether no signal audio or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var hasAudio: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hasVideo + +
    +
    +
    +
    +
    +
    +

    Specifies the hasVideo indicies whether freeze video signal or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var hasVideo: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + audioSettings + +
    +
    +
    +
    +
    +
    +

    Specifies the audio compression properties.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var audioSettings: AudioCodecSettings { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoSettings + +
    +
    +
    +
    +
    +
    +

    Specifies the video compression properties.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoSettings: VideoCodecSettings { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoInputFormat + +
    +
    +
    +
    +
    +
    +

    The video input format.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoInputFormat: CMVideoFormatDescription? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + audioInputFormat + +
    +
    +
    +
    +
    +
    +

    The audio input format.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var audioInputFormat: AVAudioFormat? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + soundTransform + +
    +
    +
    +
    +
    +
    +

    Specifies the controls sound.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var soundTransform: SoundTransform { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + currentFPS + +
    +
    +
    +
    +
    +
    +

    The number of frames per second being displayed.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +public internal(set) dynamic var currentFPS: UInt16 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate..

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any NetStreamDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readyState + +
    +
    +
    +
    +
    +
    +

    The current state of the stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var readyState: ReadyState { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a NetStream object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Attaches the primary camera object.

    +
    +

    Warning

    + This method can’t use appendSampleBuffer at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public func attachCamera(_ device: AVCaptureDevice?, onError: ((_ error: any Error) -> Void)? = nil)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Attaches the 2ndary camera object for picture in picture.

    +
    +

    Warning

    + This method can’t use appendSampleBuffer at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(iOS 13.0, tvOS 17.0, *)
    +public func attachMultiCamera(_ device: AVCaptureDevice?, onError: ((_ error: any Error) -> Void)? = nil)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Attaches the audio capture object.

    +
    +

    Warning

    + This method can’t use appendSampleBuffer at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public func attachAudio(_ device: AVCaptureDevice?, automaticallyConfiguresApplicationAudioSession: Bool = false, onError: ((_ error: any Error) -> Void)? = nil)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoCapture(for:) + +
    +
    +
    +
    +
    +
    +

    Returns the IOVideoCaptureUnit by index.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public func videoCapture(for index: Int) -> IOVideoCaptureUnit?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + attachScreen(_:) + +
    +
    +
    +
    +
    +
    +

    Attaches the screen input object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func attachScreen(_ input: AVCaptureScreenInput?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    +

    Append a CMSampleBuffer.

    +
    +

    Warning

    + This method can’t use attachCamera or attachAudio method at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:when:) + +
    +
    +
    +
    +
    +
    +

    Append an AVAudioBuffer.

    +
    +

    Warning

    + This method can’t use attachAudio method at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ audioBuffer: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Register a video effect.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func registerVideoEffect(_ effect: VideoEffect) -> Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Unregister a video effect.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func unregisterVideoEffect(_ effect: VideoEffect) -> Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Starts recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRecording(_ delegate: any IORecorderDelegate, settings: [AVMediaType : [String : Any]] = IORecorder.defaultOutputSettings)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRecording() + +
    +
    +
    +
    +
    +
    +

    Stop recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRecording()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A handler that receives stream readyState will update.

    +
    +

    Warning

    + Please do not call this method yourself. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func readyStateWillChange(to readyState: ReadyState)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A handler that receives stream readyState updated.

    +
    +

    Warning

    + Please do not call this method yourself. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func readyStateDidChange(to readyState: ReadyState)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

IOScreenCaptureUnitDelegate +

+
+
+
    +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func session(_ session: any IOScreenCaptureUnit, didOutput pixelBuffer: CVPixelBuffer, presentationTime: CMTime)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stream(_ stream: SCStream, didOutputSampleBuffer sampleBuffer: CMSampleBuffer, of type: SCStreamOutputType)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/NetStream/ReadyState.html b/docs/Classes/NetStream/ReadyState.html new file mode 100644 index 000000000..aac2f56b9 --- /dev/null +++ b/docs/Classes/NetStream/ReadyState.html @@ -0,0 +1,555 @@ + + + + ReadyState Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ReadyState

+
+
+ +
public enum ReadyState : Equatable
+ +
+
+

The enumeration defines the state a ReadyState NetStream is in.

+ +
+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: NetStream.ReadyState, rhs: NetStream.ReadyState) -> Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + initialized + +
    +
    +
    +
    +
    +
    +

    NetStream has been created.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case initialized
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + open + +
    +
    +
    +
    +
    +
    +

    NetStream waiting for new method.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case open
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + play + +
    +
    +
    +
    +
    +
    +

    NetStream play() has been called.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case play
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playing + +
    +
    +
    +
    +
    +
    +

    NetStream play and server was accepted as playing

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playing
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publish + +
    +
    +
    +
    +
    +
    +

    NetStream publish() has been called

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publish
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishing(muxer:) + +
    +
    +
    +
    +
    +
    +

    NetStream publish and server accpted as publising.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishing(muxer: any IOMuxer)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + closed + +
    +
    +
    +
    +
    +
    +

    NetStream close() has been called.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case closed
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/PiPHKView.html b/docs/Classes/PiPHKView.html new file mode 100644 index 000000000..3dd08ed69 --- /dev/null +++ b/docs/Classes/PiPHKView.html @@ -0,0 +1,595 @@ + + + + PiPHKView Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

PiPHKView

+
+
+ +
public class PiPHKView : NSView
+
extension PiPHKView: NetStreamDrawable
+ +
+
+

A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The view’s background color.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static var defaultBackgroundColor: NSColor
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoGravity + +
    +
    +
    +
    +
    +
    +

    A value that specifies how the video is displayed within a player layer’s bounds.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoGravity: AVLayerVideoGravity { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the orientation of AVCaptureVideoOrientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the capture video preview enabled or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isCaptureVideoPreviewEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(frame:) + +
    +
    +
    +
    +
    +
    +

    Initializes and returns a newly allocated view object with the specified frame rectangle.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init(frame: CGRect)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(coder:) + +
    +
    +
    +
    +
    +
    +

    Returns an object initialized from data in a given unarchiver.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public required init?(coder aDecoder: NSCoder)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + awakeFromNib() + +
    +
    +
    +
    +
    +
    +

    Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func awakeFromNib()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

NetStreamDrawable +

+
+
+
    +
  • +
    + + + + attachStream(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func attachStream(_ stream: NetStream?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + enqueue(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func enqueue(_ sampleBuffer: CMSampleBuffer?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/RTMPConnection.html b/docs/Classes/RTMPConnection.html new file mode 100644 index 000000000..93c477eea --- /dev/null +++ b/docs/Classes/RTMPConnection.html @@ -0,0 +1,1188 @@ + + + + RTMPConnection Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPConnection

+
+
+ +
public class RTMPConnection : EventDispatcher
+ +
+
+

The RTMPConneciton class create a two-way RTMP connection.

+ +
+
+
+
    +
  • +
    + + + + defaultWindowSizeS + +
    +
    +
    +
    +
    +
    +

    The default network’s window size for RTMPConnection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultWindowSizeS: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + supportedProtocols + +
    +
    +
    +
    +
    +
    +

    The supported protocols are rtmp, rtmps, rtmpt and rtmps.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let supportedProtocols: Set<String>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultPort + +
    +
    +
    +
    +
    +
    +

    The default RTMP port is 1935.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPort: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultSecurePort + +
    +
    +
    +
    +
    +
    +

    The default RTMPS port is 443.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultSecurePort: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultFlashVer + +
    +
    +
    +
    +
    +
    +

    The default flashVer is FMLE/3.0 (compatible; FMSc/1.0).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultFlashVer: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultChunkSizeS + +
    +
    +
    +
    +
    +
    +

    The default chunk size for RTMPConnection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultChunkSizeS: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultCapabilities + +
    +
    +
    +
    +
    +
    +

    The default capabilities for RTMPConneciton.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultCapabilities: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultObjectEncoding + +
    +
    +
    +
    +
    +
    +

    The default object encoding for RTMPConnection class.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultObjectEncoding: RTMPObjectEncoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Code + +
    +
    +
    +
    +
    +
    + +
      +
    • NetStatusEvent#info.code for NetConnection
    • +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Code : String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + swfUrl + +
    +
    +
    +
    +
    +
    +

    Specifies the URL of .swf.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var swfUrl: String?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pageUrl + +
    +
    +
    +
    +
    +
    +

    Specifies the URL of an HTTP referer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var pageUrl: String?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + timeout + +
    +
    +
    +
    +
    +
    +

    Specifies the time to wait for TCP/IP Handshake done.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var timeout: Int { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + qualityOfService + +
    +
    +
    +
    +
    +
    +

    Specifies the dispatchQos for socket.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var qualityOfService: DispatchQoS { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + flashVer + +
    +
    +
    +
    +
    +
    +

    Specifies the name of application.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var flashVer: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chunkSize + +
    +
    +
    +
    +
    +
    +

    Specifies theoutgoing RTMPChunkSize.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var chunkSize: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + uri + +
    +
    +
    +
    +
    +
    +

    Specifies the URI passed to the Self.connect() method.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var uri: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connected + +
    +
    +
    +
    +
    +
    +

    Specifies the instance connected to server(true) or not(false).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var connected: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the instance requires Network.framework if possible.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var requireNetworkFramework: Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + parameters + +
    +
    +
    +
    +
    +
    +

    Specifies the socket optional parameters.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var parameters: Any?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + objectEncoding + +
    +
    +
    +
    +
    +
    +

    Specifies the object encoding for this RTMPConnection instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var objectEncoding: RTMPObjectEncoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesIn + +
    +
    +
    +
    +
    +
    +

    The statistics of total incoming bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalBytesIn: Int64 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesOut + +
    +
    +
    +
    +
    +
    +

    The statistics of total outgoing bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalBytesOut: Int64 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalStreamsCount + +
    +
    +
    +
    +
    +
    +

    The statistics of total RTMPStream counts.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalStreamsCount: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate of the NetStream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any RTMPConnectionDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + previousQueueBytesOut + +
    +
    +
    +
    +
    +
    +

    The statistics of outgoing queue bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +open private(set) dynamic var previousQueueBytesOut: [Int64] { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of incoming bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +open private(set) dynamic var currentBytesInPerSecond: Int32 { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of outgoing bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +open private(set) dynamic var currentBytesOutPerSecond: Int32 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a new connection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Calls a command or method on RTMP Server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func call(_ commandName: String, responder: RTMPResponder?, arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connect(_:arguments:) + +
    +
    +
    +
    +
    +
    +

    Creates a two-way connection to an application on RTMP Server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func connect(_ command: String, arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/RTMPConnection/Code.html b/docs/Classes/RTMPConnection/Code.html new file mode 100644 index 000000000..7e2423d0d --- /dev/null +++ b/docs/Classes/RTMPConnection/Code.html @@ -0,0 +1,671 @@ + + + + Code Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Code

+
+
+ +
public enum Code : String
+ +
+
+ +
    +
  • NetStatusEvent#info.code for NetConnection
  • +
+ +
+
+
+
    +
  • +
    + + + + callBadVersion + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case callBadVersion = "NetConnection.Call.BadVersion"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + callFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case callFailed = "NetConnection.Call.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + callProhibited + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case callProhibited = "NetConnection.Call.Prohibited"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectAppshutdown + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectAppshutdown = "NetConnection.Connect.AppShutdown"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectClosed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectClosed = "NetConnection.Connect.Closed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectFailed = "NetConnection.Connect.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectIdleTimeOut + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectIdleTimeOut = "NetConnection.Connect.IdleTimeOut"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectInvalidApp + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectInvalidApp = "NetConnection.Connect.InvalidApp"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectNetworkChange + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectNetworkChange = "NetConnection.Connect.NetworkChange"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectRejected + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectRejected = "NetConnection.Connect.Rejected"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectSuccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectSuccess = "NetConnection.Connect.Success"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + level + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var level: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/RTMPResponder.html b/docs/Classes/RTMPResponder.html new file mode 100644 index 000000000..a16fd28ab --- /dev/null +++ b/docs/Classes/RTMPResponder.html @@ -0,0 +1,394 @@ + + + + RTMPResponder Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPResponder

+
+
+ +
open class RTMPResponder
+ +
+
+

The RTMPResponder class provides to use handle RTMPConnection’s callback.

+ +
+
+
+
    +
  • +
    + + + + Handler + +
    +
    +
    +
    +
    +
    +

    A Handler represents RTMPResponder’s callback function.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias Handler = (_ data: [Any?]) -> Void
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(result:status:) + +
    +
    +
    +
    +
    +
    +

    Creates a new RTMPResponder object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(result: @escaping Handler, status: Handler? = nil)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/RTMPSharedObject.html b/docs/Classes/RTMPSharedObject.html new file mode 100644 index 000000000..a9d4a901f --- /dev/null +++ b/docs/Classes/RTMPSharedObject.html @@ -0,0 +1,569 @@ + + + + RTMPSharedObject Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPSharedObject

+
+
+ +
public final class RTMPSharedObject : EventDispatcher
+
extension RTMPSharedObject: CustomDebugStringConvertible
+ +
+
+

The RTMPSharedObject class is used to read and write data on a server.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Returns a reference to a shared object on a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func getRemote(withName: String, remotePath: String, persistence: Bool) -> RTMPSharedObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + objectEncoding + +
    +
    +
    +
    +
    +
    +

    The AMF object encoding type.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let objectEncoding: RTMPObjectEncoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The current data storage.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var data: [String : Any?] { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setProperty(_:_:) + +
    +
    +
    +
    +
    +
    +

    Updates the value of a property in shared object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func setProperty(_ name: String, _ value: Any?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connect(_:) + +
    +
    +
    +
    +
    +
    +

    Connects to a remove shared object on a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func connect(_ rtmpConnection: RTMPConnection)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clear() + +
    +
    +
    +
    +
    +
    +

    Purges all of the data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func clear()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/RTMPStream.html b/docs/Classes/RTMPStream.html new file mode 100644 index 000000000..e69ead1f0 --- /dev/null +++ b/docs/Classes/RTMPStream.html @@ -0,0 +1,895 @@ + + + + RTMPStream Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPStream

+
+
+ +
open class RTMPStream : NetStream
+
extension RTMPStream: EventDispatcherConvertible
+ +
+
+

An object that provides the interface to control a one-way channel over a RtmpConnection.

+ +
+
+
+
    +
  • +
    + + + + Code + +
    +
    +
    +
    +
    +
    +

    NetStatusEvent#info.code for NetStream

    + + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Code : String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + HowToPublish + +
    +
    +
    +
    +
    +
    +

    The type of publish options.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum HowToPublish : String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + info + +
    +
    +
    +
    +
    +
    +

    The NetStreamInfo object whose properties contain data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var info: RTMPStreamInfo { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + objectEncoding + +
    +
    +
    +
    +
    +
    +

    The object encoding (AMF). Framework supports AMF0 only.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var objectEncoding: RTMPObjectEncoding { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + receiveAudio + +
    +
    +
    +
    +
    +
    +

    Incoming audio plays on the stream or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var receiveAudio: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + receiveVideo + +
    +
    +
    +
    +
    +
    +

    Incoming video plays on the stream or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var receiveVideo: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + paused + +
    +
    +
    +
    +
    +
    +

    Pauses playback or publish of a video stream or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var paused: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(connection:) + +
    +
    +
    +
    +
    +
    +

    Creates a new stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(connection: RTMPConnection)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + play(_:) + +
    +
    +
    +
    +
    +
    +

    Plays a live stream from RTMPServer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func play(_ arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seek(_:) + +
    +
    +
    +
    +
    +
    +

    Seeks the keyframe.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func seek(_ offset: Double)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publish(_:type:) + +
    +
    +
    +
    +
    +
    +

    Sends streaming audio, vidoe and data message from client.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func publish(_ name: String?, type: RTMPStream.HowToPublish = .live)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Stops playing or publishing and makes available other uses.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Sends a message on a published stream to all subscribing clients.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func send(handlerName: String, arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + makeMetaData() + +
    +
    +
    +
    +
    +
    +

    Creates flv metadata for a stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func makeMetaData() -> ASObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func readyStateWillChange(to readyState: NetStream.ReadyState)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func readyStateDidChange(to readyState: NetStream.ReadyState)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

IEventDispatcher +

+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/Classes/RTMPStream/Code.html b/docs/Classes/RTMPStream/Code.html new file mode 100644 index 000000000..0738f7ec6 --- /dev/null +++ b/docs/Classes/RTMPStream/Code.html @@ -0,0 +1,1425 @@ + + + + Code Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Code

+
+
+ +
public enum Code : String
+ +
+
+

NetStatusEvent#info.code for NetStream

+ + +
+
+
+
    +
  • +
    + + + + bufferEmpty + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufferEmpty = "NetStream.Buffer.Empty"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufferFlush + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufferFlush = "NetStream.Buffer.Flush"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufferFull + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufferFull = "NetStream.Buffer.Full"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectClosed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectClosed = "NetStream.Connect.Closed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectFailed = "NetStream.Connect.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectRejected + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectRejected = "NetStream.Connect.Rejected"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectSuccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectSuccess = "NetStream.Connect.Success"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + drmUpdateNeeded + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case drmUpdateNeeded = "NetStream.DRM.UpdateNeeded"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + failed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failed = "NetStream.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + multicastStreamReset + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case multicastStreamReset = "NetStream.MulticastStream.Reset"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pauseNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pauseNotify = "NetStream.Pause.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playFailed = "NetStream.Play.Failed"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playFileStructureInvalid = "NetStream.Play.FileStructureInvalid"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playInsufficientBW + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playInsufficientBW = "NetStream.Play.InsufficientBW"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playNoSupportedTrackFound = "NetStream.Play.NoSupportedTrackFound"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playReset + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playReset = "NetStream.Play.Reset"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playStart = "NetStream.Play.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playStop + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playStop = "NetStream.Play.Stop"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playStreamNotFound + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playStreamNotFound = "NetStream.Play.StreamNotFound"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playTransition + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playTransition = "NetStream.Play.Transition"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playUnpublishNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playUnpublishNotify = "NetStream.Play.UnpublishNotify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishBadName + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishBadName = "NetStream.Publish.BadName"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishIdle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishIdle = "NetStream.Publish.Idle"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishStart = "NetStream.Publish.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordAlreadyExists + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordAlreadyExists = "NetStream.Record.AlreadyExists"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordFailed = "NetStream.Record.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordNoAccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordNoAccess = "NetStream.Record.NoAccess"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordStart = "NetStream.Record.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordStop + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordStop = "NetStream.Record.Stop"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordDiskQuotaExceeded = "NetStream.Record.DiskQuotaExceeded"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + secondScreenStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case secondScreenStart = "NetStream.SecondScreen.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + secondScreenStop + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case secondScreenStop = "NetStream.SecondScreen.Stop"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seekFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case seekFailed = "NetStream.Seek.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seekInvalidTime + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case seekInvalidTime = "NetStream.Seek.InvalidTime"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seekNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case seekNotify = "NetStream.Seek.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stepNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case stepNotify = "NetStream.Step.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + unpauseNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case unpauseNotify = "NetStream.Unpause.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + unpublishSuccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case unpublishSuccess = "NetStream.Unpublish.Success"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoDimensionChange + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case videoDimensionChange = "NetStream.Video.DimensionChange"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + level + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var level: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/RTMPStream/HowToPublish.html b/docs/Classes/RTMPStream/HowToPublish.html new file mode 100644 index 000000000..57d13c775 --- /dev/null +++ b/docs/Classes/RTMPStream/HowToPublish.html @@ -0,0 +1,448 @@ + + + + HowToPublish Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

HowToPublish

+
+
+ +
public enum HowToPublish : String
+ +
+
+

The type of publish options.

+ +
+
+
+
    +
  • +
    + + + + record + +
    +
    +
    +
    +
    +
    +

    Publish with server-side recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case record
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append + +
    +
    +
    +
    +
    +
    +

    Publish with server-side recording which is to append file if exists.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case append
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + appendWithGap + +
    +
    +
    +
    +
    +
    +

    Publish with server-side recording which is to append and ajust time file if exists.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case appendWithGap
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + live + +
    +
    +
    +
    +
    +
    +

    Publish.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case live
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/SRTConnection.html b/docs/Classes/SRTConnection.html new file mode 100644 index 000000000..36152d379 --- /dev/null +++ b/docs/Classes/SRTConnection.html @@ -0,0 +1,530 @@ + + + + SRTConnection Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTConnection

+
+
+ +
public final class SRTConnection : NSObject
+ +
+
+

The SRTConnection class create a two-way SRT connection.

+ +
+
+
+
    +
  • +
    + + + + version + +
    +
    +
    +
    +
    +
    +

    SRT Library version

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let version: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + uri + +
    +
    +
    +
    +
    +
    +

    The URI passed to the SRTConnection.connect() method.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var uri: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connected + +
    +
    +
    +
    +
    +
    +

    This instance connect to server(true) or not(false)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +public private(set) dynamic var connected: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + performanceData + +
    +
    +
    +
    +
    +
    +

    The SRT’s performance data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var performanceData: SRTPerformanceData { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a new SRTConnection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + open(_:mode:) + +
    +
    +
    +
    +
    +
    +

    Open a two-way connection to an application on SRT Server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func open(_ uri: URL?, mode: SRTMode = .caller)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/SRTLogger.html b/docs/Classes/SRTLogger.html new file mode 100644 index 000000000..962fce117 --- /dev/null +++ b/docs/Classes/SRTLogger.html @@ -0,0 +1,420 @@ + + + + SRTLogger Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTLogger

+
+
+ +
public class SRTLogger
+ +
+
+

An object for writing interpolated string messages to srt logging system.

+ +
+
+
+
    +
  • +
    + + + + shared + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let shared: SRTLogger
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + level + +
    +
    +
    +
    +
    +
    +

    Specifies the current logging level.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var level: SRTLogLevel { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + functionalAreas + +
    +
    +
    +
    +
    +
    +

    Specifies the current logging functional areas.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var functionalAreas: Set<SRTLogFunctionalArea> { get set }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/SRTStream.html b/docs/Classes/SRTStream.html new file mode 100644 index 000000000..b2d5629d4 --- /dev/null +++ b/docs/Classes/SRTStream.html @@ -0,0 +1,606 @@ + + + + SRTStream Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTStream

+
+
+ +
public final class SRTStream : NetStream
+
extension SRTStream: TSWriterDelegate
+
extension SRTStream: TSReaderDelegate
+ +
+
+

An object that provides the interface to control a one-way channel over a SRTConnection.

+ +
+
+
+
    +
  • +
    + + + + init(connection:) + +
    +
    +
    +
    +
    +
    +

    Creates a new SRTStream object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(connection: SRTConnection)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publish(_:) + +
    +
    +
    +
    +
    +
    +

    Sends streaming audio, vidoe and data message from client.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func publish(_ name: String? = "")
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + play(_:) + +
    +
    +
    +
    +
    +
    +

    Playback streaming audio and video message from server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func play(_ name: String? = "")
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Stops playing or publishing and makes available other uses.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func readyStateDidChange(to readyState: NetStream.ReadyState)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

TSWriterDelegate +

+
+
+
    +
  • +
    + + + + writer(_:didOutput:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func writer(_ writer: TSWriter, didOutput data: Data)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func writer(_ writer: TSWriter, didRotateFileHandle timestamp: CMTime)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

TSReaderDelegate +

+
+
+
    +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func reader(_ reader: TSReader, id: UInt16, didRead formatDescription: CMFormatDescription)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func reader(_ reader: TSReader, id: UInt16, didRead sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/TSReader.html b/docs/Classes/TSReader.html new file mode 100644 index 000000000..be13568d4 --- /dev/null +++ b/docs/Classes/TSReader.html @@ -0,0 +1,448 @@ + + + + TSReader Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSReader

+
+
+ +
public class TSReader
+ +
+
+

The TSReader class represents read MPEG-2 transport stream data.

+ +
+
+
+
    +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any TSReaderDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Create a new TSReader instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + read(_:) + +
    +
    +
    +
    +
    +
    +

    Reads transport-stream data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func read(_ data: Data) -> Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clear() + +
    +
    +
    +
    +
    +
    +

    Clears the reader object for new transport stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func clear()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/TSWriter.html b/docs/Classes/TSWriter.html new file mode 100644 index 000000000..12e53dd6d --- /dev/null +++ b/docs/Classes/TSWriter.html @@ -0,0 +1,741 @@ + + + + TSWriter Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSWriter

+
+
+ +
public final class TSWriter
+
extension TSWriter: IOMuxer
+
extension TSWriter: Running
+ +
+
+

The TSWriter class represents writes MPEG-2 transport stream data.

+ +
+
+
+
    +
  • +
    + + + + defaultPATPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPATPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultPMTPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPMTPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultVideoPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultVideoPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultAudioPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultAudioPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultSegmentDuration: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    The delegate instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any TSWriterDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    This instance is running to process(true) or not(false).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + expectedMedias + +
    +
    +
    +
    +
    +
    +

    The exptected medias = [.video, .audio].

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var expectedMedias: Set<AVMediaType>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + audioFormat + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var audioFormat: AVAudioFormat? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoFormat + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoFormat: CMFormatDescription? { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(segmentDuration: Double = TSWriter.defaultSegmentDuration)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:when:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ audioBuffer: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html new file mode 100644 index 000000000..a6f808f27 --- /dev/null +++ b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html @@ -0,0 +1,550 @@ + + + + VideoAdaptiveNetBitRateStrategy Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VideoAdaptiveNetBitRateStrategy

+
+
+ +
public final class VideoAdaptiveNetBitRateStrategy : NetBitRateStrategyConvertible
+ +
+
+

The VideoAdaptiveNetBitRateStrategy class provides an algorithm that focuses on video bitrate control.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let sufficientBWCountsThreshold: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stream + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var stream: NetStream?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumVideoBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumVideoBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumAudioBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumAudioBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(mamimumVideoBitrate: Int)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setUp() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func setUp()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func sufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func insufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Classes/VideoEffect.html b/docs/Classes/VideoEffect.html new file mode 100644 index 000000000..5ca53167b --- /dev/null +++ b/docs/Classes/VideoEffect.html @@ -0,0 +1,414 @@ + + + + VideoEffect Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VideoEffect

+
+
+ +
open class VideoEffect : NSObject
+ +
+
+

An object that apply a video effect.

+ +

Example code:

+
final class MonochromeEffect: VideoEffect {
+    let filter: CIFilter? = CIFilter(name: "CIColorMonochrome")
+
+    override func execute(_ image: CIImage, info: CMSampleBuffer?) -> CIImage {
+        guard let filter: CIFilter = filter else {
+            return image
+        }
+        filter.setValue(image, forKey: "inputImage")
+        filter.setValue(CIColor(red: 0.75, green: 0.75, blue: 0.75), forKey: "inputColor")
+        filter.setValue(1.0, forKey: "inputIntensity")
+        return filter.outputImage ?? image
+    }
+}
+
+ +
+
+
+
    +
  • +
    + + + + ciContext + +
    +
    +
    +
    +
    +
    +

    Specifies the ciContext object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var ciContext: CIContext?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + execute(_:info:) + +
    +
    +
    +
    +
    +
    +

    Executes to apply a video effect.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func execute(_ image: CIImage, info: CMSampleBuffer?) -> CIImage
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums.html b/docs/Enums.html new file mode 100644 index 000000000..9d886089d --- /dev/null +++ b/docs/Enums.html @@ -0,0 +1,602 @@ + + + + Enumerations Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Enumerations

+

The following enumerations are available globally.

+ +
+
+
+
    +
  • +
    + + + + IOAudioUnitError + +
    +
    +
    +
    +
    +
    +

    The IO audio unit error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum IOAudioUnitError : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOVideoUnitError + +
    +
    +
    +
    +
    +
    +

    The IO video unit error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum IOVideoUnitError : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ImageTransform + +
    +
    +
    +
    +
    +
    +

    The type of image transform direction.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum ImageTransform : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPObjectEncoding + +
    +
    +
    +
    +
    +
    +

    Constans that defines the RTMPObject encoding type.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum RTMPObjectEncoding : UInt8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + DeviceUtil + +
    +
    +
    +
    +
    +
    +

    The namespace of DeviceUtil.

    + + See more +
    +
    +
    +
  • +
  • +
    + + + + DeviceUtil + +
    +
    +
    +
    +
    +
    +

    The namespace of DeviceUtil.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum DeviceUtil
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTLogLevel + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTLogLevel
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTLogFunctionalArea + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTLogFunctionalArea : Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTMode + +
    +
    +
    +
    +
    +
    +

    The type of SRTHaishinKit supports srt modes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTMode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTSocketOption + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTSocketOption : String
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/DeviceUtil.html b/docs/Enums/DeviceUtil.html new file mode 100644 index 000000000..476c55a1e --- /dev/null +++ b/docs/Enums/DeviceUtil.html @@ -0,0 +1,367 @@ + + + + DeviceUtil Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

DeviceUtil

+
+
+ +
public enum DeviceUtil
+ +
+
+

The namespace of DeviceUtil.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Lookup device by localizedName and mediaType.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func device(withLocalizedName: String, mediaType: AVMediaType) -> AVCaptureDevice?
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/IOAudioUnitError.html b/docs/Enums/IOAudioUnitError.html new file mode 100644 index 000000000..fca473b86 --- /dev/null +++ b/docs/Enums/IOAudioUnitError.html @@ -0,0 +1,394 @@ + + + + IOAudioUnitError Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOAudioUnitError

+
+
+ +
public enum IOAudioUnitError : Swift.Error
+ +
+
+

The IO audio unit error domain codes.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The IO audio unit failed to create the AVAudioConverter..

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreate(from: AVAudioFormat?, to: AVAudioFormat?)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO audio unit faild to convert the an audio buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToConvert(error: NSError)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/IOVideoUnitError.html b/docs/Enums/IOVideoUnitError.html new file mode 100644 index 000000000..6b0e80d7b --- /dev/null +++ b/docs/Enums/IOVideoUnitError.html @@ -0,0 +1,448 @@ + + + + IOVideoUnitError Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOVideoUnitError

+
+
+ +
public enum IOVideoUnitError : Swift.Error
+ +
+
+

The IO video unit error domain codes.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to create the VTSession.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreate(status: OSStatus)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to prepare the VTSession.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToPrepare(status: OSStatus)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to encode or decode a flame.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToFlame(status: OSStatus)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to set an option.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToSetOption(status: OSStatus, option: VTSessionOption)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/ImageTransform.html b/docs/Enums/ImageTransform.html new file mode 100644 index 000000000..33efebc66 --- /dev/null +++ b/docs/Enums/ImageTransform.html @@ -0,0 +1,448 @@ + + + + ImageTransform Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ImageTransform

+
+
+ +
public enum ImageTransform : String, Codable
+ +
+
+

The type of image transform direction.

+ +
+
+
+
    +
  • +
    + + + + north + +
    +
    +
    +
    +
    +
    +

    The north direction.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case north
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + south + +
    +
    +
    +
    +
    +
    +

    The south direction.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case south
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + east + +
    +
    +
    +
    +
    +
    +

    The east direciton.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case east
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + west + +
    +
    +
    +
    +
    +
    +

    The west direction.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case west
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/RTMPObjectEncoding.html b/docs/Enums/RTMPObjectEncoding.html new file mode 100644 index 000000000..b85b56491 --- /dev/null +++ b/docs/Enums/RTMPObjectEncoding.html @@ -0,0 +1,394 @@ + + + + RTMPObjectEncoding Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPObjectEncoding

+
+
+ +
public enum RTMPObjectEncoding : UInt8
+ +
+
+

Constans that defines the RTMPObject encoding type.

+ +
+
+
+
    +
  • +
    + + + + amf0 + +
    +
    +
    +
    +
    +
    +

    The AMF0 Encoding.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case amf0 = 0x00
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + amf3 + +
    +
    +
    +
    +
    +
    +

    The AMF3 Encoding.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case amf3 = 0x03
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/SRTLogFunctionalArea.html b/docs/Enums/SRTLogFunctionalArea.html new file mode 100644 index 000000000..e8e1f1995 --- /dev/null +++ b/docs/Enums/SRTLogFunctionalArea.html @@ -0,0 +1,1095 @@ + + + + SRTLogFunctionalArea Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTLogFunctionalArea

+
+
+ +
public enum SRTLogFunctionalArea : Int32
+ +
+
+ +
+
+
+
    +
  • +
    + + + + general + +
    +
    +
    +
    +
    +
    +

    General uncategorized log, for serious issues only

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case general = 0
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bstats + +
    +
    +
    +
    +
    +
    +

    Socket create/open/close/configure activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bstats = 1
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + control + +
    +
    +
    +
    +
    +
    +

    Connection establishment and handshake

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case control = 2
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The checkTimer and around activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case data = 3
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + tsbpd + +
    +
    +
    +
    +
    +
    +

    The TsBPD thread

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case tsbpd = 4
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rsrc + +
    +
    +
    +
    +
    +
    +

    System resource allocation and management

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rsrc = 5
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + haicrypt + +
    +
    +
    +
    +
    +
    +

    Haicrypt module area

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case haicrypt = 6
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + congest + +
    +
    +
    +
    +
    +
    +

    Congestion control module

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case congest = 7
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pfilter + +
    +
    +
    +
    +
    +
    +

    Packet filter module

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pfilter = 8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + applog + +
    +
    +
    +
    +
    +
    +

    Applications

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case applog
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + apiCtrl + +
    +
    +
    +
    +
    +
    +

    API part for socket and library managmenet

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case apiCtrl = 11
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queCtrl + +
    +
    +
    +
    +
    +
    +

    Queue control activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queCtrl = 13
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + epollUpd + +
    +
    +
    +
    +
    +
    +

    EPoll, internal update activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case epollUpd = 16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + apiRecv + +
    +
    +
    +
    +
    +
    +

    API part for receiving

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case apiRecv = 21
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufRecv + +
    +
    +
    +
    +
    +
    +

    Buffer, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufRecv = 22
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queRecv + +
    +
    +
    +
    +
    +
    +

    Queue, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queRecv = 23
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chanRecv + +
    +
    +
    +
    +
    +
    +

    CChannel, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case chanRecv = 24
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + grpRecv + +
    +
    +
    +
    +
    +
    +

    Group, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case grpRecv = 25
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + apiSend + +
    +
    +
    +
    +
    +
    +

    API part for sending

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case apiSend = 31
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufSend + +
    +
    +
    +
    +
    +
    +

    Buffer, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufSend = 32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queSend + +
    +
    +
    +
    +
    +
    +

    Queue, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queSend = 33
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chnSend + +
    +
    +
    +
    +
    +
    +

    CChannel, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case chnSend = 34
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + grpSend + +
    +
    +
    +
    +
    +
    +

    Group, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case grpSend = 35
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + internal + +
    +
    +
    +
    +
    +
    +

    Internal activities not connected directly to a socket

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case `internal` = 41
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queMgmt + +
    +
    +
    +
    +
    +
    +

    Queue, management part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queMgmt = 43
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chnMgmt + +
    +
    +
    +
    +
    +
    +

    CChannel, management part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case chnMgmt = 44
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + grpMgmt + +
    +
    +
    +
    +
    +
    +

    Group, management part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case grpMgmt = 45
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + epollApi + +
    +
    +
    +
    +
    +
    +

    EPoll, API part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case epollApi = 46
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/SRTLogLevel.html b/docs/Enums/SRTLogLevel.html new file mode 100644 index 000000000..f22fd8b7d --- /dev/null +++ b/docs/Enums/SRTLogLevel.html @@ -0,0 +1,474 @@ + + + + SRTLogLevel Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTLogLevel

+
+
+ +
public enum SRTLogLevel
+ +
+
+ +
+
+
+
    +
  • +
    + + + + debug + +
    +
    +
    +
    +
    +
    +

    Highly detailed and very frequent messages.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case debug
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + notice + +
    +
    +
    +
    +
    +
    +

    Occasionally displayed information.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case notice
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + warning + +
    +
    +
    +
    +
    +
    +

    Unusual behavior.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case warning
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + error + +
    +
    +
    +
    +
    +
    +

    Abnormal behavior

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + crit + +
    +
    +
    +
    +
    +
    +

    Error that makes the current socket unusabl

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case crit
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/SRTMode.html b/docs/Enums/SRTMode.html new file mode 100644 index 000000000..428be4591 --- /dev/null +++ b/docs/Enums/SRTMode.html @@ -0,0 +1,394 @@ + + + + SRTMode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTMode

+
+
+ +
public enum SRTMode
+ +
+
+

The type of SRTHaishinKit supports srt modes.

+ +
+
+
+
    +
  • +
    + + + + caller + +
    +
    +
    +
    +
    +
    +

    The caller mode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case caller
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + listener + +
    +
    +
    +
    +
    +
    +

    The listener mode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case listener
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Enums/SRTSocketOption.html b/docs/Enums/SRTSocketOption.html new file mode 100644 index 000000000..ad25932b5 --- /dev/null +++ b/docs/Enums/SRTSocketOption.html @@ -0,0 +1,1509 @@ + + + + SRTSocketOption Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTSocketOption

+
+
+ +
public enum SRTSocketOption : String
+ +
+
+ +
+
+
+
    +
  • +
    + + + + mss + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case mss
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndsyn + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndsyn
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvsyn + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvsyn
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isn + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case isn
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + fc + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case fc
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + linger + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case linger
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + udpsndbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case udpsndbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + udprcvbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case udprcvbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rendezvous + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rendezvous
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndtimeo + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndtimeo
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvtimeo + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvtimeo
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + reuseaddr + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case reuseaddr
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + maxbw + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case maxbw
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + state + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case state
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + event + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case event
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + snddata + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case snddata
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvdata + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvdata
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sender + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sender
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + tsbdmode + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case tsbdmode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + latency + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case latency
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + inputbw + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case inputbw
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + oheadbw + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case oheadbw
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + passphrase + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case passphrase
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pbkeylen + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pbkeylen
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + kmstate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case kmstate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ipttl + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case ipttl
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + iptos + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case iptos
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + tlpktdrop + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case tlpktdrop
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + snddropdelay + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case snddropdelay
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + nakreport + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case nakreport
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + conntimeo + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case conntimeo
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndkmstate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndkmstate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lossmaxttl + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case lossmaxttl
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvlatency + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvlatency
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + peerlatency + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case peerlatency
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + minversion + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case minversion
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + streamid + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case streamid
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + messageapi + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case messageapi
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + payloadsize + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case payloadsize
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + transtype + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case transtype
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + kmrefreshrate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case kmrefreshrate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + kmpreannounce + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case kmpreannounce
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + symbol + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var symbol: SRT_SOCKOPT { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Extensions.html b/docs/Extensions.html new file mode 100644 index 000000000..7ffe7b407 --- /dev/null +++ b/docs/Extensions.html @@ -0,0 +1,458 @@ + + + + Extensions Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Extensions

+

The following extensions are available globally.

+ +
+
+
+
    +
  • +
    + + + + AVAudioCommonFormat + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension AVAudioCommonFormat: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + AudioFormatID + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension AudioFormatID: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension AudioStreamBasicDescription: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOMixer + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
  • +
    + + + + SRTSocket + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension SRTSocket: Running
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Extensions/AVAudioCommonFormat.html b/docs/Extensions/AVAudioCommonFormat.html new file mode 100644 index 000000000..7cddbdd33 --- /dev/null +++ b/docs/Extensions/AVAudioCommonFormat.html @@ -0,0 +1,365 @@ + + + + AVAudioCommonFormat Extension Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AVAudioCommonFormat

+
+
+ +
extension AVAudioCommonFormat: CustomDebugStringConvertible
+ +
+
+ +
+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Extensions/AudioFormatID.html b/docs/Extensions/AudioFormatID.html new file mode 100644 index 000000000..2a50fc32b --- /dev/null +++ b/docs/Extensions/AudioFormatID.html @@ -0,0 +1,365 @@ + + + + AudioFormatID Extension Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AudioFormatID

+
+
+ +
extension AudioFormatID: CustomDebugStringConvertible
+ +
+
+ +
+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Extensions/AudioStreamBasicDescription.html b/docs/Extensions/AudioStreamBasicDescription.html new file mode 100644 index 000000000..5e6324d67 --- /dev/null +++ b/docs/Extensions/AudioStreamBasicDescription.html @@ -0,0 +1,365 @@ + + + + AudioStreamBasicDescription Extension Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AudioStreamBasicDescription

+
+
+ +
extension AudioStreamBasicDescription: Equatable
+ +
+
+ +
+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: AudioStreamBasicDescription, rhs: AudioStreamBasicDescription) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Global Variables.html b/docs/Global Variables.html new file mode 100644 index 000000000..b57f83be4 --- /dev/null +++ b/docs/Global Variables.html @@ -0,0 +1,360 @@ + + + + Global Variables Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Global Variables

+

The following global variables are available globally.

+ +
+
+
+
    +
  • +
    + + + + kASUndefined + +
    +
    +
    +
    +
    +
    +

    The singleton ASUndefined object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let kASUndefined: ASUndefined
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols.html b/docs/Protocols.html new file mode 100644 index 000000000..f7d551b7a --- /dev/null +++ b/docs/Protocols.html @@ -0,0 +1,669 @@ + + + + Protocols Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Protocols

+

The following protocols are available globally.

+ +
+
+
+
    +
  • +
    + + + + TSReaderDelegate + +
    +
    +
    +
    +
    +
    +

    The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol TSReaderDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + TSWriterDelegate + +
    +
    +
    +
    +
    +
    +

    The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol TSWriterDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOMuxer + +
    +
    +
    +
    +
    +
    +

    A type that multiplexer for streaming.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IOMuxer : Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IORecorderDelegate + +
    +
    +
    +
    +
    +
    +

    The interface an IORecorder uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IORecorderDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The interface a capture session uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IOScreenCaptureUnitDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOScreenCaptureUnit + +
    +
    +
    +
    +
    +
    +

    The interface that provides methods to screen capture.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IOScreenCaptureUnit : Running
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A type with a NetStream’s bitrate strategy representation.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol NetBitRateStrategyConvertible : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetStreamDelegate + +
    +
    +
    +
    +
    +
    +

    The interface a NetStream uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol NetStreamDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetStreamDrawable + +
    +
    +
    +
    +
    +
    +

    An interface that manages the NetStream content on the screen.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol NetStreamDrawable : AnyObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol EventDispatcherConvertible : AnyObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The interface a RTMPConnectionDelegate uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol RTMPConnectionDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Running + +
    +
    +
    +
    +
    +
    +

    A type that methods for running.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol Running : AnyObject
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/EventDispatcherConvertible.html b/docs/Protocols/EventDispatcherConvertible.html new file mode 100644 index 000000000..86dcf1596 --- /dev/null +++ b/docs/Protocols/EventDispatcherConvertible.html @@ -0,0 +1,448 @@ + + + + EventDispatcherConvertible Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

EventDispatcherConvertible

+
+
+ +
public protocol EventDispatcherConvertible : AnyObject
+ +
+
+

The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Registers the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func addEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Unregister the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func removeEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + dispatch(event:) + +
    +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func dispatch(event: Event)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func dispatch(_ type: Event.Name, bubbles: Bool, data: Any?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/IOMuxer.html b/docs/Protocols/IOMuxer.html new file mode 100644 index 000000000..03ac97b9d --- /dev/null +++ b/docs/Protocols/IOMuxer.html @@ -0,0 +1,448 @@ + + + + IOMuxer Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOMuxer

+
+
+ +
public protocol IOMuxer : Running
+ +
+
+

A type that multiplexer for streaming.

+ +
+
+
+
    +
  • +
    + + + + audioFormat + +
    +
    +
    +
    +
    +
    +

    Specifies the audioFormat.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var audioFormat: AVAudioFormat? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoFormat + +
    +
    +
    +
    +
    +
    +

    Specifies the videoFormat.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var videoFormat: CMFormatDescription? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:when:) + +
    +
    +
    +
    +
    +
    +

    Appends an audio.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func append(_ audioBuffer: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    +

    Appends a video or an audio.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/IORecorderDelegate.html b/docs/Protocols/IORecorderDelegate.html new file mode 100644 index 000000000..edc8713a3 --- /dev/null +++ b/docs/Protocols/IORecorderDelegate.html @@ -0,0 +1,394 @@ + + + + IORecorderDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IORecorderDelegate

+
+
+ +
public protocol IORecorderDelegate : AnyObject
+ +
+
+

The interface an IORecorder uses to inform its delegate.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to recorder error occured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func recorder(_ recorder: IORecorder, errorOccured error: IORecorder.Error)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to finish writing.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func recorder(_ recorder: IORecorder, finishWriting writer: AVAssetWriter)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/IOScreenCaptureUnit.html b/docs/Protocols/IOScreenCaptureUnit.html new file mode 100644 index 000000000..ade26d46f --- /dev/null +++ b/docs/Protocols/IOScreenCaptureUnit.html @@ -0,0 +1,394 @@ + + + + IOScreenCaptureUnit Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOScreenCaptureUnit

+
+
+ +
public protocol IOScreenCaptureUnit : Running
+ +
+
+

The interface that provides methods to screen capture.

+ +
+
+
+
    +
  • +
    + + + + attributes + +
    +
    +
    +
    +
    +
    +

    Specifies the CVPixelBufferPool’s attributes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var attributes: [NSString : NSObject] { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var delegate: (any IOScreenCaptureUnitDelegate)? { get set }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/IOScreenCaptureUnitDelegate.html b/docs/Protocols/IOScreenCaptureUnitDelegate.html new file mode 100644 index 000000000..3b1c0e9df --- /dev/null +++ b/docs/Protocols/IOScreenCaptureUnitDelegate.html @@ -0,0 +1,367 @@ + + + + IOScreenCaptureUnitDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOScreenCaptureUnitDelegate

+
+
+ +
public protocol IOScreenCaptureUnitDelegate : AnyObject
+ +
+
+

The interface a capture session uses to inform its delegate.

+ +
+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/Protocols/NetBitRateStrategyConvertible.html b/docs/Protocols/NetBitRateStrategyConvertible.html new file mode 100644 index 000000000..26eb9dcef --- /dev/null +++ b/docs/Protocols/NetBitRateStrategyConvertible.html @@ -0,0 +1,502 @@ + + + + NetBitRateStrategyConvertible Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetBitRateStrategyConvertible

+
+
+ +
public protocol NetBitRateStrategyConvertible : AnyObject
+ +
+
+

A type with a NetStream’s bitrate strategy representation.

+ +
+
+
+
    +
  • +
    + + + + stream + +
    +
    +
    +
    +
    +
    +

    Specifies the stream instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var stream: NetStream? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumVideoBitRate + +
    +
    +
    +
    +
    +
    +

    The mamimum video bitRate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var mamimumVideoBitRate: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumAudioBitRate + +
    +
    +
    +
    +
    +
    +

    The mamimum audio bitRate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var mamimumAudioBitRate: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setUp() + +
    +
    +
    +
    +
    +
    +

    SetUps the NetBitRateStrategy instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func setUp()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Invoke sufficientBWOccured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func sufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Invoke insufficientBWOccured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func insufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/NetStreamDelegate.html b/docs/Protocols/NetStreamDelegate.html new file mode 100644 index 000000000..298ec95ab --- /dev/null +++ b/docs/Protocols/NetStreamDelegate.html @@ -0,0 +1,475 @@ + + + + NetStreamDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetStreamDelegate

+
+
+ +
public protocol NetStreamDelegate : AnyObject
+ +
+
+

The interface a NetStream uses to inform its delegate.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver an audio packet incoming.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, didOutput audio: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stream(_:didOutput:) + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to playback a video incoming.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, didOutput video: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to video error occured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, videoErrorOccurred error: IOVideoUnitError)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to audio error occured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, audioErrorOccurred error: IOAudioUnitError)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + streamDidOpen(_:) + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to the stream opened.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func streamDidOpen(_ stream: NetStream)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/NetStreamDrawable.html b/docs/Protocols/NetStreamDrawable.html new file mode 100644 index 000000000..75e9c6615 --- /dev/null +++ b/docs/Protocols/NetStreamDrawable.html @@ -0,0 +1,451 @@ + + + + NetStreamDrawable Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetStreamDrawable

+
+
+ +
public protocol NetStreamDrawable : AnyObject
+ +
+
+

An interface that manages the NetStream content on the screen.

+ +
+
+
+
    +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the orientation of AVCaptureVideoOrientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the capture video preview enabled or not.

    + +

    Use AVCaptureVideoPreviewLayer as an internal implementation. You can verify that there is no delay in cinema mode. However, you cannot confirm the filter state.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +var isCaptureVideoPreviewEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + attachStream(_:) + +
    +
    +
    +
    +
    +
    +

    Attaches a drawable to a new NetStream object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func attachStream(_ stream: NetStream?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + enqueue(_:) + +
    +
    +
    +
    +
    +
    +

    Enqueue a CMSampleBuffer? to draw.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func enqueue(_ sampleBuffer: CMSampleBuffer?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/RTMPConnectionDelegate.html b/docs/Protocols/RTMPConnectionDelegate.html new file mode 100644 index 000000000..602e33cea --- /dev/null +++ b/docs/Protocols/RTMPConnectionDelegate.html @@ -0,0 +1,421 @@ + + + + RTMPConnectionDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPConnectionDelegate

+
+
+ +
public protocol RTMPConnectionDelegate : AnyObject
+ +
+
+

The interface a RTMPConnectionDelegate uses to inform its delegate.

+ +
+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/Protocols/Running.html b/docs/Protocols/Running.html new file mode 100644 index 000000000..90d2c0619 --- /dev/null +++ b/docs/Protocols/Running.html @@ -0,0 +1,421 @@ + + + + Running Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Running

+
+
+ +
public protocol Running : AnyObject
+ +
+
+

A type that methods for running.

+ +
+
+
+
    +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    Indicates whether the receiver is running.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to start running.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to stop running.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/TSReaderDelegate.html b/docs/Protocols/TSReaderDelegate.html new file mode 100644 index 000000000..86e9e0633 --- /dev/null +++ b/docs/Protocols/TSReaderDelegate.html @@ -0,0 +1,394 @@ + + + + TSReaderDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSReaderDelegate

+
+
+ +
public protocol TSReaderDelegate : AnyObject
+ +
+
+

The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates.

+ +
+
+
+
    +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func reader(_ reader: TSReader, id: UInt16, didRead formatDescription: CMFormatDescription)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func reader(_ reader: TSReader, id: UInt16, didRead sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Protocols/TSWriterDelegate.html b/docs/Protocols/TSWriterDelegate.html new file mode 100644 index 000000000..46bc83cbc --- /dev/null +++ b/docs/Protocols/TSWriterDelegate.html @@ -0,0 +1,394 @@ + + + + TSWriterDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSWriterDelegate

+
+
+ +
public protocol TSWriterDelegate : AnyObject
+ +
+
+

The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func writer(_ writer: TSWriter, didRotateFileHandle timestamp: CMTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writer(_:didOutput:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func writer(_ writer: TSWriter, didOutput data: Data)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs.html b/docs/Structs.html new file mode 100644 index 000000000..6802975e1 --- /dev/null +++ b/docs/Structs.html @@ -0,0 +1,757 @@ + + + + Structures Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Structures

+

The following structures are available globally.

+ +
+
+
+
    +
  • +
    + + + + AudioCodecSettings + +
    +
    +
    +
    +
    +
    +

    The AudioCodecSettings class specifying audio compression settings.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct AudioCodecSettings : Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + VTSessionOption + +
    +
    +
    +
    +
    +
    +

    A structure that represents Key-Value-Object for the VideoToolbox option.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct VTSessionOption
    +
    extension VTSessionOption: Hashable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + VideoCodecSettings + +
    +
    +
    +
    +
    +
    +

    The VideoCodecSettings class specifying video compression settings.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct VideoCodecSettings : Codable
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The MultiCamCaptureSetting represents the pip capture settings for the video capture.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct MultiCamCaptureSettings : Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SoundTransform + +
    +
    +
    +
    +
    +
    +

    The SoundTransform class

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct SoundTransform
    +
    extension SoundTransform: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetBitRateStats + +
    +
    +
    +
    +
    +
    +

    A structure that represents a NetStream’s bitRate statics.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct NetBitRateStats
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASUndefined + +
    +
    +
    +
    +
    +
    +

    The ASUndefined structure represents an undefined for ActionScript.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASUndefined : CustomStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASTypedObject + +
    +
    +
    +
    +
    +
    +

    The ASTypedObject structure represents a typed object for ActionScript.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASTypedObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASArray + +
    +
    +
    +
    +
    +
    +

    The ASArray structure represents an array value for ActionScript.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASArray
    +
    extension ASArray: ExpressibleByArrayLiteral
    +
    extension ASArray: CustomDebugStringConvertible
    +
    extension ASArray: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASXMLDocument + +
    +
    +
    +
    +
    +
    +

    ActionScript 1.0 and 2.0 and flash.xml.XMLDocument in ActionScript 3.0

    +
    +

    Seealso

    + 2.17 XML Document Type (amf0-file-format-specification.pdf) + +
    +

    Seealso

    + 3.9 XMLDocument type (amf-file-format-spec.pdf) + +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASXMLDocument : CustomStringConvertible
    +
    extension ASXMLDocument: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASXML + +
    +
    +
    +
    +
    +
    +

    ActionScript 3.0 introduces a new XML type.

    +
    +

    Seealso

    + 3.13 XML type (amf-file-format-spec.pdf) + +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASXML : CustomStringConvertible
    +
    extension ASXML: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPStreamInfo + +
    +
    +
    +
    +
    +
    +

    flash.net.NetStreamInfo for Swift

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct RTMPStreamInfo
    +
    extension RTMPStreamInfo: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Atomic + +
    +
    +
    +
    +
    +
    +

    Atomic class

    + + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct Atomic<A>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTPerformanceData + +
    +
    +
    +
    +
    +
    +

    The SRTPerformanceData represents the SRT’s performance statistics. This struct is wrapper for an CBytePerfMon.

    + + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct SRTPerformanceData
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/ASArray.html b/docs/Structs/ASArray.html new file mode 100644 index 000000000..c1ea257ef --- /dev/null +++ b/docs/Structs/ASArray.html @@ -0,0 +1,568 @@ + + + + ASArray Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASArray

+
+
+ +
public struct ASArray
+
extension ASArray: ExpressibleByArrayLiteral
+
extension ASArray: CustomDebugStringConvertible
+
extension ASArray: Equatable
+ +
+
+

The ASArray structure represents an array value for ActionScript.

+ +
+
+
+
    +
  • +
    + + + + length + +
    +
    +
    +
    +
    +
    +

    The length of an array.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var length: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(count:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance containing the specified number of a single.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(count: Int)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance of data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: [Any?])
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

ExpressibleByArrayLiteral +

+
+
+
    +
  • +
    + + + + init(arrayLiteral:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(arrayLiteral elements: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + subscript(_:) + +
    +
    +
    +
    +
    +
    +

    Accesses the element at the specified position.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public subscript(i: Any) -> Any? { get set }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Equatable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: ASArray, rhs: ASArray) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/ASTypedObject.html b/docs/Structs/ASTypedObject.html new file mode 100644 index 000000000..cbc7cf7da --- /dev/null +++ b/docs/Structs/ASTypedObject.html @@ -0,0 +1,448 @@ + + + + ASTypedObject Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASTypedObject

+
+
+ +
public struct ASTypedObject
+ +
+
+

The ASTypedObject structure represents a typed object for ActionScript.

+ +
+
+
+
    +
  • +
    + + + + TypedObjectDecoder + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias TypedObjectDecoder = (_ type: String, _ data: ASObject) throws -> Any
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func register(typeNamed name: String, decoder: @escaping TypedObjectDecoder)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + register(type:named:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func register<T>(type: T.Type, named name: String) where T : Decodable
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func unregister(typeNamed name: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/ASUndefined.html b/docs/Structs/ASUndefined.html new file mode 100644 index 000000000..604b74060 --- /dev/null +++ b/docs/Structs/ASUndefined.html @@ -0,0 +1,366 @@ + + + + ASUndefined Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASUndefined

+
+
+ +
public struct ASUndefined : CustomStringConvertible
+ +
+
+

The ASUndefined structure represents an undefined for ActionScript.

+ +
+
+
+
    +
  • +
    + + + + description + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var description: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/ASXML.html b/docs/Structs/ASXML.html new file mode 100644 index 000000000..493a82872 --- /dev/null +++ b/docs/Structs/ASXML.html @@ -0,0 +1,438 @@ + + + + ASXML Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASXML

+
+
+ +
public struct ASXML : CustomStringConvertible
+
extension ASXML: Equatable
+ +
+
+

ActionScript 3.0 introduces a new XML type.

+
+

Seealso

+ 3.13 XML type (amf-file-format-spec.pdf) + +
+ +
+
+
+
    +
  • +
    + + + + description + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var description: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance of string.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Equatable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: ASXML, rhs: ASXML) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/ASXMLDocument.html b/docs/Structs/ASXMLDocument.html new file mode 100644 index 000000000..2f4e5527f --- /dev/null +++ b/docs/Structs/ASXMLDocument.html @@ -0,0 +1,442 @@ + + + + ASXMLDocument Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASXMLDocument

+
+
+ +
public struct ASXMLDocument : CustomStringConvertible
+
extension ASXMLDocument: Equatable
+ +
+
+

ActionScript 1.0 and 2.0 and flash.xml.XMLDocument in ActionScript 3.0

+
+

Seealso

+ 2.17 XML Document Type (amf0-file-format-specification.pdf) + +
+

Seealso

+ 3.9 XMLDocument type (amf-file-format-spec.pdf) + +
+ +
+
+
+
    +
  • +
    + + + + description + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var description: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance of string.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Equatable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: ASXMLDocument, rhs: ASXMLDocument) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/Atomic.html b/docs/Structs/Atomic.html new file mode 100644 index 000000000..46e96d397 --- /dev/null +++ b/docs/Structs/Atomic.html @@ -0,0 +1,426 @@ + + + + Atomic Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Atomic

+
+
+ +
public struct Atomic<A>
+ +
+
+

Atomic class

+ + +
+
+
+
    +
  • +
    + + + + value + +
    +
    +
    +
    +
    +
    +

    Getter for the value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var value: A { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(_:) + +
    +
    +
    +
    +
    +
    +

    Creates an instance of value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(_ value: A)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mutate(_:) + +
    +
    +
    +
    +
    +
    +

    Setter for the value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public mutating func mutate(_ transform: (inout A) -> Void)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/AudioCodecSettings.html b/docs/Structs/AudioCodecSettings.html new file mode 100644 index 000000000..7148935b4 --- /dev/null +++ b/docs/Structs/AudioCodecSettings.html @@ -0,0 +1,593 @@ + + + + AudioCodecSettings Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AudioCodecSettings

+
+
+ +
public struct AudioCodecSettings : Codable
+ +
+
+

The AudioCodecSettings class specifying audio compression settings.

+ +
+
+
+
    +
  • +
    + + + + default + +
    +
    +
    +
    +
    +
    +

    The default value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let `default`: AudioCodecSettings
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Maximum number of channels supported by the system

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let maximumNumberOfChannels: UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumSampleRate + +
    +
    +
    +
    +
    +
    +

    Maximum sampleRate supported by the system

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let mamimumSampleRate: Float64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitRate + +
    +
    +
    +
    +
    +
    +

    Specifies the bitRate of audio output.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sampleRate + +
    +
    +
    +
    +
    +
    +

    Specifies the sampleRate of audio output.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var sampleRate: Float64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + channels + +
    +
    +
    +
    +
    +
    +

    Specifies the channels of audio output.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var channels: UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + downmix + +
    +
    +
    +
    +
    +
    +

    Specifies the mixes the channels or not. Currently, it supports input sources with 4, 5, 6, and 8 channels.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var downmix: Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + channelMap + +
    +
    +
    +
    +
    +
    +

    Specifies the map of the output to input channels.

    +

    Example code:

    +
    // If you want to use the 3rd and 4th channels from a 4-channel input source for a 2-channel output, you would specify it like this.
    +channelMap = [2, 3]
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var channelMap: [Int]?
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create an new AudioCodecSettings instance. A value of 0 will use the same value as the input source.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(
    +    bitRate: Int = 64 * 1000,
    +    sampleRate: Float64 = 0,
    +    channels: UInt32 = 0,
    +    downmix: Bool = false,
    +    channelMap: [Int]? = nil
    +)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/MultiCamCaptureSettings.html b/docs/Structs/MultiCamCaptureSettings.html new file mode 100644 index 000000000..0deceb391 --- /dev/null +++ b/docs/Structs/MultiCamCaptureSettings.html @@ -0,0 +1,530 @@ + + + + MultiCamCaptureSettings Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

MultiCamCaptureSettings

+
+
+ +
public struct MultiCamCaptureSettings : Codable
+ +
+
+

The MultiCamCaptureSetting represents the pip capture settings for the video capture.

+ +
+
+
+
    +
  • +
    + + + + Mode + +
    +
    +
    +
    +
    +
    +

    The type of image display mode.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Mode : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + default + +
    +
    +
    +
    +
    +
    +

    The default setting for the stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let `default`: MultiCamCaptureSettings
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mode + +
    +
    +
    +
    +
    +
    +

    The image display mode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mode: Mode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + cornerRadius + +
    +
    +
    +
    +
    +
    +

    The cornerRadius of the picture in picture image.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let cornerRadius: CGFloat
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + regionOfInterest + +
    +
    +
    +
    +
    +
    +

    The region of the picture in picture image.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let regionOfInterest: CGRect
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + direction + +
    +
    +
    +
    +
    +
    +

    The direction of the splitView position.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let direction: ImageTransform
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new MultiCamCaptureSetting.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(mode: Mode, cornerRadius: CGFloat, regionOfInterest: CGRect, direction: ImageTransform)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/MultiCamCaptureSettings/Mode.html b/docs/Structs/MultiCamCaptureSettings/Mode.html new file mode 100644 index 000000000..c2809a394 --- /dev/null +++ b/docs/Structs/MultiCamCaptureSettings/Mode.html @@ -0,0 +1,394 @@ + + + + Mode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Mode

+
+
+ +
public enum Mode : String, Codable
+ +
+
+

The type of image display mode.

+ +
+
+
+
    +
  • +
    + + + + pip + +
    +
    +
    +
    +
    +
    +

    The picture in picture mode means video stream playing within an inset window, freeing the rest of the screen for other tasks.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pip
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + splitView + +
    +
    +
    +
    +
    +
    +

    The split view means video stream playing within two individual windows.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case splitView
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/NetBitRateStats.html b/docs/Structs/NetBitRateStats.html new file mode 100644 index 000000000..122086a7d --- /dev/null +++ b/docs/Structs/NetBitRateStats.html @@ -0,0 +1,421 @@ + + + + NetBitRateStats Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetBitRateStats

+
+
+ +
public struct NetBitRateStats
+ +
+
+

A structure that represents a NetStream’s bitRate statics.

+ +
+
+
+
    +
  • +
    + + + + currentQueueBytesOut + +
    +
    +
    +
    +
    +
    +

    The statistics of outgoing queue bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let currentQueueBytesOut: Int64
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of incoming bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let currentBytesInPerSecond: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of outgoing bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let currentBytesOutPerSecond: Int32
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/RTMPStreamInfo.html b/docs/Structs/RTMPStreamInfo.html new file mode 100644 index 000000000..910ee1d29 --- /dev/null +++ b/docs/Structs/RTMPStreamInfo.html @@ -0,0 +1,461 @@ + + + + RTMPStreamInfo Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPStreamInfo

+
+
+ +
public struct RTMPStreamInfo
+
extension RTMPStreamInfo: CustomDebugStringConvertible
+ +
+
+

flash.net.NetStreamInfo for Swift

+ +
+
+
+
    +
  • +
    + + + + byteCount + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var byteCount: Atomic<Int64> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + resourceName + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var resourceName: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + currentBytesPerSecond + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var currentBytesPerSecond: Int32 { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/SRTPerformanceData.html b/docs/Structs/SRTPerformanceData.html new file mode 100644 index 000000000..4e90bf6b9 --- /dev/null +++ b/docs/Structs/SRTPerformanceData.html @@ -0,0 +1,2343 @@ + + + + SRTPerformanceData Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTPerformanceData

+
+
+ +
public struct SRTPerformanceData
+ +
+
+

The SRTPerformanceData represents the SRT’s performance statistics. This struct is wrapper for an CBytePerfMon.

+ + +
+
+
+
    +
  • +
    + + + + msTimeStamp + +
    +
    +
    +
    +
    +
    +

    The time since the UDT entity is started, in milliseconds.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msTimeStamp: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent data packets, including retransmissions.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentTotal: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received packets.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvTotal: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndLossTotal + +
    +
    +
    +
    +
    +
    +

    The total number of lost packets (sender side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndLossTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvLossTotal + +
    +
    +
    +
    +
    +
    +

    The total number of lost packets (receiver side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvLossTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRetransTotal + +
    +
    +
    +
    +
    +
    +

    The total number of retransmitted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRetransTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentACKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentACKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvACKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvACKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentNAKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentNAKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvNAKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvNAKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + usSndDurationTotal + +
    +
    +
    +
    +
    +
    +

    The total time duration when UDT is sending data (idle time exclusive)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let usSndDurationTotal: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndDropTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvDropTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvUndecryptTotal + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvUndecryptTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSentTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent data bytes, including retransmissions

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSentTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRecvTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRecvTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvLossTotal + +
    +
    +
    +
    +
    +
    +

    The total number of lost bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvLossTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRetransTotal + +
    +
    +
    +
    +
    +
    +

    The total number of retransmitted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRetransTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSndDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSndDropTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing bytes (estimate based on average packet size)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvDropTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvUndecryptTotal + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvUndecryptTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSent + +
    +
    +
    +
    +
    +
    +

    The number of sent data packets, including retransmissions

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSent: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecv + +
    +
    +
    +
    +
    +
    +

    The number of received packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecv: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndLoss + +
    +
    +
    +
    +
    +
    +

    The number of lost packets (sender side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndLoss: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvLoss + +
    +
    +
    +
    +
    +
    +

    The number of lost packets (receiver side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvLoss: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRetrans + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRetrans: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvRetrans + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted packets received

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvRetrans: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentACK + +
    +
    +
    +
    +
    +
    +

    The number of sent ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentACK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvACK + +
    +
    +
    +
    +
    +
    +

    The number of received ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvACK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentNAK + +
    +
    +
    +
    +
    +
    +

    The number of sent NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentNAK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvNAK + +
    +
    +
    +
    +
    +
    +

    The number of received NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvNAK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsSendRate + +
    +
    +
    +
    +
    +
    +

    The sending rate in Mb/s

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsSendRate: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsRecvRate + +
    +
    +
    +
    +
    +
    +

    The receiving rate in Mb/s

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsRecvRate: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + usSndDuration + +
    +
    +
    +
    +
    +
    +

    The busy sending time (i.e., idle time exclusive)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let usSndDuration: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktReorderDistance + +
    +
    +
    +
    +
    +
    +

    The size of order discrepancy in received sequences

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktReorderDistance: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvAvgBelatedTime + +
    +
    +
    +
    +
    +
    +

    The average time of packet delay for belated packets (packets with sequence past the ACK)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvAvgBelatedTime: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvBelated + +
    +
    +
    +
    +
    +
    +

    The number of received AND IGNORED packets due to having come too late

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvBelated: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndDrop: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvDrop: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvUndecrypt + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvUndecrypt: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSent + +
    +
    +
    +
    +
    +
    +

    The number of sent data bytes, including retransmissions

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSent: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRecv + +
    +
    +
    +
    +
    +
    +

    The number of received bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRecv: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvLoss + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvLoss: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRetrans + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRetrans: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSndDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSndDrop: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing bytes (estimate based on average packet size)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvDrop: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvUndecrypt + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvUndecrypt: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + usPktSndPeriod + +
    +
    +
    +
    +
    +
    +

    The packet sending period, in microseconds

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let usPktSndPeriod: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktFlowWindow + +
    +
    +
    +
    +
    +
    +

    The flow window size, in number of packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktFlowWindow: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktCongestionWindow + +
    +
    +
    +
    +
    +
    +

    The congestion window size, in number of packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktCongestionWindow: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktFlightSize + +
    +
    +
    +
    +
    +
    +

    The number of packets on flight

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktFlightSize: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msRTT + +
    +
    +
    +
    +
    +
    +

    The RTT, in milliseconds

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msRTT: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsBandwidth + +
    +
    +
    +
    +
    +
    +

    The estimated bandwidth, in Mb/s

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsBandwidth: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteAvailSndBuf + +
    +
    +
    +
    +
    +
    +

    The available UDT sender buffer size

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteAvailSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteAvailRcvBuf + +
    +
    +
    +
    +
    +
    +

    The available UDT receiver buffer size

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteAvailRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsMaxBW + +
    +
    +
    +
    +
    +
    +

    The transmit Bandwidth ceiling (Mbps)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsMaxBW: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteMSS + +
    +
    +
    +
    +
    +
    +

    The MTU

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteMSS: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndBuf + +
    +
    +
    +
    +
    +
    +

    The UnACKed packets in UDT sender

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSndBuf + +
    +
    +
    +
    +
    +
    +

    The UnACKed bytes in UDT sender

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msSndBuf + +
    +
    +
    +
    +
    +
    +

    The UnACKed timespan (msec) of UDT sender

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msSndTsbPdDelay + +
    +
    +
    +
    +
    +
    +

    Timestamp-based Packet Delivery Delay

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msSndTsbPdDelay: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvBuf + +
    +
    +
    +
    +
    +
    +

    Undelivered packets in UDT receiver

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvBuf + +
    +
    +
    +
    +
    +
    +

    The undelivered bytes of UDT receiver

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msRcvBuf + +
    +
    +
    +
    +
    +
    +

    The undelivered timespan (msec) of UDT receiver

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msRcvTsbPdDelay + +
    +
    +
    +
    +
    +
    +

    The Timestamp-based Packet Delivery Delay

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msRcvTsbPdDelay: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The number of control packets supplied by packet filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndFilterExtraTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The number of control packets received and not supplied back

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterExtraTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The number of packets that the filter supplied extra (e.g. FEC rebuilt)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterSupplyTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterLossTotal + +
    +
    +
    +
    +
    +
    +

    The number of packet loss not coverable by filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterLossTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndFilterExtra + +
    +
    +
    +
    +
    +
    +

    The number of control packets supplied by packet filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndFilterExtra: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterExtra + +
    +
    +
    +
    +
    +
    +

    The number of control packets received and not supplied back

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterExtra: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterSupply + +
    +
    +
    +
    +
    +
    +

    The number of packets that the filter supplied extra (e.g. FEC rebuilt)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterSupply: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterLoss + +
    +
    +
    +
    +
    +
    +

    The number of packet loss not coverable by filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterLoss: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktReorderTolerance + +
    +
    +
    +
    +
    +
    +

    The packet reorder tolerance value

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktReorderTolerance: Int32
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/SoundTransform.html b/docs/Structs/SoundTransform.html new file mode 100644 index 000000000..ed1fc6783 --- /dev/null +++ b/docs/Structs/SoundTransform.html @@ -0,0 +1,488 @@ + + + + SoundTransform Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SoundTransform

+
+
+ +
public struct SoundTransform
+
extension SoundTransform: CustomDebugStringConvertible
+ +
+
+

The SoundTransform class

+ +
+
+
+
    +
  • +
    + + + + defaultVolume + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultVolume: Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultPan + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPan: Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + volume + +
    +
    +
    +
    +
    +
    +

    The volume, ranging from 0 (silent) to 1 (full volume)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var volume: Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pan + +
    +
    +
    +
    +
    +
    +

    The panning of the sound

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var pan: Float
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/VTSessionOption.html b/docs/Structs/VTSessionOption.html new file mode 100644 index 000000000..5b03791f5 --- /dev/null +++ b/docs/Structs/VTSessionOption.html @@ -0,0 +1,402 @@ + + + + VTSessionOption Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VTSessionOption

+
+
+ +
public struct VTSessionOption
+
extension VTSessionOption: Hashable
+ +
+
+

A structure that represents Key-Value-Object for the VideoToolbox option.

+ +
+
+
+
+ + +
+ +

Hashable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: VTSessionOption, rhs: VTSessionOption) -> Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hash(into:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func hash(into hasher: inout Hasher)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/VideoCodecSettings.html b/docs/Structs/VideoCodecSettings.html new file mode 100644 index 000000000..36712dbc1 --- /dev/null +++ b/docs/Structs/VideoCodecSettings.html @@ -0,0 +1,820 @@ + + + + VideoCodecSettings Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VideoCodecSettings

+
+
+ +
public struct VideoCodecSettings : Codable
+ +
+
+

The VideoCodecSettings class specifying video compression settings.

+ +
+
+
+
    +
  • +
    + + + + frameInterval30 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval30: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval10 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval10: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval05 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval05: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval01 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval01: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + default + +
    +
    +
    +
    +
    +
    +

    The defulat value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let `default`: VideoCodecSettings
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + BitRateMode + +
    +
    +
    +
    +
    +
    +

    A bitRate mode that affectes how to encode the video source.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum BitRateMode : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ScalingMode + +
    +
    +
    +
    +
    + +
    +

    Declaration

    +
    +

    Swift

    +
    public enum ScalingMode : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoSize + +
    +
    +
    +
    +
    +
    +

    Specifies the video size of encoding video.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoSize: CGSize
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitRate + +
    +
    +
    +
    +
    +
    +

    Specifies the bitrate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval + +
    +
    +
    +
    +
    +
    +

    Specifies the video frame interval.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var frameInterval: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + profileLevel + +
    +
    +
    +
    +
    +
    +

    Specifies the H264 profileLevel.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var profileLevel: String { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + scalingMode + +
    +
    +
    +
    +
    +
    +

    Specifies the scalingMode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var scalingMode: ScalingMode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitRateMode + +
    +
    +
    +
    +
    +
    +

    Specifies the bitRateMode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitRateMode: BitRateMode
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the keyframeInterval.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var maxKeyFrameIntervalDuration: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + allowFrameReordering + +
    +
    +
    +
    +
    +
    +

    Specifies the allowFrameRecording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var allowFrameReordering: Bool?
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the HardwareEncoder is enabled(TRUE), or not(FALSE) for macOS.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isHardwareEncoderEnabled: Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Creates a new VideoCodecSettings instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(
    +    videoSize: CGSize = .init(width: 854, height: 480),
    +    bitRate: Int = 640 * 1000,
    +    frameInterval: Double = 0.0,
    +    profileLevel: String = kVTProfileLevel_H264_Baseline_3_1 as String,
    +    scalingMode: ScalingMode = .trim,
    +    bitRateMode: BitRateMode = .average,
    +    maxKeyFrameIntervalDuration: Int32 = 2,
    +    allowFrameReordering: Bool? = nil, // swiftlint:disable:this discouraged_optional_boolean,
    +    isHardwareEncoderEnabled: Bool = true
    +)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/VideoCodecSettings/BitRateMode.html b/docs/Structs/VideoCodecSettings/BitRateMode.html new file mode 100644 index 000000000..0b2a3d632 --- /dev/null +++ b/docs/Structs/VideoCodecSettings/BitRateMode.html @@ -0,0 +1,394 @@ + + + + BitRateMode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

BitRateMode

+
+
+ +
public enum BitRateMode : String, Codable
+ +
+
+

A bitRate mode that affectes how to encode the video source.

+ +
+
+
+
    +
  • +
    + + + + average + +
    +
    +
    +
    +
    +
    +

    The average bit rate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case average
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + constant + +
    +
    +
    +
    +
    +
    +

    The constant bit rate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case constant
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Structs/VideoCodecSettings/ScalingMode.html b/docs/Structs/VideoCodecSettings/ScalingMode.html new file mode 100644 index 000000000..0484d62fe --- /dev/null +++ b/docs/Structs/VideoCodecSettings/ScalingMode.html @@ -0,0 +1,457 @@ + + + + ScalingMode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ScalingMode

+
+
+ +
public enum ScalingMode : String, Codable
+ +
+
+

The scaling mode.

+ + +
+
+
+
    +
  • +
    + + + + normal + +
    +
    +
    +
    +
    +
    +

    kVTScalingMode_Normal

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case normal = "Normal"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + letterbox + +
    +
    +
    +
    +
    +
    +

    kVTScalingMode_Letterbox

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case letterbox = "Letterbox"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    kVTScalingMode_CropSourceToCleanAperture

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case cropSourceToCleanAperture = "CropSourceToCleanAperture"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + trim + +
    +
    +
    +
    +
    +
    +

    kVTScalingMode_Trim

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case trim = "Trim"
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/Typealiases.html b/docs/Typealiases.html new file mode 100644 index 000000000..c348880e6 --- /dev/null +++ b/docs/Typealiases.html @@ -0,0 +1,360 @@ + + + + Type Aliases Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Type Aliases

+

The following type aliases are available globally.

+ +
+
+
+
    +
  • +
    + + + + ASObject + +
    +
    +
    +
    +
    +
    +

    The ASObject typealias represents an object for AcrionScript.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias ASObject = [String : Any?]
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/badge.svg b/docs/badge.svg new file mode 100644 index 000000000..be498fa5c --- /dev/null +++ b/docs/badge.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + documentation + + + documentation + + + 86% + + + 86% + + + diff --git a/docs/css/chunk-c0335d80.10a2f091.css b/docs/css/chunk-c0335d80.10a2f091.css deleted file mode 100644 index 86451fddd..000000000 --- a/docs/css/chunk-c0335d80.10a2f091.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */[data-v-20945666] .code-listing{background:var(--background,var(--color-code-background));color:var(--text,var(--color-code-plain));border-color:var(--colors-grid,var(--color-grid));border-width:var(--code-border-width,1px);border-style:var(--code-border-style,solid)}[data-v-20945666] .code-listing pre{padding:var(--code-block-style-elements-padding)}[data-v-20945666] .code-listing pre>code{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}[data-v-20945666] *+.code-listing,[data-v-20945666] *+.endpoint-example,[data-v-20945666] *+.inline-image-container,[data-v-20945666] *+aside,[data-v-20945666] *+figure,[data-v-20945666] .code-listing+*,[data-v-20945666] .endpoint-example+*,[data-v-20945666] .inline-image-container+*,[data-v-20945666] aside+*,[data-v-20945666] figure+*{margin-top:var(--spacing-stacked-margin-xlarge)}[data-v-20945666] *+dl,[data-v-20945666] dl+*{margin-top:var(--spacing-stacked-margin-large)}[data-v-20945666] img{display:block;margin:auto;max-width:100%}[data-v-20945666] ol,[data-v-20945666] ol li:not(:first-child),[data-v-20945666] ul,[data-v-20945666] ul li:not(:first-child){margin-top:var(--spacing-stacked-margin-large)}@media only screen and (max-width:735px){[data-v-20945666] ol,[data-v-20945666] ul{margin-left:1.25rem}}[data-v-20945666] dt:not(:first-child){margin-top:var(--spacing-stacked-margin-large)}[data-v-20945666] dd{margin-left:2em}.badge[data-v-8d6893ae]{--badge-color:var(--color-badge-default);--badge-dark-color:var(--color-badge-dark-default);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;padding:2px 10px;white-space:nowrap;background:none;border-radius:var(--badge-border-radius,calc(var(--border-radius, 4px) - 1px));border-style:var(--badge-border-style,solid);border-width:var(--badge-border-width,1px);margin-left:10px;color:var(--badge-color)}.theme-dark .badge[data-v-8d6893ae]{--badge-color:var(--badge-dark-color)}.badge-deprecated[data-v-8d6893ae]{--badge-color:var(--color-badge-deprecated);--badge-dark-color:var(--color-badge-dark-deprecated)}.badge-beta[data-v-8d6893ae]{--badge-color:var(--color-badge-beta);--badge-dark-color:var(--color-badge-dark-beta)}.topic-icon-wrapper[data-v-03cf3183]{display:flex;align-items:center;justify-content:center;height:1.47059rem;flex:0 0 1.294rem;width:1.294rem;margin-right:1rem}.topic-icon[data-v-03cf3183]{height:.88235rem;transform:scale(1);-webkit-transform:scale(1);overflow:visible}.topic-icon[data-v-03cf3183] img{margin:0;display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.topic-icon.curly-brackets-icon[data-v-03cf3183]{height:1rem}.token-method[data-v-3fd63d6c]{font-weight:700}.token-keyword[data-v-3fd63d6c]{color:var(--syntax-keyword,var(--color-syntax-keywords))}.token-number[data-v-3fd63d6c]{color:var(--syntax-number,var(--color-syntax-numbers))}.token-string[data-v-3fd63d6c]{color:var(--syntax-string,var(--color-syntax-strings))}.attribute-link[data-v-3fd63d6c],.token-attribute[data-v-3fd63d6c]{color:var(--syntax-attribute,var(--color-syntax-keywords))}.token-internalParam[data-v-3fd63d6c]{color:var(--color-syntax-param-internal-name)}.type-identifier-link[data-v-3fd63d6c]{color:var(--syntax-type,var(--color-syntax-other-type-names))}.token-removed[data-v-3fd63d6c]{background-color:var(--color-highlight-red)}.token-added[data-v-3fd63d6c]{background-color:var(--color-highlight-green)}.decorator[data-v-06ec7395],.label[data-v-06ec7395]{color:var(--colors-secondary-label,var(--color-secondary-label))}.label[data-v-06ec7395]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.empty-token[data-v-06ec7395]{font-size:0}.empty-token[data-v-06ec7395]:after{content:"\00a0";font-size:1rem}.conditional-constraints[data-v-1548fd90] code{color:var(--colors-secondary-label,var(--color-secondary-label))}.abstract[data-v-52205924],.link-block[data-v-52205924] .badge{margin-left:2.294rem}.link-block .badge+.badge[data-v-52205924]{margin-left:1rem}.link[data-v-52205924]{display:flex}.link-block .badge[data-v-52205924]{margin-top:.5rem}.link-block.has-inline-element[data-v-52205924]{display:flex;align-items:flex-start;flex-flow:row wrap}.link-block.has-inline-element .badge[data-v-52205924]{margin-left:1rem;margin-top:0}.link-block .has-adjacent-elements[data-v-52205924]{padding-top:5px;padding-bottom:5px;display:inline-flex}.link-block[data-v-52205924],.link[data-v-52205924]{box-sizing:inherit}.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.link-block.changed.changed[data-v-52205924],.link.changed.changed[data-v-52205924]{padding-right:1rem}@media only screen and (max-width:735px){.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-left:0;padding-right:0}.link-block.changed.changed[data-v-52205924],.link.changed.changed[data-v-52205924]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-left:0;padding-right:0}}.abstract .topic-required[data-v-52205924]:not(:first-child){margin-top:4px}.topic-required[data-v-52205924]{font-size:.8em}.deprecated[data-v-52205924]{text-decoration:line-through}.conditional-constraints[data-v-52205924]{font-size:.82353rem;margin-top:4px} \ No newline at end of file diff --git a/docs/css/documentation-topic.1d1eec04.css b/docs/css/documentation-topic.1d1eec04.css deleted file mode 100644 index 8622bb433..000000000 --- a/docs/css/documentation-topic.1d1eec04.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.betainfo[data-v-e8fd2a92]{font-size:.94118rem;padding:3rem 0;background-color:var(--color-fill-secondary)}.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .betainfo-container[data-v-e8fd2a92]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .betainfo-container[data-v-e8fd2a92]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .betainfo-container[data-v-e8fd2a92]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:692px}}@media only screen and (max-width:735px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:87.5%}}@media only screen and (max-width:320px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:215px}}.betainfo-label[data-v-e8fd2a92]{font-weight:600;font-size:.94118rem}.betainfo-content[data-v-e8fd2a92] p{margin-bottom:10px}.summary-section[data-v-3aa6f694]:last-of-type{margin-right:0}@media only screen and (max-width:735px){.summary-section[data-v-3aa6f694]{margin-right:0}}.title[data-v-6796f6ea]{color:#fff;font-size:.82353rem;margin-right:.5rem;text-rendering:optimizeLegibility}.documentation-hero--disabled .title[data-v-6796f6ea]{color:var(--colors-text,var(--color-text))}.language[data-v-1a36493d]{padding-bottom:10px;justify-content:flex-end}.language-list[data-v-1a36493d],.language[data-v-1a36493d]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0;display:flex;align-items:center}.language-option.swift[data-v-1a36493d]{padding-right:10px;border-right:1px solid var(--color-fill-gray-tertiary)}.language-option.objc[data-v-1a36493d]{padding-left:10px}.language-option.active[data-v-1a36493d],.language-option.router-link-exact-active[data-v-1a36493d]{color:#ccc}.documentation-hero--disabled .language-option.active[data-v-1a36493d],.documentation-hero--disabled .language-option.router-link-exact-active[data-v-1a36493d]{color:var(--colors-secondary-label,var(--color-secondary-label))}.view-more-link[data-v-0d14b62a]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;flex-flow:row-reverse;margin-bottom:1.3rem}.documentation-hero[data-v-6540c364]{background:#000;color:var(--color-documentation-intro-figure,#fff);overflow:hidden;text-align:left;position:relative;padding-right:var(--doc-hero-right-offset)}.documentation-hero[data-v-6540c364]:before{content:"";background:var(--standard-accent-color,var(--color-documentation-intro-fill,#2a2a2a));position:absolute;width:100%;left:0;top:-50%;height:150%;right:0}.documentation-hero[data-v-6540c364]:after{background:transparent;opacity:.7;width:100%;position:absolute;content:"";height:100%;left:0;top:0}.documentation-hero .icon[data-v-6540c364]{position:absolute;margin-top:10px;margin-right:25px;right:0;width:250px;height:calc(100% - 20px);box-sizing:border-box}@media only screen and (max-width:735px){.documentation-hero .icon[data-v-6540c364]{display:none}}.documentation-hero .background-icon[data-v-6540c364]{color:var(--color-documentation-intro-accent,#161616);display:block;width:250px;height:auto;opacity:1;position:absolute;top:50%;left:0;transform:translateY(-50%);max-height:100%}.documentation-hero .background-icon[data-v-6540c364] img,.documentation-hero .background-icon[data-v-6540c364] svg{width:100%;height:100%}.documentation-hero__content[data-v-6540c364]:not(.minimized-hero){padding-top:2.35294rem;padding-bottom:40px;position:relative;z-index:1}.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:auto;padding-left:20px;padding-right:20px}}.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:692px}}@media only screen and (max-width:735px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:87.5%}}@media only screen and (max-width:320px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:215px}}.documentation-hero .minimized-hero[data-v-6540c364]{padding:1.3em 1.4em;position:relative;z-index:1}.documentation-hero__above-content[data-v-6540c364]{position:relative;z-index:1}.documentation-hero--disabled[data-v-6540c364]{background:none;color:var(--colors-text,var(--color-text))}.documentation-hero--disabled[data-v-6540c364]:after,.documentation-hero--disabled[data-v-6540c364]:before{content:none}.short-hero[data-v-6540c364]{padding-top:3.52941rem;padding-bottom:3.52941rem}.extra-bottom-padding[data-v-6540c364]{padding-bottom:3.82353rem}.theme-dark[data-v-6540c364] a:not(.button-cta){color:#09f}ul[data-v-068842ec]{list-style-type:none;margin:0}ul li:first-child .base-link[data-v-068842ec]{margin-top:0}.parent-item .base-link[data-v-068842ec]{font-weight:700}.base-link[data-v-068842ec]{color:var(--color-figure-gray-secondary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;margin:5px 0;transition:color .15s ease-in;max-width:100%}.active .base-link[data-v-068842ec]{color:var(--color-text)}.source[data-v-d22a3f50]{background:var(--background,var(--color-code-background));border-color:var(--color-grid);color:var(--text,var(--color-code-plain));border-style:solid;border-width:1px;padding:var(--code-block-style-elements-padding);speak:literal-punctuation;line-height:25px;filter:blur(0)}.source.displays-multiple-lines[data-v-d22a3f50],.source[data-v-d22a3f50]{border-radius:var(--border-radius,4px)}.source>code[data-v-d22a3f50]{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);display:block}.platforms[data-v-4f51d8d2]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:.45rem;margin-top:var(--spacing-stacked-margin-xlarge)}.changed .platforms[data-v-4f51d8d2]{padding-left:.588rem}.platforms[data-v-4f51d8d2]:first-of-type{margin-top:1rem}.source[data-v-4f51d8d2]{margin:var(--declaration-code-listing-margin)}.platforms+.source[data-v-4f51d8d2]{margin:0}.changed.declaration-group[data-v-4f51d8d2]{background:var(--background,var(--color-code-background))}.changed .source[data-v-4f51d8d2]{background:none;border:none;margin-top:0;margin-bottom:0;margin-left:2.17647rem;padding-left:0}.declaration-diff[data-v-b3e21c4a]{background:var(--background,var(--color-code-background))}.declaration-diff-version[data-v-b3e21c4a]{padding-left:.588rem;padding-left:2.17647rem;font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin:0}.declaration-diff-current[data-v-b3e21c4a]{padding-top:8px;padding-bottom:5px}.declaration-diff-previous[data-v-b3e21c4a]{padding-top:5px;padding-bottom:8px;background-color:var(--color-changes-modified-previous-background);border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px);position:relative}.declaration-source-link[data-v-5863919c]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:center;margin-top:var(--declaration-source-link-margin,var(--spacing-stacked-margin-large))}.declaration-icon[data-v-5863919c]{width:1em;margin-right:5px}.conditional-constraints[data-v-2ab6251b]{margin-top:var(--declaration-conditional-constraints-margin,20px)}.abstract[data-v-702ec04e]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.abstract[data-v-702ec04e]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-702ec04e] p:last-child{margin-bottom:0}.container[data-v-6e075935]{padding-bottom:40px}.full-width-container .container[data-v-6e075935]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-6e075935]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-6e075935]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-6e075935]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-6e075935]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-6e075935]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-6e075935]{width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-6e075935]{width:87.5%}}@media only screen and (max-width:320px){.static-width-container .container[data-v-6e075935]{width:215px}}.title[data-v-6e075935]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-top:40px;border-top-color:var(--color-grid);border-top-style:solid;border-top-width:var(--content-table-title-border-width,1px)}@media only screen and (max-width:1250px){.title[data-v-6e075935]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-6e075935]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.contenttable-section[data-v-4aae1079]{margin-top:0}.contenttable-section[data-v-4aae1079]{align-items:baseline;padding-top:2.353rem}.contenttable-section[data-v-4aae1079]:last-child{margin-bottom:0}[data-v-4aae1079] .contenttable-title{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-4aae1079] .contenttable-title{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.contenttable-section[data-v-4aae1079]{align-items:unset;border-top:none;display:inherit;margin:0}.section-content[data-v-4aae1079],.section-title[data-v-4aae1079]{padding:0}[data-v-4aae1079] .contenttable-title{margin:0 0 2.353rem 0;padding-bottom:.5rem}}.section-content>.content[data-v-3ccf02e9],.topic[data-v-3ccf02e9]{margin-top:15px}.no-title .section-content>.content[data-v-3ccf02e9]:first-child,.no-title .topic[data-v-3ccf02e9]:first-child{margin-top:0}.datalist dd{padding-left:2rem}.datalist dt{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.datalist dt:first-of-type{padding-top:0}.type[data-v-791bac44]:first-letter{text-transform:capitalize}.detail-type[data-v-d66cd00c]{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.detail-type[data-v-d66cd00c]:first-child{padding-top:0}@media only screen and (max-width:735px){.detail-type[data-v-d66cd00c]{padding-left:0}}.detail-content[data-v-d66cd00c]{padding-left:2rem}@media only screen and (max-width:735px){.detail-content[data-v-d66cd00c]{padding-left:0}}.param-name[data-v-53cac581]{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.param-name[data-v-53cac581]:first-child{padding-top:0}@media only screen and (max-width:735px){.param-name[data-v-53cac581]{padding-left:0}}.param-content[data-v-53cac581]{padding-left:2rem}@media only screen and (max-width:735px){.param-content[data-v-53cac581]{padding-left:0}}.param-content[data-v-53cac581] dt{font-weight:600}.param-content[data-v-53cac581] dd{margin-left:1em}.parameters-table[data-v-3f89f723] .change-added,.parameters-table[data-v-3f89f723] .change-removed{display:inline-block;max-width:100%}.parameters-table[data-v-3f89f723] .change-removed,.parameters-table[data-v-3f89f723] .token-removed{text-decoration:line-through}.param[data-v-3f89f723]{font-size:.88235rem;box-sizing:border-box}.param.changed[data-v-3f89f723]{display:flex;flex-flow:row wrap;padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.param.changed.changed[data-v-3f89f723]{padding-right:1rem}@media only screen and (max-width:735px){.param.changed[data-v-3f89f723]{padding-left:0;padding-right:0}.param.changed.changed[data-v-3f89f723]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.param.changed[data-v-3f89f723]{padding-left:0;padding-right:0}}.param.changed.changed[data-v-3f89f723]{padding-left:0;padding-right:0}.param.changed+.param.changed[data-v-3f89f723]{margin-top:calc(var(--spacing-param)/2)}.changed .param-content[data-v-3f89f723],.changed .param-symbol[data-v-3f89f723]{padding-top:2px;padding-bottom:2px}@media only screen and (max-width:735px){.changed .param-content[data-v-3f89f723]{padding-top:0}.changed .param-symbol[data-v-3f89f723]{padding-bottom:0}}.param-symbol[data-v-3f89f723]{text-align:right}.changed .param-symbol[data-v-3f89f723]{padding-left:2.17647rem}@media only screen and (max-width:735px){.param-symbol[data-v-3f89f723]{text-align:left}.changed .param-symbol[data-v-3f89f723]{padding-left:0}}.param-symbol[data-v-3f89f723] .type-identifier-link{color:var(--color-link)}.param+.param[data-v-3f89f723]{margin-top:var(--spacing-param)}.param+.param[data-v-3f89f723]:first-child{margin-top:0}.param-content[data-v-3f89f723]{padding-left:1rem;padding-left:2.17647rem}.changed .param-content[data-v-3f89f723]{padding-right:1rem}@media only screen and (max-width:735px){.param-content[data-v-3f89f723]{padding-left:0;padding-right:0}}.property-metadata[data-v-8590589e]{color:var(--color-figure-gray-secondary)}.property-text{font-weight:700}.property-metadata[data-v-0a648a1e]{color:var(--color-figure-gray-secondary)}.property-name[data-v-310f0b2c]{font-weight:700}.property-name.deprecated[data-v-310f0b2c]{text-decoration:line-through}.property-deprecated[data-v-310f0b2c]{margin-left:0}.content[data-v-310f0b2c],.content[data-v-310f0b2c] p:first-child{display:inline}.response-mimetype[data-v-20293786]{color:var(--color-figure-gray-secondary)}.part-name[data-v-021cd63d]{font-weight:700}.content[data-v-021cd63d],.content[data-v-021cd63d] p:first-child{display:inline}.param-name[data-v-03478142]{font-weight:700}.param-name.deprecated[data-v-03478142]{text-decoration:line-through}.param-deprecated[data-v-03478142]{margin-left:0}.content[data-v-03478142],.content[data-v-03478142] p:first-child{display:inline}.response-name[data-v-881189f4],.response-reason[data-v-881189f4]{font-weight:700}@media only screen and (max-width:735px){.response-reason[data-v-881189f4]{display:none}}.response-name>code>.reason[data-v-881189f4]{display:none}@media only screen and (max-width:735px){.response-name>code>.reason[data-v-881189f4]{display:initial}}.primary-content.with-border[data-v-2baae7e0]:before{border-top-color:var(--colors-grid,var(--color-grid));border-top-style:solid;border-top-width:1px;content:"";display:block}.primary-content[data-v-2baae7e0]>*{margin-bottom:40px;margin-top:40px}.primary-content[data-v-2baae7e0]>:first-child{margin-top:2.353rem}.relationships-list[data-v-4c67b8c7]{list-style:none}.relationships-list.column[data-v-4c67b8c7]{margin-left:0;margin-top:15px}.relationships-list.inline[data-v-4c67b8c7]{display:flex;flex-direction:row;flex-wrap:wrap;margin-top:15px;margin-left:0}.relationships-list.inline li[data-v-4c67b8c7]:not(:last-child):after{content:",\00a0"}.relationships-list.changed[data-v-4c67b8c7]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.relationships-list.changed.changed[data-v-4c67b8c7]{padding-right:1rem}@media only screen and (max-width:735px){.relationships-list.changed[data-v-4c67b8c7]{padding-left:0;padding-right:0}.relationships-list.changed.changed[data-v-4c67b8c7]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-4c67b8c7]{padding-left:0;padding-right:0}}.relationships-list.changed[data-v-4c67b8c7]:after{margin-top:.61765rem}.relationships-list.changed.column[data-v-4c67b8c7]{display:block;box-sizing:border-box}.relationships-item[data-v-4c67b8c7],.relationships-list[data-v-4c67b8c7]{box-sizing:inherit}.conditional-constraints[data-v-4c67b8c7]{font-size:.82353rem;margin:.17647rem 0 .58824rem 1.17647rem}.availability[data-v-602d8130]{display:flex;flex-flow:row wrap;gap:10px;margin-top:25px}.badge[data-v-602d8130]{margin:0}.technology[data-v-602d8130]{display:inline-flex;align-items:center}.tech-icon[data-v-602d8130]{height:12px;padding-right:5px;fill:var(--badge-color)}.theme-dark .tech-icon[data-v-602d8130]{fill:var(--badge-color)}.beta[data-v-602d8130]{color:var(--color-badge-beta)}.theme-dark .beta[data-v-602d8130]{color:var(--color-badge-dark-beta)}.deprecated[data-v-602d8130]{color:var(--color-badge-deprecated)}.theme-dark .deprecated[data-v-602d8130]{color:var(--color-badge-dark-deprecated)}.changed[data-v-602d8130]{padding-left:26px}.changed[data-v-602d8130]:after{content:none}.changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:16px;height:16px;left:5px}@media screen{[data-color-scheme=dark] .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}.theme-dark .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}.changed-added[data-v-602d8130]{border-color:var(--color-changes-added)}.changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}.theme-dark .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}.changed-deprecated[data-v-602d8130]{border-color:var(--color-changes-deprecated)}.changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.theme-dark .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}.changed-modified[data-v-602d8130]{border-color:var(--color-changes-modified)}.eyebrow[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-eyebrow,#ccc);display:block;margin-bottom:1.17647rem}@media only screen and (max-width:735px){.eyebrow[data-v-4492c658]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .eyebrow[data-v-4492c658]{color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-4492c658]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-title,#fff);margin-bottom:.70588rem}@media only screen and (max-width:1250px){.title[data-v-4492c658]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-4492c658]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .title[data-v-4492c658]{color:var(--colors-header-text,var(--color-header-text))}small[data-v-4492c658]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-left:10px}@media only screen and (max-width:1250px){small[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}small[data-v-4492c658]:before{content:attr(data-tag-name)}small.Beta[data-v-4492c658]{color:var(--color-badge-beta)}.theme-dark small.Beta[data-v-4492c658]{color:var(--color-badge-dark-beta)}small.Deprecated[data-v-4492c658]{color:var(--color-badge-deprecated)}.theme-dark small.Deprecated[data-v-4492c658]{color:var(--color-badge-dark-deprecated)}.OnThisPageStickyContainer[data-v-1b6d0048]{margin-top:2.353rem;position:sticky;top:3.82353rem;align-self:flex-start;flex:0 0 auto;width:192px;padding-right:1.29412rem;box-sizing:border-box;padding-bottom:var(--spacing-stacked-margin-small);max-height:calc(100vh - 3.82353rem);overflow:auto}@media print{.OnThisPageStickyContainer[data-v-1b6d0048]{display:none}}@media only screen and (max-width:735px){.OnThisPageStickyContainer[data-v-1b6d0048]{display:none}}.doc-topic[data-v-43c74ad0]{display:flex;flex-direction:column;height:100%}.doc-topic.with-on-this-page[data-v-43c74ad0]{--doc-hero-right-offset:192px}#main[data-v-43c74ad0]{outline-style:none;height:100%}[data-v-43c74ad0] .minimized-title{margin-bottom:.833rem}[data-v-43c74ad0] .minimized-title .title{font-size:1.416rem;font-weight:700}[data-v-43c74ad0] .minimized-title small{font-size:1rem;padding-left:.416rem}.minimized-abstract[data-v-43c74ad0]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.container[data-v-43c74ad0]:not(.minimized-container){outline-style:none}.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:87.5%}}@media only screen and (max-width:320px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:215px}}[data-v-43c74ad0] .minimized-container{outline-style:none;--spacing-stacked-margin-large:0.667em;--spacing-stacked-margin-xlarge:1em;--declaration-code-listing-margin:1em 0 0 0;--declaration-conditional-constraints-margin:1em;--declaration-source-link-margin:0.833em;--code-block-style-elements-padding:7px 12px;--spacing-param:var(--spacing-stacked-margin-large);--aside-border-radius:6px;--code-border-radius:6px}[data-v-43c74ad0] .minimized-container .description{margin-bottom:1.5em}[data-v-43c74ad0] .minimized-container>.primary-content>*{margin-top:1.5em;margin-bottom:1.5em}[data-v-43c74ad0] .minimized-container .description{margin-top:0}[data-v-43c74ad0] .minimized-container h1,[data-v-43c74ad0] .minimized-container h2,[data-v-43c74ad0] .minimized-container h3,[data-v-43c74ad0] .minimized-container h4,[data-v-43c74ad0] .minimized-container h5,[data-v-43c74ad0] .minimized-container h6{font-size:1rem;font-weight:700}[data-v-43c74ad0] .minimized-container h2{font-size:1.083rem}[data-v-43c74ad0] .minimized-container h1{font-size:1.416rem}[data-v-43c74ad0] .minimized-container aside{padding:.667rem 1rem}[data-v-43c74ad0] .minimized-container .single-line,[data-v-43c74ad0] .minimized-container .source{border-radius:var(--code-border-radius)}.description[data-v-43c74ad0]{margin-bottom:2.353rem}.description[data-v-43c74ad0]:empty{display:none}.description.after-enhanced-hero[data-v-43c74ad0]{margin-top:2.353rem}.description[data-v-43c74ad0] .content+*{margin-top:var(--spacing-stacked-margin-large)}.full-width-container .doc-content .minimized-container[data-v-43c74ad0]{padding-left:1.4rem;padding-right:1.4rem}[data-v-43c74ad0] .no-primary-content{--content-table-title-border-width:0px}.sample-download[data-v-43c74ad0]{margin-top:20px}.declarations-container[data-v-43c74ad0]{margin-top:30px}.declarations-container.minimized-container[data-v-43c74ad0]{margin-top:0}[data-v-43c74ad0] h1{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h1{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h1{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h2{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h2{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h2{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h3{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h4{font-size:1.41176rem;line-height:1.16667;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h4{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h5{font-size:1.29412rem;line-height:1.18182;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h5{font-size:1.17647rem;line-height:1.2;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h5{font-size:1.05882rem;line-height:1.44444;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h6{font-size:1rem;line-height:1.47059;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.doc-content-wrapper[data-v-43c74ad0]{display:flex;justify-content:center}.doc-content-wrapper .doc-content[data-v-43c74ad0]{min-width:0;width:100%}.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:820px}@media only screen and (min-width:1251px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:980px}}@media only screen and (min-width:1500px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:1080px}}.quick-navigation-open[data-v-53faf852]{display:flex;align-items:center;justify-content:center;width:16px;border:1px solid var(--color-grid);height:100%;border-radius:var(--border-radius,4px);transition:background-color .15s;box-sizing:border-box}.quick-navigation-open[data-v-53faf852]:hover{background-color:var(--color-fill-tertiary)}@media only screen and (max-width:1023px){.quick-navigation-open[data-v-53faf852]{display:none}}.fromkeyboard .quick-navigation-open[data-v-53faf852]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tag[data-v-7e76f326]{display:inline-block;padding-right:.58824rem}.tag[data-v-7e76f326]:focus{outline:none}.tag button[data-v-7e76f326]{color:var(--color-figure-gray);background-color:var(--color-fill-tertiary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border-radius:.82353rem;padding:.23529rem .58824rem;white-space:nowrap;border:1px solid transparent}@media (hover:hover){.tag button[data-v-7e76f326]:hover{transition:background-color .2s,color .2s;background-color:var(--color-fill-blue);color:#fff}}.tag button[data-v-7e76f326]:focus:active{background-color:var(--color-fill-blue);color:#fff}.fromkeyboard .tag button[data-v-7e76f326]:focus,.tag button.focus[data-v-7e76f326],.tag button[data-v-7e76f326]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tags[data-v-1f2bd813]{position:relative;margin:0;list-style:none;box-sizing:border-box;transition:padding-right .8s,padding-bottom .8s,max-height 1s,opacity 1s;padding:0}.tags .scroll-wrapper[data-v-1f2bd813]{overflow-x:auto;overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin}.tags .scroll-wrapper[data-v-1f2bd813]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.tags .scroll-wrapper.scrolling[data-v-1f2bd813]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar{height:11px}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-track-piece:end{margin-right:8px}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-track-piece:start{margin-left:8px}.tags ul[data-v-1f2bd813]{margin:0;padding:0;display:flex}.filter[data-v-3f01a546]{--input-vertical-padding:.76471rem;--input-horizontal-spacing:.58824rem;--input-height:1.64706rem;--input-border-color:var(--color-fill-gray-secondary);--input-text:var(--color-fill-gray-secondary);position:relative;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:calc(var(--border-radius, 4px) + 1px)}.fromkeyboard .filter[data-v-3f01a546]:focus{outline:none}.filter__top-wrapper[data-v-3f01a546]{display:flex}.filter__filter-button[data-v-3f01a546]{position:relative;z-index:1;cursor:text;margin-left:var(--input-horizontal-spacing);margin-right:.17647rem}@media only screen and (max-width:735px){.filter__filter-button[data-v-3f01a546]{margin-right:.41176rem}}.filter__filter-button .svg-icon[data-v-3f01a546]{fill:var(--input-text);display:block;height:21px}.filter__filter-button.blue[data-v-3f01a546]>*{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.filter.focus .filter__wrapper[data-v-3f01a546]{box-shadow:0 0 0 3pt var(--color-focus-color);--input-border-color:var(--color-fill-blue)}.filter__wrapper[data-v-3f01a546]{border:1px solid var(--input-border-color);background:var(--color-fill);border-radius:var(--border-radius,4px)}.filter__wrapper--reversed[data-v-3f01a546]{display:flex;flex-direction:column-reverse}.filter__wrapper--no-border-style[data-v-3f01a546]{border:none}.filter__suggested-tags[data-v-3f01a546]{border-top:1px solid var(--color-fill-gray-tertiary);z-index:1;overflow:hidden}.filter__suggested-tags[data-v-3f01a546] ul{padding:var(--input-vertical-padding) .52941rem;border:1px solid transparent;border-bottom-left-radius:calc(var(--border-radius, 4px) - 1px);border-bottom-right-radius:calc(var(--border-radius, 4px) - 1px)}.fromkeyboard .filter__suggested-tags[data-v-3f01a546] ul:focus{outline:none;box-shadow:0 0 0 5px var(--color-focus-color)}.filter__wrapper--reversed .filter__suggested-tags[data-v-3f01a546]{border-bottom:1px solid var(--color-fill-gray-tertiary);border-top:none}.filter__selected-tags[data-v-3f01a546]{z-index:1;padding-left:4px;margin:-4px 0}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3f01a546]{padding-left:0}}.filter__selected-tags[data-v-3f01a546] ul{padding:4px}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3f01a546] ul{padding-right:.41176rem}}.filter__selected-tags[data-v-3f01a546] ul .tag:last-child{padding-right:0}.filter__delete-button[data-v-3f01a546]{position:relative;margin:0;z-index:1;border-radius:100%}.fromkeyboard .filter__delete-button[data-v-3f01a546]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.filter__delete-button .clear-rounded-icon[data-v-3f01a546]{height:.70588rem;width:.70588rem;fill:var(--input-text);display:block}.filter__delete-button-wrapper[data-v-3f01a546]{display:flex;align-items:center;padding-right:var(--input-horizontal-spacing);padding-left:.17647rem;border-top-right-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.filter__input-label[data-v-3f01a546]{position:relative;flex-grow:1;height:var(--input-height);padding:var(--input-vertical-padding) 0}.filter__input-label[data-v-3f01a546]:after{content:attr(data-value);visibility:hidden;width:auto;white-space:nowrap;min-width:130px;display:block;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input-label[data-v-3f01a546]:after{text-indent:.17647rem}}.filter__input-box-wrapper[data-v-3f01a546]{overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin;display:flex;overflow-x:auto;align-items:center;cursor:text;flex:1}.filter__input-box-wrapper[data-v-3f01a546]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.filter__input-box-wrapper.scrolling[data-v-3f01a546]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar{height:11px}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-track-piece:end{margin-right:8px}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-track-piece:start{margin-left:8px}.filter__input[data-v-3f01a546]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-text);height:var(--input-height);border:none;width:100%;position:absolute;background:transparent;z-index:1;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input[data-v-3f01a546]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);text-indent:.17647rem}}.filter__input[data-v-3f01a546]:focus{outline:none}.filter__input[placeholder][data-v-3f01a546]::-moz-placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3f01a546]::placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3f01a546]:-ms-input-placeholder{color:var(--input-text)}.filter__input[placeholder][data-v-3f01a546]::-ms-input-placeholder{color:var(--input-text)}.highlight[data-v-1c4190f0]{display:inline}.highlight[data-v-1c4190f0] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}@media only screen and (max-width:735px){.preview[data-v-6fb5ba95]{display:none}}.unavailable[data-v-6fb5ba95]{align-items:center;display:flex;height:100%;justify-content:center}.loading[data-v-6fb5ba95]{padding:20px}.loading-row[data-v-6fb5ba95]{-webkit-animation:pulse 2.5s ease;animation:pulse 2.5s ease;-webkit-animation-delay:calc(1s + 0.3s*var(--index));animation-delay:calc(1s + 0.3s*var(--index));-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;background-color:var(--color-fill-gray-tertiary);border-radius:4px;height:12px;margin:20px 0;opacity:0}.loading-row[data-v-6fb5ba95]:first-of-type{margin-top:0}.loading-row[data-v-6fb5ba95]:last-of-type{margin-bottom:0}.quick-navigation[data-v-71686791]{--input-border-color:var(--color-grid)}.quick-navigation input[type=text][data-v-71686791]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.quick-navigation input[type=text][data-v-71686791]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.quick-navigation__filter[data-v-71686791]{--input-horizontal-spacing:.88235rem}.quick-navigation[data-v-71686791] .filter__wrapper{background-color:var(--color-fill-secondary)}.quick-navigation__container[data-v-71686791]{background-color:var(--color-fill-secondary);border:solid 1px var(--input-border-color);border-radius:var(--border-radius,4px);margin:0 .94118rem}.quick-navigation__container>[data-v-71686791]{--input-text:var(--color-figure-gray-secondary)}.quick-navigation__container.focus[data-v-71686791]{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.quick-navigation__magnifier-icon-container[data-v-71686791]{width:1rem}.quick-navigation__magnifier-icon-container>[data-v-71686791]{width:100%}.quick-navigation__magnifier-icon-container.blue .magnifier-icon[data-v-71686791]{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.quick-navigation__match-list[data-v-71686791]{display:flex;max-height:26.47059rem;height:0}.quick-navigation__match-list>[data-v-71686791]{min-width:0}.quick-navigation__match-list.active[data-v-71686791]{height:auto;border-top:1px solid var(--input-border-color)}.quick-navigation__match-list .no-results[data-v-71686791]{margin:.88235rem auto;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.quick-navigation__match-list .selected[data-v-71686791]{background-color:var(--color-navigator-item-hover)}.quick-navigation__refs[data-v-71686791]{flex:1;overflow:auto}.quick-navigation__preview[data-v-71686791]{border-left:1px solid var(--color-grid);flex:0 0 61.8%;overflow:auto;position:sticky;top:0}.quick-navigation__reference[data-v-71686791]:hover{text-decoration:none}.quick-navigation__symbol-match[data-v-71686791]{display:flex;height:2.35294rem;padding:.58824rem .88235rem;color:var(--color-figure-gray)}.quick-navigation__symbol-match[data-v-71686791]:hover{background-color:var(--color-navigator-item-hover)}.quick-navigation__symbol-match .symbol-info[data-v-71686791]{margin:auto;width:100%}.quick-navigation__symbol-match .symbol-info .navigator-icon[data-v-71686791]{margin-right:.58824rem}.quick-navigation__symbol-match .symbol-info .symbol-name[data-v-71686791]{display:flex}.quick-navigation__symbol-match .symbol-info .symbol-name .symbol-title[data-v-71686791]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path[data-v-71686791]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);display:flex;margin-left:1.58824rem;overflow:hidden;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path .parent-path[data-v-71686791]{padding-right:.29412rem}@media print{.sidebar[data-v-f3c6416c]{display:none}}.adjustable-sidebar-width[data-v-f3c6416c]{display:flex}@media only screen and (max-width:1023px){.adjustable-sidebar-width[data-v-f3c6416c]{display:block;position:relative}}.adjustable-sidebar-width.dragging[data-v-f3c6416c] *{cursor:col-resize!important}.adjustable-sidebar-width.sidebar-hidden.dragging[data-v-f3c6416c] *{cursor:e-resize!important}.sidebar[data-v-f3c6416c]{position:relative}@media only screen and (max-width:1023px){.sidebar[data-v-f3c6416c]{position:static}}.aside[data-v-f3c6416c]{width:250px;position:relative;height:100%;max-width:100vw}.aside.no-transition[data-v-f3c6416c]{transition:none!important}@media only screen and (min-width:1024px){.aside[data-v-f3c6416c]{transition:width .3s ease-in,visibility 0s linear var(--visibility-transition-time,0s)}.aside.dragging[data-v-f3c6416c]:not(.is-opening-on-large):not(.hide-on-large){transition:none}.aside.hide-on-large[data-v-f3c6416c]{width:0!important;visibility:hidden;pointer-events:none;--visibility-transition-time:.3s}}@media only screen and (max-width:1023px){.aside[data-v-f3c6416c]{width:100%!important;overflow:hidden;min-width:0;max-width:100%;height:calc(var(--app-height) - var(--top-offset-mobile));position:fixed;top:var(--top-offset-mobile);bottom:0;z-index:9998;transform:translateX(-100%);transition:transform .15s ease-in;left:0}.aside[data-v-f3c6416c] .aside-animated-child{opacity:0}.aside.show-on-mobile[data-v-f3c6416c]{transform:translateX(0)}.aside.show-on-mobile[data-v-f3c6416c] .aside-animated-child{--index:0;opacity:1;transition:opacity .15s linear;transition-delay:calc(var(--index)*0.15s + .15s)}.aside.has-mobile-top-offset[data-v-f3c6416c]{border-top:1px solid var(--color-fill-gray-tertiary)}}.content[data-v-f3c6416c]{display:flex;flex-flow:column;min-width:0;flex:1 1 auto;height:100%}.resize-handle[data-v-f3c6416c]{position:absolute;cursor:col-resize;top:0;bottom:0;right:0;width:5px;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1;transition:background-color .15s;transform:translateX(50%)}@media only screen and (max-width:1023px){.resize-handle[data-v-f3c6416c]{display:none}}.resize-handle[data-v-f3c6416c]:hover{background:var(--color-fill-gray-tertiary)}.navigator-card-item[data-v-0b9fe514]{--nav-head-wrapper-left-space:10px;--nav-head-wrapper-right-space:20px;--head-wrapper-vertical-space:5px;--nav-depth-spacer:25px;--nesting-index:0;display:flex;align-items:stretch;min-height:32px;box-sizing:border-box}.fromkeyboard .navigator-card-item[data-v-0b9fe514]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:-4px}.navigator-card-item.active[data-v-0b9fe514]{background:var(--color-fill-gray-quaternary)}.hover .navigator-card-item[data-v-0b9fe514]:not(.is-group){background:var(--color-navigator-item-hover)}.depth-spacer[data-v-0b9fe514]{width:calc(var(--nesting-index)*15px + var(--nav-depth-spacer));height:100%;position:relative;flex:0 0 auto}.title-container[data-v-0b9fe514]{width:100%;min-width:0;display:flex;align-items:center}.navigator-icon-wrapper[data-v-0b9fe514]{margin-right:7px}.head-wrapper[data-v-0b9fe514]{padding:var(--head-wrapper-vertical-space) var(--nav-head-wrapper-right-space) var(--head-wrapper-vertical-space) var(--nav-head-wrapper-left-space);position:relative;display:flex;align-items:center;flex:1;min-width:0}@supports (padding:max(0px)){.head-wrapper[data-v-0b9fe514]{padding-left:max(var(--nav-head-wrapper-left-space),env(safe-area-inset-left));padding-right:max(var(--nav-head-wrapper-right-space),env(safe-area-inset-right))}}.highlight[data-v-d75876e2]{display:inline}.highlight[data-v-d75876e2] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}.is-group .leaf-link[data-v-0c96ff75]{color:var(--color-figure-gray-secondary);font-weight:600}.is-group .leaf-link[data-v-0c96ff75]:after{display:none}.navigator-icon[data-v-0c96ff75]{display:flex;flex:0 0 auto}.navigator-icon.changed[data-v-0c96ff75]{border:none;width:1em;height:1em;z-index:0}.navigator-icon.changed[data-v-0c96ff75]:after{top:50%;left:50%;right:auto;bottom:auto;transform:translate(-50%,-50%);background-image:url(../img/modified-icon.f496e73d.svg);margin:0}@media screen{[data-color-scheme=dark] .navigator-icon.changed[data-v-0c96ff75]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed[data-v-0c96ff75]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.leaf-link[data-v-0c96ff75]{color:var(--color-figure-gray);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline;vertical-align:middle;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.fromkeyboard .leaf-link[data-v-0c96ff75]:focus{outline:none}.leaf-link[data-v-0c96ff75]:hover{text-decoration:none}.leaf-link.bolded[data-v-0c96ff75]{font-weight:600}.leaf-link[data-v-0c96ff75]:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0}.extended-content[data-v-0c96ff75]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tree-toggle[data-v-0c96ff75]{overflow:hidden;position:absolute;width:100%;height:100%;padding-right:5px;box-sizing:border-box;z-index:1;display:flex;align-items:center;justify-content:flex-end}.chevron[data-v-0c96ff75]{width:10px}.chevron.animating[data-v-0c96ff75]{transition:transform .15s ease-in}.chevron.rotate[data-v-0c96ff75]{transform:rotate(90deg)}.navigator-card[data-v-24789ed0]{--card-vertical-spacing:8px;--card-horizontal-spacing:20px;--nav-filter-horizontal-padding:20px;--visibility-delay:1s;display:flex;flex-direction:column;min-height:0;height:calc(var(--app-height) - var(--nav-height, 0px));position:sticky;top:var(--nav-height,0)}@media only screen and (max-width:1023px){.navigator-card[data-v-24789ed0]{height:100%;position:static;background:var(--color-fill)}}.navigator-card .navigator-card-full-height[data-v-24789ed0]{min-height:0;flex:1 1 auto}.navigator-card .head-inner[data-v-24789ed0]{overflow:hidden}.navigator-card .head-wrapper[data-v-24789ed0]{position:relative;flex:1 0 auto}.navigator-card .navigator-head[data-v-24789ed0]{--navigator-head-padding-right:calc(var(--card-horizontal-spacing)*2 + 19px);padding:0 var(--navigator-head-padding-right) 0 var(--card-horizontal-spacing);background:var(--color-fill);border-bottom:1px solid var(--color-grid);display:flex;align-items:center;height:3.05882rem;white-space:nowrap}.navigator-card .navigator-head .card-link[data-v-24789ed0]{color:var(--color-text);font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);font-weight:600;overflow:hidden;text-overflow:ellipsis}.navigator-card .navigator-head .badge[data-v-24789ed0]{margin-top:0}.navigator-card .navigator-head.router-link-exact-active[data-v-24789ed0]{background:var(--color-fill)}.navigator-card .navigator-head.router-link-exact-active .card-link[data-v-24789ed0]{font-weight:700}.navigator-card .navigator-head[data-v-24789ed0]:hover{background:var(--color-navigator-item-hover);text-decoration:none}@supports (padding:max(0px)){.navigator-card .navigator-head[data-v-24789ed0]{padding-left:max(var(--card-horizontal-spacing),env(safe-area-inset-left));padding-right:max(var(--navigator-head-padding-right),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-card .navigator-head[data-v-24789ed0]{justify-content:center;--navigator-head-padding-right:var(--card-horizontal-spacing)}}@media only screen and (max-width:767px){.navigator-card .navigator-head[data-v-24789ed0]{height:2.82353rem;padding:0 20px}}.close-card[data-v-24789ed0]{display:flex;position:absolute;z-index:1;align-items:center;justify-content:center;right:1rem;padding:5px;margin-left:-5px;top:calc(50% - 14px);transition:transform .3s ease-in 0s,visibility 0s}@media only screen and (max-width:1023px){.close-card[data-v-24789ed0]{right:unset;top:0;left:0;margin:0;padding:0 1.29412rem 0 20px;height:100%}@supports (padding:max(0px)){.close-card[data-v-24789ed0]{padding-left:max(1.29412rem,env(safe-area-inset-left))}}}@media only screen and (max-width:767px){.close-card[data-v-24789ed0]{padding-left:.94118rem;padding-right:.94118rem}@supports (padding:max(0px)){.close-card[data-v-24789ed0]{padding-left:max(.94118rem,env(safe-area-inset-left))}}}.close-card .close-icon[data-v-24789ed0]{width:19px;height:19px}@media only screen and (min-width:1024px){.close-card.hide-on-large[data-v-24789ed0]{display:none}.close-card[data-v-24789ed0]:hover{border-radius:var(--border-radius,4px);background:var(--color-fill-gray-quaternary)}.sidebar-hidden .close-card[data-v-24789ed0]{transition:transform .3s ease-in 0s,visibility 0s linear .3s;visibility:hidden;transform:translateX(3.76471rem)}}[data-v-24789ed0] .card-body{padding-right:0;flex:1 1 auto;min-height:0;height:100%}@media only screen and (max-width:1023px){[data-v-24789ed0] .card-body{--card-vertical-spacing:0px}}.navigator-card-inner[data-v-24789ed0]{display:flex;flex-flow:column;height:100%}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{border:none;background-color:transparent;opacity:0}.resize-observer[data-v-b329ee4c],.resize-observer[data-v-b329ee4c] object{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;pointer-events:none;display:block;overflow:hidden}.navigator-card.filter-on-top .filter-wrapper[data-v-1543892a]{order:1;position:static}.navigator-card.filter-on-top .card-body[data-v-1543892a]{order:2}.no-items-wrapper[data-v-1543892a]{overflow:hidden;color:var(--color-figure-gray-tertiary)}.no-items-wrapper .no-items[data-v-1543892a]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:var(--card-vertical-spacing) var(--card-horizontal-spacing);min-width:200px;box-sizing:border-box}.navigator-filter[data-v-1543892a]{box-sizing:border-box;padding:15px var(--nav-filter-horizontal-padding);border-top:1px solid var(--color-grid);height:71px;display:flex;align-items:flex-end}.filter-on-top .navigator-filter[data-v-1543892a]{border-top:none;align-items:flex-start}@supports (padding:max(0px)){.navigator-filter[data-v-1543892a]{padding-left:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-left));padding-right:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-filter[data-v-1543892a]{--nav-filter-horizontal-padding:20px;border:none;padding-top:10px;padding-bottom:10px;height:60px}}.navigator-filter .input-wrapper[data-v-1543892a]{position:relative;flex:1;min-width:0}.navigator-filter .filter-component[data-v-1543892a]{--input-vertical-padding:8px;--input-height:22px;--input-border-color:var(--color-grid);--input-text:var(--color-figure-gray-secondary)}.navigator-filter .filter-component[data-v-1543892a] .filter__input{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.scroller[data-v-1543892a]{height:100%;box-sizing:border-box;padding:var(--card-vertical-spacing) 0;padding-bottom:calc(var(--top-offset, 0px) + var(--card-vertical-spacing));transition:padding-bottom .15s ease-in}@media only screen and (max-width:1023px){.scroller[data-v-1543892a]{padding-bottom:10em}}.scroller[data-v-1543892a] .vue-recycle-scroller__item-wrapper{transform:translateZ(0)}.filter-wrapper[data-v-1543892a]{position:sticky;bottom:0;background:var(--color-fill)}.sidebar-transitioning .filter-wrapper[data-v-1543892a]{flex:1 0 71px;overflow:hidden}@media only screen and (max-width:1023px){.sidebar-transitioning .filter-wrapper[data-v-1543892a]{flex-basis:60px}}.loader[data-v-0de29914]{height:.70588rem;background-color:var(--color-fill-gray-tertiary);border-radius:4px}.navigator-icon[data-v-0de29914]{width:16px;height:16px;border-radius:2px;background-color:var(--color-fill-gray-tertiary)}.loading-navigator-item[data-v-0de29914]{-webkit-animation:pulse 2.5s ease;animation:pulse 2.5s ease;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:0;-webkit-animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index));animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index))}.delay-visibility-enter-active[data-v-4b6d345f]{transition:visibility var(--visibility-delay);visibility:hidden}.loading-navigator[data-v-4b6d345f]{padding-top:var(--card-vertical-spacing)}.navigator[data-v-159b9764]{height:100%;display:flex;flex-flow:column}@media only screen and (max-width:1023px){.navigator[data-v-159b9764]{position:static;transition:none}}.hierarchy-collapsed-items[data-v-74906830]{position:relative;display:inline-flex;align-items:center;margin-left:.17647rem}.hierarchy-collapsed-items .hierarchy-item-icon[data-v-74906830]{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-collapsed-items[data-v-74906830]{display:none}.hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;border-width:0;font-weight:600;height:1.11765rem;text-align:center;width:2.11765rem;display:flex;align-items:center;justify-content:center}.theme-dark .hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background)}.hierarchy-collapsed-items .toggle.focused[data-v-74906830],.hierarchy-collapsed-items .toggle[data-v-74906830]:active,.hierarchy-collapsed-items .toggle[data-v-74906830]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.indicator[data-v-74906830]{width:1em;height:1em;display:flex;align-items:center}.indicator .toggle-icon[data-v-74906830]{width:100%}.dropdown[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;box-shadow:0 1px 4px -1px var(--color-figure-gray-secondary);border-width:0;padding:0 .5rem;position:absolute;z-index:42;top:calc(100% + .41176rem)}.theme-dark .dropdown[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background);border-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown.collapsed[data-v-74906830]{opacity:0;transform:translate3d(0,-.41176rem,0);transition:opacity .25s ease,transform .25s ease,visibility 0s linear .25s;visibility:hidden}.dropdown[data-v-74906830]:not(.collapsed){opacity:1;transform:none;transition:opacity .25s ease,transform .25s ease,visibility 0s linear 0s;visibility:visible}.nav--in-breakpoint-range .dropdown[data-v-74906830]:not(.collapsed){display:none}.dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-hierarchy-collapse-background);border-bottom-style:solid;border-bottom-width:.5rem;border-left-color:transparent;border-left-style:solid;border-left-width:.5rem;border-right-color:transparent;border-right-style:solid;border-right-width:.5rem;content:"";left:1.26471rem;position:absolute;top:-.44118rem}.theme-dark .dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-dark-hierarchy-collapse-background)}.dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-hierarchy-collapse-borders);border-top-style:solid;border-top-width:1px}.theme-dark .dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown-item[data-v-74906830]:first-child{border-top:none}.nav-menu-link[data-v-74906830]{max-width:57.64706rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding:.75rem 1rem}.hierarchy-item[data-v-382bf39e]{display:flex;align-items:center;margin-left:.17647rem}.hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{display:none}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top:1px solid var(--color-nav-hierarchy-item-borders);display:flex;align-items:center}.theme-dark.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top-color:var(--color-nav-dark-hierarchy-item-borders)}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]:first-of-type{border-top:none}.hierarchy-item.collapsed[data-v-382bf39e]{display:none}.nav--in-breakpoint-range .hierarchy-item.collapsed[data-v-382bf39e]{display:inline-block}.item[data-v-382bf39e]{display:inline-block;vertical-align:middle}.nav--in-breakpoint-range .item[data-v-382bf39e]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:100%;line-height:2.47059rem}@media only screen and (min-width:768px){.hierarchy-item:first-child:last-child .item[data-v-382bf39e],.hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e]{max-width:45rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:last-child .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:36rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:28.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:27rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:21.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:18rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:14.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:7.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:10.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item:last-child .item[data-v-382bf39e]{max-width:none}.has-badge .hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:8.64rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.hierarchy[data-v-c2bd6086]{justify-content:flex-start;min-width:0;margin-right:80px}.nav--in-breakpoint-range .hierarchy[data-v-c2bd6086]{margin-right:0}.hierarchy .root-hierarchy .item[data-v-c2bd6086]{max-width:10rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-menu-setting-label[data-v-d12167e0]{margin-right:.35294rem;white-space:nowrap}.language-container[data-v-d12167e0]{flex:1 0 auto}.language-dropdown[data-v-d12167e0]{-webkit-text-size-adjust:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background-color:transparent;box-sizing:inherit;padding:0 11px 0 4px;margin-left:-4px;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:pointer;position:relative;z-index:1}@media only screen and (max-width:1023px){.language-dropdown[data-v-d12167e0]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.language-dropdown[data-v-d12167e0]:focus{outline:none}.fromkeyboard .language-dropdown[data-v-d12167e0]:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}.language-sizer[data-v-d12167e0]{position:absolute;opacity:0;pointer-events:none;padding:0}.language-toggle-container[data-v-d12167e0]{display:flex;align-items:center;padding-right:.17647rem;position:relative}.nav--in-breakpoint-range .language-toggle-container[data-v-d12167e0]{display:none}.language-toggle-container .toggle-icon[data-v-d12167e0]{width:.6em;height:.6em;position:absolute;right:7px}.language-toggle-label[data-v-d12167e0]{margin-right:2px}.language-toggle.nav-menu-toggle-label[data-v-d12167e0]{margin-right:6px}.language-list[data-v-d12167e0]{display:inline-block;margin-top:0}.language-list-container[data-v-d12167e0]{display:none}.language-list-item[data-v-d12167e0],.nav--in-breakpoint-range .language-list-container[data-v-d12167e0]{display:inline-block}.language-list-item[data-v-d12167e0]:not(:first-child){border-left:1px solid #424242;margin-left:6px;padding-left:6px}[data-v-138d523a] .nav-menu{line-height:1.5}[data-v-138d523a] .nav-menu,[data-v-138d523a] .nav-menu-settings{font-size:.82353rem;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-138d523a] .nav-menu-settings{min-width:0;line-height:1.28571}@media only screen and (max-width:1023px){[data-v-138d523a] .nav-menu-settings{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (min-width:1024px){[data-v-138d523a] .nav-menu-settings{margin-left:.58824rem}}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings:not([data-previous-menu-children-count="0"]) .nav-menu-setting:first-child{border-top:1px solid #b0b0b0;display:flex;align-items:center}[data-v-138d523a] .nav-menu-settings .nav-menu-setting{display:flex;align-items:center;color:var(--color-nav-current-link);margin-left:0;min-width:0}[data-v-138d523a] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:.58824rem}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:0}.theme-dark[data-v-138d523a] .nav-menu-settings .nav-menu-setting{color:var(--color-nav-dark-current-link)}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings .nav-menu-setting:not(:first-child){border-top:1px solid #424242}.documentation-nav[data-v-138d523a] .nav-title{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.documentation-nav[data-v-138d523a] .nav-title .nav-title-link.inactive{height:auto;color:var(--color-figure-gray-secondary-alt)}.theme-dark.documentation-nav .nav-title .nav-title-link.inactive[data-v-138d523a]{color:#b0b0b0}.sidenav-toggle-wrapper[data-v-138d523a]{display:flex;margin-top:1px}.nav--in-breakpoint-range .sidenav-toggle-wrapper[data-v-138d523a]{display:flex!important}@media only screen and (min-width:1024px){.sidenav-toggle-enter-active[data-v-138d523a],.sidenav-toggle-leave-active[data-v-138d523a]{transition:margin .3s ease-in 0s}.sidenav-toggle-enter[data-v-138d523a],.sidenav-toggle-leave-to[data-v-138d523a]{margin-left:-3.76471rem}}.sidenav-toggle[data-v-138d523a]{align-self:center;color:var(--color-nav-link-color);position:relative;margin:-5px}.theme-dark .sidenav-toggle[data-v-138d523a]{color:var(--color-nav-dark-link-color)}.sidenav-toggle:hover .sidenav-icon-wrapper[data-v-138d523a]{background:var(--color-fill-gray-quaternary)}.theme-dark .sidenav-toggle:hover .sidenav-icon-wrapper[data-v-138d523a]{background:#424242}.sidenav-toggle__separator[data-v-138d523a]{height:.8em;width:1px;background:var(--color-nav-color);align-self:center;margin:0 1.29412rem}.nav--in-breakpoint-range .sidenav-toggle[data-v-138d523a]{margin-left:-14px;margin-right:-14px;padding-left:14px;padding-right:14px;align-self:stretch}.nav--in-breakpoint-range .sidenav-toggle__separator[data-v-138d523a]{display:none}.sidenav-icon-wrapper[data-v-138d523a]{padding:5px;display:flex;align-items:center;justify-content:center;border-radius:var(--border-radius,4px)}.sidenav-icon[data-v-138d523a]{display:flex;width:19px;height:19px}[data-v-4a89caca] .generic-modal{overflow-y:overlay}[data-v-4a89caca] .modal-fullscreen>.container{background-color:transparent;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;flex:auto;margin:9.41176rem 0;max-width:47.05882rem;overflow:visible}[data-v-4a89caca] .navigator-filter .quick-navigation-open{margin-left:var(--nav-filter-horizontal-padding);width:calc(var(--nav-filter-horizontal-padding)*2)}.doc-topic-view[data-v-4a89caca]{--delay:1s;display:flex;flex-flow:column;background:var(--colors-text-background,var(--color-text-background))}.doc-topic-view .delay-hiding-leave-active[data-v-4a89caca]{transition:display var(--delay)}.doc-topic-aside[data-v-4a89caca]{height:100%;box-sizing:border-box;border-right:1px solid var(--color-grid)}@media only screen and (max-width:1023px){.doc-topic-aside[data-v-4a89caca]{background:var(--color-fill);border-right:none}.sidebar-transitioning .doc-topic-aside[data-v-4a89caca]{border-right:1px solid var(--color-grid)}}.topic-wrapper[data-v-4a89caca]{flex:1 1 auto;width:100%}.full-width-container[data-v-4a89caca]{max-width:1920px;margin-left:auto;margin-right:auto}@media only screen and (min-width:1920px){.full-width-container[data-v-4a89caca]{border-left:1px solid var(--color-grid);border-right:1px solid var(--color-grid);box-sizing:border-box}} \ No newline at end of file diff --git a/docs/css/documentation-topic~topic.b6287bcf.css b/docs/css/documentation-topic~topic.b6287bcf.css deleted file mode 100644 index d2a480066..000000000 --- a/docs/css/documentation-topic~topic.b6287bcf.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.generic-modal[data-v-795f7b59]{position:fixed;top:0;left:0;right:0;bottom:0;margin:0;z-index:11000;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;background:none;overflow:auto}.modal-fullscreen[data-v-795f7b59]{align-items:stretch}.modal-fullscreen .container[data-v-795f7b59]{margin:0;flex:1;width:100%;height:100%;padding-top:env(safe-area-inset-top);padding-right:env(safe-area-inset-right);padding-bottom:env(safe-area-inset-bottom);padding-left:env(safe-area-inset-left)}.modal-standard[data-v-795f7b59]{padding:20px}.modal-standard .container[data-v-795f7b59]{padding:60px;border-radius:var(--border-radius,4px)}@media screen{[data-color-scheme=dark] .modal-standard .container[data-v-795f7b59]{background:#1d1d1f}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .modal-standard .container[data-v-795f7b59]{background:#1d1d1f}}@media only screen and (max-width:735px){.modal-standard[data-v-795f7b59]{padding:0;align-items:stretch}.modal-standard .container[data-v-795f7b59]{margin:20px 0 0;padding:50px 30px;flex:1;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0}}.backdrop[data-v-795f7b59]{overflow:auto;background:var(--backdrop-background,rgba(0,0,0,.4));-webkit-overflow-scrolling:touch;width:100%;height:100%;position:fixed}.container[data-v-795f7b59]{margin-left:auto;margin-right:auto;width:980px;background:var(--colors-generic-modal-background,var(--color-generic-modal-background));z-index:1;position:relative;overflow:auto;max-width:100%}@media only screen and (max-width:1250px){.container[data-v-795f7b59]{width:692px}}@media only screen and (max-width:735px){.container[data-v-795f7b59]{width:87.5%}}@media only screen and (max-width:320px){.container[data-v-795f7b59]{width:215px}}.close[data-v-795f7b59]{position:absolute;z-index:9999;top:22px;left:22px;width:17px;height:17px;color:#666;cursor:pointer;background:none;border:0;display:flex;align-items:center}.close .close-icon[data-v-795f7b59]{fill:currentColor;width:100%;height:100%}.theme-dark .container[data-v-795f7b59]{background:#000}.theme-dark .container .close[data-v-795f7b59]{color:#b0b0b0}.theme-code .container[data-v-795f7b59]{background-color:var(--code-background,var(--color-code-background))} \ No newline at end of file diff --git a/docs/css/documentation-topic~topic~tutorials-overview.d6f5411c.css b/docs/css/documentation-topic~topic~tutorials-overview.d6f5411c.css deleted file mode 100644 index f81c8dc0e..000000000 --- a/docs/css/documentation-topic~topic~tutorials-overview.d6f5411c.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */aside[data-v-3ccce809]{-moz-column-break-inside:avoid;break-inside:avoid;border-radius:var(--aside-border-radius,var(--border-radius,4px));border-style:var(--aside-border-style,solid);border-width:var(--aside-border-width,0 0 0 6px);padding:.94118rem;text-align:start}aside .label[data-v-3ccce809]{font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}aside .label+[data-v-3ccce809]{margin-top:var(--spacing-stacked-margin-small)}aside.deprecated[data-v-3ccce809]{background-color:var(--color-aside-deprecated-background);border-color:var(--color-aside-deprecated-border);box-shadow:0 0 0 0 var(--color-aside-deprecated-border) inset,0 0 0 0 var(--color-aside-deprecated-border)}aside.deprecated .label[data-v-3ccce809]{color:var(--color-aside-deprecated)}aside.experiment[data-v-3ccce809]{background-color:var(--color-aside-experiment-background);border-color:var(--color-aside-experiment-border);box-shadow:0 0 0 0 var(--color-aside-experiment-border) inset,0 0 0 0 var(--color-aside-experiment-border)}aside.experiment .label[data-v-3ccce809]{color:var(--color-aside-experiment)}aside.important[data-v-3ccce809]{background-color:var(--color-aside-important-background);border-color:var(--color-aside-important-border);box-shadow:0 0 0 0 var(--color-aside-important-border) inset,0 0 0 0 var(--color-aside-important-border)}aside.important .label[data-v-3ccce809]{color:var(--color-aside-important)}aside.note[data-v-3ccce809]{background-color:var(--color-aside-note-background);border-color:var(--color-aside-note-border);box-shadow:0 0 0 0 var(--color-aside-note-border) inset,0 0 0 0 var(--color-aside-note-border)}aside.note .label[data-v-3ccce809]{color:var(--color-aside-note)}aside.tip[data-v-3ccce809]{background-color:var(--color-aside-tip-background);border-color:var(--color-aside-tip-border);box-shadow:0 0 0 0 var(--color-aside-tip-border) inset,0 0 0 0 var(--color-aside-tip-border)}aside.tip .label[data-v-3ccce809]{color:var(--color-aside-tip)}aside.warning[data-v-3ccce809]{background-color:var(--color-aside-warning-background);border-color:var(--color-aside-warning-border);box-shadow:0 0 0 0 var(--color-aside-warning-border) inset,0 0 0 0 var(--color-aside-warning-border)}aside.warning .label[data-v-3ccce809]{color:var(--color-aside-warning)}code[data-v-08295b2f]:before{content:attr(data-before-code)}code[data-v-08295b2f]:after{content:attr(data-after-code)}code[data-v-08295b2f]:after,code[data-v-08295b2f]:before{display:block;position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}.swift-file-icon.file-icon[data-v-c01a6890]{height:1rem}.file-icon[data-v-7c381064]{position:relative;align-items:flex-end;height:24px;margin:0 .5rem 0 1rem}.filename[data-v-c8c40662]{color:var(--text,var(--colors-secondary-label,var(--color-secondary-label)));font-size:.94118rem;line-height:1.1875;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:1rem}@media only screen and (max-width:735px){.filename[data-v-c8c40662]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0}}.filename>a[data-v-c8c40662],.filename>span[data-v-c8c40662]{display:flex;align-items:center;line-height:normal}a[data-v-c8c40662]{color:var(--url,var(--color-link))}.code-line-container[data-v-59f42f5b]{display:inline-block;width:100%;box-sizing:border-box}.code-number[data-v-59f42f5b]{display:inline-block;padding:0 1rem 0 8px;text-align:right;min-width:2em;color:#666;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-59f42f5b]:before{content:attr(data-line-number)}.highlighted[data-v-59f42f5b]{background:var(--line-highlight,var(--color-code-line-highlight));border-left:4px solid var(--color-code-line-highlight-border)}.highlighted .code-number[data-v-59f42f5b]{padding-left:4px}pre[data-v-59f42f5b]{padding:14px 0;display:flex;overflow:unset;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal;height:100%}@media only screen and (max-width:735px){pre[data-v-59f42f5b]{padding-top:.82353rem}}code[data-v-59f42f5b]{white-space:pre;word-wrap:normal;flex-grow:9999}.code-listing[data-v-59f42f5b],.container-general[data-v-59f42f5b]{display:flex}.code-listing[data-v-59f42f5b]{flex-direction:column;min-height:100%;border-radius:var(--code-border-radius,var(--border-radius,4px));overflow:hidden;filter:blur(0)}.code-listing.single-line[data-v-59f42f5b]{border-radius:var(--border-radius,4px)}.container-general[data-v-59f42f5b]{overflow:auto}.container-general[data-v-59f42f5b],pre[data-v-59f42f5b]{flex-grow:1}.header-anchor[data-v-6007a8a4]{color:inherit;text-decoration:none;position:relative;padding-right:23px;display:inline-block}.header-anchor .icon[data-v-6007a8a4]{position:absolute;right:0;bottom:.2em;display:none;height:16px;margin-left:7px}.header-anchor:focus .icon[data-v-6007a8a4],.header-anchor:hover .icon[data-v-6007a8a4]{display:inline}code[data-v-05f4a5b7]{speak-punctuation:code}.container-general[data-v-25a17a0e]{display:flex;flex-flow:row wrap}.container-general .code-line[data-v-25a17a0e]{flex:1 0 auto}.code-line-container[data-v-25a17a0e]{width:100%;align-items:center;display:flex;border-left:4px solid transparent;counter-increment:linenumbers;padding-right:14px}.code-number[data-v-25a17a0e]{font-size:.70588rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:0 1rem 0 8px;text-align:right;min-width:2.01em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-25a17a0e]:before{content:counter(linenumbers)}.code-line[data-v-25a17a0e]{display:flex}pre[data-v-25a17a0e]{padding:14px 0;display:flex;flex-flow:row wrap;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal}@media only screen and (max-width:735px){pre[data-v-25a17a0e]{padding-top:.82353rem}}.collapsible-code-listing[data-v-25a17a0e]{background:var(--background,var(--color-code-background));border-color:var(--colors-grid,var(--color-grid));color:var(--text,var(--color-code-plain));border-radius:var(--border-radius,4px);border-style:solid;border-width:1px;counter-reset:linenumbers;font-size:15px}.collapsible-code-listing.single-line[data-v-25a17a0e]{border-radius:var(--border-radius,4px)}.collapsible[data-v-25a17a0e]{background:var(--color-code-collapsible-background);color:var(--color-code-collapsible-text)}.collapsed[data-v-25a17a0e]:before{content:"⋯";display:inline-block;font-family:monospace;font-weight:700;height:100%;line-height:1;text-align:right;width:2.3rem}.collapsed .code-line-container[data-v-25a17a0e]{height:0;visibility:hidden}.row[data-v-be73599c]{box-sizing:border-box;display:flex;flex-flow:row wrap}.col[data-v-2ee3ad8b]{box-sizing:border-box;flex:none}.xlarge-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xlarge-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xlarge-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xlarge-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xlarge-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xlarge-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xlarge-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xlarge-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xlarge-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xlarge-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xlarge-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xlarge-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xlarge-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xlarge-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}.large-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.large-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.large-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.large-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.large-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.large-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.large-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.large-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.large-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.large-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.large-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.large-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.large-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.large-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}@media only screen and (max-width:1250px){.medium-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.medium-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.medium-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.medium-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.medium-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.medium-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.medium-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.medium-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.medium-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.medium-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.medium-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.medium-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.medium-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.medium-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:735px){.small-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.small-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.small-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.small-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.small-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.small-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.small-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.small-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.small-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.small-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.small-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.small-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.small-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.small-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:320px){.xsmall-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xsmall-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xsmall-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xsmall-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xsmall-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xsmall-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xsmall-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xsmall-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xsmall-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xsmall-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xsmall-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xsmall-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xsmall-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xsmall-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}.tabnav[data-v-5283512a]{margin:0 0 1.47059rem 0;display:flex}.tabnav--center[data-v-5283512a]{justify-content:center}.tabnav--end[data-v-5283512a]{justify-content:flex-end}.tabnav--vertical[data-v-5283512a]{flex-flow:column wrap}.tabnav--vertical .tabnav-items[data-v-5283512a]{flex-flow:column;overflow:hidden}.tabnav--vertical[data-v-5283512a] .tabnav-item{padding-left:0}.tabnav--vertical[data-v-5283512a] .tabnav-item .tabnav-link{padding-top:8px}.tabnav-items[data-v-5283512a]{display:flex;margin:0;text-align:center}.tabnav-item[data-v-6aa9882a]{border-bottom:1px solid;border-color:var(--colors-tabnav-item-border-color,var(--color-tabnav-item-border-color));display:flex;list-style:none;padding-left:1.76471rem;margin:0;outline:none}.tabnav-item[data-v-6aa9882a]:first-child{padding-left:0}.tabnav-item[data-v-6aa9882a]:nth-child(n+1){margin:0}.tabnav-link[data-v-6aa9882a]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:6px 0;margin-top:4px;margin-bottom:4px;text-align:left;text-decoration:none;display:block;position:relative;z-index:0;width:100%}.tabnav-link[data-v-6aa9882a]:hover{text-decoration:none}.tabnav-link[data-v-6aa9882a]:focus{outline-offset:-1px}.tabnav-link[data-v-6aa9882a]:after{content:"";position:absolute;bottom:-5px;left:0;width:100%;border:1px solid transparent}.tabnav-link.active[data-v-6aa9882a]{color:var(--colors-text,var(--color-text));cursor:default;z-index:10}.tabnav-link.active[data-v-6aa9882a]:after{border-bottom-color:var(--colors-text,var(--color-text))}.controls[data-v-c84e62a6]{margin-top:5px;font-size:14px;display:flex;justify-content:flex-end}.controls a[data-v-c84e62a6]{color:var(--colors-text,var(--color-text));display:flex;align-items:center}.controls .control-icon[data-v-c84e62a6]{width:1.05em;margin-right:.3em}.caption[data-v-1b76f4e0]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin:0 0 var(--spacing-stacked-margin-large) 0}.caption.trailing[data-v-1b76f4e0]{margin:var(--spacing-stacked-margin-large) 0 0 0;text-align:center}caption.trailing[data-v-1b76f4e0]{caption-side:bottom}[data-v-1b76f4e0] p{display:inline-block}[data-v-3a939631] img{max-width:100%}.table-wrapper[data-v-5ed73c89]{overflow:auto;-webkit-overflow-scrolling:touch}*+.table-wrapper[data-v-5ed73c89],.table-wrapper[data-v-5ed73c89]+*{margin-top:var(--spacing-stacked-margin-xlarge)}table[data-v-5ed73c89]{border-style:hidden}[data-v-5ed73c89] th{font-weight:600;word-break:keep-all;-webkit-hyphens:auto;hyphens:auto}[data-v-5ed73c89] td,[data-v-5ed73c89] th{border-color:var(--color-fill-gray-tertiary);border-style:solid;border-width:var(--table-border-width,1px 1px);padding:.58824rem}[data-v-5ed73c89] td.left-cell,[data-v-5ed73c89] th.left-cell{text-align:left}[data-v-5ed73c89] td.right-cell,[data-v-5ed73c89] th.right-cell{text-align:right}[data-v-5ed73c89] td.center-cell,[data-v-5ed73c89] th.center-cell{text-align:center}s[data-v-7fc51673]:before{content:attr(data-before-text)}s[data-v-7fc51673]:after{content:attr(data-after-text)}s[data-v-7fc51673]:after,s[data-v-7fc51673]:before{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}small[data-v-77035f61]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray)}.device-frame[data-v-28ae8fd3]{position:relative;width:var(--frame-width);aspect-ratio:var(--frame-aspect);max-width:100%;margin-left:auto;margin-right:auto;overflow:hidden}*+.device-frame[data-v-28ae8fd3],.device-frame[data-v-28ae8fd3]+*{margin-top:40px}.device[data-v-28ae8fd3]{background-image:var(--device-light-url);background-repeat:no-repeat;background-size:100%;width:100%;height:100%;position:relative;pointer-events:none}@media screen{[data-color-scheme=dark] .device[data-v-28ae8fd3]{background-image:var(--device-dark-url,var(--device-light-url))}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .device[data-v-28ae8fd3]{background-image:var(--device-dark-url,var(--device-light-url))}}.no-device .device[data-v-28ae8fd3]{display:none}.device-screen.with-device[data-v-28ae8fd3]{position:absolute;left:var(--screen-left);top:var(--screen-top);height:var(--screen-height);width:var(--screen-width);display:flex}.device-screen.with-device>[data-v-28ae8fd3]{flex:1}.device-screen.with-device[data-v-28ae8fd3] img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:top;object-position:top;margin:0}.device-screen.with-device[data-v-28ae8fd3] video{-o-object-fit:contain;object-fit:contain;-o-object-position:top;object-position:top;width:100%;height:auto}.video-replay-container .control-button[data-v-7653dfd0]{display:flex;align-items:center;justify-content:center;cursor:pointer;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.video-replay-container .control-button svg.control-icon[data-v-7653dfd0]{height:12px;width:12px;margin-left:.3em}[data-v-dcbc7b38] img,[data-v-dcbc7b38] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.asset[data-v-035a093f]{margin-left:auto;margin-right:auto}*+.asset[data-v-035a093f],.asset[data-v-035a093f]+*{margin-top:var(--spacing-stacked-margin-xlarge)}[data-v-035a093f] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.column[data-v-0f654188]{grid-column:span var(--col-span);min-width:0}@media only screen and (max-width:735px){.column[data-v-0f654188]{grid-column:span 1}}.row[data-v-1bcb2d0f]{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;grid-gap:var(--col-gap,20px)}@media only screen and (max-width:735px){.row[data-v-1bcb2d0f]{grid-template-columns:1fr;grid-auto-flow:row}}.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-large);grid-template-columns:repeat(var(--col-count),1fr);grid-auto-flow:row}@media only screen and (max-width:1250px){.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-medium,var(--col-count-large))}}@media only screen and (max-width:735px){.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-small)}}*+.row[data-v-1bcb2d0f],*+.TabNavigator[data-v-e671a734],.row[data-v-1bcb2d0f]+*,.TabNavigator[data-v-e671a734]+*{margin-top:var(--spacing-stacked-margin-xlarge)}.TabNavigator .tabnav[data-v-e671a734]{overflow:auto;white-space:nowrap}.TabNavigator .tabs-content-container[data-v-e671a734]{position:relative;overflow:hidden}.tabs--vertical[data-v-e671a734]{display:flex;flex-flow:row-reverse}@media only screen and (max-width:735px){.tabs--vertical[data-v-e671a734]{flex-flow:column-reverse}}.tabs--vertical .tabnav[data-v-e671a734]{width:30%;flex:0 0 auto;white-space:normal;margin:0}@media only screen and (max-width:735px){.tabs--vertical .tabnav[data-v-e671a734]{width:100%}}.tabs--vertical .tabs-content[data-v-e671a734]{flex:1 1 auto;min-width:0;padding-right:var(--spacing-stacked-margin-xlarge)}@media only screen and (max-width:735px){.tabs--vertical .tabs-content[data-v-e671a734]{padding-right:0;padding-bottom:var(--spacing-stacked-margin-large)}}.fade-enter-active[data-v-e671a734],.fade-leave-active[data-v-e671a734]{transition:opacity .2s ease-in-out}.fade-enter[data-v-e671a734],.fade-leave-to[data-v-e671a734]{opacity:0}.fade-leave-active[data-v-e671a734]{position:absolute;top:0;left:0;right:0}.tasklist[data-v-6a56a858]{--checkbox-width:1rem;--indent-width:calc(var(--checkbox-width)/2);--content-margin:var(--indent-width);list-style-type:none;margin-left:var(--indent-width)}p[data-v-6a56a858]{margin-left:var(--content-margin)}p[data-v-6a56a858]:only-child{--content-margin:calc(var(--checkbox-width) + var(--indent-width))}input[type=checkbox]+p[data-v-6a56a858]{display:inline-block}.button-cta[data-v-c9c81868]{background:var(--colors-button-light-background,var(--color-button-background));border-color:var(--color-button-border,currentcolor);border-radius:var(--button-border-radius,var(--border-radius,4px));border-style:var(--button-border-style,none);border-width:var(--button-border-width,medium);color:var(--colors-button-text,var(--color-button-text));cursor:pointer;min-width:1.76471rem;padding:.23529rem .88235rem;text-align:center;white-space:nowrap;display:inline-block;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.button-cta[data-v-c9c81868]:active{background:var(--colors-button-light-backgroundActive,var(--color-button-background-active));outline:none}.button-cta[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-light-backgroundHover,var(--color-button-background-hover));text-decoration:none}.button-cta[data-v-c9c81868]:disabled{opacity:.32;cursor:default}.fromkeyboard .button-cta[data-v-c9c81868]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.button-cta.is-dark[data-v-c9c81868]{background:var(--colors-button-dark-background,#06f)}.button-cta.is-dark[data-v-c9c81868]:active{background:var(--colors-button-dark-backgroundActive,var(--color-button-background-active))}.button-cta.is-dark[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-dark-backgroundHover,var(--color-button-background-hover))}.card-cover-wrap.rounded[data-v-0c1c40a1]{border-radius:var(--border-radius,4px);overflow:hidden}.card-cover[data-v-0c1c40a1]{background-color:var(--color-card-background);display:block;height:var(--card-cover-height,180px)}.card-cover.fallback[data-v-0c1c40a1],.card-cover[data-v-0c1c40a1] img{width:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;display:block;margin:0}.card-cover[data-v-0c1c40a1] img{height:100%}.card[data-v-328d568a]{overflow:hidden;display:block;transition:box-shadow,transform .16s ease-out;will-change:box-shadow,transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;height:var(--card-height);border-radius:var(--border-radius,4px)}.card[data-v-328d568a]:hover{text-decoration:none}.card:hover .link[data-v-328d568a]{text-decoration:underline}.card[data-v-328d568a]:hover{box-shadow:0 5px 10px var(--color-card-shadow);transform:scale(1.007)}@media (prefers-reduced-motion:reduce){.card[data-v-328d568a]:hover{box-shadow:none;transform:none}}.card.small[data-v-328d568a]{--card-height:408px;--card-details-height:139px;--card-cover-height:235px}@media only screen and (max-width:1250px){.card.small[data-v-328d568a]{--card-height:341px;--card-details-height:144px;--card-cover-height:163px}}.card.large[data-v-328d568a]{--card-height:556px;--card-details-height:163px;--card-cover-height:359px}@media only screen and (max-width:1250px){.card.large[data-v-328d568a]{--card-height:420px;--card-details-height:137px;--card-cover-height:249px}}.card.floating-style[data-v-328d568a]{--color-card-shadow:transparent;--card-height:auto;--card-details-height:auto}.details[data-v-328d568a]{background-color:var(--color-card-background);padding:17px;position:relative;height:var(--card-details-height);font-size:.82353rem;line-height:1.28571}.details[data-v-328d568a],.large .details[data-v-328d568a]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .details[data-v-328d568a]{font-size:1rem;line-height:1.47059}@media only screen and (max-width:1250px){.large .details[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.floating-style .details[data-v-328d568a]{--color-card-background:transparent;padding:17px 0}.eyebrow[data-v-328d568a]{color:var(--color-card-eyebrow);display:block;margin-bottom:4px;font-size:.82353rem;line-height:1.28571}.eyebrow[data-v-328d568a],.large .eyebrow[data-v-328d568a]{font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .eyebrow[data-v-328d568a]{font-size:1rem;line-height:1.23529}@media only screen and (max-width:1250px){.large .eyebrow[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title[data-v-328d568a]{color:var(--color-card-content-text);font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-328d568a]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.large .title[data-v-328d568a]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.large .title[data-v-328d568a]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.card-content[data-v-328d568a]{color:var(--color-card-content-text);margin-top:4px}.link[data-v-328d568a]{bottom:17px;display:flex;align-items:center;position:absolute}.link .link-icon[data-v-328d568a]{height:.6em;width:.6em;margin-left:.3em}.floating-style .link[data-v-328d568a]{bottom:unset;margin-top:var(--spacing-stacked-margin-large);position:relative}@media only screen and (max-width:735px){.card[data-v-328d568a]{margin-left:auto;margin-right:auto}.card+.card[data-v-328d568a]{margin-bottom:20px;margin-top:20px}.card.large[data-v-328d568a],.card.small[data-v-328d568a]{--card-height:auto;--card-details-height:auto;min-width:280px;max-width:300px;--card-cover-height:227px}.card.large .link[data-v-328d568a],.card.small .link[data-v-328d568a]{bottom:unset;margin-top:7px;position:relative}}.nav-menu-items[data-v-67c1c0a5]{display:flex;justify-content:flex-end}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{display:block;opacity:0;padding:1rem 1.88235rem 1.64706rem 1.88235rem;transform:translate3d(0,-50px,0);transition:transform 1s cubic-bezier(.07,1.06,.27,.95) .5s,opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s}.nav--is-open.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{opacity:1;transform:translateZ(0);transition-delay:.2s,.4s}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):not(:last-child){padding-bottom:0}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):last-child{padding-top:0}.TopicTypeIcon[data-v-18b61706]{width:1em;height:1em;flex:0 0 auto;color:var(--icon-color,var(--color-figure-gray-secondary))}.TopicTypeIcon[data-v-18b61706] picture{flex:1}.TopicTypeIcon[data-v-18b61706] img,.TopicTypeIcon svg[data-v-18b61706]{display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.nav[data-v-5c0521d3]{position:sticky;top:0;width:100%;height:3.05882rem;z-index:9997;--nav-padding:1.29412rem;color:var(--color-nav-color)}@media print{.nav[data-v-5c0521d3]{position:relative}}@media only screen and (max-width:767px){.nav[data-v-5c0521d3]{min-width:320px;height:2.82353rem}}.theme-dark.nav[data-v-5c0521d3]{background:none;color:var(--color-nav-dark-color)}.nav__wrapper[data-v-5c0521d3]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav__background[data-v-5c0521d3]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;transition:background-color 0s ease-in}.nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-keyline)}.nav--no-bg-transition .nav__background[data-v-5c0521d3]{transition:none!important}.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-solid-background);-webkit-backdrop-filter:none;backdrop-filter:none}.nav--is-open.nav--solid-background .nav__background[data-v-5c0521d3],.nav--is-sticking.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-solid-background)}.nav--is-open.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3],.nav--is-sticking.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3],.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-solid-background)}.nav--in-breakpoint-range .nav__background[data-v-5c0521d3]{min-height:2.82353rem;transition:background-color 0s ease .7s}.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-sticking .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-sticking .nav__background[data-v-5c0521d3]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-stuck)}}.theme-dark.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-stuck)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-uiblur-stuck)}}.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-open .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-open .nav__background[data-v-5c0521d3]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-expanded)}}.theme-dark.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-expanded)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-uiblur-expanded)}}.theme-dark .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-dark-keyline)}.nav--is-open.theme-dark .nav__background[data-v-5c0521d3]:after,.nav--is-sticking.theme-dark .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-dark-sticking-expanded-keyline)}.nav__background[data-v-5c0521d3]:after{content:"";display:block;position:absolute;top:100%;left:50%;transform:translateX(-50%);width:980px;height:1px;z-index:1}@media only screen and (max-width:1023px){.nav__background[data-v-5c0521d3]:after{width:100%}}.nav--noborder .nav__background[data-v-5c0521d3]:after{display:none}.nav--is-sticking.nav--noborder .nav__background[data-v-5c0521d3]:after{display:block}.nav--fullwidth-border .nav__background[data-v-5c0521d3]:after,.nav--is-open .nav__background[data-v-5c0521d3]:after,.nav--is-sticking .nav__background[data-v-5c0521d3]:after,.nav--solid-background .nav__background[data-v-5c0521d3]:after{width:100%}.nav-overlay[data-v-5c0521d3]{position:fixed;left:0;right:0;top:0;display:block;opacity:0}.nav--is-open .nav-overlay[data-v-5c0521d3]{background-color:rgba(51,51,51,.4);transition:opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s;bottom:0;opacity:1}.nav-wrapper[data-v-5c0521d3]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.pre-title[data-v-5c0521d3]{display:flex;overflow:hidden;padding-left:1.29412rem;margin-left:-1.29412rem}.pre-title[data-v-5c0521d3]:empty{display:none}.nav--in-breakpoint-range .pre-title[data-v-5c0521d3]{overflow:visible;padding:0;margin-left:0}.nav-content[data-v-5c0521d3]{display:flex;padding:0 var(--nav-padding);max-width:980px;margin:0 auto;position:relative;z-index:2;justify-content:space-between}.nav--is-wide-format .nav-content[data-v-5c0521d3]{box-sizing:border-box;max-width:1920px;margin-left:auto;margin-right:auto}@supports (padding:calc(max(0px))){.nav-content[data-v-5c0521d3]{padding-left:calc(max(var(--nav-padding), env(safe-area-inset-left)));padding-right:calc(max(var(--nav-padding), env(safe-area-inset-right)))}}@media only screen and (max-width:767px){.nav-content[data-v-5c0521d3]{padding:0 0 0 .94118rem}}.nav--in-breakpoint-range .nav-content[data-v-5c0521d3]{display:grid;grid-template-columns:auto 1fr auto;grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-template-areas:"pre-title title actions" "menu menu menu"}.nav-menu[data-v-5c0521d3]{font-size:.70588rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1 1 auto;display:flex;min-width:0}@media only screen and (max-width:767px){.nav-menu[data-v-5c0521d3]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.nav--in-breakpoint-range .nav-menu[data-v-5c0521d3]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);grid-area:menu}.nav-menu-tray[data-v-5c0521d3]{width:100%;max-width:100%;align-items:center;display:flex;justify-content:space-between}.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{display:block;overflow:hidden;pointer-events:none;visibility:hidden;max-height:0;transition:max-height .4s ease-in 0s,visibility 0s linear 1s}.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{max-height:calc(100vh - 5.64706rem);overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:auto;visibility:visible;transition-delay:.2s,0s}.nav--is-transitioning.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{overflow-y:hidden}.nav--is-sticking.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{max-height:calc(100vh - 2.82353rem)}.nav-actions[data-v-5c0521d3]{display:flex;align-items:center}.nav--in-breakpoint-range .nav-actions[data-v-5c0521d3]{grid-area:actions;justify-content:flex-end}@media only screen and (max-width:767px){.nav-actions[data-v-5c0521d3]{padding-right:.94118rem}}.nav--in-breakpoint-range .pre-title+.nav-title[data-v-5c0521d3]{grid-area:title}.nav--is-wide-format.nav--in-breakpoint-range .pre-title+.nav-title[data-v-5c0521d3]{width:100%;justify-content:center}.nav-title[data-v-5c0521d3]{height:3.05882rem;font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:default;display:flex;align-items:center;white-space:nowrap;box-sizing:border-box}@media only screen and (max-width:767px){.nav-title[data-v-5c0521d3]{padding-top:0;height:2.82353rem;width:90%}}.nav-title[data-v-5c0521d3] span{height:100%;line-height:normal}.nav-title a[data-v-5c0521d3]{display:inline-block;letter-spacing:inherit;line-height:normal;margin:0;text-decoration:none;white-space:nowrap}.nav-title a[data-v-5c0521d3]:hover{text-decoration:none}@media only screen and (max-width:767px){.nav-title a[data-v-5c0521d3]{display:flex}}.nav-title[data-v-5c0521d3],.nav-title a[data-v-5c0521d3]{color:var(--color-figure-gray);transition:color 0s ease-in}.nav--is-open.theme-dark .nav-title[data-v-5c0521d3],.nav--is-open.theme-dark .nav-title a[data-v-5c0521d3],.nav--is-sticking.theme-dark .nav-title[data-v-5c0521d3],.nav--is-sticking.theme-dark .nav-title a[data-v-5c0521d3],.theme-dark .nav-title[data-v-5c0521d3],.theme-dark .nav-title a[data-v-5c0521d3]{color:var(--color-nav-dark-link-color)}.nav-ax-toggle[data-v-5c0521d3]{display:none;position:absolute;top:0;left:0;width:1px;height:1px;z-index:10}.nav-ax-toggle[data-v-5c0521d3]:focus{outline-offset:-6px;width:100%;height:100%}.nav--in-breakpoint-range .nav-ax-toggle[data-v-5c0521d3]{display:block}.nav-menucta[data-v-5c0521d3]{cursor:pointer;display:none;align-items:center;overflow:hidden;width:1.17647rem;-webkit-tap-highlight-color:transparent;height:2.82353rem}.nav--in-breakpoint-range .nav-menucta[data-v-5c0521d3]{display:flex}.nav-menucta-chevron[data-v-5c0521d3]{display:block;position:relative;width:100%;height:.70588rem;transition:transform .3s linear}.nav-menucta-chevron[data-v-5c0521d3]:after,.nav-menucta-chevron[data-v-5c0521d3]:before{content:"";display:block;position:absolute;top:.58824rem;width:.70588rem;height:.05882rem;transition:transform .3s linear;background:var(--color-figure-gray)}.nav-menucta-chevron[data-v-5c0521d3]:before{right:50%;border-radius:.5px 0 0 .5px}.nav-menucta-chevron[data-v-5c0521d3]:after{left:50%;border-radius:0 .5px .5px 0}.nav-menucta-chevron[data-v-5c0521d3]:before{transform-origin:100% 100%;transform:rotate(40deg) scaleY(1.5)}.nav-menucta-chevron[data-v-5c0521d3]:after{transform-origin:0 100%;transform:rotate(-40deg) scaleY(1.5)}.nav--is-open .nav-menucta-chevron[data-v-5c0521d3]{transform:scaleY(-1)}.theme-dark .nav-menucta-chevron[data-v-5c0521d3]:after,.theme-dark .nav-menucta-chevron[data-v-5c0521d3]:before{background:var(--color-nav-dark-link-color)}[data-v-5c0521d3] .nav-menu-link{color:var(--color-nav-link-color)}[data-v-5c0521d3] .nav-menu-link:hover{color:var(--color-nav-link-color-hover);text-decoration:none}.theme-dark[data-v-5c0521d3] .nav-menu-link{color:var(--color-nav-dark-link-color)}.theme-dark[data-v-5c0521d3] .nav-menu-link:hover{color:var(--color-nav-dark-link-color-hover)}[data-v-5c0521d3] .nav-menu-link.current{color:var(--color-nav-current-link);cursor:default}[data-v-5c0521d3] .nav-menu-link.current:hover{color:var(--color-nav-current-link)}.theme-dark[data-v-5c0521d3] .nav-menu-link.current,.theme-dark[data-v-5c0521d3] .nav-menu-link.current:hover{color:var(--color-nav-dark-current-link)}.reference-card-grid-item[data-v-08a5e3f8]{--card-cover-height:auto}.reference-card-grid-item.card.large[data-v-08a5e3f8]{--card-cover-height:auto;min-width:0;max-width:none}.reference-card-grid-item[data-v-08a5e3f8] .card-cover{aspect-ratio:16/9}.reference-card-grid-item[data-v-08a5e3f8] .card-cover-wrap{border:1px solid var(--color-link-block-card-border)}.reference-card-grid-item__image[data-v-08a5e3f8]{display:flex;align-items:center;justify-content:center;font-size:80px;background-color:var(--color-fill-gray-quaternary)}.reference-card-grid-item__icon[data-v-08a5e3f8]{margin:0;display:flex;justify-content:center}.reference-card-grid-item__icon[data-v-08a5e3f8] .icon-inline{flex:1 1 auto}.nav-menu-item[data-v-66cbfe4c]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]{margin-left:0;width:100%;min-height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--is-open.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:1;transform:translateZ(0);transition-delay:0s}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7){transition-delay:0s}.links-block[data-v-ce6f87f6]+*{margin-top:var(--spacing-stacked-margin-xlarge)}.topic-link-block[data-v-ce6f87f6]{margin-top:15px} \ No newline at end of file diff --git a/docs/css/highlight.css b/docs/css/highlight.css new file mode 100644 index 000000000..c170357ce --- /dev/null +++ b/docs/css/highlight.css @@ -0,0 +1,202 @@ +/*! Jazzy - https://github.com/realm/jazzy + * Copyright Realm Inc. + * SPDX-License-Identifier: MIT + */ +/* Credit to https://gist.github.com/wataru420/2048287 */ +.highlight .c { + color: #999988; + font-style: italic; } + +.highlight .err { + color: #a61717; + background-color: #e3d2d2; } + +.highlight .k { + color: #000000; + font-weight: bold; } + +.highlight .o { + color: #000000; + font-weight: bold; } + +.highlight .cm { + color: #999988; + font-style: italic; } + +.highlight .cp { + color: #999999; + font-weight: bold; } + +.highlight .c1 { + color: #999988; + font-style: italic; } + +.highlight .cs { + color: #999999; + font-weight: bold; + font-style: italic; } + +.highlight .gd { + color: #000000; + background-color: #ffdddd; } + +.highlight .gd .x { + color: #000000; + background-color: #ffaaaa; } + +.highlight .ge { + color: #000000; + font-style: italic; } + +.highlight .gr { + color: #aa0000; } + +.highlight .gh { + color: #999999; } + +.highlight .gi { + color: #000000; + background-color: #ddffdd; } + +.highlight .gi .x { + color: #000000; + background-color: #aaffaa; } + +.highlight .go { + color: #888888; } + +.highlight .gp { + color: #555555; } + +.highlight .gs { + font-weight: bold; } + +.highlight .gu { + color: #aaaaaa; } + +.highlight .gt { + color: #aa0000; } + +.highlight .kc { + color: #000000; + font-weight: bold; } + +.highlight .kd { + color: #000000; + font-weight: bold; } + +.highlight .kp { + color: #000000; + font-weight: bold; } + +.highlight .kr { + color: #000000; + font-weight: bold; } + +.highlight .kt { + color: #445588; } + +.highlight .m { + color: #009999; } + +.highlight .s { + color: #d14; } + +.highlight .na { + color: #008080; } + +.highlight .nb { + color: #0086B3; } + +.highlight .nc { + color: #445588; + font-weight: bold; } + +.highlight .no { + color: #008080; } + +.highlight .ni { + color: #800080; } + +.highlight .ne { + color: #990000; + font-weight: bold; } + +.highlight .nf { + color: #990000; } + +.highlight .nn { + color: #555555; } + +.highlight .nt { + color: #000080; } + +.highlight .nv { + color: #008080; } + +.highlight .ow { + color: #000000; + font-weight: bold; } + +.highlight .w { + color: #bbbbbb; } + +.highlight .mf { + color: #009999; } + +.highlight .mh { + color: #009999; } + +.highlight .mi { + color: #009999; } + +.highlight .mo { + color: #009999; } + +.highlight .sb { + color: #d14; } + +.highlight .sc { + color: #d14; } + +.highlight .sd { + color: #d14; } + +.highlight .s2 { + color: #d14; } + +.highlight .se { + color: #d14; } + +.highlight .sh { + color: #d14; } + +.highlight .si { + color: #d14; } + +.highlight .sx { + color: #d14; } + +.highlight .sr { + color: #009926; } + +.highlight .s1 { + color: #d14; } + +.highlight .ss { + color: #990073; } + +.highlight .bp { + color: #999999; } + +.highlight .vc { + color: #008080; } + +.highlight .vg { + color: #008080; } + +.highlight .vi { + color: #008080; } + +.highlight .il { + color: #009999; } diff --git a/docs/css/index.038e887c.css b/docs/css/index.038e887c.css deleted file mode 100644 index ee928eb69..000000000 --- a/docs/css/index.038e887c.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-fill:var(--color-button-background);--toggle-color-text:var(--color-fill-blue);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border:1px solid var(--toggle-color-fill);border-radius:var(--toggle-border-radius-outer,var(--border-radius,4px));display:inline-flex;padding:1px}@media screen{[data-color-scheme=dark] .color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-text:var(--color-figure-blue)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-text:var(--color-figure-blue)}}@media print{.color-scheme-toggle[data-v-02a6f6ec]{display:none}}input[data-v-02a6f6ec]{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.fromkeyboard label[data-v-02a6f6ec]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:1px}.text[data-v-02a6f6ec]{border:1px solid transparent;border-radius:var(--toggle-border-radius-inner,2px);color:var(--toggle-color-text);display:inline-block;text-align:center;padding:1px 6px;min-width:42px;box-sizing:border-box}.text[data-v-02a6f6ec]:hover{cursor:pointer}input:checked+.text[data-v-02a6f6ec]{--toggle-color-text:var(--color-button-text);background:var(--toggle-color-fill);border-color:var(--toggle-color-fill)}.footer[data-v-4e049dbd]{border-top:1px solid var(--color-grid)}.row[data-v-4e049dbd]{margin-left:auto;margin-right:auto;width:980px;display:flex;flex-direction:row-reverse;margin:20px auto}@media only screen and (max-width:1250px){.row[data-v-4e049dbd]{width:692px}}@media only screen and (max-width:735px){.row[data-v-4e049dbd]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-4e049dbd]{width:215px}}@media only screen and (max-width:735px){.row[data-v-4e049dbd]{width:100%;padding:0 .94118rem;box-sizing:border-box}}.InitialLoadingPlaceholder[data-v-35c356b6]{background:var(--colors-loading-placeholder-background,var(--color-loading-placeholder-background));height:100vh;width:100%}.svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-light,var(--color-svg-icon));transform:scale(1);-webkit-transform:scale(1);overflow:visible}.theme-dark .svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.svg-icon.icon-inline[data-v-33d3200a]{display:inline-block;vertical-align:middle;fill:currentColor}.svg-icon.icon-inline[data-v-33d3200a] .svg-icon-stroke{stroke:currentColor}[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-light,var(--color-svg-icon))}.theme-dark[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.suggest-lang[data-v-ad72c62e]{background:#000;color:#fff;display:flex;justify-content:center;border-bottom:1px solid var(--color-grid)}.suggest-lang__wrapper[data-v-ad72c62e]{display:flex;align-items:center;width:100%;max-width:var(--wrapper-max-width,1920px);margin:0 .94118rem;position:relative;height:52px}.suggest-lang__link[data-v-ad72c62e]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin:0 auto;color:#09f}.suggest-lang__close-icon-wrapper[data-v-ad72c62e]{position:absolute;right:-.23529rem;top:0;height:100%;box-sizing:border-box;display:flex;align-items:center;z-index:1}.suggest-lang__close-icon-button[data-v-ad72c62e]{padding:.23529rem}.suggest-lang__close-icon-button .close-icon[data-v-ad72c62e]{width:8px;display:block}.suggest-lang .inline-chevron-right-icon[data-v-ad72c62e]{padding-left:.23529rem;width:8px}select[data-v-7e4d9b69]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-fill-blue);padding-right:15px;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;cursor:pointer}select[data-v-7e4d9b69]:hover{text-decoration:underline}.locale-selector[data-v-7e4d9b69]{position:relative}.svg-icon.icon-inline[data-v-7e4d9b69]{position:absolute;fill:var(--color-fill-blue);right:2px;bottom:7px;height:5px}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;background-color:var(--colors-text-background,var(--color-text-background));height:100%}abbr,blockquote,body,button,dd,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hgroup,input,legend,li,ol,p,pre,ul{margin:0;padding:0}address,caption,code,figcaption,pre,th{font-size:1em;font-weight:400;font-style:normal}fieldset,iframe,img{border:0}caption,th{text-align:left}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}button{background:none;border:0;box-sizing:content-box;color:inherit;cursor:pointer;font:inherit;line-height:inherit;overflow:visible;vertical-align:inherit}button:disabled{cursor:default}:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}::-moz-focus-inner{border:0;padding:0}@media print{#content,#main,body{color:#000}a,a:link,a:visited{color:#000;text-decoration:none}.hide,.noprint{display:none}}body{height:100%;min-width:320px}html{font:var(--typography-html-font,17px "Helvetica Neue","Helvetica","Arial",sans-serif);quotes:"“" "”"}html:lang(ja-JP){quotes:"「" "」"}body{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);background-color:var(--color-text-background);color:var(--colors-text,var(--color-text));font-style:normal;word-wrap:break-word;--spacing-stacked-margin-small:0.4em;--spacing-stacked-margin-large:0.8em;--spacing-stacked-margin-xlarge:calc(var(--spacing-stacked-margin-large)*2);--spacing-param:1.64706rem;--declaration-code-listing-margin:30px 0 0 0;--code-block-style-elements-padding:8px 14px}body,button,input,select,textarea{font-synthesis:none;-moz-font-feature-settings:"kern";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}h1,h2,h3,h4,h5,h6{color:var(--colors-header-text,var(--color-header-text))}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:var(--spacing-stacked-margin-large)}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6,p+h1,p+h2,p+h3,p+h4,p+h5,p+h6,ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{margin-top:1.6em}ol+*,p+*,ul+*{margin-top:var(--spacing-stacked-margin-large)}ol,ul{margin-left:1.17647em}ol ol,ol ul,ul ol,ul ul{margin-top:0;margin-bottom:0}nav ol,nav ul{margin:0;list-style:none}li li{font-size:1em}a{color:var(--colors-link,var(--color-link))}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}p+a{display:inline-block}b,strong{font-weight:600}cite,dfn,em,i{font-style:italic}sup{font-size:.6em;vertical-align:top;position:relative;bottom:-.2em}h1 sup,h2 sup,h3 sup{font-size:.4em}sup a{vertical-align:inherit;color:inherit}sup a:hover{color:var(--figure-blue);text-decoration:none}sub{line-height:1}abbr{border:0}pre{overflow:auto;-webkit-overflow-scrolling:auto;white-space:pre;word-wrap:normal}code{font-family:var(--typography-html-font-mono,Menlo,monospace);font-weight:inherit;letter-spacing:0}.syntax-addition{color:var(--syntax-addition,var(--color-syntax-addition))}.syntax-comment{color:var(--syntax-comment,var(--color-syntax-comments))}.syntax-quote{color:var(--syntax-quote,var(--color-syntax-comments))}.syntax-deletion{color:var(--syntax-deletion,var(--color-syntax-deletion))}.syntax-keyword{color:var(--syntax-keyword,var(--color-syntax-keywords))}.syntax-literal{color:var(--syntax-literal,var(--color-syntax-keywords))}.syntax-selector-tag{color:var(--syntax-selector-tag,var(--color-syntax-keywords))}.syntax-string{color:var(--syntax-string,var(--color-syntax-strings))}.syntax-bullet{color:var(--syntax-bullet,var(--color-syntax-characters))}.syntax-meta{color:var(--syntax-meta,var(--color-syntax-characters))}.syntax-number{color:var(--syntax-number,var(--color-syntax-characters))}.syntax-symbol{color:var(--syntax-symbol,var(--color-syntax-characters))}.syntax-tag{color:var(--syntax-tag,var(--color-syntax-characters))}.syntax-attr{color:var(--syntax-attr,var(--color-syntax-other-type-names))}.syntax-built_in{color:var(--syntax-built_in,var(--color-syntax-other-type-names))}.syntax-builtin-name{color:var(--syntax-builtin-name,var(--color-syntax-other-type-names))}.syntax-class{color:var(--syntax-class,var(--color-syntax-other-type-names))}.syntax-params{color:var(--syntax-params,var(--color-syntax-other-type-names))}.syntax-section{color:var(--syntax-section,var(--color-syntax-other-type-names))}.syntax-title{color:var(--syntax-title,var(--color-syntax-other-type-names))}.syntax-type{color:var(--syntax-type,var(--color-syntax-other-type-names))}.syntax-attribute{color:var(--syntax-attribute,var(--color-syntax-plain-text))}.syntax-identifier{color:var(--syntax-identifier,var(--color-syntax-plain-text))}.syntax-subst{color:var(--syntax-subst,var(--color-syntax-plain-text))}.syntax-doctag,.syntax-strong{font-weight:700}.syntax-emphasis,.syntax-link{font-style:italic}[data-syntax=swift] .syntax-meta{color:var(--syntax-meta,var(--color-syntax-keywords))}[data-syntax=swift] .syntax-class,[data-syntax=swift] .syntax-keyword+.syntax-params,[data-syntax=swift] .syntax-params+.syntax-params{color:unset}[data-syntax=json] .syntax-attr{color:var(--syntax-attr,var(--color-syntax-strings))}#skip-nav{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}#skip-nav:active,#skip-nav:focus{position:relative;float:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:var(--color-figure-blue);font-size:1em;padding:0 10px;z-index:100000;top:0;left:0;height:44px;line-height:44px;-webkit-clip-path:unset;clip-path:unset}.nav--in-breakpoint-range #skip-nav{display:none}.visuallyhidden{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}@-webkit-keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}@keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}.changed{border:1px solid var(--color-changes-modified);border-radius:var(--border-radius,4px);position:relative}.changed.displays-multiple-lines,.displays-multiple-lines .changed{border-radius:var(--border-radius,4px)}.changed:after{left:8px;background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:1.17647rem;height:1.17647rem;margin-top:.61765rem;z-index:2}@media screen{[data-color-scheme=dark] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.changed-added{border-color:var(--color-changes-added)}.changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.changed-deprecated{border-color:var(--color-changes-deprecated)}.changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.changed.link-block:after,.changed.relationships-item:after,.link-block .changed:after{margin-top:10px}.change-added,.change-removed{padding:2px 0}.change-removed{background-color:var(--color-highlight-red)}.change-added{background-color:var(--color-highlight-green)}body{color-scheme:light dark}body[data-color-scheme=light]{color-scheme:light}body[data-color-scheme=dark]{color-scheme:dark}body{--color-fill:#fff;--color-fill-secondary:#f7f7f7;--color-fill-tertiary:#f0f0f0;--color-fill-quaternary:#282828;--color-fill-blue:#00f;--color-fill-light-blue-secondary:#d1d1ff;--color-fill-gray:#ccc;--color-fill-gray-secondary:#f5f5f5;--color-fill-gray-tertiary:#f0f0f0;--color-fill-gray-quaternary:#f0f0f0;--color-fill-green-secondary:#f0fff0;--color-fill-orange-secondary:#fffaf6;--color-fill-red-secondary:#fff0f5;--color-figure-blue:#36f;--color-figure-gray:#000;--color-figure-gray-secondary:#666;--color-figure-gray-secondary-alt:#666;--color-figure-gray-tertiary:#666;--color-figure-green:green;--color-figure-light-gray:#666;--color-figure-orange:#c30;--color-figure-red:red;--color-tutorials-teal:#000;--color-article-background:var(--color-fill-tertiary);--color-article-body-background:var(--color-fill);--color-aside-deprecated:var(--color-figure-gray);--color-aside-deprecated-background:var(--color-fill-orange-secondary);--color-aside-deprecated-border:var(--color-figure-orange);--color-aside-experiment:var(--color-figure-gray);--color-aside-experiment-background:var(--color-fill-gray-secondary);--color-aside-experiment-border:var(--color-figure-light-gray);--color-aside-important:var(--color-figure-gray);--color-aside-important-background:var(--color-fill-gray-secondary);--color-aside-important-border:var(--color-figure-light-gray);--color-aside-note:var(--color-figure-gray);--color-aside-note-background:var(--color-fill-gray-secondary);--color-aside-note-border:var(--color-figure-light-gray);--color-aside-tip:var(--color-figure-gray);--color-aside-tip-background:var(--color-fill-gray-secondary);--color-aside-tip-border:var(--color-figure-light-gray);--color-aside-warning:var(--color-figure-gray);--color-aside-warning-background:var(--color-fill-red-secondary);--color-aside-warning-border:var(--color-figure-red);--color-badge-default:var(--color-figure-light-gray);--color-badge-beta:var(--color-figure-gray-tertiary);--color-badge-deprecated:var(--color-figure-orange);--color-badge-dark-default:#fff;--color-badge-dark-beta:#b0b0b0;--color-badge-dark-deprecated:#f60;--color-button-background:var(--color-fill-blue);--color-button-background-active:#36f;--color-button-background-hover:var(--color-figure-blue);--color-button-text:#fff;--color-call-to-action-background:var(--color-fill-secondary);--color-changes-added:var(--color-figure-light-gray);--color-changes-added-hover:var(--color-figure-light-gray);--color-changes-deprecated:var(--color-figure-light-gray);--color-changes-deprecated-hover:var(--color-figure-light-gray);--color-changes-modified:var(--color-figure-light-gray);--color-changes-modified-hover:var(--color-figure-light-gray);--color-changes-modified-previous-background:var(--color-fill);--color-code-background:var(--color-fill-secondary);--color-code-collapsible-background:var(--color-fill-tertiary);--color-code-collapsible-text:var(--color-figure-gray-secondary-alt);--color-code-line-highlight:rgba(51,102,255,0.08);--color-code-line-highlight-border:var(--color-figure-blue);--color-code-plain:var(--color-figure-gray);--color-dropdown-background:hsla(0,0%,100%,0.8);--color-dropdown-border:#ccc;--color-dropdown-option-text:#666;--color-dropdown-text:#000;--color-dropdown-dark-background:hsla(0,0%,100%,0.1);--color-dropdown-dark-border:hsla(0,0%,94.1%,0.2);--color-dropdown-dark-option-text:#ccc;--color-dropdown-dark-text:#fff;--color-eyebrow:var(--color-figure-gray-secondary);--color-focus-border-color:var(--color-fill-blue);--color-focus-color:rgba(0,125,250,0.6);--color-form-error:var(--color-figure-red);--color-form-error-background:var(--color-fill-red-secondary);--color-form-valid:var(--color-figure-green);--color-form-valid-background:var(--color-fill-green-secondary);--color-generic-modal-background:var(--color-fill);--color-grid:var(--color-fill-gray);--color-header-text:var(--color-figure-gray);--color-hero-eyebrow:#ccc;--color-link:var(--color-figure-blue);--color-loading-placeholder-background:var(--color-fill);--color-nav-color:#666;--color-nav-current-link:rgba(0,0,0,0.6);--color-nav-expanded:#fff;--color-nav-hierarchy-collapse-background:#f0f0f0;--color-nav-hierarchy-collapse-borders:#ccc;--color-nav-hierarchy-item-borders:#ccc;--color-nav-keyline:rgba(0,0,0,0.2);--color-nav-link-color:#000;--color-nav-link-color-hover:#36f;--color-nav-outlines:#ccc;--color-nav-rule:hsla(0,0%,94.1%,0.5);--color-nav-solid-background:#fff;--color-nav-sticking-expanded-keyline:rgba(0,0,0,0.1);--color-nav-stuck:hsla(0,0%,100%,0.9);--color-nav-uiblur-expanded:hsla(0,0%,100%,0.9);--color-nav-uiblur-stuck:hsla(0,0%,100%,0.7);--color-nav-root-subhead:var(--color-tutorials-teal);--color-nav-dark-border-top-color:hsla(0,0%,100%,0.4);--color-nav-dark-color:#b0b0b0;--color-nav-dark-current-link:hsla(0,0%,100%,0.6);--color-nav-dark-expanded:#2a2a2a;--color-nav-dark-hierarchy-collapse-background:#424242;--color-nav-dark-hierarchy-collapse-borders:#666;--color-nav-dark-hierarchy-item-borders:#424242;--color-nav-dark-keyline:rgba(66,66,66,0.95);--color-nav-dark-link-color:#fff;--color-nav-dark-link-color-hover:#09f;--color-nav-dark-outlines:#575757;--color-nav-dark-rule:#575757;--color-nav-dark-solid-background:#000;--color-nav-dark-sticking-expanded-keyline:rgba(66,66,66,0.7);--color-nav-dark-stuck:rgba(42,42,42,0.9);--color-nav-dark-uiblur-expanded:rgba(42,42,42,0.9);--color-nav-dark-uiblur-stuck:rgba(42,42,42,0.7);--color-nav-dark-root-subhead:#fff;--color-runtime-preview-background:var(--color-fill-tertiary);--color-runtime-preview-disabled-text:hsla(0,0%,40%,0.6);--color-runtime-preview-text:var(--color-figure-gray-secondary);--color-secondary-label:var(--color-figure-gray-secondary);--color-step-background:var(--color-fill-secondary);--color-step-caption:var(--color-figure-gray-secondary);--color-step-focused:var(--color-figure-light-gray);--color-step-text:var(--color-figure-gray-secondary);--color-svg-icon:#666;--color-syntax-addition:var(--color-figure-green);--color-syntax-attributes:#947100;--color-syntax-characters:#272ad8;--color-syntax-comments:#707f8c;--color-syntax-deletion:var(--color-figure-red);--color-syntax-documentation-markup:#506375;--color-syntax-documentation-markup-keywords:#506375;--color-syntax-heading:#ba2da2;--color-syntax-keywords:#ad3da4;--color-syntax-marks:#000;--color-syntax-numbers:#272ad8;--color-syntax-other-class-names:#703daa;--color-syntax-other-constants:#4b21b0;--color-syntax-other-declarations:#047cb0;--color-syntax-other-function-and-method-names:#4b21b0;--color-syntax-other-instance-variables-and-globals:#703daa;--color-syntax-other-preprocessor-macros:#78492a;--color-syntax-other-type-names:#703daa;--color-syntax-param-internal-name:#404040;--color-syntax-plain-text:#000;--color-syntax-preprocessor-statements:#78492a;--color-syntax-project-class-names:#3e8087;--color-syntax-project-constants:#2d6469;--color-syntax-project-function-and-method-names:#2d6469;--color-syntax-project-instance-variables-and-globals:#3e8087;--color-syntax-project-preprocessor-macros:#78492a;--color-syntax-project-type-names:#3e8087;--color-syntax-strings:#d12f1b;--color-syntax-type-declarations:#03638c;--color-syntax-urls:#1337ff;--color-tabnav-item-border-color:var(--color-fill-gray);--color-text:var(--color-figure-gray);--color-text-background:var(--color-fill);--color-tutorial-assessments-background:var(--color-fill-secondary);--color-tutorial-background:var(--color-fill);--color-tutorial-navbar-dropdown-background:var(--color-fill);--color-tutorial-navbar-dropdown-border:var(--color-fill-gray);--color-tutorial-quiz-border-active:var(--color-figure-blue);--color-tutorials-overview-background:#161616;--color-tutorials-overview-content:#fff;--color-tutorials-overview-content-alt:#fff;--color-tutorials-overview-eyebrow:#ccc;--color-tutorials-overview-icon:#b0b0b0;--color-tutorials-overview-link:#09f;--color-tutorials-overview-navigation-link:#ccc;--color-tutorials-overview-navigation-link-active:#fff;--color-tutorials-overview-navigation-link-hover:#fff;--color-tutorial-hero-text:#fff;--color-tutorial-hero-background:#000;--color-navigator-item-hover:rgba(0,0,255,0.05);--color-card-background:var(--color-fill);--color-card-content-text:var(--color-figure-gray);--color-card-eyebrow:var(--color-figure-gray-secondary-alt);--color-card-shadow:rgba(0,0,0,0.04);--color-link-block-card-border:rgba(0,0,0,0.04);--color-standard-red:#8b0000;--color-standard-orange:#8b4000;--color-standard-yellow:#8f7200;--color-standard-blue:#002d75;--color-standard-green:#023b2d;--color-standard-purple:#512b55;--color-standard-gray:#2a2a2a}@media screen{body[data-color-scheme=dark]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04);--color-link-block-card-border:hsla(0,0%,100%,0.25)}}@media screen and (prefers-color-scheme:dark){body[data-color-scheme=auto]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04);--color-link-block-card-border:hsla(0,0%,100%,0.25)}}#main{outline-style:none}:root{--app-height:100vh}[data-v-7d594ed9] :focus:not(input):not(textarea):not(select){outline:none}.fromkeyboard[data-v-7d594ed9] :focus:not(input):not(textarea):not(select){outline:4px solid var(--color-focus-color);outline-offset:1px}#app[data-v-7d594ed9]{display:flex;flex-flow:column;min-height:100%}#app[data-v-7d594ed9]>*{min-width:0}#app .router-content[data-v-7d594ed9]{flex:1}.container[data-v-1f05d9ec]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:92px;margin-bottom:140px}@media only screen and (max-width:1250px){.container[data-v-1f05d9ec]{width:692px}}@media only screen and (max-width:735px){.container[data-v-1f05d9ec]{width:87.5%}}@media only screen and (max-width:320px){.container[data-v-1f05d9ec]{width:215px}}.error-content[data-v-1f05d9ec]{box-sizing:border-box;width:502px;margin-left:auto;margin-right:auto;margin-bottom:54px}@media only screen and (max-width:1250px){.error-content[data-v-1f05d9ec]{width:420px;margin-bottom:45px}}@media only screen and (max-width:735px){.error-content[data-v-1f05d9ec]{max-width:330px;width:auto;margin-bottom:35px}}.title[data-v-1f05d9ec]{text-align:center;font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-1f05d9ec]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-1f05d9ec]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}} \ No newline at end of file diff --git a/docs/css/jazzy.css b/docs/css/jazzy.css new file mode 100644 index 000000000..2e3871391 --- /dev/null +++ b/docs/css/jazzy.css @@ -0,0 +1,439 @@ +/*! Jazzy - https://github.com/realm/jazzy + * Copyright Realm Inc. + * SPDX-License-Identifier: MIT + */ +html, body, div, span, h1, h3, h4, p, a, code, em, img, ul, li, table, tbody, tr, td { + background: transparent; + border: 0; + margin: 0; + outline: 0; + padding: 0; + vertical-align: baseline; } + +body { + background-color: #f2f2f2; + font-family: Helvetica, freesans, Arial, sans-serif; + font-size: 14px; + -webkit-font-smoothing: subpixel-antialiased; + word-wrap: break-word; } + +h1, h2, h3 { + margin-top: 0.8em; + margin-bottom: 0.3em; + font-weight: 100; + color: black; } + +h1 { + font-size: 2.5em; } + +h2 { + font-size: 2em; + border-bottom: 1px solid #e2e2e2; } + +h4 { + font-size: 13px; + line-height: 1.5; + margin-top: 21px; } + +h5 { + font-size: 1.1em; } + +h6 { + font-size: 1.1em; + color: #777; } + +.section-name { + color: gray; + display: block; + font-family: Helvetica; + font-size: 22px; + font-weight: 100; + margin-bottom: 15px; } + +pre, code { + font: 0.95em Menlo, monospace; + color: #777; + word-wrap: normal; } + +p code, li code { + background-color: #eee; + padding: 2px 4px; + border-radius: 4px; } + +pre > code { + padding: 0; } + +a { + color: #0088cc; + text-decoration: none; } + a code { + color: inherit; } + +ul { + padding-left: 15px; } + +li { + line-height: 1.8em; } + +img { + max-width: 100%; } + +blockquote { + margin-left: 0; + padding: 0 10px; + border-left: 4px solid #ccc; } + +hr { + height: 1px; + border: none; + background-color: #e2e2e2; } + +.footnote-ref { + display: inline-block; + scroll-margin-top: 70px; } + +.footnote-def { + scroll-margin-top: 70px; } + +.content-wrapper { + margin: 0 auto; + width: 980px; } + +header { + font-size: 0.85em; + line-height: 32px; + background-color: #414141; + position: fixed; + width: 100%; + z-index: 3; } + header img { + padding-right: 6px; + vertical-align: -3px; + height: 16px; } + header a { + color: #fff; } + header p { + float: left; + color: #999; } + header .header-right { + float: right; + margin-left: 16px; } + +#breadcrumbs { + background-color: #f2f2f2; + height: 21px; + padding-top: 17px; + position: fixed; + width: 100%; + z-index: 2; + margin-top: 32px; } + #breadcrumbs #carat { + height: 10px; + margin: 0 5px; } + +.sidebar { + background-color: #f9f9f9; + border: 1px solid #e2e2e2; + overflow-y: auto; + overflow-x: hidden; + position: fixed; + top: 70px; + bottom: 0; + width: 230px; + word-wrap: normal; } + +.nav-groups { + list-style-type: none; + background: #fff; + padding-left: 0; } + +.nav-group-name { + border-bottom: 1px solid #e2e2e2; + font-size: 1.1em; + font-weight: 100; + padding: 15px 0 15px 20px; } + .nav-group-name > a { + color: #333; } + +.nav-group-tasks { + margin-top: 5px; } + +.nav-group-task { + font-size: 0.9em; + list-style-type: none; + white-space: nowrap; } + .nav-group-task a { + color: #888; } + +.main-content { + background-color: #fff; + border: 1px solid #e2e2e2; + margin-left: 246px; + position: absolute; + overflow: hidden; + padding-bottom: 20px; + top: 70px; + width: 734px; } + .main-content p, .main-content a, .main-content code, .main-content em, .main-content ul, .main-content table, .main-content blockquote { + margin-bottom: 1em; } + .main-content p { + line-height: 1.8em; } + .main-content section .section:first-child { + margin-top: 0; + padding-top: 0; } + .main-content section .task-group-section .task-group:first-of-type { + padding-top: 10px; } + .main-content section .task-group-section .task-group:first-of-type .section-name { + padding-top: 15px; } + .main-content section .heading:before { + content: ""; + display: block; + padding-top: 70px; + margin: -70px 0 0; } + .main-content .section-name p { + margin-bottom: inherit; + line-height: inherit; } + .main-content .section-name code { + background-color: inherit; + padding: inherit; + color: inherit; } + +.section { + padding: 0 25px; } + +.highlight { + background-color: #eee; + padding: 10px 12px; + border: 1px solid #e2e2e2; + border-radius: 4px; + overflow-x: auto; } + +.declaration .highlight { + overflow-x: initial; + padding: 0 40px 40px 0; + margin-bottom: -25px; + background-color: transparent; + border: none; } + +.section-name { + margin: 0; + margin-left: 18px; } + +.task-group-section { + margin-top: 10px; + padding-left: 6px; + border-top: 1px solid #e2e2e2; } + +.task-group { + padding-top: 0px; } + +.task-name-container a[name]:before { + content: ""; + display: block; + padding-top: 70px; + margin: -70px 0 0; } + +.section-name-container { + position: relative; + display: inline-block; } + .section-name-container .section-name-link { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + margin-bottom: 0; } + .section-name-container .section-name { + position: relative; + pointer-events: none; + z-index: 1; } + .section-name-container .section-name a { + pointer-events: auto; } + +.item { + padding-top: 8px; + width: 100%; + list-style-type: none; } + .item a[name]:before { + content: ""; + display: block; + padding-top: 70px; + margin: -70px 0 0; } + .item code { + background-color: transparent; + padding: 0; } + .item .token, .item .direct-link { + display: inline-block; + text-indent: -20px; + padding-left: 3px; + margin-left: 35px; + font-size: 11.9px; + transition: all 300ms; } + .item .token-open { + margin-left: 20px; } + .item .discouraged { + text-decoration: line-through; } + .item .declaration-note { + font-size: .85em; + color: gray; + font-style: italic; } + +.pointer-container { + border-bottom: 1px solid #e2e2e2; + left: -23px; + padding-bottom: 13px; + position: relative; + width: 110%; } + +.pointer { + background: #f9f9f9; + border-left: 1px solid #e2e2e2; + border-top: 1px solid #e2e2e2; + height: 12px; + left: 21px; + top: -7px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; + width: 12px; } + +.height-container { + display: none; + left: -25px; + padding: 0 25px; + position: relative; + width: 100%; + overflow: hidden; } + .height-container .section { + background: #f9f9f9; + border-bottom: 1px solid #e2e2e2; + left: -25px; + position: relative; + width: 100%; + padding-top: 10px; + padding-bottom: 5px; } + +.aside, .language { + padding: 6px 12px; + margin: 12px 0; + border-left: 5px solid #dddddd; + overflow-y: hidden; } + .aside .aside-title, .language .aside-title { + font-size: 9px; + letter-spacing: 2px; + text-transform: uppercase; + padding-bottom: 0; + margin: 0; + color: #aaa; + -webkit-user-select: none; } + .aside p:last-child, .language p:last-child { + margin-bottom: 0; } + +.language { + border-left: 5px solid #cde9f4; } + .language .aside-title { + color: #4b8afb; } + +.aside-warning, .aside-deprecated, .aside-unavailable { + border-left: 5px solid #ff6666; } + .aside-warning .aside-title, .aside-deprecated .aside-title, .aside-unavailable .aside-title { + color: #ff0000; } + +.graybox { + border-collapse: collapse; + width: 100%; } + .graybox p { + margin: 0; + word-break: break-word; + min-width: 50px; } + .graybox td { + border: 1px solid #e2e2e2; + padding: 5px 25px 5px 10px; + vertical-align: middle; } + .graybox tr td:first-of-type { + text-align: right; + padding: 7px; + vertical-align: top; + word-break: normal; + width: 40px; } + +.slightly-smaller { + font-size: 0.9em; } + +#footer { + position: relative; + top: 10px; + bottom: 0px; + margin-left: 25px; } + #footer p { + margin: 0; + color: #aaa; + font-size: 0.8em; } + +html.dash header, html.dash #breadcrumbs, html.dash .sidebar { + display: none; } + +html.dash .main-content { + width: 980px; + margin-left: 0; + border: none; + width: 100%; + top: 0; + padding-bottom: 0; } + +html.dash .height-container { + display: block; } + +html.dash .item .token { + margin-left: 0; } + +html.dash .content-wrapper { + width: auto; } + +html.dash #footer { + position: static; } + +form[role=search] { + float: right; } + form[role=search] input { + font: Helvetica, freesans, Arial, sans-serif; + margin-top: 6px; + font-size: 13px; + line-height: 20px; + padding: 0px 10px; + border: none; + border-radius: 1em; } + .loading form[role=search] input { + background: white url(../img/spinner.gif) center right 4px no-repeat; } + form[role=search] .tt-menu { + margin: 0; + min-width: 300px; + background: #fff; + color: #333; + border: 1px solid #e2e2e2; + z-index: 4; } + form[role=search] .tt-highlight { + font-weight: bold; } + form[role=search] .tt-suggestion { + font: Helvetica, freesans, Arial, sans-serif; + font-size: 14px; + padding: 0 8px; } + form[role=search] .tt-suggestion span { + display: table-cell; + white-space: nowrap; } + form[role=search] .tt-suggestion .doc-parent-name { + width: 100%; + text-align: right; + font-weight: normal; + font-size: 0.9em; + padding-left: 16px; } + form[role=search] .tt-suggestion:hover, + form[role=search] .tt-suggestion.tt-cursor { + cursor: pointer; + background-color: #4183c4; + color: #fff; } + form[role=search] .tt-suggestion:hover .doc-parent-name, + form[role=search] .tt-suggestion.tt-cursor .doc-parent-name { + color: #fff; } diff --git a/docs/css/topic.d8c126f3.css b/docs/css/topic.d8c126f3.css deleted file mode 100644 index 5d8319bfc..000000000 --- a/docs/css/topic.d8c126f3.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.mobile-dropdown[data-v-154acfbd]{box-sizing:border-box}.nav--in-breakpoint-range .mobile-dropdown[data-v-154acfbd]{padding-left:.23529rem;padding-right:.23529rem}.mobile-dropdown ul[data-v-154acfbd]{list-style:none}.mobile-dropdown .option[data-v-154acfbd]{cursor:pointer;font-size:.70588rem;padding:.5rem 0;display:block;text-decoration:none;color:inherit}.mobile-dropdown .option[data-v-154acfbd]:focus{outline-offset:0}.mobile-dropdown .option.depth1[data-v-154acfbd]{padding-left:.47059rem}.active[data-v-154acfbd],.tutorial.router-link-active[data-v-154acfbd]{font-weight:600}.active[data-v-154acfbd]:focus,.tutorial.router-link-active[data-v-154acfbd]:focus{outline:none}.chapter-list[data-v-154acfbd]:not(:first-child){margin-top:1rem}.chapter-name[data-v-154acfbd],.tutorial[data-v-154acfbd]{padding:.5rem 0;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.section-list[data-v-154acfbd],.tutorial-list[data-v-154acfbd]{padding:0 .58824rem}.chapter-list:last-child .tutorial-list[data-v-154acfbd]:last-child{padding-bottom:10em}.chapter-list[data-v-154acfbd]{display:inline-block}.form-element[data-v-998803d8]{position:relative}.form-dropdown[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;box-sizing:border-box;width:100%;height:3.3em;color:var(--color-dropdown-text);padding:1.11765rem 2.35294rem 0 .94118rem;text-align:left;border:1px solid var(--color-dropdown-border);border-radius:var(--border-radius,4px);background-clip:padding-box;margin-bottom:.82353rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;min-height:32px}.form-dropdown[data-v-998803d8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown.no-eyebrow[data-v-998803d8]{padding-top:0}.form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-text)}.form-dropdown[data-v-998803d8]::-ms-expand{opacity:0}.form-dropdown~.form-icon[data-v-998803d8]{position:absolute;display:block;pointer-events:none;fill:var(--color-figure-gray-tertiary);right:14px;width:13px;height:auto;top:50%;transform:translateY(-50%)}.is-open .form-dropdown~.form-icon[data-v-998803d8]{transform:translateY(-50%) scale(-1)}@media only screen and (max-width:735px){.form-dropdown~.form-icon[data-v-998803d8]{right:14px}}.form-dropdown~.form-label[data-v-998803d8]{font-size:.70588rem;line-height:1.75;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:absolute;top:.47059rem;left:17px;color:var(--color-figure-gray-secondary);pointer-events:none;padding:0;z-index:1}.form-dropdown[data-v-998803d8] option{color:var(--color-dropdown-text)}.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.form-dropdown-selectnone~.form-label[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);top:19px;left:17px;color:var(--color-figure-gray-tertiary)}.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.form-dropdown-selectnone[data-v-998803d8]::-ms-value{display:none}.theme-dark .form-dropdown[data-v-998803d8]{color:var(--color-dropdown-dark-text);background-color:var(--color-dropdown-dark-background);border-color:var(--color-dropdown-dark-border)}.theme-dark .form-dropdown~.form-label[data-v-998803d8]{color:#ccc}.theme-dark .form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-dark-text)}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.theme-dark .form-dropdown-selectnone~.form-label[data-v-998803d8]{color:#b0b0b0}.dropdown-small[data-v-12dd746a]{height:30px;display:flex;align-items:center;position:relative;background:var(--color-fill)}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]{line-height:1.5;font-size:12px;padding-top:0;padding-bottom:0;padding-left:20px;min-height:unset;height:30px;display:flex;align-items:center}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:none;border-color:var(--color-dropdown-border)}.fromkeyboard .dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:0 0 0 2px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown-toggle[data-v-12dd746a]{margin:0}.is-open .form-dropdown-toggle[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;border-bottom:none;padding-bottom:1px}.fromkeyboard .is-open .form-dropdown-toggle[data-v-12dd746a]{box-shadow:1px -1px 0 1px var(--color-focus-color),-1px -1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color)}.form-dropdown-title[data-v-12dd746a]{margin:0;padding:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dropdown-custom[data-v-12dd746a]{border-radius:var(--border-radius,4px)}.dropdown-custom.is-open[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0}.dropdown-custom[data-v-12dd746a] .form-dropdown-content{background:var(--color-fill);position:absolute;right:0;left:0;top:100%;border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px);border:1px solid var(--color-dropdown-border);border-top:none;display:none;overflow-y:auto}.dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{display:block}.fromkeyboard .dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{box-shadow:1px 1px 0 1px var(--color-focus-color),-1px 1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color);border-top-color:transparent}.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 116px - 3.05882rem)}.nav--is-sticking.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 3.05882rem - 72px)}.dropdown-custom[data-v-12dd746a] .options{list-style:none;margin:0;padding:0 0 20px}.dropdown-custom[data-v-12dd746a] .option{cursor:pointer;padding:5px 20px;font-size:12px;line-height:20px;outline:none}.dropdown-custom[data-v-12dd746a] .option:hover{background-color:var(--color-fill-tertiary)}.dropdown-custom[data-v-12dd746a] .option.option-active{font-weight:600}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:hover{background-color:transparent}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:focus{background-color:var(--color-fill-tertiary);outline:none}.tutorial-dropdown[data-v-554d62b6]{grid-column:3}.section-tracker[data-v-554d62b6]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin-left:15px}.tutorial-dropdown[data-v-4bddb6e6]{grid-column:1/2}.tutorial-dropdown .options[data-v-4bddb6e6]{padding-top:1rem;padding-bottom:0}.tutorial-dropdown .option[data-v-4bddb6e6]{padding:5px 20px 5px 30px}.chapter-list[data-v-4bddb6e6]{padding-bottom:20px}.chapter-name[data-v-4bddb6e6]{margin:0 20px 5px 20px;line-height:normal;color:var(--color-figure-gray-secondary)}.chevron-icon[data-v-717bc942]{padding:0;color:var(--color-nav-outlines);grid-column:2;height:20px;width:20px;margin:0 4px}@media only screen and (min-width:768px){.nav[data-v-717bc942] .nav-content{display:grid;grid-template-columns:auto auto 3fr;align-items:center}.nav[data-v-717bc942] .nav-menu{padding:0;grid-column:3/5}.nav[data-v-717bc942] .nav-menu-item{margin:0}}.dropdown-container[data-v-717bc942]{height:3.05882rem;display:grid;grid-template-columns:minmax(230px,285px) auto minmax(230px,1fr);align-items:center}@media only screen and (max-width:1023px){.dropdown-container[data-v-717bc942]{grid-template-columns:minmax(173px,216px) auto minmax(173px,1fr)}}.separator[data-v-717bc942]{height:20px;border-right:1px solid;border-color:var(--color-nav-outlines);margin:0 20px;grid-column:2}.mobile-dropdown-container[data-v-717bc942],.nav--in-breakpoint-range.nav .dropdown-container[data-v-717bc942],.nav--in-breakpoint-range.nav .separator[data-v-717bc942]{display:none}.nav--in-breakpoint-range.nav .mobile-dropdown-container[data-v-717bc942]{display:block}.nav--in-breakpoint-range.nav[data-v-717bc942] .nav-title{grid-area:title}.nav--in-breakpoint-range.nav[data-v-717bc942] .pre-title{display:none}.nav[data-v-717bc942] .nav-title{grid-column:1;width:90%;padding-top:0}.primary-dropdown[data-v-717bc942],.secondary-dropdown[data-v-717bc942]{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-717bc942] .form-dropdown,.primary-dropdown[data-v-717bc942] .form-dropdown:focus,.secondary-dropdown[data-v-717bc942] .form-dropdown,.secondary-dropdown[data-v-717bc942] .form-dropdown:focus{border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-717bc942] .options,.secondary-dropdown[data-v-717bc942] .options{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}[data-v-3cfe1c35] .code-listing+*,[data-v-3cfe1c35] aside+*,[data-v-3cfe1c35] h2+*,[data-v-3cfe1c35] h3+*,[data-v-3cfe1c35] ol+*,[data-v-3cfe1c35] p+*,[data-v-3cfe1c35] ul+*{margin-top:20px}[data-v-3cfe1c35] ol ol,[data-v-3cfe1c35] ol ul,[data-v-3cfe1c35] ul ol,[data-v-3cfe1c35] ul ul{margin-top:0}[data-v-3cfe1c35] h2{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h2{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-3cfe1c35] h2{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] .code-listing{background:var(--color-code-background);border-color:var(--colors-grid,var(--color-grid));border-style:solid;border-width:1px}[data-v-3cfe1c35] .code-listing pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:20px 0}.columns[data-v-30edf911]{display:grid;grid-template-rows:repeat(2,auto)}.columns.cols-2[data-v-30edf911]{gap:20px 8.33333%;grid-template-columns:repeat(2,1fr)}.columns.cols-3[data-v-30edf911]{gap:20px 4.16667%;grid-template-columns:repeat(3,1fr)}.asset[data-v-30edf911]{align-self:end;grid-row:1}.content[data-v-30edf911]{grid-row:2}@media only screen and (max-width:735px){.columns.cols-2[data-v-30edf911],.columns.cols-3[data-v-30edf911]{grid-template-columns:unset}.asset[data-v-30edf911],.content[data-v-30edf911]{grid-row:auto}}.content-and-media[data-v-3fa44f9e]{display:flex}.content-and-media.media-leading[data-v-3fa44f9e]{flex-direction:row-reverse}.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:row}@media only screen and (min-width:736px){.content-and-media[data-v-3fa44f9e]{align-items:center;justify-content:center}}.content[data-v-3fa44f9e]{width:62.5%}.asset[data-v-3fa44f9e]{width:29.16667%}.media-leading .asset[data-v-3fa44f9e]{margin-right:8.33333%}.media-trailing .asset[data-v-3fa44f9e]{margin-left:8.33333%}@media only screen and (max-width:735px){.content-and-media.media-leading[data-v-3fa44f9e],.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:column}.asset[data-v-3fa44f9e],.content[data-v-3fa44f9e]{width:100%}.media-leading .asset[data-v-3fa44f9e],.media-trailing .asset[data-v-3fa44f9e]{margin:20px 0 0 0}}.group[id][data-v-1f2be54b]{margin-top:20px;padding-top:20px}[data-v-1f2be54b] img,[data-v-1f2be54b] video{display:block;margin:0 auto;max-width:100%}.layout+[data-v-4d5a806e]{margin-top:40px}@media only screen and (max-width:735px){.layout[data-v-4d5a806e]:first-child>:not(.group[id]){margin-top:40px}}.body[data-v-6499e2f2]{background:var(--colors-text-background,var(--color-article-body-background));margin-left:auto;margin-right:auto;width:980px;border-radius:10px;transform:translateY(-120px)}@media only screen and (max-width:1250px){.body[data-v-6499e2f2]{width:692px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{width:87.5%}}@media only screen and (max-width:320px){.body[data-v-6499e2f2]{width:215px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{border-radius:0;transform:none}}.body[data-v-6499e2f2]~*{margin-top:-40px}.body-content[data-v-6499e2f2]{padding:40px 8.33333% 80px 8.33333%}@media only screen and (max-width:735px){.body-content[data-v-6499e2f2]{padding:0 0 40px 0}}.call-to-action[data-v-042a0474]{padding:65px 0;background:var(--color-call-to-action-background)}.theme-dark .call-to-action[data-v-042a0474]{--color-call-to-action-background:#424242}.row[data-v-042a0474]{margin-left:auto;margin-right:auto;width:980px;display:flex;align-items:center}@media only screen and (max-width:1250px){.row[data-v-042a0474]{width:692px}}@media only screen and (max-width:735px){.row[data-v-042a0474]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-042a0474]{width:215px}}[data-v-042a0474] img,[data-v-042a0474] video{max-height:560px}h2[data-v-042a0474]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){h2[data-v-042a0474]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){h2[data-v-042a0474]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.label[data-v-042a0474]{display:block;font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:var(--spacing-stacked-margin-small);color:var(--color-eyebrow)}@media only screen and (max-width:735px){.label[data-v-042a0474]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-042a0474]{margin-bottom:1.5rem}.right-column[data-v-042a0474]{margin-left:auto}@media only screen and (max-width:735px){.row[data-v-042a0474]{display:block}.col+.col[data-v-042a0474]{margin-top:40px}}@media only screen and (max-width:735px){.call-to-action[data-v-426a965c]{margin-top:0}}.headline[data-v-d46a1474]{margin-bottom:var(--spacing-stacked-margin-large)}.heading[data-v-d46a1474]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-header-text)}@media only screen and (max-width:1250px){.heading[data-v-d46a1474]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.heading[data-v-d46a1474]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.dark .heading[data-v-d46a1474]{color:#fff}.eyebrow[data-v-d46a1474]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;margin-bottom:var(--spacing-stacked-margin-small);color:var(--color-eyebrow)}@media only screen and (max-width:1250px){.eyebrow[data-v-d46a1474]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.metadata[data-v-94ff76c0]{display:flex}.item[data-v-94ff76c0]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;flex-direction:column;justify-content:flex-end;align-items:center;border-right:1px solid #fff;padding:0 27.5px}@media only screen and (max-width:735px){.item[data-v-94ff76c0]{font-size:.64706rem;line-height:1.63636;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:0 8px}}.item[data-v-94ff76c0]:first-of-type{padding-left:0}.item[data-v-94ff76c0]:last-of-type{border:none}@media only screen and (max-width:735px){.item[data-v-94ff76c0]:last-of-type{padding-right:0}}.content[data-v-94ff76c0]{color:#fff}.icon[data-v-94ff76c0]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.icon[data-v-94ff76c0]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.icon[data-v-94ff76c0]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.small-icon[data-v-94ff76c0]{width:1em;height:1em;margin-left:.2rem}.small-icon.xcode-icon[data-v-94ff76c0]{width:.8em;height:.8em}.content-link[data-v-94ff76c0]{display:flex;align-items:center}a[data-v-94ff76c0]{color:var(--colors-link,var(--color-tutorials-overview-link))}.duration[data-v-94ff76c0]{display:flex;align-items:baseline;font-size:2.35294rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.8rem}@media only screen and (max-width:735px){.duration[data-v-94ff76c0]{font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}}.minutes[data-v-94ff76c0]{display:inline-block;font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}@media only screen and (max-width:735px){.minutes[data-v-94ff76c0]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:.8rem}}.item-large-icon[data-v-94ff76c0]{height:2.3rem;max-width:100%}@media only screen and (max-width:735px){.item-large-icon[data-v-94ff76c0]{height:1.5rem;max-width:100%}}.bottom[data-v-94ff76c0]{margin-top:13px}@media only screen and (max-width:735px){.bottom[data-v-94ff76c0]{margin-top:8px}}.hero[data-v-55543c5a]{color:var(--color-tutorial-hero-text);position:relative}.bg[data-v-55543c5a],.hero[data-v-55543c5a]{background-color:var(--color-tutorial-hero-background)}.bg[data-v-55543c5a]{background-position:top;background-repeat:no-repeat;background-size:cover;content:"";height:100%;left:0;opacity:.3;position:absolute;top:0;width:100%}.row[data-v-55543c5a]{margin-left:auto;margin-right:auto;width:980px;padding:80px 0}@media only screen and (max-width:1250px){.row[data-v-55543c5a]{width:692px}}@media only screen and (max-width:735px){.row[data-v-55543c5a]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-55543c5a]{width:215px}}.col[data-v-55543c5a]{z-index:1}[data-v-55543c5a] .eyebrow{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-hero-eyebrow)}@media only screen and (max-width:1250px){[data-v-55543c5a] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.headline[data-v-55543c5a]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:2rem}@media only screen and (max-width:1250px){.headline[data-v-55543c5a]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.headline[data-v-55543c5a]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.intro[data-v-55543c5a]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.intro[data-v-55543c5a]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content+p[data-v-55543c5a]{margin-top:var(--spacing-stacked-margin-large)}@media only screen and (max-width:735px){.content+p[data-v-55543c5a]{margin-top:8px}}.call-to-action[data-v-55543c5a]{display:flex;align-items:center}.call-to-action .cta-icon[data-v-55543c5a]{margin-left:.4rem;width:1em;height:1em}.metadata[data-v-55543c5a]{margin-top:2rem}.video-asset[data-v-55543c5a]{display:grid;height:100vh;margin:0;place-items:center center}.video-asset[data-v-55543c5a] video{max-width:1280px;min-width:320px;width:100%}@media only screen and (max-width:735px){.headline[data-v-55543c5a]{margin-bottom:19px}}.tutorial-hero[data-v-35a9482f]{margin-bottom:80px}@media only screen and (max-width:735px){.tutorial-hero[data-v-35a9482f]{margin-bottom:0}}.title[data-v-28135d78]{font-size:.70588rem;line-height:1.33333;color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-19ed40e2],.title[data-v-28135d78]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.title[data-v-19ed40e2]{font-size:1.11765rem;line-height:1.21053;color:var(--colors-header-text,var(--color-header-text));margin:25px 0}.question-content[data-v-19ed40e2] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.choices[data-v-19ed40e2]{display:flex;flex-direction:column;padding:0;list-style:none;margin:25px 0}.choice[data-v-19ed40e2]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1;border-radius:var(--border-radius,4px);margin:8px 0;padding:1.5rem 40px;cursor:pointer;background:var(--colors-text-background,var(--color-text-background));display:flex;flex-direction:column;justify-content:center;border-width:1px;border-style:solid;border-color:var(--colors-grid,var(--color-grid));position:relative}.choice[data-v-19ed40e2] img{max-height:23.52941rem}.choice[data-v-19ed40e2]:first-of-type{margin-top:0}.choice[data-v-19ed40e2] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.controls[data-v-19ed40e2]{text-align:center;margin-bottom:40px}.controls .button-cta[data-v-19ed40e2]{margin:.5rem;margin-top:0;padding:.3rem 3rem;min-width:8rem}input[type=radio][data-v-19ed40e2]{position:absolute;width:100%;left:0;height:100%;opacity:0;z-index:-1}.active[data-v-19ed40e2]{border-color:var(--color-tutorial-quiz-border-active);box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.active [data-v-19ed40e2]{color:var(--colors-text,var(--color-text))}.correct[data-v-19ed40e2]{background:var(--color-form-valid-background);border-color:var(--color-form-valid)}.correct .choice-icon[data-v-19ed40e2]{fill:var(--color-form-valid)}.incorrect[data-v-19ed40e2]{background:var(--color-form-error-background);border-color:var(--color-form-error)}.incorrect .choice-icon[data-v-19ed40e2]{fill:var(--color-form-error)}.correct[data-v-19ed40e2],.incorrect[data-v-19ed40e2]{position:relative}.correct .choice-icon[data-v-19ed40e2],.incorrect .choice-icon[data-v-19ed40e2]{position:absolute;top:11px;left:10px;font-size:20px;width:1.05em}.disabled[data-v-19ed40e2]{pointer-events:none}.answer[data-v-19ed40e2]{margin:.5rem 1.5rem .5rem 0;font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.answer[data-v-19ed40e2]:last-of-type{margin-bottom:0}[data-v-19ed40e2] .question>.code-listing{padding:unset;border-radius:0}[data-v-19ed40e2] pre{padding:0}[data-v-19ed40e2] img{display:block;margin-left:auto;margin-right:auto;max-width:100%}.title[data-v-65e3c02c]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-header-text,var(--color-header-text))}@media only screen and (max-width:1250px){.title[data-v-65e3c02c]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-65e3c02c]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title p[data-v-65e3c02c]{color:var(--colors-text,var(--color-text))}.assessments[data-v-65e3c02c]{box-sizing:content-box;padding:0 1rem;background:var(--color-tutorial-assessments-background);margin-left:auto;margin-right:auto;width:980px;margin-bottom:80px}@media only screen and (max-width:1250px){.assessments[data-v-65e3c02c]{width:692px}}@media only screen and (max-width:735px){.assessments[data-v-65e3c02c]{width:87.5%}}@media only screen and (max-width:320px){.assessments[data-v-65e3c02c]{width:215px}}.banner[data-v-65e3c02c]{padding:40px 0;border-bottom:1px solid;margin-bottom:40px;border-color:var(--colors-grid,var(--color-grid));text-align:center}.success[data-v-65e3c02c]{text-align:center;padding-bottom:40px;font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-text))}@media only screen and (max-width:1250px){.success[data-v-65e3c02c]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.success[data-v-65e3c02c]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.assessments-wrapper[data-v-65e3c02c]{padding-top:80px}.assessments-wrapper[data-v-3c94366b]{padding-bottom:40px;padding-top:0}@media only screen and (max-width:735px){.assessments-wrapper[data-v-3c94366b]{padding-top:80px}}.article[data-v-7d4562ea]{background:var(--colors-article-background,var(--color-article-background))}@media only screen and (max-width:735px){.article[data-v-7d4562ea]{background:var(--colors-text-background,var(--color-article-body-background))}}.intro-container[data-v-7f9a8f65]{margin-bottom:80px}.intro[data-v-7f9a8f65]{display:flex;align-items:center}@media only screen and (max-width:735px){.intro[data-v-7f9a8f65]{padding-bottom:0;flex-direction:column}}.intro.ide .media[data-v-7f9a8f65] img{background-color:var(--colors-text-background,var(--color-text-background))}.col.left[data-v-7f9a8f65]{padding-right:40px}@media only screen and (max-width:1250px){.col.left[data-v-7f9a8f65]{padding-right:28px}}@media only screen and (max-width:735px){.col.left[data-v-7f9a8f65]{margin-left:auto;margin-right:auto;width:980px;padding-right:0}}@media only screen and (max-width:735px) and (max-width:1250px){.col.left[data-v-7f9a8f65]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.col.left[data-v-7f9a8f65]{width:87.5%}}@media only screen and (max-width:735px) and (max-width:320px){.col.left[data-v-7f9a8f65]{width:215px}}.col.right[data-v-7f9a8f65]{padding-left:40px}@media only screen and (max-width:1250px){.col.right[data-v-7f9a8f65]{padding-left:28px}}@media only screen and (max-width:735px){.col.right[data-v-7f9a8f65]{padding-left:0}}.content[data-v-7f9a8f65]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.media[data-v-7f9a8f65] img{width:auto;max-height:560px;min-height:18.82353rem;-o-object-fit:scale-down;object-fit:scale-down}@media only screen and (max-width:735px){.media[data-v-7f9a8f65]{margin:0;margin-top:40px}.media[data-v-7f9a8f65] img,.media[data-v-7f9a8f65] video{max-height:80vh}}.media[data-v-7f9a8f65] .asset{padding:0 20px}.headline[data-v-7f9a8f65]{color:var(--colors-header-text,var(--color-header-text))}[data-v-7f9a8f65] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){[data-v-7f9a8f65] .eyebrow{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-7f9a8f65] .eyebrow a{color:inherit}[data-v-7f9a8f65] .heading{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-7f9a8f65] .heading{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-7f9a8f65] .heading{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.expanded-intro[data-v-7f9a8f65]{margin-left:auto;margin-right:auto;width:980px;margin-top:40px}@media only screen and (max-width:1250px){.expanded-intro[data-v-7f9a8f65]{width:692px}}@media only screen and (max-width:735px){.expanded-intro[data-v-7f9a8f65]{width:87.5%}}@media only screen and (max-width:320px){.expanded-intro[data-v-7f9a8f65]{width:215px}}[data-v-7f9a8f65] .cols-2{gap:20px 16.66667%}[data-v-7f9a8f65] .cols-3 .column{gap:20px 12.5%}.code-preview[data-v-4f53426a]{position:sticky;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:var(--background,var(--color-step-background));height:calc(100vh - 3.05882rem)}.code-preview.ide[data-v-4f53426a]{height:100vh}.code-preview[data-v-4f53426a] .code-listing{color:var(--text,var(--color-code-plain))}.code-preview[data-v-4f53426a] .code-listing .code-line-container{padding-right:14px}.code-preview[data-v-4f53426a] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.header[data-v-4f53426a]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:relative;display:flex;justify-content:space-between;align-items:center;width:-webkit-fill-available;width:-moz-available;width:stretch;cursor:pointer;font-weight:600;padding:8px 12px;border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;z-index:1;background:var(--color-runtime-preview-background);color:var(--colors-runtime-preview-text,var(--color-runtime-preview-text))}.header[data-v-4f53426a]:focus{outline-style:none}#app.fromkeyboard .header[data-v-4f53426a]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:rgba(0,0,0,0.4);position:absolute;top:0;right:0;background:var(--color-runtime-preview-background);border-radius:var(--border-radius,4px);margin:1rem;margin-left:0;transition:width .2s ease-in;box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow)}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@supports not ((width:-webkit-fill-available) or (width:-moz-available) or (width:stretch)){.runtime-preview[data-v-4f53426a]{display:flex;flex-direction:column}}.runtime-preview .runtimve-preview__container[data-v-4f53426a]{border-radius:var(--border-radius,4px);overflow:hidden}.runtime-preview-ide[data-v-4f53426a]{top:0}.runtime-preview-ide .runtime-preview-asset[data-v-4f53426a] img{background-color:var(--color-runtime-preview-background)}.runtime-preview.collapsed[data-v-4f53426a]{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);width:102px}.runtime-preview.collapsed .header[data-v-4f53426a]{border-radius:var(--border-radius,4px)}.runtime-preview.disabled[data-v-4f53426a]{box-shadow:0 0 3px 0 transparent}.runtime-preview.disabled .header[data-v-4f53426a]{color:var(--color-runtime-preview-disabled-text);cursor:auto}.runtime-preview-asset[data-v-4f53426a]{border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px)}.runtime-preview-asset[data-v-4f53426a] img{border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.preview-icon[data-v-4f53426a]{height:.8em;width:.8em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.preview-show[data-v-4f53426a]{transform:scale(-1)}[data-v-5ad4e037] pre{padding:10px 0}.toggle-preview[data-v-78763c14]{color:var(--color-runtime-preview-disabled-text);display:flex;align-items:center}a[data-v-78763c14]{color:var(--url,var(--color-link))}.toggle-text[data-v-78763c14]{display:flex;align-items:center}svg.toggle-icon[data-v-78763c14]{width:1em;height:1em;margin-left:.5em}.mobile-code-preview[data-v-1aed4baa]{background-color:var(--background,var(--color-step-background));padding:14px 0}@media only screen and (max-width:735px){.mobile-code-preview[data-v-1aed4baa]{display:flex;flex-direction:column}}.runtime-preview-modal-content[data-v-1aed4baa]{padding:45px 60px 0 60px;min-width:200px}.runtime-preview-modal-content[data-v-1aed4baa] img:not(.file-icon){border-radius:var(--border-radius,4px);box-shadow:0 0 3px rgba(0,0,0,.4);max-height:80vh;width:auto;display:block;margin-bottom:1rem}.runtime-preview-modal-content .runtime-preview-label[data-v-1aed4baa]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-runtime-preview-text);display:block;text-align:center;padding:.5em}[data-v-1aed4baa] .code-listing{color:var(--text,var(--color-code-plain))}[data-v-1aed4baa] .full-code-listing{padding-top:60px;min-height:calc(100vh - 60px)}[data-v-1aed4baa] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.preview-toggle-container[data-v-1aed4baa]{align-self:flex-end;margin-right:20px}.step-container[data-v-eb45ec92]{margin:0}.step-container[data-v-eb45ec92]:not(:last-child){margin-bottom:100px}@media only screen and (max-width:735px){.step-container[data-v-eb45ec92]:not(:last-child){margin-bottom:80px}}.step[data-v-eb45ec92]{position:relative;border-radius:var(--tutorial-step-border-radius,var(--border-radius,4px));padding:1rem 2rem;background-color:var(--color-step-background);overflow:hidden;filter:blur(0)}.step[data-v-eb45ec92]:before{content:"";position:absolute;top:0;left:0;border:1px solid var(--color-step-focused);background-color:var(--color-step-focused);height:calc(100% - 2px);width:4px;opacity:0;transition:opacity .15s ease-in}.step.focused[data-v-eb45ec92],.step[data-v-eb45ec92]:focus{outline:none}.step.focused[data-v-eb45ec92]:before,.step[data-v-eb45ec92]:focus:before{opacity:1}@media only screen and (max-width:735px){.step[data-v-eb45ec92]{padding-left:2rem}.step[data-v-eb45ec92]:before{opacity:1}}.step-label[data-v-eb45ec92]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-step-text));margin-bottom:var(--spacing-stacked-margin-small)}.caption[data-v-eb45ec92]{border-top:1px solid;border-color:var(--color-step-caption);padding:1rem 0 0 0;margin-top:1rem}.media-container[data-v-eb45ec92]{display:none}@media only screen and (max-width:735px){.step[data-v-eb45ec92]{margin:0 .58824rem 1.17647rem .58824rem}.step.focused[data-v-eb45ec92],.step[data-v-eb45ec92]:focus{outline:none}.media-container[data-v-eb45ec92]{display:block;position:relative}.media-container[data-v-eb45ec92] img,.media-container[data-v-eb45ec92] video{max-height:80vh}[data-v-eb45ec92] .asset{padding:0 20px}}.steps[data-v-2786be2a]{position:relative;font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:735px){.steps[data-v-2786be2a]{padding-top:80px}.steps[data-v-2786be2a]:before{position:absolute;top:0;border-top:1px solid var(--color-fill-gray-tertiary);content:"";width:calc(100% - 2.35294rem);margin:0 1.17647rem}}.steps[data-v-2786be2a] aside{background:unset;border:unset;box-shadow:unset;-moz-column-break-inside:unset;break-inside:unset;padding:unset}.steps[data-v-2786be2a] aside .label{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content-container[data-v-2786be2a]{flex:none;margin-right:4.16667%;width:37.5%;margin-top:140px;margin-bottom:94vh}@media only screen and (max-width:735px){.content-container[data-v-2786be2a]{margin-top:0;margin-bottom:0;height:100%;margin-left:0;margin-right:0;position:relative;width:100%}}.asset-container[data-v-2786be2a]{flex:none;height:calc(100vh - 3.05882rem);background-color:var(--background,var(--color-step-background));max-width:921px;width:calc(50vw + 8.33333%);position:sticky;top:3.05882rem;transition:margin .1s ease-in-out}@media only screen and (max-width:767px){.asset-container[data-v-2786be2a]{top:2.82353rem;height:calc(100vh - 2.82353rem)}}.asset-container[data-v-2786be2a]:not(.for-step-code){overflow-y:auto;-webkit-overflow-scrolling:touch}.asset-container.ide[data-v-2786be2a]{height:100vh;top:0}@media only screen and (min-width:736px){.asset-container[data-v-2786be2a]{display:grid}.asset-container>[data-v-2786be2a]{grid-row:1;grid-column:1;height:calc(100vh - 3.05882rem)}.asset-container.ide>[data-v-2786be2a]{height:100vh}}.asset-container .step-asset[data-v-2786be2a]{box-sizing:border-box;padding:0;padding-left:40px;min-height:320px;height:100%}.asset-container .step-asset[data-v-2786be2a],.asset-container .step-asset[data-v-2786be2a] picture{height:100%;display:flex;align-items:center}.asset-container .step-asset[data-v-2786be2a] .video-replay-container{height:100%;display:flex;flex-direction:column;justify-content:center}.asset-container .step-asset[data-v-2786be2a] img,.asset-container .step-asset[data-v-2786be2a] video{width:auto;max-height:calc(100vh - 3.05882rem - 80px);max-width:531.6634px;margin:0}@media only screen and (max-width:1250px){.asset-container .step-asset[data-v-2786be2a] img,.asset-container .step-asset[data-v-2786be2a] video{max-width:363.66436px}}.asset-container .step-asset[data-v-2786be2a] .video-replay-container,.asset-container .step-asset[data-v-2786be2a] img{min-height:320px}.asset-container .step-asset[data-v-2786be2a] .video-replay-container video{min-height:280px}@media only screen and (max-width:735px){.asset-container[data-v-2786be2a]{display:none}}.asset-wrapper[data-v-2786be2a]{width:63.2%;align-self:center;transition:transform .25s ease-out;will-change:transform}.asset-wrapper.ide .step-asset[data-v-2786be2a] img{background-color:var(--background,var(--color-step-background))}[data-v-2786be2a] .runtime-preview-asset{display:grid}[data-v-2786be2a] .runtime-preview-asset>*{grid-row:1;grid-column:1}.interstitial[data-v-2786be2a]{padding:0 2rem}.interstitial[data-v-2786be2a]:not(:first-child){margin-top:5.88235rem}.interstitial[data-v-2786be2a]:not(:last-child){margin-bottom:30px}@media only screen and (max-width:735px){.interstitial[data-v-2786be2a]{margin-left:auto;margin-right:auto;width:980px;padding:0}}@media only screen and (max-width:735px) and (max-width:1250px){.interstitial[data-v-2786be2a]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.interstitial[data-v-2786be2a]{width:87.5%}}@media only screen and (max-width:735px) and (max-width:320px){.interstitial[data-v-2786be2a]{width:215px}}@media only screen and (max-width:735px){.interstitial[data-v-2786be2a]:not(:first-child){margin-top:0}}.fade-enter-active[data-v-2786be2a],.fade-leave-active[data-v-2786be2a]{transition:opacity .3s ease-in-out}.fade-enter[data-v-2786be2a],.fade-leave-to[data-v-2786be2a]{opacity:0}.section[data-v-6b3a0b3a]{padding-top:80px}.sections[data-v-79a75e9e]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.sections[data-v-79a75e9e]{width:692px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{width:87.5%}}@media only screen and (max-width:320px){.sections[data-v-79a75e9e]{width:215px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{margin:0;width:100%}}.tutorial[data-v-611d0574]{background-color:var(--colors-text-background,var(--color-tutorial-background))} \ No newline at end of file diff --git a/docs/css/tutorials-overview.c249c765.css b/docs/css/tutorials-overview.c249c765.css deleted file mode 100644 index 01d1d25c4..000000000 --- a/docs/css/tutorials-overview.c249c765.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.tutorials-navigation-link[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link);transition:color .3s linear}.tutorials-navigation-link[data-v-e9f9b59c]:hover{text-decoration:none;transition:none;color:var(--color-tutorials-overview-navigation-link-hover)}.tutorials-navigation-link.active[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link-active)}.tutorials-navigation-list[data-v-6f2800d1]{list-style-type:none;margin:0}.tutorials-navigation-list li+li[data-v-6f2800d1]:not(.volume--named){margin-top:24px}.tutorials-navigation-list .volume--named+.volume--named[data-v-6f2800d1]{margin-top:12px}.expand-enter-active,.expand-leave-active{transition:height .3s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.toggle[data-v-489416f8]{color:#f0f0f0;line-height:21px;display:flex;align-items:center;width:100%;font-weight:600;padding:6px 6px 6px 0;border-bottom:1px solid #2a2a2a;text-decoration:none;box-sizing:border-box}@media only screen and (max-width:767px){.toggle[data-v-489416f8]{padding-right:6px;border-bottom-color:hsla(0,0%,100%,.1)}}.toggle .text[data-v-489416f8]{word-break:break-word}.toggle[data-v-489416f8]:hover{text-decoration:none}.toggle .toggle-icon[data-v-489416f8]{display:inline-block;transition:transform .2s ease-in;height:.4em;width:.4em;margin-left:auto;margin-right:.2em}.collapsed .toggle .toggle-icon[data-v-489416f8]{transform:rotate(45deg)}.collapsed .toggle[data-v-489416f8],.collapsed .toggle[data-v-489416f8]:hover{color:#b0b0b0}.tutorials-navigation-menu-content[data-v-489416f8]{opacity:1;transition:height .2s ease-in,opacity .2s ease-in}.collapsed .tutorials-navigation-menu-content[data-v-489416f8]{height:0;opacity:0}.tutorials-navigation-menu-content .tutorials-navigation-list[data-v-489416f8]{padding:24px 0 12px 0}.tutorials-navigation[data-v-79093ed6]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.nav[data-v-b806ee20] .nav-menu{padding-top:0}.nav[data-v-b806ee20] .nav-menu .nav-menu-items{margin-left:auto}@media only screen and (min-width:768px){.nav[data-v-b806ee20] .nav-menu .nav-menu-items .in-page-navigation{display:none}}@media only screen and (min-width:320px) and (max-width:735px){.nav[data-v-b806ee20] .nav-menu .nav-menu-items{padding:18px 0 40px}}.hero[data-v-383dab71]{margin-left:auto;margin-right:auto;width:980px;padding-bottom:4.70588rem;padding-top:4.70588rem}@media only screen and (max-width:1250px){.hero[data-v-383dab71]{width:692px}}@media only screen and (max-width:735px){.hero[data-v-383dab71]{width:87.5%}}@media only screen and (max-width:320px){.hero[data-v-383dab71]{width:215px}}.copy-container[data-v-383dab71]{margin:0 auto;text-align:center;width:720px}.title[data-v-383dab71]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:1250px){.title[data-v-383dab71]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-383dab71]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-383dab71]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:735px){.content[data-v-383dab71]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.meta[data-v-383dab71]{color:var(--color-tutorials-overview-content-alt);align-items:center;display:flex;justify-content:center}.meta-content[data-v-383dab71]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.meta .timer-icon[data-v-383dab71]{margin-right:.35294rem;height:16px;width:16px;fill:var(--color-tutorials-overview-icon)}@media only screen and (max-width:735px){.meta .timer-icon[data-v-383dab71]{margin-right:.29412rem;height:.82353rem;width:.82353rem}}.meta .time[data-v-383dab71]{font-size:1.11765rem;line-height:1.21053;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.meta .time[data-v-383dab71]{font-size:1rem;line-height:1.11765;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.content[data-v-383dab71]{margin-top:1.47059rem}.content+.meta[data-v-383dab71]{margin-top:1.17647rem}.button-cta[data-v-383dab71]{margin-top:1.76471rem}*+.asset[data-v-383dab71]{margin-top:4.11765rem}@media only screen and (max-width:1250px){.copy-container[data-v-383dab71]{width:636px}}@media only screen and (max-width:735px){.hero[data-v-383dab71]{padding-bottom:1.76471rem;padding-top:2.35294rem}.copy-container[data-v-383dab71]{width:100%}.title+.content[data-v-383dab71]{margin-top:.88235rem}.button-cta[data-v-383dab71]{margin-top:1.41176rem}*+.asset[data-v-383dab71]{margin-top:2.23529rem}}.image[data-v-569db166]{margin-bottom:10px}.name[data-v-569db166]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0);word-break:break-word}@media only screen and (max-width:1250px){.name[data-v-569db166]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.name[data-v-569db166]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-569db166]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);margin-top:10px}.volume-name[data-v-569db166]{padding:50px 60px;text-align:center;background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0}@media only screen and (max-width:735px){.volume-name[data-v-569db166]{padding:40px 20px}}.document-icon[data-v-3a80772b]{margin-left:-3px}.tile[data-v-96abac22]{background:var(--color-tutorials-overview-fill-secondary,#161616);padding:40px 30px;color:var(--color-tutorials-overview-content-alt)}.content[data-v-96abac22] a,a[data-v-96abac22]{color:var(--colors-link,var(--color-tutorials-overview-link))}.icon[data-v-96abac22]{display:block;height:1.47059rem;line-height:1.47059rem;margin-bottom:.58824rem;width:1.47059rem}.icon[data-v-96abac22] svg.svg-icon{width:100%;max-height:100%;fill:var(--color-tutorials-overview-icon)}.icon[data-v-96abac22] svg.svg-icon .svg-icon-stroke{stroke:var(--color-tutorials-overview-content-alt)}.title[data-v-96abac22]{font-size:1.23529rem;line-height:1.19048;font-weight:600;margin-bottom:.8em}.content[data-v-96abac22],.link[data-v-96abac22],.title[data-v-96abac22]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-96abac22],.link[data-v-96abac22]{font-size:.82353rem;line-height:1.42857;font-weight:400}.content[data-v-96abac22]{color:var(--color-tutorials-overview-content-alt)}.link[data-v-96abac22]{display:block;margin-top:1.17647rem}.link .link-icon[data-v-96abac22]{margin-left:.2em;width:.6em;height:.6em}[data-v-96abac22] .content ul{list-style-type:none;margin-left:0;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-96abac22] .content ul li:before{content:"\200B";position:absolute}[data-v-96abac22] .content li+li{margin-top:8px}@media only screen and (max-width:735px){.tile[data-v-96abac22]{padding:1.76471rem 1.17647rem}}.tile-group[data-v-015f9f13]{display:grid;grid-column-gap:2px;grid-row-gap:2px}.tile-group.count-1[data-v-015f9f13]{grid-template-columns:1fr;text-align:center}.tile-group.count-1[data-v-015f9f13] .icon{margin-left:auto;margin-right:auto}.tile-group.count-2[data-v-015f9f13]{grid-template-columns:repeat(2,1fr)}.tile-group.count-3[data-v-015f9f13]{grid-template-columns:repeat(3,1fr)}.tile-group.count-4[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5[data-v-015f9f13]{grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5 .tile[data-v-015f9f13]{grid-column-end:span 2}.tile-group.count-5 .tile[data-v-015f9f13]:nth-of-type(-n+2){grid-column-end:span 3}.tile-group.count-6[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,auto)}@media only screen and (min-width:768px) and (max-width:1250px){.tile-group.tile-group[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}@media only screen and (max-width:735px){.tile-group.count-1[data-v-015f9f13],.tile-group.count-2[data-v-015f9f13],.tile-group.count-3[data-v-015f9f13],.tile-group.count-4[data-v-015f9f13],.tile-group.count-5[data-v-015f9f13],.tile-group.count-6[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}.title[data-v-7f8022c1]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#f0f0f0}@media only screen and (max-width:1250px){.title[data-v-7f8022c1]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-7f8022c1]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-7f8022c1]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#b0b0b0;margin-top:10px}.topic-list[data-v-45ec37c5]{list-style-type:none;margin:50px 0 0 0;position:relative}.topic-list li[data-v-45ec37c5]:before{content:"\200B";position:absolute}.topic-list[data-v-45ec37c5]:before{content:"";border-left:1px solid var(--color-fill-quaternary);display:block;height:calc(100% - .88235rem);left:.88235rem;position:absolute;top:50%;transform:translateY(-50%);width:0}.topic[data-v-45ec37c5]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:flex-start}@media only screen and (max-width:735px){.topic[data-v-45ec37c5]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.topic+.topic[data-v-45ec37c5]{margin-top:.58824rem}.topic .topic-icon[data-v-45ec37c5]{background-color:var(--color-fill-quaternary);border-radius:50%;flex-shrink:0;height:1.76471rem;width:1.76471rem;margin-right:1.17647rem;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:.47059rem;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.topic .topic-icon svg[data-v-45ec37c5]{fill:var(--color-tutorials-overview-icon);max-width:100%;max-height:100%;width:100%}.container[data-v-45ec37c5]{align-items:baseline;display:flex;justify-content:space-between;width:100%;padding-top:.11765rem}.container[data-v-45ec37c5]:hover{text-decoration:none}.container:hover .link[data-v-45ec37c5]{text-decoration:underline}.timer-icon[data-v-45ec37c5]{margin-right:.29412rem;height:.70588rem;width:.70588rem;fill:var(--color-tutorials-overview-icon)}.time[data-v-45ec37c5]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);align-items:center;display:inline-flex}.link[data-v-45ec37c5]{padding-right:.58824rem;color:var(--colors-link,var(--color-tutorials-overview-link))}@media only screen and (min-width:768px) and (max-width:1250px){.topic-list[data-v-45ec37c5]{margin-top:2.35294rem}}@media only screen and (max-width:735px){.topic-list[data-v-45ec37c5]{margin-top:1.76471rem}.topic[data-v-45ec37c5]{height:auto;align-items:flex-start}.topic.no-time-estimate[data-v-45ec37c5]{align-items:center}.topic.no-time-estimate .topic-icon[data-v-45ec37c5]{align-self:flex-start;top:0}.topic+.topic[data-v-45ec37c5]{margin-top:1.17647rem}.topic .topic-icon[data-v-45ec37c5]{top:.29412rem;margin-right:.76471rem}.container[data-v-45ec37c5]{flex-wrap:wrap;padding-top:0}.link[data-v-45ec37c5],.time[data-v-45ec37c5]{flex-basis:100%}.time[data-v-45ec37c5]{margin-top:.29412rem}}.chapter[data-v-7468bc5e]:focus{outline:none!important}.info[data-v-7468bc5e]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.name[data-v-7468bc5e]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0)}.name-text[data-v-7468bc5e]{word-break:break-word}.eyebrow[data-v-7468bc5e]{font-size:1rem;line-height:1.23529;font-weight:400;color:var(--color-tutorials-overview-eyebrow);display:block;font-weight:600;margin-bottom:5px}.content[data-v-7468bc5e],.eyebrow[data-v-7468bc5e]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-7468bc5e]{font-size:.82353rem;line-height:1.42857;font-weight:400;color:var(--color-tutorials-overview-content-alt)}.asset[data-v-7468bc5e]{flex:0 0 190px}.intro[data-v-7468bc5e]{flex:0 1 360px}@media only screen and (min-width:768px) and (max-width:1250px){.asset[data-v-7468bc5e]{flex:0 0 130px}.intro[data-v-7468bc5e]{flex:0 1 260px}}@media only screen and (max-width:767px){.intro[data-v-7468bc5e]{flex:0 1 340px}}@media only screen and (max-width:735px){.info[data-v-7468bc5e]{display:block;text-align:center}.asset[data-v-7468bc5e]{margin:0 45px}.eyebrow[data-v-7468bc5e]{margin-bottom:7px}.intro[data-v-7468bc5e]{margin-top:40px}}.tile[data-v-540dbf10]{background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0;padding:50px 60px}.asset[data-v-540dbf10]{margin-bottom:10px}@media only screen and (min-width:768px) and (max-width:1250px){.tile[data-v-540dbf10]{padding:40px 30px}}@media only screen and (max-width:735px){.volume[data-v-540dbf10]{border-radius:0}.tile[data-v-540dbf10]{padding:40px 20px}}.learning-path[data-v-69a72bbc]{background:var(--color-tutorials-overview-fill,#000);padding:4.70588rem 0}.main-container[data-v-69a72bbc]{margin-left:auto;margin-right:auto;width:980px;align-items:stretch;display:flex;justify-content:space-between}@media only screen and (max-width:1250px){.main-container[data-v-69a72bbc]{width:692px}}@media only screen and (max-width:735px){.main-container[data-v-69a72bbc]{width:87.5%}}@media only screen and (max-width:320px){.main-container[data-v-69a72bbc]{width:215px}}.ide .main-container[data-v-69a72bbc]{justify-content:center}.secondary-content-container[data-v-69a72bbc]{flex:0 0 200px;width:200px}.tutorials-navigation[data-v-69a72bbc]{position:sticky;top:7.76471rem}.primary-content-container[data-v-69a72bbc]{flex:0 1 720px;max-width:100%}.content-sections-container .content-section[data-v-69a72bbc]{border-radius:12px;overflow:hidden}.content-sections-container .content-section+.content-section[data-v-69a72bbc]{margin-top:1.17647rem}@media only screen and (min-width:768px) and (max-width:1250px){.learning-path[data-v-69a72bbc]{padding:2.35294rem 0}.primary-content-container[data-v-69a72bbc]{flex-basis:auto;margin-left:1.29412rem}.secondary-content-container[data-v-69a72bbc]{flex:0 0 180px;width:180px}}@media only screen and (max-width:767px){.secondary-content-container[data-v-69a72bbc]{display:none}}@media only screen and (max-width:735px){.content-sections-container .content-section[data-v-69a72bbc]{border-radius:0}.content-sections-container .content-section.volume[data-v-69a72bbc]{margin-top:1.17647rem}.learning-path[data-v-69a72bbc]{padding:0}.main-container[data-v-69a72bbc]{width:100%}}.tutorials-overview[data-v-29ed9b58]{height:100%}.tutorials-overview .radial-gradient[data-v-29ed9b58]{margin-top:-3.05882rem;padding-top:3.05882rem;background:var(--color-tutorials-overview-fill-secondary,var(--color-tutorials-overview-background))}@media only screen and (max-width:735px){.tutorials-overview .radial-gradient[data-v-29ed9b58]{margin-top:-2.82353rem;padding-top:2.82353rem}}@-moz-document url-prefix(){.tutorials-overview .radial-gradient{background:#111!important}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit.json b/docs/data/documentation/haishinkit.json deleted file mode 100644 index b759d8e74..000000000 --- a/docs/data/documentation/haishinkit.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit","interfaceLanguage":"swift"},"topicSections":[{"title":"Classes","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect"]},{"title":"Protocols","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate"]},{"title":"Structures","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]},{"title":"Variables","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/kASUndefined"]},{"title":"Type Aliases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AVCodecDelegate"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding"]},{"title":"Extended Modules","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes"]}],"kind":"symbol","metadata":{"roleHeading":"Framework","externalID":"HaishinKit","title":"HaishinKit","symbolKind":"module","role":"collection","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[[]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ASXML":{"role":"symbol","title":"ASXML","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXML"}],"url":"\/documentation\/haishinkit\/asxml"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit":{"role":"symbol","title":"IOVideoCaptureUnit","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}],"url":"\/documentation\/haishinkit\/iovideocaptureunit"},"doc://HaishinKit/documentation/HaishinKit/ASUndefined":{"role":"symbol","title":"ASUndefined","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASUndefined"}],"abstract":[{"type":"text","text":"The ASUndefined class represents an undefined for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASUndefined"}],"url":"\/documentation\/haishinkit\/asundefined"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate":{"role":"symbol","title":"TSReaderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReaderDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReaderDelegate"}],"url":"\/documentation\/haishinkit\/tsreaderdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate":{"role":"symbol","title":"IORecorderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorderDelegate"}],"abstract":[{"type":"text","text":"The interface an IORecorder uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorderDelegate"}],"url":"\/documentation\/haishinkit\/iorecorderdelegate"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit":{"role":"symbol","title":"IOScreenCaptureUnit","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunit"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate":{"role":"symbol","title":"IOScreenCaptureUnitDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate"},"doc://HaishinKit/documentation/HaishinKit/AudioEffect":{"role":"symbol","title":"AudioEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioEffect"}],"abstract":[{"type":"text","text":"An object that apply an audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioEffect"}],"url":"\/documentation\/haishinkit\/audioeffect"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect":{"role":"symbol","title":"VideoEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"abstract":[{"type":"text","text":"An object that apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoEffect"}],"url":"\/documentation\/haishinkit\/videoeffect"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit/RTMPResponder":{"role":"symbol","title":"RTMPResponder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPResponder"}],"abstract":[{"type":"text","text":"The RTMPResponder class provides to use handle RTMPConnection’s callback."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPResponder"}],"url":"\/documentation\/haishinkit\/rtmpresponder"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/HLSService":{"role":"symbol","title":"HLSService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HLSService"}],"url":"\/documentation\/haishinkit\/hlsservice"},"doc://HaishinKit/documentation/HaishinKit/AVCodecDelegate":{"role":"symbol","title":"AVCodecDelegate","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"AVCodecDelegate"}],"abstract":[{"type":"text","text":"A type that can delegate itself to AudioCodec or VideoCodec."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AVCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AVCodecDelegate"}],"url":"\/documentation\/haishinkit\/avcodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument":{"role":"symbol","title":"ASXMLDocument","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}],"url":"\/documentation\/haishinkit\/asxmldocument"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder":{"role":"symbol","title":"InstanceHolder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"}],"abstract":[{"type":"text","text":"The InstanceHolder class provides a shared instance memory management."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstanceHolder"}],"url":"\/documentation\/haishinkit\/instanceholder"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse":{"role":"symbol","title":"HTTPResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"abstract":[{"type":"text","text":"A URL load response."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}],"url":"\/documentation\/haishinkit\/httpresponse"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/DeviceUtil":{"role":"symbol","title":"DeviceUtil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceUtil"}],"abstract":[{"type":"text","text":"The namespace of DeviceUtil."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceUtil"}],"url":"\/documentation\/haishinkit\/deviceutil"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes":{"role":"collection","title":"CoreAudioTypes","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes"},"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/kASUndefined":{"role":"symbol","title":"kASUndefined","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"kASUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ASUndefined","preciseIdentifier":"s:10HaishinKit11ASUndefinedV"}],"abstract":[{"type":"text","text":"The singleton ASUndefined object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/kASUndefined","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/kasundefined"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate":{"role":"symbol","title":"TSWriterDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriterDelegate"}],"url":"\/documentation\/haishinkit\/tswriterdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject":{"role":"symbol","title":"ASTypedObject","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"abstract":[{"type":"text","text":"The ASTypedObject class represents a typed object for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASTypedObject"}],"url":"\/documentation\/haishinkit\/astypedobject"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate":{"role":"symbol","title":"RTMPConnectionDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"}],"abstract":[{"type":"text","text":"The interface a RTMPConnectionDelegate uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnectionDelegate"}],"url":"\/documentation\/haishinkit\/rtmpconnectiondelegate"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/ASObject":{"role":"symbol","title":"ASObject","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASObject"}],"abstract":[{"type":"text","text":"The ASObject class represents an object for AcrionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASObject"}],"url":"\/documentation\/haishinkit\/asobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray.json b/docs/data/documentation/haishinkit/asarray.json deleted file mode 100644 index 142546afd..000000000 --- a/docs/data/documentation/haishinkit/asarray.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/s25ExpressibleByArrayLiteralP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"title":"ASArray","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit7ASArrayV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ASArray"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(count:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(data:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/length"]},{"title":"Subscripts","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/subscript(_:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/CustomDebugStringConvertible-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/ExpressibleByArrayLiteral-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray/length":{"role":"symbol","title":"length","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The length of an array."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/length","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/length"},"doc://HaishinKit/documentation/HaishinKit/ASArray/init(count:)":{"role":"symbol","title":"init(count:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new instance containing the specified number of a single."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(count:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/init(count:)"},"doc://HaishinKit/documentation/HaishinKit/ASArray/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asarray\/equatable-implementations"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/s25ExpressibleByArrayLiteralP":{"type":"unresolvable","title":"Swift.ExpressibleByArrayLiteral","identifier":"doc:\/\/HaishinKit\/s25ExpressibleByArrayLiteralP"},"doc://HaishinKit/documentation/HaishinKit/ASArray/subscript(_:)":{"role":"symbol","title":"subscript(_:)","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Accesses the element at the specified position."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/subscript(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/subscript(_:)"},"doc://HaishinKit/documentation/HaishinKit/ASArray/ExpressibleByArrayLiteral-Implementations":{"role":"collectionGroup","title":"ExpressibleByArrayLiteral Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/ExpressibleByArrayLiteral-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asarray\/expressiblebyarrayliteral-implementations"},"doc://HaishinKit/documentation/HaishinKit/ASArray/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asarray\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASArray/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?])"}],"abstract":[{"type":"text","text":"Creates a new instance of data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/init(data:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/!=(_:_:).json b/docs/data/documentation/haishinkit/asarray/!=(_:_:).json deleted file mode 100644 index 2776cfda1..000000000 --- a/docs/data/documentation/haishinkit/asarray/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit7ASArrayV","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ASArray/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asarray\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/==(_:_:).json b/docs/data/documentation/haishinkit/asarray/==(_:_:).json deleted file mode 100644 index bce98c10b..000000000 --- a/docs/data/documentation/haishinkit/asarray/==(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV","text":"ASArray"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV","text":"ASArray"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"==(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:10HaishinKit7ASArrayV2eeoiySbAC_ACtFZ","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ASArray/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asarray\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/customdebugstringconvertible-implementations.json b/docs/data/documentation/haishinkit/asarray/customdebugstringconvertible-implementations.json deleted file mode 100644 index 74be2d529..000000000 --- a/docs/data/documentation/haishinkit/asarray/customdebugstringconvertible-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/customdebugstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/CustomDebugStringConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/debugDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit/ASArray/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/debugdescription.json b/docs/data/documentation/haishinkit/asarray/debugdescription.json deleted file mode 100644 index 6e8313591..000000000 --- a/docs/data/documentation/haishinkit/asarray/debugdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/debugdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/debugDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomDebugStringConvertible.debugDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"debugDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:10HaishinKit7ASArrayV16debugDescriptionSSvp","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/CustomDebugStringConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit/ASArray/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit/ASArray/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asarray\/customdebugstringconvertible-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/equatable-implementations.json b/docs/data/documentation/haishinkit/asarray/equatable-implementations.json deleted file mode 100644 index b73909203..000000000 --- a/docs/data/documentation/haishinkit/asarray/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/!=(_:_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/==(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASArray","preciseIdentifier":"s:10HaishinKit7ASArrayV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ASArray/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/expressiblebyarrayliteral-implementations.json b/docs/data/documentation/haishinkit/asarray/expressiblebyarrayliteral-implementations.json deleted file mode 100644 index 95ce450ba..000000000 --- a/docs/data/documentation/haishinkit/asarray/expressiblebyarrayliteral-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/expressiblebyarrayliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/ExpressibleByArrayLiteral-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(arrayLiteral:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"ExpressibleByArrayLiteral Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASArray/init(arrayLiteral:)":{"role":"symbol","title":"init(arrayLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arrayLiteral"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(arrayLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/init(arrayliteral:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/init(arrayliteral:).json b/docs/data/documentation/haishinkit/asarray/init(arrayliteral:).json deleted file mode 100644 index 876be303b..000000000 --- a/docs/data/documentation/haishinkit/asarray/init(arrayliteral:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arrayLiteral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"elements"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/init(arrayliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(arrayLiteral:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"ExpressibleByArrayLiteral.init(arrayLiteral:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"init(arrayLiteral:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arrayLiteral"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"symbolKind":"init","externalID":"s:10HaishinKit7ASArrayV12arrayLiteralACypSgd_tcfc","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/ExpressibleByArrayLiteral-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit/ASArray/ExpressibleByArrayLiteral-Implementations":{"role":"collectionGroup","title":"ExpressibleByArrayLiteral Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/ExpressibleByArrayLiteral-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asarray\/expressiblebyarrayliteral-implementations"},"doc://HaishinKit/documentation/HaishinKit/ASArray/init(arrayLiteral:)":{"role":"symbol","title":"init(arrayLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"arrayLiteral"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(arrayLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/init(arrayliteral:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/init(count:).json b/docs/data/documentation/haishinkit/asarray/init(count:).json deleted file mode 100644 index db11c9762..000000000 --- a/docs/data/documentation/haishinkit/asarray/init(count:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/init(count:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(count:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new instance containing the specified number of a single."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"title":"init(count:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit7ASArrayV5countACSi_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit/ASArray/init(count:)":{"role":"symbol","title":"init(count:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new instance containing the specified number of a single."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(count:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/init(count:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/init(data:).json b/docs/data/documentation/haishinkit/asarray/init(data:).json deleted file mode 100644 index 8b7e2f142..000000000 --- a/docs/data/documentation/haishinkit/asarray/init(data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/init(data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new instance of data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?])"}],"title":"init(data:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit7ASArrayV4dataACSayypSgG_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASArray/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?])"}],"abstract":[{"type":"text","text":"Creates a new instance of data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/init(data:)"},"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/length.json b/docs/data/documentation/haishinkit/asarray/length.json deleted file mode 100644 index 22979665f..000000000 --- a/docs/data/documentation/haishinkit/asarray/length.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/length"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/length","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The length of an array."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"length","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7ASArrayV6lengthSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit/ASArray/length":{"role":"symbol","title":"length","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The length of an array."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/length","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/length"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asarray/subscript(_:).json b/docs/data/documentation/haishinkit/asarray/subscript(_:).json deleted file mode 100644 index 1a6a520ac..000000000 --- a/docs/data/documentation/haishinkit/asarray/subscript(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"internalParam","text":"i"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asarray\/subscript(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/subscript(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Accesses the element at the specified position."}],"kind":"symbol","metadata":{"role":"symbol","title":"subscript(_:)","roleHeading":"Instance Subscript","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"symbolKind":"subscript","externalID":"s:10HaishinKit7ASArrayVyypSgypcip","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASArray":{"role":"symbol","title":"ASArray","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASArray"}],"abstract":[{"type":"text","text":"The ASArray class represents an array value for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASArray"}],"url":"\/documentation\/haishinkit\/asarray"},"doc://HaishinKit/documentation/HaishinKit/ASArray/subscript(_:)":{"role":"symbol","title":"subscript(_:)","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Accesses the element at the specified position."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASArray\/subscript(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asarray\/subscript(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asobject.json b/docs/data/documentation/haishinkit/asobject.json deleted file mode 100644 index e073337ae..000000000 --- a/docs/data/documentation/haishinkit/asobject.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASObject"},{"kind":"text","text":" = ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asobject"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The ASObject class represents an object for AcrionScript."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASObject"}],"title":"ASObject","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:10HaishinKit8ASObjecta","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ASObject"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASObject":{"role":"symbol","title":"ASObject","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASObject"}],"abstract":[{"type":"text","text":"The ASObject class represents an object for AcrionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASObject"}],"url":"\/documentation\/haishinkit\/asobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/astypedobject.json b/docs/data/documentation/haishinkit/astypedobject.json deleted file mode 100644 index 0abff205c..000000000 --- a/docs/data/documentation/haishinkit/astypedobject.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/astypedobject"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The ASTypedObject class represents a typed object for ActionScript."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"title":"ASTypedObject","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit13ASTypedObjectV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ASTypedObject"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Type Aliases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/TypedObjectDecoder"]},{"title":"Type Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(type:named:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(typeNamed:decoder:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/unregister(typeNamed:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/unregister(typeNamed:)":{"role":"symbol","title":"unregister(typeNamed:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregister"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/unregister(typeNamed:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/astypedobject\/unregister(typenamed:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject":{"role":"symbol","title":"ASTypedObject","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"abstract":[{"type":"text","text":"The ASTypedObject class represents a typed object for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASTypedObject"}],"url":"\/documentation\/haishinkit\/astypedobject"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/register(type:named:)":{"role":"symbol","title":"register(type:named:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"named"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(type:named:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/astypedobject\/register(type:named:)"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/TypedObjectDecoder":{"role":"symbol","title":"ASTypedObject.TypedObjectDecoder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypedObjectDecoder"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/TypedObjectDecoder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypedObjectDecoder"}],"url":"\/documentation\/haishinkit\/astypedobject\/typedobjectdecoder"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/register(typeNamed:decoder:)":{"role":"symbol","title":"register(typeNamed:decoder:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ASTypedObject","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TypedObjectDecoder","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV05TypedD7Decodera"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(typeNamed:decoder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/astypedobject\/register(typenamed:decoder:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/astypedobject/register(type:named:).json b/docs/data/documentation/haishinkit/astypedobject/register(type:named:).json deleted file mode 100644 index 2b7836d13..000000000 --- a/docs/data/documentation/haishinkit/astypedobject/register(type:named:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"named"},{"kind":"text","text":" "},{"kind":"internalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Decodable","preciseIdentifier":"s:Se"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/astypedobject\/register(type:named:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(type:named:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"named"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"register(type:named:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit13ASTypedObjectV8register4type5namedyxm_SStSeRzlFZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject":{"role":"symbol","title":"ASTypedObject","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"abstract":[{"type":"text","text":"The ASTypedObject class represents a typed object for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASTypedObject"}],"url":"\/documentation\/haishinkit\/astypedobject"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/register(type:named:)":{"role":"symbol","title":"register(type:named:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"named"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(type:named:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/astypedobject\/register(type:named:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/astypedobject/register(typenamed:decoder:).json b/docs/data/documentation/haishinkit/astypedobject/register(typenamed:decoder:).json deleted file mode 100644 index 060d7326d..000000000 --- a/docs/data/documentation/haishinkit/astypedobject/register(typenamed:decoder:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":" "},{"kind":"internalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV","text":"ASTypedObject"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/TypedObjectDecoder","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV05TypedD7Decodera","text":"TypedObjectDecoder"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/astypedobject\/register(typenamed:decoder:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(typeNamed:decoder:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ASTypedObject","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TypedObjectDecoder","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV05TypedD7Decodera"},{"kind":"text","text":")"}],"title":"register(typeNamed:decoder:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit13ASTypedObjectV8register9typeNamed7decoderySS_ypSS_SDySSypSgGtKctFZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/TypedObjectDecoder":{"role":"symbol","title":"ASTypedObject.TypedObjectDecoder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypedObjectDecoder"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/TypedObjectDecoder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypedObjectDecoder"}],"url":"\/documentation\/haishinkit\/astypedobject\/typedobjectdecoder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/register(typeNamed:decoder:)":{"role":"symbol","title":"register(typeNamed:decoder:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"register"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ASTypedObject","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TypedObjectDecoder","preciseIdentifier":"s:10HaishinKit13ASTypedObjectV05TypedD7Decodera"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/register(typeNamed:decoder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/astypedobject\/register(typenamed:decoder:)"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject":{"role":"symbol","title":"ASTypedObject","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"abstract":[{"type":"text","text":"The ASTypedObject class represents a typed object for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASTypedObject"}],"url":"\/documentation\/haishinkit\/astypedobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/astypedobject/typedobjectdecoder.json b/docs/data/documentation/haishinkit/astypedobject/typedobjectdecoder.json deleted file mode 100644 index 164acec90..000000000 --- a/docs/data/documentation/haishinkit/astypedobject/typedobjectdecoder.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypedObjectDecoder"},{"kind":"text","text":" = ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","preciseIdentifier":"s:10HaishinKit8ASObjecta","text":"ASObject"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"keyword","text":"Any"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/astypedobject\/typedobjectdecoder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/TypedObjectDecoder","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypedObjectDecoder"}],"title":"ASTypedObject.TypedObjectDecoder","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:10HaishinKit13ASTypedObjectV05TypedD7Decodera","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"TypedObjectDecoder"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASObject":{"role":"symbol","title":"ASObject","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASObject"}],"abstract":[{"type":"text","text":"The ASObject class represents an object for AcrionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASObject"}],"url":"\/documentation\/haishinkit\/asobject"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/TypedObjectDecoder":{"role":"symbol","title":"ASTypedObject.TypedObjectDecoder","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"TypedObjectDecoder"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/TypedObjectDecoder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TypedObjectDecoder"}],"url":"\/documentation\/haishinkit\/astypedobject\/typedobjectdecoder"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject":{"role":"symbol","title":"ASTypedObject","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"abstract":[{"type":"text","text":"The ASTypedObject class represents a typed object for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASTypedObject"}],"url":"\/documentation\/haishinkit\/astypedobject"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/astypedobject/unregister(typenamed:).json b/docs/data/documentation/haishinkit/astypedobject/unregister(typenamed:).json deleted file mode 100644 index 3a6df29c1..000000000 --- a/docs/data/documentation/haishinkit/astypedobject/unregister(typenamed:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregister"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":" "},{"kind":"internalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/astypedobject\/unregister(typenamed:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/unregister(typeNamed:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregister"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"unregister(typeNamed:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit13ASTypedObjectV10unregister9typeNamedySS_tFZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject":{"role":"symbol","title":"ASTypedObject","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASTypedObject"}],"abstract":[{"type":"text","text":"The ASTypedObject class represents a typed object for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASTypedObject"}],"url":"\/documentation\/haishinkit\/astypedobject"},"doc://HaishinKit/documentation/HaishinKit/ASTypedObject/unregister(typeNamed:)":{"role":"symbol","title":"unregister(typeNamed:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregister"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typeNamed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASTypedObject\/unregister(typeNamed:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/astypedobject\/unregister(typenamed:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asundefined.json b/docs/data/documentation/haishinkit/asundefined.json deleted file mode 100644 index 61401b704..000000000 --- a/docs/data/documentation/haishinkit/asundefined.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASUndefined"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asundefined"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s23CustomStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The ASUndefined class represents an undefined for ActionScript."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASUndefined"}],"title":"ASUndefined","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit11ASUndefinedV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ASUndefined"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined\/description"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/ASUndefined/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined\/description","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asundefined\/description"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASUndefined":{"role":"symbol","title":"ASUndefined","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASUndefined"}],"abstract":[{"type":"text","text":"The ASUndefined class represents an undefined for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASUndefined"}],"url":"\/documentation\/haishinkit\/asundefined"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asundefined/description.json b/docs/data/documentation/haishinkit/asundefined/description.json deleted file mode 100644 index a85139a28..000000000 --- a/docs/data/documentation/haishinkit/asundefined/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asundefined\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomStringConvertible.description"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11ASUndefinedV11descriptionSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASUndefined/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined\/description","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asundefined\/description"},"doc://HaishinKit/documentation/HaishinKit/ASUndefined":{"role":"symbol","title":"ASUndefined","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASUndefined"}],"abstract":[{"type":"text","text":"The ASUndefined class represents an undefined for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASUndefined"}],"url":"\/documentation\/haishinkit\/asundefined"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxml.json b/docs/data/documentation/haishinkit/asxml.json deleted file mode 100644 index 9169d19d8..000000000 --- a/docs/data/documentation/haishinkit/asxml.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"3.13 XML type (amf-file-format-spec.pdf)"}]}],"type":"aside","name":"See Also"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxml"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"title":"ASXML","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit5ASXMLV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ASXML"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/init(data:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/description"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/Equatable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/ASXML/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new instance of string."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/init(data:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/ASXML/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/description","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/description"},"doc://HaishinKit/documentation/HaishinKit/ASXML":{"role":"symbol","title":"ASXML","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXML"}],"url":"\/documentation\/haishinkit\/asxml"},"doc://HaishinKit/documentation/HaishinKit/ASXML/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asxml\/equatable-implementations"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxml/!=(_:_:).json b/docs/data/documentation/haishinkit/asxml/!=(_:_:).json deleted file mode 100644 index 707c0b2ef..000000000 --- a/docs/data/documentation/haishinkit/asxml/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxml\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit5ASXMLV","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASXML/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ASXML":{"role":"symbol","title":"ASXML","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXML"}],"url":"\/documentation\/haishinkit\/asxml"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXML/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asxml\/equatable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxml/==(_:_:).json b/docs/data/documentation/haishinkit/asxml/==(_:_:).json deleted file mode 100644 index 256dc779d..000000000 --- a/docs/data/documentation/haishinkit/asxml/==(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV","text":"ASXML"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV","text":"ASXML"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxml\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"==(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:10HaishinKit5ASXMLV2eeoiySbAC_ACtFZ","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXML/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ASXML/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asxml\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/ASXML":{"role":"symbol","title":"ASXML","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXML"}],"url":"\/documentation\/haishinkit\/asxml"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxml/description.json b/docs/data/documentation/haishinkit/asxml/description.json deleted file mode 100644 index c49703d10..000000000 --- a/docs/data/documentation/haishinkit/asxml/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxml\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomStringConvertible.description"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5ASXMLV11descriptionSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASXML/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/description","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/description"},"doc://HaishinKit/documentation/HaishinKit/ASXML":{"role":"symbol","title":"ASXML","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXML"}],"url":"\/documentation\/haishinkit\/asxml"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxml/equatable-implementations.json b/docs/data/documentation/haishinkit/asxml/equatable-implementations.json deleted file mode 100644 index 8762f051c..000000000 --- a/docs/data/documentation/haishinkit/asxml/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/asxml\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/!=(_:_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/==(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXML":{"role":"symbol","title":"ASXML","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXML"}],"url":"\/documentation\/haishinkit\/asxml"},"doc://HaishinKit/documentation/HaishinKit/ASXML/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASXML","preciseIdentifier":"s:10HaishinKit5ASXMLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ASXML/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxml/init(data:).json b/docs/data/documentation/haishinkit/asxml/init(data:).json deleted file mode 100644 index bbdf1d2fa..000000000 --- a/docs/data/documentation/haishinkit/asxml/init(data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxml\/init(data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/init(data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new instance of string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(data:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit5ASXMLV4dataACSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASXML/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new instance of string."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxml\/init(data:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXML":{"role":"symbol","title":"ASXML","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXML"}],"abstract":[{"type":"text","text":"ActionScript 3.0 introduces a new XML type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXML","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXML"}],"url":"\/documentation\/haishinkit\/asxml"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxmldocument.json b/docs/data/documentation/haishinkit/asxmldocument.json deleted file mode 100644 index 66ae945bf..000000000 --- a/docs/data/documentation/haishinkit/asxmldocument.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.17 XML Document Type (amf0-file-format-specification.pdf)"}]}],"type":"aside","name":"See Also"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"3.9 XMLDocument type (amf-file-format-spec.pdf)"}]}],"type":"aside","name":"See Also"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxmldocument"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/init(data:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/description"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/Equatable-Implementations"],"generated":true}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"title":"ASXMLDocument","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit13ASXMLDocumentV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new instance of string."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/init(data:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument":{"role":"symbol","title":"ASXMLDocument","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}],"url":"\/documentation\/haishinkit\/asxmldocument"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/description","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/description"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxmldocument/!=(_:_:).json b/docs/data/documentation/haishinkit/asxmldocument/!=(_:_:).json deleted file mode 100644 index a76ae0eec..000000000 --- a/docs/data/documentation/haishinkit/asxmldocument/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxmldocument\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit13ASXMLDocumentV","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument":{"role":"symbol","title":"ASXMLDocument","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}],"url":"\/documentation\/haishinkit\/asxmldocument"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/equatable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxmldocument/==(_:_:).json b/docs/data/documentation/haishinkit/asxmldocument/==(_:_:).json deleted file mode 100644 index b6c557026..000000000 --- a/docs/data/documentation/haishinkit/asxmldocument/==(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV","text":"ASXMLDocument"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV","text":"ASXMLDocument"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxmldocument\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"==(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:10HaishinKit13ASXMLDocumentV2eeoiySbAC_ACtFZ","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument":{"role":"symbol","title":"ASXMLDocument","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}],"url":"\/documentation\/haishinkit\/asxmldocument"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/equatable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxmldocument/description.json b/docs/data/documentation/haishinkit/asxmldocument/description.json deleted file mode 100644 index be8f6ecca..000000000 --- a/docs/data/documentation/haishinkit/asxmldocument/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxmldocument\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomStringConvertible.description"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit13ASXMLDocumentV11descriptionSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument":{"role":"symbol","title":"ASXMLDocument","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}],"url":"\/documentation\/haishinkit\/asxmldocument"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/description","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/description"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxmldocument/equatable-implementations.json b/docs/data/documentation/haishinkit/asxmldocument/equatable-implementations.json deleted file mode 100644 index e668dd901..000000000 --- a/docs/data/documentation/haishinkit/asxmldocument/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/asxmldocument\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/!=(_:_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/==(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ASXMLDocument","preciseIdentifier":"s:10HaishinKit13ASXMLDocumentV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument":{"role":"symbol","title":"ASXMLDocument","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}],"url":"\/documentation\/haishinkit\/asxmldocument"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/asxmldocument/init(data:).json b/docs/data/documentation/haishinkit/asxmldocument/init(data:).json deleted file mode 100644 index d9ab0355d..000000000 --- a/docs/data/documentation/haishinkit/asxmldocument/init(data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/asxmldocument\/init(data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/init(data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new instance of string."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(data:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit13ASXMLDocumentV4dataACSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument":{"role":"symbol","title":"ASXMLDocument","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASXMLDocument"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASXMLDocument"}],"url":"\/documentation\/haishinkit\/asxmldocument"},"doc://HaishinKit/documentation/HaishinKit/ASXMLDocument/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new instance of string."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASXMLDocument\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/asxmldocument\/init(data:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/atomic.json b/docs/data/documentation/haishinkit/atomic.json deleted file mode 100644 index 4a59bd3f0..000000000 --- a/docs/data/documentation/haishinkit/atomic.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"https:\/\/www.objc.io\/blog\/2018\/12\/18\/atomic-variables\/"}]}],"type":"aside","name":"See Also"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/atomic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"title":"Atomic","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit6AtomicV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Atomic"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/init(_:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/value"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/mutate(_:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/Atomic/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates an instance of value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/atomic\/init(_:)"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Atomic/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"A"}],"abstract":[{"type":"text","text":"Getter for the value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/value","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/atomic\/value"},"doc://HaishinKit/documentation/HaishinKit/Atomic/mutate(_:)":{"role":"symbol","title":"mutate(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mutate"},{"kind":"text","text":"(("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Setter for the value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/mutate(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/atomic\/mutate(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/atomic/init(_:).json b/docs/data/documentation/haishinkit/atomic/init(_:).json deleted file mode 100644 index a1ceac7e6..000000000 --- a/docs/data/documentation/haishinkit/atomic/init(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/atomic\/init(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/init(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an instance of value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":")"}],"title":"init(_:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit6AtomicVyACyxGxcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Atomic/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates an instance of value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/atomic\/init(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/atomic/mutate(_:).json b/docs/data/documentation/haishinkit/atomic/mutate(_:).json deleted file mode 100644 index e6ddedbb0..000000000 --- a/docs/data/documentation/haishinkit/atomic/mutate(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"mutating"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mutate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"transform"},{"kind":"text","text":": ("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/atomic\/mutate(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/mutate(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Setter for the value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mutate"},{"kind":"text","text":"(("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"title":"mutate(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit6AtomicV6mutateyyyxzXEF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Atomic/mutate(_:)":{"role":"symbol","title":"mutate(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mutate"},{"kind":"text","text":"(("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Setter for the value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/mutate(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/atomic\/mutate(_:)"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/atomic/value.json b/docs/data/documentation/haishinkit/atomic/value.json deleted file mode 100644 index dbb1295a2..000000000 --- a/docs/data/documentation/haishinkit/atomic/value.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/atomic\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Getter for the value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"A"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit6AtomicV5valuexvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit/Atomic/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"A"}],"abstract":[{"type":"text","text":"Getter for the value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic\/value","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/atomic\/value"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec.json b/docs/data/documentation/haishinkit/audiocodec.json deleted file mode 100644 index 9ac180968..000000000 --- a/docs/data/documentation/haishinkit/audiocodec.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"https:\/\/developer.apple.com\/library\/ios\/technotes\/tn2236\/_index.html"}]}],"type":"aside","name":"See Also"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"title":"AudioCodec","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit10AudioCodecC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/delegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/isRunning","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/settings"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/appendSampleBuffer(_:offset:)"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Running-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"AudioCodecDelegate","preciseIdentifier":"s:10HaishinKit18AudioCodecDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/delegate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/settings":{"role":"symbol","title":"settings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the settings for audio codec."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/settings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/settings"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This instance is running to process(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/appendSampleBuffer(_:offset:)":{"role":"symbol","title":"appendSampleBuffer(_:offset:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a CMSampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/appendSampleBuffer(_:offset:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/appendsamplebuffer(_:offset:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/appendsamplebuffer(_:offset:).json b/docs/data/documentation/haishinkit/audiocodec/appendsamplebuffer(_:offset:).json deleted file mode 100644 index b3a75be46..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/appendsamplebuffer(_:offset:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" = 0)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/appendsamplebuffer(_:offset:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/appendSampleBuffer(_:offset:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Append a CMSampleBuffer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"title":"appendSampleBuffer(_:offset:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10AudioCodecC18appendSampleBuffer_6offsetySo08CMSampleG3Refa_SitF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/appendSampleBuffer(_:offset:)":{"role":"symbol","title":"appendSampleBuffer(_:offset:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a CMSampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/appendSampleBuffer(_:offset:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/appendsamplebuffer(_:offset:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/delegate.json b/docs/data/documentation/haishinkit/audiocodec/delegate.json deleted file mode 100644 index 8822dab69..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/delegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","preciseIdentifier":"s:10HaishinKit18AudioCodecDelegateP","text":"AudioCodecDelegate"},{"kind":"text","text":")?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"AudioCodecDelegate","preciseIdentifier":"s:10HaishinKit18AudioCodecDelegateP"},{"kind":"text","text":")?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10AudioCodecC8delegateAA0cD8Delegate_pSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"AudioCodecDelegate","preciseIdentifier":"s:10HaishinKit18AudioCodecDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/delegate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/error.json b/docs/data/documentation/haishinkit/audiocodec/error.json deleted file mode 100644 index 9c06a2718..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/error.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s5ErrorP","doc:\/\/HaishinKit\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"title":"AudioCodec.Error","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit10AudioCodecC5ErrorO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Error"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToConvert(error:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToCreate(from:to:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/Error-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/failedToCreate(from:to:)":{"role":"symbol","title":"AudioCodec.Error.failedToCreate(from:to:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToCreate(from:to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/failedtocreate(from:to:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/error-implementations"},"doc://HaishinKit/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/HaishinKit\/s5ErrorP"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/failedToConvert(error:)":{"role":"symbol","title":"AudioCodec.Error.failedToConvert(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToConvert"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSError","preciseIdentifier":"c:objc(cs)NSError"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToConvert(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/failedtoconvert(error:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"},"doc://HaishinKit/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/HaishinKit\/s8SendableP"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/error/error-implementations.json b/docs/data/documentation/haishinkit/audiocodec/error/error-implementations.json deleted file mode 100644 index 2697c9a5d..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/error/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/error\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/localizeddescription"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/error/failedtoconvert(error:).json b/docs/data/documentation/haishinkit/audiocodec/error/failedtoconvert(error:).json deleted file mode 100644 index 2c017ee06..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/error/failedtoconvert(error:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToConvert"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSError","preciseIdentifier":"c:objc(cs)NSError"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/error\/failedtoconvert(error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToConvert(error:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToConvert"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSError","preciseIdentifier":"c:objc(cs)NSError"},{"kind":"text","text":")"}],"title":"AudioCodec.Error.failedToConvert(error:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10AudioCodecC5ErrorO15failedToConvertyAESo7NSErrorC_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/failedToConvert(error:)":{"role":"symbol","title":"AudioCodec.Error.failedToConvert(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToConvert"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSError","preciseIdentifier":"c:objc(cs)NSError"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToConvert(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/failedtoconvert(error:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/error/failedtocreate(from:to:).json b/docs/data/documentation/haishinkit/audiocodec/error/failedtocreate(from:to:).json deleted file mode 100644 index eb4433d5b..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/error/failedtocreate(from:to:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/error\/failedtocreate(from:to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToCreate(from:to:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"title":"AudioCodec.Error.failedToCreate(from:to:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10AudioCodecC5ErrorO14failedToCreateyAESo13AVAudioFormatC_AHtcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/failedToCreate(from:to:)":{"role":"symbol","title":"AudioCodec.Error.failedToCreate(from:to:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/failedToCreate(from:to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/failedtocreate(from:to:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/error/localizeddescription.json b/docs/data/documentation/haishinkit/audiocodec/error/localizeddescription.json deleted file mode 100644 index a357350cd..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/error/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/error\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"HaishinKit","relatedModules":["Swift"]}],"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:10HaishinKit10AudioCodecC5ErrorO","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"8.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.10","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"9.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"2.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/Error-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/localizeddescription"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/error\/error-implementations"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/isrunning.json b/docs/data/documentation/haishinkit/audiocodec/isrunning.json deleted file mode 100644 index bb8145cc8..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This instance is running to process(true) or not(false)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"title":"isRunning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10AudioCodecC9isRunningAA6AtomicVySbGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This instance is running to process(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/isrunning"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/running-implementations.json b/docs/data/documentation/haishinkit/audiocodec/running-implementations.json deleted file mode 100644 index 4c5b43d5a..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/running-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/running-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Running-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/startRunning()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/stopRunning()"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Running Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/stoprunning()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/settings.json b/docs/data/documentation/haishinkit/audiocodec/settings.json deleted file mode 100644 index bae4c0a45..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/settings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV","text":"AudioCodecSettings"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/settings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/settings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the settings for audio codec."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"title":"settings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10AudioCodecC8settingsAA0cD8SettingsVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec/settings":{"role":"symbol","title":"settings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the settings for audio codec."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/settings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/settings"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/startrunning().json b/docs/data/documentation/haishinkit/audiocodec/startrunning().json deleted file mode 100644 index a2e230c83..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/startrunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/startrunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/startRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.startRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"startRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10AudioCodecC12startRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/startrunning()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodec/stoprunning().json b/docs/data/documentation/haishinkit/audiocodec/stoprunning().json deleted file mode 100644 index 48ab5dc4f..000000000 --- a/docs/data/documentation/haishinkit/audiocodec/stoprunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodec\/stoprunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/stopRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.stopRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10AudioCodecC11stopRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodec\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecdelegate.json b/docs/data/documentation/haishinkit/audiocodecdelegate.json deleted file mode 100644 index 1c0d79d8e..000000000 --- a/docs/data/documentation/haishinkit/audiocodecdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"title":"AudioCodecDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit18AudioCodecDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:presentationTimeStamp:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:errorOccurred:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate/audioCodec(_:errorOccurred:)":{"role":"symbol","title":"audioCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to occured an error."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:errorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate/audioCodec(_:didOutput:presentationTimeStamp:)":{"role":"symbol","title":"audioCodec(_:didOutput:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output an encoded or decoded CMSampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:presentationTimeStamp:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:presentationtimestamp:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate/audioCodec(_:didOutput:)":{"role":"symbol","title":"audioCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output an AVAudioFormat."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:).json b/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:).json deleted file mode 100644 index 9a884becd..000000000 --- a/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"audioFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to output an AVAudioFormat."}],"kind":"symbol","metadata":{"role":"symbol","title":"audioCodec(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit18AudioCodecDelegateP05audioD0_9didOutputyAA0cD0C_So13AVAudioFormatCtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate/audioCodec(_:didOutput:)":{"role":"symbol","title":"audioCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output an AVAudioFormat."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:presentationtimestamp:).json b/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:presentationtimestamp:).json deleted file mode 100644 index e8a38cc5b..000000000 --- a/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:presentationtimestamp:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"audioBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:presentationtimestamp:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:presentationTimeStamp:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to output an encoded or decoded CMSampleBuffer."}],"kind":"symbol","metadata":{"role":"symbol","title":"audioCodec(_:didOutput:presentationTimeStamp:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit18AudioCodecDelegateP05audioD0_9didOutput21presentationTimeStampyAA0cD0C_So13AVAudioBufferCSo6CMTimeatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate/audioCodec(_:didOutput:presentationTimeStamp:)":{"role":"symbol","title":"audioCodec(_:didOutput:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output an encoded or decoded CMSampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:didOutput:presentationTimeStamp:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:presentationtimestamp:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:erroroccurred:).json b/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:erroroccurred:).json deleted file mode 100644 index 4a9017518..000000000 --- a/docs/data/documentation/haishinkit/audiocodecdelegate/audiocodec(_:erroroccurred:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO","text":"Error"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:erroroccurred:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:errorOccurred:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to occured an error."}],"kind":"symbol","metadata":{"role":"symbol","title":"audioCodec(_:errorOccurred:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit18AudioCodecDelegateP05audioD0_13errorOccurredyAA0cD0C_AG5ErrorOtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate/audioCodec(_:errorOccurred:)":{"role":"symbol","title":"audioCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to occured an error."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate\/audioCodec(_:errorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecsettings.json b/docs/data/documentation/haishinkit/audiocodecsettings.json deleted file mode 100644 index 1de3060c4..000000000 --- a/docs/data/documentation/haishinkit/audiocodecsettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecsettings"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/Se","doc:\/\/HaishinKit\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"title":"AudioCodecSettings","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit18AudioCodecSettingsV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(bitRate:outputChannelsMap:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(from:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/bitRate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/outputChannelsMap"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/default","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/maximumNumberOfChannels"]}],"references":{"doc://HaishinKit/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/HaishinKit\/SE"},"doc://HaishinKit/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/HaishinKit\/Se"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/bitRate":{"role":"symbol","title":"bitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the bitRate of audio output."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/bitRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/bitrate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/default":{"role":"symbol","title":"default","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"abstract":[{"type":"text","text":"The default value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/default","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/default"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/maximumNumberOfChannels":{"role":"symbol","title":"maximumNumberOfChannels","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumNumberOfChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Maximum number of channels supported by the system"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/maximumNumberOfChannels","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/maximumnumberofchannels"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/outputChannelsMap":{"role":"symbol","title":"outputChannelsMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Map of the output to input channels"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/outputChannelsMap","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/outputchannelsmap"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/init(bitRate:outputChannelsMap:)":{"role":"symbol","title":"init(bitRate:outputChannelsMap:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"Create an new AudioCodecSettings instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(bitRate:outputChannelsMap:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/init(bitrate:outputchannelsmap:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecsettings/bitrate.json b/docs/data/documentation/haishinkit/audiocodecsettings/bitrate.json deleted file mode 100644 index 929dc19b6..000000000 --- a/docs/data/documentation/haishinkit/audiocodecsettings/bitrate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecsettings\/bitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/bitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the bitRate of audio output."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"bitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18AudioCodecSettingsV7bitRateSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/bitRate":{"role":"symbol","title":"bitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the bitRate of audio output."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/bitRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/bitrate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecsettings/default.json b/docs/data/documentation/haishinkit/audiocodecsettings/default.json deleted file mode 100644 index 13d6c4017..000000000 --- a/docs/data/documentation/haishinkit/audiocodecsettings/default.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV","text":"AudioCodecSettings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecsettings\/default"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/default","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"title":"default","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18AudioCodecSettingsV7defaultACvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/default":{"role":"symbol","title":"default","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"abstract":[{"type":"text","text":"The default value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/default","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/default"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecsettings/init(bitrate:outputchannelsmap:).json b/docs/data/documentation/haishinkit/audiocodecsettings/init(bitrate:outputchannelsmap:).json deleted file mode 100644 index 28c8ab7ce..000000000 --- a/docs/data/documentation/haishinkit/audiocodecsettings/init(bitrate:outputchannelsmap:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" = 64 * 1000, "},{"kind":"externalParam","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"] = [0: 0, 1: 1])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecsettings\/init(bitrate:outputchannelsmap:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(bitRate:outputChannelsMap:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Create an new AudioCodecSettings instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"])"}],"title":"init(bitRate:outputChannelsMap:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit18AudioCodecSettingsV7bitRate17outputChannelsMapACSi_SDyS2iGtcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/init(bitRate:outputChannelsMap:)":{"role":"symbol","title":"init(bitRate:outputChannelsMap:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"Create an new AudioCodecSettings instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(bitRate:outputChannelsMap:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/init(bitrate:outputchannelsmap:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecsettings/init(from:).json b/docs/data/documentation/haishinkit/audiocodecsettings/init(from:).json deleted file mode 100644 index 9928adae9..000000000 --- a/docs/data/documentation/haishinkit/audiocodecsettings/init(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecsettings\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit18AudioCodecSettingsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecsettings/maximumnumberofchannels.json b/docs/data/documentation/haishinkit/audiocodecsettings/maximumnumberofchannels.json deleted file mode 100644 index f876d6a90..000000000 --- a/docs/data/documentation/haishinkit/audiocodecsettings/maximumnumberofchannels.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumNumberOfChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecsettings\/maximumnumberofchannels"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/maximumNumberOfChannels","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Maximum number of channels supported by the system"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumNumberOfChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"title":"maximumNumberOfChannels","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18AudioCodecSettingsV23maximumNumberOfChannelss6UInt32VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/maximumNumberOfChannels":{"role":"symbol","title":"maximumNumberOfChannels","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumNumberOfChannels"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Maximum number of channels supported by the system"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/maximumNumberOfChannels","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/maximumnumberofchannels"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audiocodecsettings/outputchannelsmap.json b/docs/data/documentation/haishinkit/audiocodecsettings/outputchannelsmap.json deleted file mode 100644 index 5d3463ebb..000000000 --- a/docs/data/documentation/haishinkit/audiocodecsettings/outputchannelsmap.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audiocodecsettings\/outputchannelsmap"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/outputChannelsMap","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Map of the output to input channels"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"]"}],"title":"outputChannelsMap","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18AudioCodecSettingsV17outputChannelsMapSDyS2iGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings/outputChannelsMap":{"role":"symbol","title":"outputChannelsMap","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputChannelsMap"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Map of the output to input channels"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings\/outputChannelsMap","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audiocodecsettings\/outputchannelsmap"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audioeffect.json b/docs/data/documentation/haishinkit/audioeffect.json deleted file mode 100644 index eac5460f8..000000000 --- a/docs/data/documentation/haishinkit/audioeffect.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioEffect"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audioeffect"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An object that apply an audio effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioEffect"}],"title":"AudioEffect","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)AudioEffect","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"AudioEffect"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect\/execute(_:presentationTimeStamp:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/AudioEffect":{"role":"symbol","title":"AudioEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioEffect"}],"abstract":[{"type":"text","text":"An object that apply an audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioEffect"}],"url":"\/documentation\/haishinkit\/audioeffect"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/HaishinKit\/objc(cs)NSObject"},"doc://HaishinKit/documentation/HaishinKit/AudioEffect/execute(_:presentationTimeStamp:)":{"role":"symbol","title":"execute(_:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Executes to apply an audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect\/execute(_:presentationTimeStamp:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audioeffect\/execute(_:presentationtimestamp:)"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/audioeffect/execute(_:presentationtimestamp:).json b/docs/data/documentation/haishinkit/audioeffect/execute(_:presentationtimestamp:).json deleted file mode 100644 index 43127c621..000000000 --- a/docs/data/documentation/haishinkit/audioeffect/execute(_:presentationtimestamp:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"buffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/audioeffect\/execute(_:presentationtimestamp:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect\/execute(_:presentationTimeStamp:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Executes to apply an audio effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"title":"execute(_:presentationTimeStamp:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11AudioEffectC7execute_21presentationTimeStampySo13AVAudioBufferC_So6CMTimeatF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioEffect/execute(_:presentationTimeStamp:)":{"role":"symbol","title":"execute(_:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Executes to apply an audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect\/execute(_:presentationTimeStamp:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/audioeffect\/execute(_:presentationtimestamp:)"},"doc://HaishinKit/documentation/HaishinKit/AudioEffect":{"role":"symbol","title":"AudioEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioEffect"}],"abstract":[{"type":"text","text":"An object that apply an audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioEffect"}],"url":"\/documentation\/haishinkit\/audioeffect"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/avcodecdelegate.json b/docs/data/documentation/haishinkit/avcodecdelegate.json deleted file mode 100644 index dbbc86c4e..000000000 --- a/docs/data/documentation/haishinkit/avcodecdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"AVCodecDelegate"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","preciseIdentifier":"s:10HaishinKit18AudioCodecDelegateP","text":"AudioCodecDelegate"},{"kind":"text","text":" & "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","preciseIdentifier":"s:10HaishinKit18VideoCodecDelegateP","text":"VideoCodecDelegate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/avcodecdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AVCodecDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A type that can delegate itself to AudioCodec or VideoCodec."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"AVCodecDelegate"}],"title":"AVCodecDelegate","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:10HaishinKit15AVCodecDelegatea","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"AVCodecDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/AVCodecDelegate":{"role":"symbol","title":"AVCodecDelegate","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"AVCodecDelegate"}],"abstract":[{"type":"text","text":"A type that can delegate itself to AudioCodec or VideoCodec."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AVCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AVCodecDelegate"}],"url":"\/documentation\/haishinkit\/avcodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray.json b/docs/data/documentation/haishinkit/bytearray.json deleted file mode 100644 index fe599d90c..000000000 --- a/docs/data/documentation/haishinkit/bytearray.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"title":"ByteArray","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit9ByteArrayC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ByteArray"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init(data:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/bytesAvailable","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/length","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/position"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/clear()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readDouble()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readFloat()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt16()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt32()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt64()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt8()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt16()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt24()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt32()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt64()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt8()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUTF8()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeDouble(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeFloat(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt16(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt32(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt64(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt8(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt16(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt24(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt32(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt64(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt8(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUTF8(_:)"]},{"title":"Subscripts","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/subscript(_:)"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/CustomDebugStringConvertible-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt64()":{"role":"symbol","title":"readUInt64()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"Reading an UInt64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt64()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint64()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/bytesAvailable":{"role":"symbol","title":"bytesAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytesAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The bytesAvalibale or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/bytesAvailable","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/bytesavailable"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt8(_:)":{"role":"symbol","title":"writeInt8(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an Int8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt8(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint8(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUTF8(_:)":{"role":"symbol","title":"writeUTF8(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUTF8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing a string as UTF8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUTF8(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeutf8(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates an empty ByteArray."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/init()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeFloat(_:)":{"role":"symbol","title":"writeFloat(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeFloat"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writeing a Float value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeFloat(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writefloat(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUTF8()":{"role":"symbol","title":"readUTF8()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUTF8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Reading a string as UTF8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUTF8()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readutf8()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a ByteArray with data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/init(data:)"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt32(_:)":{"role":"symbol","title":"writeInt32(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt32"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an Int32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt32(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint32(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt64(_:)":{"role":"symbol","title":"writeInt64(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt64"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an Int64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt64(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint64(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/clear()":{"role":"symbol","title":"clear()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Clear the buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/clear()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/clear()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt8()":{"role":"symbol","title":"readInt8()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"}],"abstract":[{"type":"text","text":"Readning an Int8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt8()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint8()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt16(_:)":{"role":"symbol","title":"writeInt16(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt16"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Reading an Int16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt16(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint16(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt32()":{"role":"symbol","title":"readInt32()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"Reading an Int32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt32()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint32()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt32()":{"role":"symbol","title":"readUInt32()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Reading an UInt32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt32()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint32()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt8(_:)":{"role":"symbol","title":"writeUInt8(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt8(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint8(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/position":{"role":"symbol","title":"position","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the position of buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/position","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/position"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/subscript(_:)":{"role":"symbol","title":"subscript(_:)","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/subscript(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/subscript(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readFloat()":{"role":"symbol","title":"readFloat()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readFloat"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[{"type":"text","text":"Reading a Float value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readFloat()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readfloat()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readDouble()":{"role":"symbol","title":"readDouble()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readDouble"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Reading a Double value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readDouble()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readdouble()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt24()":{"role":"symbol","title":"readUInt24()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt24"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Reading an UInt24 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt24()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint24()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt64(_:)":{"role":"symbol","title":"writeUInt64(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt64"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt64(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint64(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt24(_:)":{"role":"symbol","title":"writeUInt24(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt24"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt24 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt24(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint24(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeDouble(_:)":{"role":"symbol","title":"writeDouble(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeDouble"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing a Double value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeDouble(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writedouble(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt8()":{"role":"symbol","title":"readUInt8()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"abstract":[{"type":"text","text":"Reading an UInt8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt8()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint8()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt16(_:)":{"role":"symbol","title":"writeUInt16(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt16"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt16(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint16(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt16()":{"role":"symbol","title":"readUInt16()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[{"type":"text","text":"Readning an UInt16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt16()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint16()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/length":{"role":"symbol","title":"length","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the length of buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/length","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/length"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt32(_:)":{"role":"symbol","title":"writeUInt32(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt32"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt32(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint32(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt16()":{"role":"symbol","title":"readInt16()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"}],"abstract":[{"type":"text","text":"Reading an Int16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt16()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint16()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt64()":{"role":"symbol","title":"readInt64()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"Reading an Int64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt64()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint64()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/bytesavailable.json b/docs/data/documentation/haishinkit/bytearray/bytesavailable.json deleted file mode 100644 index a5a80b10e..000000000 --- a/docs/data/documentation/haishinkit/bytearray/bytesavailable.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytesAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/bytesavailable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/bytesAvailable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The bytesAvalibale or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytesAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"bytesAvailable","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9ByteArrayC14bytesAvailableSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/bytesAvailable":{"role":"symbol","title":"bytesAvailable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bytesAvailable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The bytesAvalibale or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/bytesAvailable","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/bytesavailable"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/clear().json b/docs/data/documentation/haishinkit/bytearray/clear().json deleted file mode 100644 index 73170d42a..000000000 --- a/docs/data/documentation/haishinkit/bytearray/clear().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/clear()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/clear()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Clear the buffer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"clear()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC5clearACXDyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/clear()":{"role":"symbol","title":"clear()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Clear the buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/clear()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/clear()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/customdebugstringconvertible-implementations.json b/docs/data/documentation/haishinkit/bytearray/customdebugstringconvertible-implementations.json deleted file mode 100644 index 5493d4c09..000000000 --- a/docs/data/documentation/haishinkit/bytearray/customdebugstringconvertible-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/customdebugstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/CustomDebugStringConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/debugDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/debugdescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/debugdescription.json b/docs/data/documentation/haishinkit/bytearray/debugdescription.json deleted file mode 100644 index e6394c698..000000000 --- a/docs/data/documentation/haishinkit/bytearray/debugdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/debugdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/debugDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomDebugStringConvertible.debugDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"debugDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:10HaishinKit9ByteArrayC16debugDescriptionSSvp","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/CustomDebugStringConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/error.json b/docs/data/documentation/haishinkit/bytearray/error.json deleted file mode 100644 index acefe1650..000000000 --- a/docs/data/documentation/haishinkit/bytearray/error.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/s5ErrorP","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"title":"ByteArray.Error","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit9ByteArrayC5ErrorO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Error"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/eof","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/parse"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Error-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/parse":{"role":"symbol","title":"ByteArray.Error.parse","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parse"}],"abstract":[{"type":"text","text":"Failed to parse"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/parse","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/parse"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/error-implementations"},"doc://HaishinKit/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/HaishinKit\/s8SendableP"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/eof":{"role":"symbol","title":"ByteArray.Error.eof","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"eof"}],"abstract":[{"type":"text","text":"Error cause end of data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/eof","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/eof"},"doc://HaishinKit/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/HaishinKit\/s5ErrorP"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/error/!=(_:_:).json b/docs/data/documentation/haishinkit/bytearray/error/!=(_:_:).json deleted file mode 100644 index f824f2cb4..000000000 --- a/docs/data/documentation/haishinkit/bytearray/error/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/error\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit9ByteArrayC5ErrorO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/error/eof.json b/docs/data/documentation/haishinkit/bytearray/error/eof.json deleted file mode 100644 index 3670df82a..000000000 --- a/docs/data/documentation/haishinkit/bytearray/error/eof.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"eof"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/error\/eof"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/eof","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Error cause end of data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"eof"}],"title":"ByteArray.Error.eof","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit9ByteArrayC5ErrorO3eofyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/eof":{"role":"symbol","title":"ByteArray.Error.eof","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"eof"}],"abstract":[{"type":"text","text":"Error cause end of data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/eof","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/eof"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/error/equatable-implementations.json b/docs/data/documentation/haishinkit/bytearray/error/equatable-implementations.json deleted file mode 100644 index 217ce1a5d..000000000 --- a/docs/data/documentation/haishinkit/bytearray/error/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/error\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/error/error-implementations.json b/docs/data/documentation/haishinkit/bytearray/error/error-implementations.json deleted file mode 100644 index 436041932..000000000 --- a/docs/data/documentation/haishinkit/bytearray/error/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/error\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/localizeddescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/error/localizeddescription.json b/docs/data/documentation/haishinkit/bytearray/error/localizeddescription.json deleted file mode 100644 index db7284012..000000000 --- a/docs/data/documentation/haishinkit/bytearray/error/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/error\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"HaishinKit","relatedModules":["Swift"]}],"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:10HaishinKit9ByteArrayC5ErrorO","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"8.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.10","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"9.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"2.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Error-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/error-implementations"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/localizeddescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/error/parse.json b/docs/data/documentation/haishinkit/bytearray/error/parse.json deleted file mode 100644 index 2f3523547..000000000 --- a/docs/data/documentation/haishinkit/bytearray/error/parse.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parse"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/error\/parse"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/parse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to parse"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parse"}],"title":"ByteArray.Error.parse","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit9ByteArrayC5ErrorO5parseyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error":{"role":"symbol","title":"ByteArray.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The ByteArray error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/bytearray\/error"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/Error/parse":{"role":"symbol","title":"ByteArray.Error.parse","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"parse"}],"abstract":[{"type":"text","text":"Failed to parse"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/Error\/parse","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/error\/parse"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/init().json b/docs/data/documentation/haishinkit/bytearray/init().json deleted file mode 100644 index 7e18ae522..000000000 --- a/docs/data/documentation/haishinkit/bytearray/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an empty ByteArray."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit9ByteArrayCACycfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates an empty ByteArray."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/init()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/init(data:).json b/docs/data/documentation/haishinkit/bytearray/init(data:).json deleted file mode 100644 index 3cbb43f75..000000000 --- a/docs/data/documentation/haishinkit/bytearray/init(data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/init(data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init(data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a ByteArray with data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"title":"init(data:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit9ByteArrayC4dataAC10Foundation4DataV_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/init(data:)":{"role":"symbol","title":"init(data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a ByteArray with data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/init(data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/init(data:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/length.json b/docs/data/documentation/haishinkit/bytearray/length.json deleted file mode 100644 index ddf54fce7..000000000 --- a/docs/data/documentation/haishinkit/bytearray/length.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/length"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/length","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the length of buffer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"length","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9ByteArrayC6lengthSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/length":{"role":"symbol","title":"length","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"length"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the length of buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/length","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/length"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/position.json b/docs/data/documentation/haishinkit/bytearray/position.json deleted file mode 100644 index 85917bda8..000000000 --- a/docs/data/documentation/haishinkit/bytearray/position.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/position"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/position","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the position of buffer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"position","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9ByteArrayC8positionSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/position":{"role":"symbol","title":"position","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the position of buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/position","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/position"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readdouble().json b/docs/data/documentation/haishinkit/bytearray/readdouble().json deleted file mode 100644 index dc2bd0046..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readdouble().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readDouble"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readdouble()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readDouble()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading a Double value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readDouble"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"readDouble()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10readDoubleSdyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/readDouble()":{"role":"symbol","title":"readDouble()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readDouble"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Reading a Double value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readDouble()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readdouble()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readfloat().json b/docs/data/documentation/haishinkit/bytearray/readfloat().json deleted file mode 100644 index 844fe31cc..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readfloat().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readFloat"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readfloat()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readFloat()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading a Float value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readFloat"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"title":"readFloat()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC9readFloatSfyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readFloat()":{"role":"symbol","title":"readFloat()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readFloat"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[{"type":"text","text":"Reading a Float value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readFloat()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readfloat()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readint16().json b/docs/data/documentation/haishinkit/bytearray/readint16().json deleted file mode 100644 index 9c85aec57..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readint16().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readint16()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt16()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an Int16 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"}],"title":"readInt16()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC9readInt16s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt16()":{"role":"symbol","title":"readInt16()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"}],"abstract":[{"type":"text","text":"Reading an Int16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt16()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint16()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readint32().json b/docs/data/documentation/haishinkit/bytearray/readint32().json deleted file mode 100644 index 326d079cd..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readint32().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readint32()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt32()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an Int32 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"readInt32()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC9readInt32s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt32()":{"role":"symbol","title":"readInt32()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"Reading an Int32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt32()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint32()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readint64().json b/docs/data/documentation/haishinkit/bytearray/readint64().json deleted file mode 100644 index 6b0ec91ef..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readint64().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readint64()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt64()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an Int64 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"readInt64()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC9readInt64s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt64()":{"role":"symbol","title":"readInt64()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"Reading an Int64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt64()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint64()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readint8().json b/docs/data/documentation/haishinkit/bytearray/readint8().json deleted file mode 100644 index 463d67784..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readint8().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readint8()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt8()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Readning an Int8 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"}],"title":"readInt8()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC8readInt8s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readInt8()":{"role":"symbol","title":"readInt8()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"}],"abstract":[{"type":"text","text":"Readning an Int8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readInt8()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readint8()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readuint16().json b/docs/data/documentation/haishinkit/bytearray/readuint16().json deleted file mode 100644 index cc3c963e5..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readuint16().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readuint16()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt16()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Readning an UInt16 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"title":"readUInt16()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10readUInt16s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt16()":{"role":"symbol","title":"readUInt16()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt16"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[{"type":"text","text":"Readning an UInt16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt16()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint16()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readuint24().json b/docs/data/documentation/haishinkit/bytearray/readuint24().json deleted file mode 100644 index 489d5bcff..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readuint24().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt24"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readuint24()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt24()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an UInt24 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt24"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"title":"readUInt24()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10readUInt24s6UInt32VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt24()":{"role":"symbol","title":"readUInt24()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt24"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Reading an UInt24 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt24()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint24()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readuint32().json b/docs/data/documentation/haishinkit/bytearray/readuint32().json deleted file mode 100644 index 5f72449d9..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readuint32().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readuint32()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt32()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an UInt32 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"title":"readUInt32()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10readUInt32s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt32()":{"role":"symbol","title":"readUInt32()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt32"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Reading an UInt32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt32()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint32()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readuint64().json b/docs/data/documentation/haishinkit/bytearray/readuint64().json deleted file mode 100644 index 6283e0e01..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readuint64().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readuint64()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt64()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an UInt64 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"title":"readUInt64()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10readUInt64s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt64()":{"role":"symbol","title":"readUInt64()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt64"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"Reading an UInt64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt64()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint64()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readuint8().json b/docs/data/documentation/haishinkit/bytearray/readuint8().json deleted file mode 100644 index 2ab417fc0..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readuint8().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readuint8()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt8()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an UInt8 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"title":"readUInt8()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC9readUInt8s0F0VyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUInt8()":{"role":"symbol","title":"readUInt8()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUInt8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"abstract":[{"type":"text","text":"Reading an UInt8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUInt8()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readuint8()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/readutf8().json b/docs/data/documentation/haishinkit/bytearray/readutf8().json deleted file mode 100644 index 1a66b0f4a..000000000 --- a/docs/data/documentation/haishinkit/bytearray/readutf8().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUTF8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/readutf8()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUTF8()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading a string as UTF8 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUTF8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"readUTF8()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC8readUTF8SSyKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/readUTF8()":{"role":"symbol","title":"readUTF8()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readUTF8"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Reading a string as UTF8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/readUTF8()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/readutf8()"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/subscript(_:).json b/docs/data/documentation/haishinkit/bytearray/subscript(_:).json deleted file mode 100644 index 1c2819721..000000000 --- a/docs/data/documentation/haishinkit/bytearray/subscript(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"internalParam","text":"i"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/subscript(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/subscript(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"ByteArrayConvertible.subscript(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"title":"subscript(_:)","roleHeading":"Instance Subscript","role":"symbol","symbolKind":"subscript","externalID":"s:10HaishinKit9ByteArrayCys5UInt8VSicip","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/subscript(_:)":{"role":"symbol","title":"subscript(_:)","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/subscript(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/subscript(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writedouble(_:).json b/docs/data/documentation/haishinkit/bytearray/writedouble(_:).json deleted file mode 100644 index aa91ad82d..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writedouble(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeDouble"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writedouble(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeDouble(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing a Double value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeDouble"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeDouble(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC11writeDoubleyACXDSdF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeDouble(_:)":{"role":"symbol","title":"writeDouble(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeDouble"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing a Double value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeDouble(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writedouble(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writefloat(_:).json b/docs/data/documentation/haishinkit/bytearray/writefloat(_:).json deleted file mode 100644 index f19fb5c2a..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writefloat(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeFloat"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writefloat(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeFloat(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writeing a Float value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeFloat"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeFloat(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10writeFloatyACXDSfF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeFloat(_:)":{"role":"symbol","title":"writeFloat(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeFloat"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writeing a Float value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeFloat(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writefloat(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeint16(_:).json b/docs/data/documentation/haishinkit/bytearray/writeint16(_:).json deleted file mode 100644 index 52990e9a6..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeint16(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt16"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeint16(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt16(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reading an Int16 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt16"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeInt16(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10writeInt16yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt16(_:)":{"role":"symbol","title":"writeInt16(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt16"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Reading an Int16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt16(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint16(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeint32(_:).json b/docs/data/documentation/haishinkit/bytearray/writeint32(_:).json deleted file mode 100644 index 5626cfe3e..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeint32(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt32"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeint32(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt32(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an Int32 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt32"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeInt32(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10writeInt32yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt32(_:)":{"role":"symbol","title":"writeInt32(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt32"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an Int32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt32(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint32(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeint64(_:).json b/docs/data/documentation/haishinkit/bytearray/writeint64(_:).json deleted file mode 100644 index c2797831d..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeint64(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt64"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeint64(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt64(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an Int64 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt64"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeInt64(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10writeInt64yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt64(_:)":{"role":"symbol","title":"writeInt64(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt64"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an Int64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt64(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint64(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeint8(_:).json b/docs/data/documentation/haishinkit/bytearray/writeint8(_:).json deleted file mode 100644 index 1947a042e..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeint8(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt8"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeint8(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt8(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an Int8 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeInt8(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC9writeInt8yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeInt8(_:)":{"role":"symbol","title":"writeInt8(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeInt8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int8","preciseIdentifier":"s:s4Int8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an Int8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeInt8(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeint8(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeuint16(_:).json b/docs/data/documentation/haishinkit/bytearray/writeuint16(_:).json deleted file mode 100644 index e78e9af99..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeuint16(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt16"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeuint16(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt16(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an UInt16 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt16"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeUInt16(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC11writeUInt16yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt16(_:)":{"role":"symbol","title":"writeUInt16(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt16"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt16 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt16(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint16(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeuint24(_:).json b/docs/data/documentation/haishinkit/bytearray/writeuint24(_:).json deleted file mode 100644 index 1f06fb372..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeuint24(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt24"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeuint24(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt24(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an UInt24 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt24"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeUInt24(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC11writeUInt24yACXDs6UInt32VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt24(_:)":{"role":"symbol","title":"writeUInt24(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt24"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt24 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt24(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint24(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeuint32(_:).json b/docs/data/documentation/haishinkit/bytearray/writeuint32(_:).json deleted file mode 100644 index b22f570b7..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeuint32(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt32"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeuint32(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt32(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an UInt32 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt32"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeUInt32(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC11writeUInt32yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt32(_:)":{"role":"symbol","title":"writeUInt32(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt32"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt32 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt32(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint32(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeuint64(_:).json b/docs/data/documentation/haishinkit/bytearray/writeuint64(_:).json deleted file mode 100644 index c3ba555d8..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeuint64(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt64"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeuint64(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt64(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an UInt64 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt64"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeUInt64(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC11writeUInt64yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt64(_:)":{"role":"symbol","title":"writeUInt64(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt64"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt64 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt64(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint64(_:)"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeuint8(_:).json b/docs/data/documentation/haishinkit/bytearray/writeuint8(_:).json deleted file mode 100644 index bdcd0395a..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeuint8(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt8"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeuint8(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt8(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing an UInt8 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeUInt8(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC10writeUInt8yACXDs0F0VF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUInt8(_:)":{"role":"symbol","title":"writeUInt8(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUInt8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing an UInt8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUInt8(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeuint8(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/bytearray/writeutf8(_:).json b/docs/data/documentation/haishinkit/bytearray/writeutf8(_:).json deleted file mode 100644 index 8c3e855f2..000000000 --- a/docs/data/documentation/haishinkit/bytearray/writeutf8(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUTF8"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/bytearray\/writeutf8(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUTF8(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writing a string as UTF8 value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUTF8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"writeUTF8(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9ByteArrayC9writeUTF8yACXDSSKF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ByteArray":{"role":"symbol","title":"ByteArray","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"ByteArray"}],"abstract":[{"type":"text","text":"The ByteArray class provides methods and properties the reading or writing with binary data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ByteArray"}],"url":"\/documentation\/haishinkit\/bytearray"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ByteArray/writeUTF8(_:)":{"role":"symbol","title":"writeUTF8(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeUTF8"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"}],"abstract":[{"type":"text","text":"Writing a string as UTF8 value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ByteArray\/writeUTF8(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/bytearray\/writeutf8(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/coreaudiotypes.json b/docs/data/documentation/haishinkit/coreaudiotypes.json deleted file mode 100644 index 4d13af572..000000000 --- a/docs/data/documentation/haishinkit/coreaudiotypes.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/coreaudiotypes"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","interfaceLanguage":"swift"},"topicSections":[{"title":"Extended Structures","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription"]}],"kind":"symbol","metadata":{"roleHeading":"Extended Module","externalID":"s:m:s:e:s:So27AudioStreamBasicDescriptionV10HaishinKitE2eeoiySbAB_ABtFZ","title":"CoreAudioTypes","symbolKind":"extension","role":"collection","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription":{"role":"symbol","title":"AudioStreamBasicDescription","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioStreamBasicDescription"}],"url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes":{"role":"collection","title":"CoreAudioTypes","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription.json b/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription.json deleted file mode 100644 index 6b5b7cb0c..000000000 --- a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/SQ"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","interfaceLanguage":"swift"},"topicSections":[{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/Equatable-Implementations"],"generated":true}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"AudioStreamBasicDescription"}],"role":"symbol","title":"AudioStreamBasicDescription","roleHeading":"Extended Structure","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"}],"symbolKind":"extension","externalID":"s:e:s:So27AudioStreamBasicDescriptionV10HaishinKitE2eeoiySbAB_ABtFZ","extendedModule":"CoreAudioTypes","modules":[{"name":"HaishinKit","relatedModules":["CoreAudioTypes"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription":{"role":"symbol","title":"AudioStreamBasicDescription","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioStreamBasicDescription"}],"url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes":{"role":"collection","title":"CoreAudioTypes","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/!=(_:_:).json b/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/!=(_:_:).json deleted file mode 100644 index 69ed60131..000000000 --- a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::c:@S@AudioStreamBasicDescription","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes":{"role":"collection","title":"CoreAudioTypes","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription":{"role":"symbol","title":"AudioStreamBasicDescription","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioStreamBasicDescription"}],"url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/==(_:_:).json b/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/==(_:_:).json deleted file mode 100644 index 5c38d5673..000000000 --- a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/==(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"==(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:So27AudioStreamBasicDescriptionV10HaishinKitE2eeoiySbAB_ABtFZ","extendedModule":"CoreAudioTypes","modules":[{"name":"HaishinKit","relatedModules":["CoreAudioTypes"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes":{"role":"collection","title":"CoreAudioTypes","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription":{"role":"symbol","title":"AudioStreamBasicDescription","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioStreamBasicDescription"}],"url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/==(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/equatable-implementations.json b/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/equatable-implementations.json deleted file mode 100644 index df54ece0c..000000000 --- a/docs/data/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/!=(_:_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/==(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes":{"role":"collection","title":"CoreAudioTypes","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription":{"role":"symbol","title":"AudioStreamBasicDescription","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioStreamBasicDescription","preciseIdentifier":"c:@S@AudioStreamBasicDescription"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioStreamBasicDescription"}],"url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/CoreAudioTypes/AudioStreamBasicDescription/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/CoreAudioTypes\/AudioStreamBasicDescription\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/deviceutil.json b/docs/data/documentation/haishinkit/deviceutil.json deleted file mode 100644 index ca0aafb0a..000000000 --- a/docs/data/documentation/haishinkit/deviceutil.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceUtil"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/deviceutil"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The namespace of DeviceUtil."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceUtil"}],"title":"DeviceUtil","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit10DeviceUtilO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"DeviceUtil"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Type Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil\/device(withLocalizedName:mediaType:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/DeviceUtil":{"role":"symbol","title":"DeviceUtil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceUtil"}],"abstract":[{"type":"text","text":"The namespace of DeviceUtil."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceUtil"}],"url":"\/documentation\/haishinkit\/deviceutil"},"doc://HaishinKit/documentation/HaishinKit/DeviceUtil/device(withLocalizedName:mediaType:)":{"role":"symbol","title":"device(withLocalizedName:mediaType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withLocalizedName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Lookup device by localizedName and mediaType."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil\/device(withLocalizedName:mediaType:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/deviceutil\/device(withlocalizedname:mediatype:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/deviceutil/device(withlocalizedname:mediatype:).json b/docs/data/documentation/haishinkit/deviceutil/device(withlocalizedname:mediatype:).json deleted file mode 100644 index abad810d0..000000000 --- a/docs/data/documentation/haishinkit/deviceutil/device(withlocalizedname:mediatype:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withLocalizedName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/deviceutil\/device(withlocalizedname:mediatype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil\/device(withLocalizedName:mediaType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Lookup device by localizedName and mediaType."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withLocalizedName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?"}],"title":"device(withLocalizedName:mediaType:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10DeviceUtilO6device17withLocalizedName9mediaTypeSo09AVCaptureC0CSgSS_So07AVMediaJ0atFZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/DeviceUtil":{"role":"symbol","title":"DeviceUtil","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeviceUtil"}],"abstract":[{"type":"text","text":"The namespace of DeviceUtil."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeviceUtil"}],"url":"\/documentation\/haishinkit\/deviceutil"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/DeviceUtil/device(withLocalizedName:mediaType:)":{"role":"symbol","title":"device(withLocalizedName:mediaType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withLocalizedName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mediaType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Lookup device by localizedName and mediaType."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/DeviceUtil\/device(withLocalizedName:mediaType:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/deviceutil\/device(withlocalizedname:mediatype:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event.json b/docs/data/documentation/haishinkit/event.json deleted file mode 100644 index 616cca1ac..000000000 --- a/docs/data/documentation/haishinkit/event.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"title":"Event","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit5EventC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Event"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/init(type:bubbles:data:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/bubbles","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/data","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/target","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/type"]},{"title":"Type Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/from(_:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/CustomDebugStringConvertible-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/Event/target":{"role":"symbol","title":"target","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The target indicates the [IEventDispatcher]."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/target","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/target"},"doc://HaishinKit/documentation/HaishinKit/Event/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[{"type":"text","text":"The type represents the event name."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/type","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/type"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/Event/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The data indicates the to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/data","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/data"},"doc://HaishinKit/documentation/HaishinKit/Event/bubbles":{"role":"symbol","title":"bubbles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"The isBubbles indicates whether ot not an event is a bubbling event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/bubbles","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/bubbles"},"doc://HaishinKit/documentation/HaishinKit/Event/from(_:)":{"role":"symbol","title":"from(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Notification","preciseIdentifier":"s:10Foundation12NotificationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/from(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/from(_:)"},"doc://HaishinKit/documentation/HaishinKit/Event/init(type:bubbles:data:)":{"role":"symbol","title":"init(type:bubbles:data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Creates a new event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/init(type:bubbles:data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/init(type:bubbles:data:)"},"doc://HaishinKit/documentation/HaishinKit/Event/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/event\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/bubbles.json b/docs/data/documentation/haishinkit/event/bubbles.json deleted file mode 100644 index 8f15d36c2..000000000 --- a/docs/data/documentation/haishinkit/event/bubbles.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/bubbles"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/bubbles","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The isBubbles indicates whether ot not an event is a bubbling event."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"bubbles","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC7bubblesSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/bubbles":{"role":"symbol","title":"bubbles","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"The isBubbles indicates whether ot not an event is a bubbling event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/bubbles","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/bubbles"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/customdebugstringconvertible-implementations.json b/docs/data/documentation/haishinkit/event/customdebugstringconvertible-implementations.json deleted file mode 100644 index 8345acaab..000000000 --- a/docs/data/documentation/haishinkit/event/customdebugstringconvertible-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/event\/customdebugstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/CustomDebugStringConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/debugDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/data.json b/docs/data/documentation/haishinkit/event/data.json deleted file mode 100644 index b737bd504..000000000 --- a/docs/data/documentation/haishinkit/event/data.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/data"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/data","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The data indicates the to provide information."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"title":"data","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC4dataypSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The data indicates the to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/data","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/data"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/debugdescription.json b/docs/data/documentation/haishinkit/event/debugdescription.json deleted file mode 100644 index aa6295562..000000000 --- a/docs/data/documentation/haishinkit/event/debugdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/debugdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/debugDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomDebugStringConvertible.debugDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"debugDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:10HaishinKit5EventC16debugDescriptionSSvp","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/CustomDebugStringConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit/Event/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/event\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/from(_:).json b/docs/data/documentation/haishinkit/event/from(_:).json deleted file mode 100644 index 3ecd7a87c..000000000 --- a/docs/data/documentation/haishinkit/event/from(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"notification"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Notification","preciseIdentifier":"s:10Foundation12NotificationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/from(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/from(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Notification","preciseIdentifier":"s:10Foundation12NotificationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"}],"title":"from(_:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit5EventC4fromyAC10Foundation12NotificationVFZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/from(_:)":{"role":"symbol","title":"from(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"from"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Notification","preciseIdentifier":"s:10Foundation12NotificationV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/from(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/from(_:)"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/init(type:bubbles:data:).json b/docs/data/documentation/haishinkit/event/init(type:bubbles:data:).json deleted file mode 100644 index cdea832ed..000000000 --- a/docs/data/documentation/haishinkit/event/init(type:bubbles:data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false, "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/init(type:bubbles:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/init(type:bubbles:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new event."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"title":"init(type:bubbles:data:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit5EventC4type7bubbles4dataA2C4NameV_SbypSgtcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/init(type:bubbles:data:)":{"role":"symbol","title":"init(type:bubbles:data:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Creates a new event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/init(type:bubbles:data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/init(type:bubbles:data:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name.json b/docs/data/documentation/haishinkit/event/name.json deleted file mode 100644 index 03da7c68b..000000000 --- a/docs/data/documentation/haishinkit/event/name.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s43ExpressibleByExtendedGraphemeClusterLiteralP","doc:\/\/HaishinKit\/s26ExpressibleByStringLiteralP","doc:\/\/HaishinKit\/s33ExpressibleByUnicodeScalarLiteralP","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"title":"Event.Name","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit5EventC4NameV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Name"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(rawValue:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(stringLiteral:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rawValue-swift.property"]},{"title":"Type Aliases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/RawValue-swift.typealias","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/StringLiteralType"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ioError","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rtmpStatus","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/sync"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByUnicodeScalarLiteral-Implementations"],"generated":true}],"references":{"doc://HaishinKit/s33ExpressibleByUnicodeScalarLiteralP":{"type":"unresolvable","title":"Swift.ExpressibleByUnicodeScalarLiteral","identifier":"doc:\/\/HaishinKit\/s33ExpressibleByUnicodeScalarLiteralP"},"doc://HaishinKit/s26ExpressibleByStringLiteralP":{"type":"unresolvable","title":"Swift.ExpressibleByStringLiteral","identifier":"doc:\/\/HaishinKit\/s26ExpressibleByStringLiteralP"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/event":{"role":"symbol","title":"event","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/event","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/event"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(stringLiteral:)":{"role":"symbol","title":"init(stringLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(stringLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(stringliteral:)"},"doc://HaishinKit/s43ExpressibleByExtendedGraphemeClusterLiteralP":{"type":"unresolvable","title":"Swift.ExpressibleByExtendedGraphemeClusterLiteral","identifier":"doc:\/\/HaishinKit\/s43ExpressibleByExtendedGraphemeClusterLiteralP"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/ExpressibleByUnicodeScalarLiteral-Implementations":{"role":"collectionGroup","title":"ExpressibleByUnicodeScalarLiteral Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByUnicodeScalarLiteral-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/expressiblebyunicodescalarliteral-implementations"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/StringLiteralType":{"role":"symbol","title":"Event.Name.StringLiteralType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StringLiteralType"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/StringLiteralType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StringLiteralType"}],"url":"\/documentation\/haishinkit\/event\/name\/stringliteraltype"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/RawValue-swift.typealias":{"role":"symbol","title":"Event.Name.RawValue","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RawValue"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/RawValue-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RawValue"}],"url":"\/documentation\/haishinkit\/event\/name\/rawvalue-swift.typealias"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/rawValue-swift.property":{"role":"symbol","title":"rawValue","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rawValue-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/rawvalue-swift.property"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/sync":{"role":"symbol","title":"sync","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/sync","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/sync"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/ioError":{"role":"symbol","title":"ioError","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ioError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ioError","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/ioerror"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"role":"collectionGroup","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/expressiblebyextendedgraphemeclusterliteral-implementations"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/rtmpStatus":{"role":"symbol","title":"rtmpStatus","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmpStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rtmpStatus","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/rtmpstatus"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/event.json b/docs/data/documentation/haishinkit/event/name/event.json deleted file mode 100644 index 9dcf93011..000000000 --- a/docs/data/documentation/haishinkit/event/name/event.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/event"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/event","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"title":"event","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC4NameV5eventAEvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/event":{"role":"symbol","title":"event","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/event","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/expressiblebyextendedgraphemeclusterliteral-implementations.json b/docs/data/documentation/haishinkit/event/name/expressiblebyextendedgraphemeclusterliteral-implementations.json deleted file mode 100644 index 93450b29b..000000000 --- a/docs/data/documentation/haishinkit/event/name/expressiblebyextendedgraphemeclusterliteral-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/expressiblebyextendedgraphemeclusterliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(extendedGraphemeClusterLiteral:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(extendedGraphemeClusterLiteral:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(extendedGraphemeClusterLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(extendedgraphemeclusterliteral:)"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/expressiblebyunicodescalarliteral-implementations.json b/docs/data/documentation/haishinkit/event/name/expressiblebyunicodescalarliteral-implementations.json deleted file mode 100644 index 6fa9911f0..000000000 --- a/docs/data/documentation/haishinkit/event/name/expressiblebyunicodescalarliteral-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/expressiblebyunicodescalarliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByUnicodeScalarLiteral-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(unicodeScalarLiteral:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"ExpressibleByUnicodeScalarLiteral Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(unicodeScalarLiteral:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.UnicodeScalarLiteralType"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(unicodeScalarLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExtendedGraphemeClusterLiteralType"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(unicodeScalarLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(unicodescalarliteral:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/init(extendedgraphemeclusterliteral:).json b/docs/data/documentation/haishinkit/event/name/init(extendedgraphemeclusterliteral:).json deleted file mode 100644 index 30cd7f3a5..000000000 --- a/docs/data/documentation/haishinkit/event/name/init(extendedgraphemeclusterliteral:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/init(extendedgraphemeclusterliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(extendedGraphemeClusterLiteral:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"ExpressibleByExtendedGraphemeClusterLiteral.init(extendedGraphemeClusterLiteral:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(extendedGraphemeClusterLiteral:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"symbolKind":"init","externalID":"s:s26ExpressibleByStringLiteralPs0cD4TypeQz023ExtendedGraphemeClusterdE0RtzrlE08extendedghD0xAF_tcfc::SYNTHESIZED::s:10HaishinKit5EventC4NameV","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(extendedGraphemeClusterLiteral:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(extendedGraphemeClusterLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(extendedgraphemeclusterliteral:)"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"role":"collectionGroup","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/expressiblebyextendedgraphemeclusterliteral-implementations"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/init(rawvalue:).json b/docs/data/documentation/haishinkit/event/name/init(rawvalue:).json deleted file mode 100644 index 8c9fa734b..000000000 --- a/docs/data/documentation/haishinkit/event/name/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit5EventC4NameV8rawValueAESS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/init(stringliteral:).json b/docs/data/documentation/haishinkit/event/name/init(stringliteral:).json deleted file mode 100644 index bb54994e4..000000000 --- a/docs/data/documentation/haishinkit/event/name/init(stringliteral:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/init(stringliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(stringLiteral:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"ExpressibleByStringLiteral.init(stringLiteral:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(stringLiteral:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit5EventC4NameV13stringLiteralAESS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(stringLiteral:)":{"role":"symbol","title":"init(stringLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(stringLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(stringliteral:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/init(unicodescalarliteral:).json b/docs/data/documentation/haishinkit/event/name/init(unicodescalarliteral:).json deleted file mode 100644 index f0500ecec..000000000 --- a/docs/data/documentation/haishinkit/event/name/init(unicodescalarliteral:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExtendedGraphemeClusterLiteralType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/init(unicodescalarliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(unicodeScalarLiteral:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"ExpressibleByUnicodeScalarLiteral.init(unicodeScalarLiteral:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.UnicodeScalarLiteralType"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(unicodeScalarLiteral:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExtendedGraphemeClusterLiteralType"},{"kind":"text","text":")"}],"symbolKind":"init","externalID":"s:s43ExpressibleByExtendedGraphemeClusterLiteralPs013UnicodeScalarF4TypeQz0cdefI0RtzrlE07unicodehF0xAF_tcfc::SYNTHESIZED::s:10HaishinKit5EventC4NameV","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByUnicodeScalarLiteral-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name/ExpressibleByUnicodeScalarLiteral-Implementations":{"role":"collectionGroup","title":"ExpressibleByUnicodeScalarLiteral Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ExpressibleByUnicodeScalarLiteral-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/expressiblebyunicodescalarliteral-implementations"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/init(unicodeScalarLiteral:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.UnicodeScalarLiteralType"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(unicodeScalarLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExtendedGraphemeClusterLiteralType"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/init(unicodeScalarLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/init(unicodescalarliteral:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/ioerror.json b/docs/data/documentation/haishinkit/event/name/ioerror.json deleted file mode 100644 index 86690c815..000000000 --- a/docs/data/documentation/haishinkit/event/name/ioerror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ioError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/ioerror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ioError","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ioError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"title":"ioError","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC4NameV7ioErrorAEvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/ioError":{"role":"symbol","title":"ioError","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ioError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/ioError","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/ioerror"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/rawvalue-swift.property.json b/docs/data/documentation/haishinkit/event/name/rawvalue-swift.property.json deleted file mode 100644 index 61c3335ec..000000000 --- a/docs/data/documentation/haishinkit/event/name/rawvalue-swift.property.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/rawvalue-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rawValue-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.rawValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"rawValue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC4NameV8rawValueSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name/rawValue-swift.property":{"role":"symbol","title":"rawValue","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rawValue-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/rawvalue-swift.property"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/rawvalue-swift.typealias.json b/docs/data/documentation/haishinkit/event/name/rawvalue-swift.typealias.json deleted file mode 100644 index 7f1e2c700..000000000 --- a/docs/data/documentation/haishinkit/event/name/rawvalue-swift.typealias.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RawValue"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/rawvalue-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/RawValue-swift.typealias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.RawValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RawValue"}],"title":"Event.Name.RawValue","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:10HaishinKit5EventC4NameV8RawValuea","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RawValue"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name/RawValue-swift.typealias":{"role":"symbol","title":"Event.Name.RawValue","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"RawValue"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/RawValue-swift.typealias","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RawValue"}],"url":"\/documentation\/haishinkit\/event\/name\/rawvalue-swift.typealias"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/rtmpstatus.json b/docs/data/documentation/haishinkit/event/name/rtmpstatus.json deleted file mode 100644 index ee29611ad..000000000 --- a/docs/data/documentation/haishinkit/event/name/rtmpstatus.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmpStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/rtmpstatus"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rtmpStatus","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmpStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"title":"rtmpStatus","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC4NameV10rtmpStatusAEvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/rtmpStatus":{"role":"symbol","title":"rtmpStatus","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rtmpStatus"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/rtmpStatus","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/rtmpstatus"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/stringliteraltype.json b/docs/data/documentation/haishinkit/event/name/stringliteraltype.json deleted file mode 100644 index 8e0c06eec..000000000 --- a/docs/data/documentation/haishinkit/event/name/stringliteraltype.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StringLiteralType"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/stringliteraltype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/StringLiteralType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"ExpressibleByStringLiteral.StringLiteralType"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StringLiteralType"}],"title":"Event.Name.StringLiteralType","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:10HaishinKit5EventC4NameV17StringLiteralTypea","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"StringLiteralType"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name/StringLiteralType":{"role":"symbol","title":"Event.Name.StringLiteralType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"StringLiteralType"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/StringLiteralType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StringLiteralType"}],"url":"\/documentation\/haishinkit\/event\/name\/stringliteraltype"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/name/sync.json b/docs/data/documentation/haishinkit/event/name/sync.json deleted file mode 100644 index ea4604740..000000000 --- a/docs/data/documentation/haishinkit/event/name/sync.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/name\/sync"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/sync","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"title":"sync","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC4NameV4syncAEvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name/sync":{"role":"symbol","title":"sync","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name\/sync","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/name\/sync"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/target.json b/docs/data/documentation/haishinkit/event/target.json deleted file mode 100644 index 2806c04b0..000000000 --- a/docs/data/documentation/haishinkit/event/target.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/target"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/target","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The target indicates the [IEventDispatcher]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?"}],"title":"target","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC6targetyXlSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/target":{"role":"symbol","title":"target","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The target indicates the [IEventDispatcher]."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/target","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/target"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/event/type.json b/docs/data/documentation/haishinkit/event/type.json deleted file mode 100644 index 1af58732e..000000000 --- a/docs/data/documentation/haishinkit/event/type.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/event\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type represents the event name."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit5EventC4typeAC4NameVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"}],"abstract":[{"type":"text","text":"The type represents the event name."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/type","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/event\/type"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcher.json b/docs/data/documentation/haishinkit/eventdispatcher.json deleted file mode 100644 index 388209553..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcher.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcher"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"title":"EventDispatcher","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit15EventDispatcherC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init(target:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/addEventListener(_:selector:observer:useCapture:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(_:bubbles:data:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(event:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/removeEventListener(_:selector:observer:useCapture:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/dispatch(_:bubbles:data:)":{"role":"symbol","title":"dispatch(_:bubbles:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(_:bubbles:data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/dispatch(_:bubbles:data:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/dispatch(event:)":{"role":"symbol","title":"dispatch(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(event:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/dispatch(event:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/init(target:)":{"role":"symbol","title":"init(target:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new event dispatcher to proxy target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init(target:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/init(target:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/addEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Registers the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/addEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/addeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates a new event dispatcher."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/init()"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/removeEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Unregister the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/removeEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/removeeventlistener(_:selector:observer:usecapture:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcher/addeventlistener(_:selector:observer:usecapture:).json b/docs/data/documentation/haishinkit/eventdispatcher/addeventlistener(_:selector:observer:usecapture:).json deleted file mode 100644 index a279eaaf1..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcher/addeventlistener(_:selector:observer:usecapture:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcher\/addeventlistener(_:selector:observer:usecapture:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/addEventListener(_:selector:observer:useCapture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Registers the event listeners on the event target."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"title":"addEventListener(_:selector:observer:useCapture:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit15EventDispatcherC03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/addEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Registers the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/addEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/addeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcher/dispatch(_:bubbles:data:).json b/docs/data/documentation/haishinkit/eventdispatcher/dispatch(_:bubbles:data:).json deleted file mode 100644 index 5773b1dd5..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcher/dispatch(_:bubbles:data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcher\/dispatch(_:bubbles:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(_:bubbles:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"title":"dispatch(_:bubbles:data:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit15EventDispatcherC8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/dispatch(_:bubbles:data:)":{"role":"symbol","title":"dispatch(_:bubbles:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(_:bubbles:data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/dispatch(_:bubbles:data:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcher/dispatch(event:).json b/docs/data/documentation/haishinkit/eventdispatcher/dispatch(event:).json deleted file mode 100644 index 3172935ca..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcher/dispatch(event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcher\/dispatch(event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"title":"dispatch(event:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit15EventDispatcherC8dispatch5eventyAA0C0C_tF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/dispatch(event:)":{"role":"symbol","title":"dispatch(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/dispatch(event:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/dispatch(event:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcher/init().json b/docs/data/documentation/haishinkit/eventdispatcher/init().json deleted file mode 100644 index a11d2187b..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcher/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcher\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new event dispatcher."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit15EventDispatcherCACycfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates a new event dispatcher."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/init()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcher/init(target:).json b/docs/data/documentation/haishinkit/eventdispatcher/init(target:).json deleted file mode 100644 index ff12e9a86..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcher/init(target:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcher\/init(target:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init(target:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new event dispatcher to proxy target."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":")"}],"title":"init(target:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit15EventDispatcherC6targetACyXl_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/init(target:)":{"role":"symbol","title":"init(target:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"target"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new event dispatcher to proxy target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/init(target:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/init(target:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcher/removeeventlistener(_:selector:observer:usecapture:).json b/docs/data/documentation/haishinkit/eventdispatcher/removeeventlistener(_:selector:observer:usecapture:).json deleted file mode 100644 index 034ab51b0..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcher/removeeventlistener(_:selector:observer:usecapture:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcher\/removeeventlistener(_:selector:observer:usecapture:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/removeEventListener(_:selector:observer:useCapture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Unregister the event listeners on the event target."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"title":"removeEventListener(_:selector:observer:useCapture:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit15EventDispatcherC06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher/removeEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Unregister the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher\/removeEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/eventdispatcher\/removeeventlistener(_:selector:observer:usecapture:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcherconvertible.json b/docs/data/documentation/haishinkit/eventdispatcherconvertible.json deleted file mode 100644 index e629f929f..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcherconvertible.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcherconvertible"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"title":"EventDispatcherConvertible","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit26EventDispatcherConvertibleP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/addEventListener(_:selector:observer:useCapture:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(_:bubbles:data:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(event:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/removeEventListener(_:selector:observer:useCapture:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/dispatch(_:bubbles:data:)":{"role":"symbol","title":"dispatch(_:bubbles:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(_:bubbles:data:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(_:bubbles:data:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/dispatch(event:)":{"role":"symbol","title":"dispatch(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(event:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(event:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/addEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Registers the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/addEventListener(_:selector:observer:useCapture:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/addeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/removeEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Unregister the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/removeEventListener(_:selector:observer:useCapture:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/removeeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcherconvertible/addeventlistener(_:selector:observer:usecapture:).json b/docs/data/documentation/haishinkit/eventdispatcherconvertible/addeventlistener(_:selector:observer:usecapture:).json deleted file mode 100644 index f852c48bf..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcherconvertible/addeventlistener(_:selector:observer:usecapture:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcherconvertible\/addeventlistener(_:selector:observer:usecapture:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/addEventListener(_:selector:observer:useCapture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Registers the event listeners on the event target."}],"kind":"symbol","metadata":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit26EventDispatcherConvertibleP03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/addEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Registers the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/addEventListener(_:selector:observer:useCapture:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/addeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcherconvertible/dispatch(_:bubbles:data:).json b/docs/data/documentation/haishinkit/eventdispatcherconvertible/dispatch(_:bubbles:data:).json deleted file mode 100644 index 7885838fd..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcherconvertible/dispatch(_:bubbles:data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(_:bubbles:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(_:bubbles:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"kind":"symbol","metadata":{"role":"symbol","title":"dispatch(_:bubbles:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit26EventDispatcherConvertibleP8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/dispatch(_:bubbles:data:)":{"role":"symbol","title":"dispatch(_:bubbles:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(_:bubbles:data:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(_:bubbles:data:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcherconvertible/dispatch(event:).json b/docs/data/documentation/haishinkit/eventdispatcherconvertible/dispatch(event:).json deleted file mode 100644 index 025addd83..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcherconvertible/dispatch(event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"kind":"symbol","metadata":{"role":"symbol","title":"dispatch(event:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit26EventDispatcherConvertibleP8dispatch5eventyAA0C0C_tF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/dispatch(event:)":{"role":"symbol","title":"dispatch(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Dispatches the events into the implementations event model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/dispatch(event:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(event:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/eventdispatcherconvertible/removeeventlistener(_:selector:observer:usecapture:).json b/docs/data/documentation/haishinkit/eventdispatcherconvertible/removeeventlistener(_:selector:observer:usecapture:).json deleted file mode 100644 index c9f2ff7d8..000000000 --- a/docs/data/documentation/haishinkit/eventdispatcherconvertible/removeeventlistener(_:selector:observer:usecapture:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/eventdispatcherconvertible\/removeeventlistener(_:selector:observer:usecapture:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/removeEventListener(_:selector:observer:useCapture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Unregister the event listeners on the event target."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit26EventDispatcherConvertibleP06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible/removeEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Unregister the event listeners on the event target."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible\/removeEventListener(_:selector:observer:useCapture:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/eventdispatcherconvertible\/removeeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview.json b/docs/data/documentation/haishinkit/hkview.json deleted file mode 100644 index e19ab8e3f..000000000 --- a/docs/data/documentation/haishinkit/hkview.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)NSView"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSAccessibilityElement","doc:\/\/HaishinKit\/objc(pl)NSAccessibility","doc:\/\/HaishinKit\/objc(pl)NSAnimatablePropertyContainer","doc:\/\/HaishinKit\/objc(pl)NSAppearanceCustomization","doc:\/\/HaishinKit\/objc(pl)NSDraggingDestination","doc:\/\/HaishinKit\/objc(pl)NSStandardKeyBindingResponding","doc:\/\/HaishinKit\/objc(pl)NSTouchBarProvider","doc:\/\/HaishinKit\/objc(pl)NSUserActivityRestoring","doc:\/\/HaishinKit\/objc(pl)NSUserInterfaceItemIdentification","doc:\/\/HaishinKit\/objc(pl)NSCoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"title":"HKView","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)HKView","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"HKView"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(coder:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(frame:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoFormatDescription","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoGravity","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoOrientation"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/awakeFromNib()"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/defaultBackgroundColor"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/NetStreamDrawable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/objc(pl)NSUserActivityRestoring":{"type":"unresolvable","title":"AppKit.NSUserActivityRestoring","identifier":"doc:\/\/HaishinKit\/objc(pl)NSUserActivityRestoring"},"doc://HaishinKit/documentation/HaishinKit/HKView/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/videoorientation"},"doc://HaishinKit/objc(pl)NSCoding":{"type":"unresolvable","title":"Foundation.NSCoding","identifier":"doc:\/\/HaishinKit\/objc(pl)NSCoding"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/HKView/init(frame:)":{"role":"symbol","title":"init(frame:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSRect","preciseIdentifier":"c:@T@NSRect"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(frame:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/init(frame:)"},"doc://HaishinKit/documentation/HaishinKit/HKView/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A value that displays a video format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoFormatDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/videoformatdescription"},"doc://HaishinKit/objc(pl)NSAccessibilityElement":{"type":"unresolvable","title":"AppKit.NSAccessibilityElementProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAccessibilityElement"},"doc://HaishinKit/documentation/HaishinKit/HKView/defaultBackgroundColor":{"role":"symbol","title":"defaultBackgroundColor","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"abstract":[{"type":"text","text":"The view’s background color."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/defaultBackgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/defaultbackgroundcolor"},"doc://HaishinKit/objc(pl)NSDraggingDestination":{"type":"unresolvable","title":"AppKit.NSDraggingDestination","identifier":"doc:\/\/HaishinKit\/objc(pl)NSDraggingDestination"},"doc://HaishinKit/objc(pl)NSAppearanceCustomization":{"type":"unresolvable","title":"AppKit.NSAppearanceCustomization","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAppearanceCustomization"},"doc://HaishinKit/documentation/HaishinKit/HKView/videoGravity":{"role":"symbol","title":"videoGravity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"abstract":[{"type":"text","text":"A value that specifies how the video is displayed within a player layer’s bounds."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoGravity","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/videogravity"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/objc(pl)NSAccessibility":{"type":"unresolvable","title":"AppKit.NSAccessibilityProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAccessibility"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/objc(pl)NSUserInterfaceItemIdentification":{"type":"unresolvable","title":"AppKit.NSUserInterfaceItemIdentification","identifier":"doc:\/\/HaishinKit\/objc(pl)NSUserInterfaceItemIdentification"},"doc://HaishinKit/documentation/HaishinKit/HKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/hkview\/netstreamdrawable-implementations"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/objc(pl)NSStandardKeyBindingResponding":{"type":"unresolvable","title":"AppKit.NSStandardKeyBindingResponding","identifier":"doc:\/\/HaishinKit\/objc(pl)NSStandardKeyBindingResponding"},"doc://HaishinKit/documentation/HaishinKit/HKView/awakeFromNib()":{"role":"symbol","title":"awakeFromNib()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/awakeFromNib()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/awakefromnib()"},"doc://HaishinKit/objc(pl)NSTouchBarProvider":{"type":"unresolvable","title":"AppKit.NSTouchBarProvider","identifier":"doc:\/\/HaishinKit\/objc(pl)NSTouchBarProvider"},"doc://HaishinKit/objc(pl)NSAnimatablePropertyContainer":{"type":"unresolvable","title":"AppKit.NSAnimatablePropertyContainer","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAnimatablePropertyContainer"},"doc://HaishinKit/objc(cs)NSView":{"type":"unresolvable","title":"AppKit.NSView","identifier":"doc:\/\/HaishinKit\/objc(cs)NSView"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/HKView/init(coder:)":{"role":"symbol","title":"init(coder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(coder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/init(coder:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/attachstream(_:).json b/docs/data/documentation/haishinkit/hkview/attachstream(_:).json deleted file mode 100644 index ba89e7a44..000000000 --- a/docs/data/documentation/haishinkit/hkview/attachstream(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/attachstream(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/attachStream(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.attachStream(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"attachStream(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit6HKViewC12attachStreamyyAA03NetE0CSgF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/NetStreamDrawable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/attachStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/attachstream(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/HKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/hkview\/netstreamdrawable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/awakefromnib().json b/docs/data/documentation/haishinkit/hkview/awakefromnib().json deleted file mode 100644 index 16e4d77f8..000000000 --- a/docs/data/documentation/haishinkit/hkview/awakefromnib().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/awakefromnib()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/awakeFromNib()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"title":"awakeFromNib()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"c:@M@HaishinKit@objc(cs)HKView(im)awakeFromNib","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/HKView/awakeFromNib()":{"role":"symbol","title":"awakeFromNib()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/awakeFromNib()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/awakefromnib()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/defaultbackgroundcolor.json b/docs/data/documentation/haishinkit/hkview/defaultbackgroundcolor.json deleted file mode 100644 index f60fd1744..000000000 --- a/docs/data/documentation/haishinkit/hkview/defaultbackgroundcolor.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/defaultbackgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/defaultBackgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The view’s background color."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"title":"defaultBackgroundColor","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit6HKViewC22defaultBackgroundColorSo7NSColorCvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/HKView/defaultBackgroundColor":{"role":"symbol","title":"defaultBackgroundColor","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"abstract":[{"type":"text","text":"The view’s background color."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/defaultBackgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/defaultbackgroundcolor"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/enqueue(_:).json b/docs/data/documentation/haishinkit/hkview/enqueue(_:).json deleted file mode 100644 index 92563a47f..000000000 --- a/docs/data/documentation/haishinkit/hkview/enqueue(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/enqueue(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/enqueue(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.enqueue(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"enqueue(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit6HKViewC7enqueueyySo17CMSampleBufferRefaSgF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/NetStreamDrawable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/hkview\/netstreamdrawable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/HKView/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/enqueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/enqueue(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/init(coder:).json b/docs/data/documentation/haishinkit/hkview/init(coder:).json deleted file mode 100644 index 837364a6d..000000000 --- a/docs/data/documentation/haishinkit/hkview/init(coder:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"required"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/init(coder:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(coder:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"title":"init(coder:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@HaishinKit@objc(cs)HKView(im)initWithCoder:","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/HKView/init(coder:)":{"role":"symbol","title":"init(coder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(coder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/init(coder:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/init(frame:).json b/docs/data/documentation/haishinkit/hkview/init(frame:).json deleted file mode 100644 index 1c8453c0b..000000000 --- a/docs/data/documentation/haishinkit/hkview/init(frame:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSRect","preciseIdentifier":"c:@T@NSRect"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/init(frame:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(frame:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSRect","preciseIdentifier":"c:@T@NSRect"},{"kind":"text","text":")"}],"title":"init(frame:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@HaishinKit@objc(cs)HKView(im)initWithFrame:","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView/init(frame:)":{"role":"symbol","title":"init(frame:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSRect","preciseIdentifier":"c:@T@NSRect"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/init(frame:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/init(frame:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/netstreamdrawable-implementations.json b/docs/data/documentation/haishinkit/hkview/netstreamdrawable-implementations.json deleted file mode 100644 index e6247c288..000000000 --- a/docs/data/documentation/haishinkit/hkview/netstreamdrawable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/netstreamdrawable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/NetStreamDrawable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/attachStream(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/enqueue(_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"NetStreamDrawable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HKView/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/enqueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/enqueue(_:)"},"doc://HaishinKit/documentation/HaishinKit/HKView/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/attachStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/attachstream(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/videoformatdescription.json b/docs/data/documentation/haishinkit/hkview/videoformatdescription.json deleted file mode 100644 index 139e48ac6..000000000 --- a/docs/data/documentation/haishinkit/hkview/videoformatdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/videoformatdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoFormatDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A value that displays a video format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"title":"videoFormatDescription","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit6HKViewC22videoFormatDescriptionSo08CMFormatF3RefaSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HKView/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A value that displays a video format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoFormatDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/videoformatdescription"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/videogravity.json b/docs/data/documentation/haishinkit/hkview/videogravity.json deleted file mode 100644 index 58c4e81bd..000000000 --- a/docs/data/documentation/haishinkit/hkview/videogravity.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/videogravity"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoGravity","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A value that specifies how the video is displayed within a player layer’s bounds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"title":"videoGravity","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit6HKViewC12videoGravitySo012AVLayerVideoE0avp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HKView/videoGravity":{"role":"symbol","title":"videoGravity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"abstract":[{"type":"text","text":"A value that specifies how the video is displayed within a player layer’s bounds."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoGravity","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/videogravity"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hkview/videoorientation.json b/docs/data/documentation/haishinkit/hkview/videoorientation.json deleted file mode 100644 index d22e440eb..000000000 --- a/docs/data/documentation/haishinkit/hkview/videoorientation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hkview\/videoorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.videoOrientation"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"title":"videoOrientation","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit6HKViewC16videoOrientationSo014AVCaptureVideoE0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HKView/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hkview\/videoorientation"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hlsservice.json b/docs/data/documentation/haishinkit/hlsservice.json deleted file mode 100644 index 54feb9735..000000000 --- a/docs/data/documentation/haishinkit/hlsservice.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hlsservice"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSNetServiceDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"title":"HLSService","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)HLSService","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"HLSService"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/addHTTPStream(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/get(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/removeHTTPStream(_:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/HLSService/addHTTPStream(_:)":{"role":"symbol","title":"addHTTPStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addHTTPStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Add a http stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/addHTTPStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hlsservice\/addhttpstream(_:)"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/HLSService/get(_:client:)":{"role":"symbol","title":"get(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/get(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hlsservice\/get(_:client:)"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/objc(pl)NSNetServiceDelegate":{"type":"unresolvable","title":"Foundation.NetServiceDelegate","identifier":"doc:\/\/HaishinKit\/objc(pl)NSNetServiceDelegate"},"doc://HaishinKit/documentation/HaishinKit/HLSService":{"role":"symbol","title":"HLSService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HLSService"}],"url":"\/documentation\/haishinkit\/hlsservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/HLSService/removeHTTPStream(_:)":{"role":"symbol","title":"removeHTTPStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeHTTPStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Remove a http stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/removeHTTPStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hlsservice\/removehttpstream(_:)"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hlsservice/addhttpstream(_:).json b/docs/data/documentation/haishinkit/hlsservice/addhttpstream(_:).json deleted file mode 100644 index 8f51f5100..000000000 --- a/docs/data/documentation/haishinkit/hlsservice/addhttpstream(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addHTTPStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream","text":"HTTPStream"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hlsservice\/addhttpstream(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/addHTTPStream(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Add a http stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addHTTPStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream"},{"kind":"text","text":")"}],"title":"addHTTPStream(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10HLSServiceC13addHTTPStreamyyAA0E0CF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HLSService":{"role":"symbol","title":"HLSService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HLSService"}],"url":"\/documentation\/haishinkit\/hlsservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HLSService/addHTTPStream(_:)":{"role":"symbol","title":"addHTTPStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addHTTPStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Add a http stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/addHTTPStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hlsservice\/addhttpstream(_:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hlsservice/get(_:client:).json b/docs/data/documentation/haishinkit/hlsservice/get(_:client:).json deleted file mode 100644 index c5332ff5e..000000000 --- a/docs/data/documentation/haishinkit/hlsservice/get(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hlsservice\/get(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/get(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"HTTPService.get(_:client:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"get(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10HLSServiceC3get_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HLSService/get(_:client:)":{"role":"symbol","title":"get(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/get(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hlsservice\/get(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HLSService":{"role":"symbol","title":"HLSService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HLSService"}],"url":"\/documentation\/haishinkit\/hlsservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/hlsservice/removehttpstream(_:).json b/docs/data/documentation/haishinkit/hlsservice/removehttpstream(_:).json deleted file mode 100644 index a4bd91108..000000000 --- a/docs/data/documentation/haishinkit/hlsservice/removehttpstream(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeHTTPStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream","text":"HTTPStream"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/hlsservice\/removehttpstream(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/removeHTTPStream(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Remove a http stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeHTTPStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream"},{"kind":"text","text":")"}],"title":"removeHTTPStream(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10HLSServiceC16removeHTTPStreamyyAA0E0CF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HLSService/removeHTTPStream(_:)":{"role":"symbol","title":"removeHTTPStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeHTTPStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)HTTPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Remove a http stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService\/removeHTTPStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/hlsservice\/removehttpstream(_:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/documentation/HaishinKit/HLSService":{"role":"symbol","title":"HLSService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HLSService"}],"url":"\/documentation\/haishinkit\/hlsservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httprequest.json b/docs/data/documentation/haishinkit/httprequest.json deleted file mode 100644 index 4939e8543..000000000 --- a/docs/data/documentation/haishinkit/httprequest.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httprequest"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s23CustomStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A URL load request."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"title":"HTTPRequest","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit11HTTPRequestV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/body","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/headerFields","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/method","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/uri","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/version"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/separator"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/body":{"role":"symbol","title":"body","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the http body."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/body","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/body"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/headerFields":{"role":"symbol","title":"headerFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Specifies the header field."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/headerFields","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/headerfields"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/uri":{"role":"symbol","title":"uri","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the uri to request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/uri","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/uri"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/separator":{"role":"symbol","title":"separator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"abstract":[{"type":"text","text":"The separator value is 0x0a."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/separator","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/separator"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the version of the HTTP."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/version","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/version"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/method":{"role":"symbol","title":"method","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the http method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/method","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/method"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httprequest/body.json b/docs/data/documentation/haishinkit/httprequest/body.json deleted file mode 100644 index d006794f3..000000000 --- a/docs/data/documentation/haishinkit/httprequest/body.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httprequest\/body"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/body","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the http body."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"title":"body","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPRequestV4body10Foundation4DataVSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/body":{"role":"symbol","title":"body","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the http body."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/body","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/body"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httprequest/headerfields.json b/docs/data/documentation/haishinkit/httprequest/headerfields.json deleted file mode 100644 index ad69e1fb7..000000000 --- a/docs/data/documentation/haishinkit/httprequest/headerfields.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httprequest\/headerfields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/headerFields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the header field."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"title":"headerFields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPRequestV12headerFieldsSDyS2SGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/headerFields":{"role":"symbol","title":"headerFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Specifies the header field."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/headerFields","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/headerfields"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httprequest/method.json b/docs/data/documentation/haishinkit/httprequest/method.json deleted file mode 100644 index 7d0e67bc2..000000000 --- a/docs/data/documentation/haishinkit/httprequest/method.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httprequest\/method"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/method","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the http method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"method","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPRequestV6methodSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/method":{"role":"symbol","title":"method","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"method"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the http method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/method","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/method"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httprequest/separator.json b/docs/data/documentation/haishinkit/httprequest/separator.json deleted file mode 100644 index fb0802299..000000000 --- a/docs/data/documentation/haishinkit/httprequest/separator.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httprequest\/separator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/separator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The separator value is 0x0a."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"title":"separator","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPRequestV9separators5UInt8VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/separator":{"role":"symbol","title":"separator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"}],"abstract":[{"type":"text","text":"The separator value is 0x0a."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/separator","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/separator"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httprequest/uri.json b/docs/data/documentation/haishinkit/httprequest/uri.json deleted file mode 100644 index a4d68b6ad..000000000 --- a/docs/data/documentation/haishinkit/httprequest/uri.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httprequest\/uri"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/uri","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the uri to request."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"uri","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPRequestV3uriSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/uri":{"role":"symbol","title":"uri","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the uri to request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/uri","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/uri"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httprequest/version.json b/docs/data/documentation/haishinkit/httprequest/version.json deleted file mode 100644 index 2715f1f67..000000000 --- a/docs/data/documentation/haishinkit/httprequest/version.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httprequest\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the version of the HTTP."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPRequestV7versionSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the version of the HTTP."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest\/version","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httprequest\/version"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpresponse.json b/docs/data/documentation/haishinkit/httpresponse.json deleted file mode 100644 index f1ea416eb..000000000 --- a/docs/data/documentation/haishinkit/httpresponse.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s30ExpressibleByDictionaryLiteralP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A URL load response."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"title":"HTTPResponse","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit12HTTPResponseV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/init(dictionaryLiteral:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/body","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/headerFields","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/statusCode","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/version"]}],"references":{"doc://HaishinKit/s30ExpressibleByDictionaryLiteralP":{"type":"unresolvable","title":"Swift.ExpressibleByDictionaryLiteral","identifier":"doc:\/\/HaishinKit\/s30ExpressibleByDictionaryLiteralP"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/statusCode":{"role":"symbol","title":"statusCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the status code."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/statusCode","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/statuscode"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/init(dictionaryLiteral:)":{"role":"symbol","title":"init(dictionaryLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dictionaryLiteral"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")...)"}],"abstract":[{"type":"text","text":"Creates a new http response with header fields."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/init(dictionaryLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/init(dictionaryliteral:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/body":{"role":"symbol","title":"body","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the body."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/body","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/body"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/headerFields":{"role":"symbol","title":"headerFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Specifies the header fields."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/headerFields","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/headerfields"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse":{"role":"symbol","title":"HTTPResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"abstract":[{"type":"text","text":"A URL load response."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}],"url":"\/documentation\/haishinkit\/httpresponse"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the version of the HTTP."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/version","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/version"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpresponse/body.json b/docs/data/documentation/haishinkit/httpresponse/body.json deleted file mode 100644 index 1a800e3fe..000000000 --- a/docs/data/documentation/haishinkit/httpresponse/body.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpresponse\/body"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/body","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the body."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"title":"body","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit12HTTPResponseV4body10Foundation4DataVSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/body":{"role":"symbol","title":"body","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the body."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/body","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/body"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse":{"role":"symbol","title":"HTTPResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"abstract":[{"type":"text","text":"A URL load response."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}],"url":"\/documentation\/haishinkit\/httpresponse"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpresponse/headerfields.json b/docs/data/documentation/haishinkit/httpresponse/headerfields.json deleted file mode 100644 index 9486de7a6..000000000 --- a/docs/data/documentation/haishinkit/httpresponse/headerfields.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpresponse\/headerfields"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/headerFields","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the header fields."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"title":"headerFields","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit12HTTPResponseV12headerFieldsSDyS2SGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPResponse":{"role":"symbol","title":"HTTPResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"abstract":[{"type":"text","text":"A URL load response."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}],"url":"\/documentation\/haishinkit\/httpresponse"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/headerFields":{"role":"symbol","title":"headerFields","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"headerFields"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Specifies the header fields."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/headerFields","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/headerfields"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpresponse/init(dictionaryliteral:).json b/docs/data/documentation/haishinkit/httpresponse/init(dictionaryliteral:).json deleted file mode 100644 index cd75ac95e..000000000 --- a/docs/data/documentation/haishinkit/httpresponse/init(dictionaryliteral:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dictionaryLiteral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"elements"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")...)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpresponse\/init(dictionaryliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/init(dictionaryLiteral:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new http response with header fields."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dictionaryLiteral"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")...)"}],"title":"init(dictionaryLiteral:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit12HTTPResponseV17dictionaryLiteralACSS_SStd_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse":{"role":"symbol","title":"HTTPResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"abstract":[{"type":"text","text":"A URL load response."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}],"url":"\/documentation\/haishinkit\/httpresponse"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/init(dictionaryLiteral:)":{"role":"symbol","title":"init(dictionaryLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dictionaryLiteral"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")...)"}],"abstract":[{"type":"text","text":"Creates a new http response with header fields."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/init(dictionaryLiteral:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/init(dictionaryliteral:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpresponse/statuscode.json b/docs/data/documentation/haishinkit/httpresponse/statuscode.json deleted file mode 100644 index 947003599..000000000 --- a/docs/data/documentation/haishinkit/httpresponse/statuscode.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpresponse\/statuscode"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/statusCode","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the status code."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"statusCode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit12HTTPResponseV10statusCodeSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPResponse":{"role":"symbol","title":"HTTPResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"abstract":[{"type":"text","text":"A URL load response."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}],"url":"\/documentation\/haishinkit\/httpresponse"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/statusCode":{"role":"symbol","title":"statusCode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the status code."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/statusCode","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/statuscode"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpresponse/version.json b/docs/data/documentation/haishinkit/httpresponse/version.json deleted file mode 100644 index fe5d50ebf..000000000 --- a/docs/data/documentation/haishinkit/httpresponse/version.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpresponse\/version"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/version","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the version of the HTTP."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"version","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit12HTTPResponseV7versionSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPResponse":{"role":"symbol","title":"HTTPResponse","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPResponse"}],"abstract":[{"type":"text","text":"A URL load response."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPResponse"}],"url":"\/documentation\/haishinkit\/httpresponse"},"doc://HaishinKit/documentation/HaishinKit/HTTPResponse/version":{"role":"symbol","title":"version","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the version of the HTTP."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPResponse\/version","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpresponse\/version"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice.json b/docs/data/documentation/haishinkit/httpservice.json deleted file mode 100644 index b0b4a7ab3..000000000 --- a/docs/data/documentation/haishinkit/httpservice.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSNetServiceDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"title":"HTTPService","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)HTTPService","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"HTTPService"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/connect(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/delete(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/get(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/head(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/options(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/post(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/put(_:client:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/trace(_:client:)"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultDocument","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultPort","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/type"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPService/options(_:client:)":{"role":"symbol","title":"options(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the OPTIONS method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/options(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/options(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/defaultPort":{"role":"symbol","title":"defaultPort","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The port on which the service is listening for connections. The default value is 8080."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultPort","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/defaultport"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/objc(pl)NSNetServiceDelegate":{"type":"unresolvable","title":"Foundation.NetServiceDelegate","identifier":"doc:\/\/HaishinKit\/objc(pl)NSNetServiceDelegate"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit/HLSService":{"role":"symbol","title":"HLSService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HLSService"}],"url":"\/documentation\/haishinkit\/hlsservice"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/head(_:client:)":{"role":"symbol","title":"head(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"head"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the HEAD method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/head(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/head(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/connect(_:client:)":{"role":"symbol","title":"connect(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the CONNECT method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/connect(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/connect(_:client:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/post(_:client:)":{"role":"symbol","title":"post(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"post"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the POST method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/post(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/post(_:client:)"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/delete(_:client:)":{"role":"symbol","title":"delete(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the DELETE method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/delete(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/delete(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The type of the published service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/type","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/type"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/trace(_:client:)":{"role":"symbol","title":"trace(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the TRACE method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/trace(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/trace(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/put(_:client:)":{"role":"symbol","title":"put(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"put"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the PUT method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/put(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/put(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/defaultDocument":{"role":"symbol","title":"defaultDocument","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultDocument"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The root document of HTML."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultDocument","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/defaultdocument"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/get(_:client:)":{"role":"symbol","title":"get(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the GET method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/get(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/get(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/connect(_:client:).json b/docs/data/documentation/haishinkit/httpservice/connect(_:client:).json deleted file mode 100644 index 82470cf81..000000000 --- a/docs/data/documentation/haishinkit/httpservice/connect(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/connect(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/connect(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the CONNECT method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"connect(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC7connect_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/connect(_:client:)":{"role":"symbol","title":"connect(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the CONNECT method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/connect(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/connect(_:client:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/defaultdocument.json b/docs/data/documentation/haishinkit/httpservice/defaultdocument.json deleted file mode 100644 index e26ce1d1f..000000000 --- a/docs/data/documentation/haishinkit/httpservice/defaultdocument.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultDocument"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/defaultdocument"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultDocument","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The root document of HTML."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultDocument"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"defaultDocument","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPServiceC15defaultDocumentSSvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/defaultDocument":{"role":"symbol","title":"defaultDocument","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultDocument"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The root document of HTML."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultDocument","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/defaultdocument"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/defaultport.json b/docs/data/documentation/haishinkit/httpservice/defaultport.json deleted file mode 100644 index 8ac8f8ade..000000000 --- a/docs/data/documentation/haishinkit/httpservice/defaultport.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/defaultport"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultPort","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The port on which the service is listening for connections. The default value is 8080."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"defaultPort","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPServiceC11defaultPorts5Int32VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/defaultPort":{"role":"symbol","title":"defaultPort","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The port on which the service is listening for connections. The default value is 8080."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/defaultPort","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/defaultport"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/delete(_:client:).json b/docs/data/documentation/haishinkit/httpservice/delete(_:client:).json deleted file mode 100644 index 91e6eac20..000000000 --- a/docs/data/documentation/haishinkit/httpservice/delete(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/delete(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/delete(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the DELETE method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"delete(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC6delete_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/delete(_:client:)":{"role":"symbol","title":"delete(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the DELETE method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/delete(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/delete(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/get(_:client:).json b/docs/data/documentation/haishinkit/httpservice/get(_:client:).json deleted file mode 100644 index 0d745a960..000000000 --- a/docs/data/documentation/haishinkit/httpservice/get(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/get(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/get(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the GET method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"get(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC3get_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/get(_:client:)":{"role":"symbol","title":"get(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"get"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the GET method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/get(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/get(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/head(_:client:).json b/docs/data/documentation/haishinkit/httpservice/head(_:client:).json deleted file mode 100644 index e2d7af3f5..000000000 --- a/docs/data/documentation/haishinkit/httpservice/head(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"head"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/head(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/head(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the HEAD method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"head"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"head(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC4head_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPService/head(_:client:)":{"role":"symbol","title":"head(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"head"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the HEAD method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/head(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/head(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/options(_:client:).json b/docs/data/documentation/haishinkit/httpservice/options(_:client:).json deleted file mode 100644 index 7ec83d941..000000000 --- a/docs/data/documentation/haishinkit/httpservice/options(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"requst"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/options(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/options(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the OPTIONS method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"options(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC7options_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/options(_:client:)":{"role":"symbol","title":"options(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"options"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the OPTIONS method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/options(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/options(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/post(_:client:).json b/docs/data/documentation/haishinkit/httpservice/post(_:client:).json deleted file mode 100644 index 569c43230..000000000 --- a/docs/data/documentation/haishinkit/httpservice/post(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"post"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/post(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/post(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the POST method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"post"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"post(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC4post_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/post(_:client:)":{"role":"symbol","title":"post(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"post"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the POST method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/post(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/post(_:client:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/put(_:client:).json b/docs/data/documentation/haishinkit/httpservice/put(_:client:).json deleted file mode 100644 index 9c5261079..000000000 --- a/docs/data/documentation/haishinkit/httpservice/put(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"put"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/put(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/put(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the PUT method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"put"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"put(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC3put_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPService/put(_:client:)":{"role":"symbol","title":"put(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"put"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the PUT method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/put(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/put(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/trace(_:client:).json b/docs/data/documentation/haishinkit/httpservice/trace(_:client:).json deleted file mode 100644 index 011fb97f6..000000000 --- a/docs/data/documentation/haishinkit/httpservice/trace(_:client:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"request"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV","text":"HTTPRequest"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/trace(_:client:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/trace(_:client:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents the TRACE method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"title":"trace(_:client:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11HTTPServiceC5trace_6clientyAA11HTTPRequestV_AA9NetClientCtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPService/trace(_:client:)":{"role":"symbol","title":"trace(_:client:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"trace"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HTTPRequest","preciseIdentifier":"s:10HaishinKit11HTTPRequestV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"client"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Represents the TRACE method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/trace(_:client:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/trace(_:client:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/HTTPRequest":{"role":"symbol","title":"HTTPRequest","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPRequest"}],"abstract":[{"type":"text","text":"A URL load request."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPRequest","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPRequest"}],"url":"\/documentation\/haishinkit\/httprequest"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpservice/type.json b/docs/data/documentation/haishinkit/httpservice/type.json deleted file mode 100644 index ca0a5abd5..000000000 --- a/docs/data/documentation/haishinkit/httpservice/type.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpservice\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type of the published service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"type","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11HTTPServiceC4typeSSvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/HTTPService/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The type of the published service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService\/type","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpservice\/type"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpstream.json b/docs/data/documentation/haishinkit/httpstream.json deleted file mode 100644 index 7e3da6e05..000000000 --- a/docs/data/documentation/haishinkit/httpstream.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpstream"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/objc(pl)SCStreamOutput","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"title":"HTTPStream","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)HTTPStream","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/expectedMedias"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachCamera(_:onError:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/publish(_:)"]}],"references":{"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream/attachCamera(_:onError:)":{"role":"symbol","title":"attachCamera(_:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachCamera(_:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/attachcamera(_:onerror:)"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream/expectedMedias":{"role":"symbol","title":"expectedMedias","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"For appendSampleBuffer, specifies whether media contains types .video or .audio."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/expectedMedias","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/expectedmedias"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate":{"role":"symbol","title":"IOScreenCaptureUnitDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)":{"role":"symbol","title":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)"},"doc://HaishinKit/objc(pl)SCStreamOutput":{"type":"unresolvable","title":"ScreenCaptureKit.SCStreamOutput","identifier":"doc:\/\/HaishinKit\/objc(pl)SCStreamOutput"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream/publish(_:)":{"role":"symbol","title":"publish(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/publish(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/publish(_:)"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:).json b/docs/data/documentation/haishinkit/httpstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:).json deleted file mode 100644 index d1e13dcaa..000000000 --- a/docs/data/documentation/haishinkit/httpstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStream.attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"title":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10HTTPStreamC11attachAudio_034automaticallyConfiguresApplicationE7Session7onErrorySo15AVCaptureDeviceCSg_Sbys0K0_pcSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPStream/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)":{"role":"symbol","title":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpstream/attachcamera(_:onerror:).json b/docs/data/documentation/haishinkit/httpstream/attachcamera(_:onerror:).json deleted file mode 100644 index c32de8eb8..000000000 --- a/docs/data/documentation/haishinkit/httpstream/attachcamera(_:onerror:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpstream\/attachcamera(_:onerror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachCamera(_:onError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStream.attachCamera(_:onError:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"title":"attachCamera(_:onError:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10HTTPStreamC12attachCamera_7onErrorySo15AVCaptureDeviceCSg_ys0G0_pcSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream/attachCamera(_:onError:)":{"role":"symbol","title":"attachCamera(_:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/attachCamera(_:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/attachcamera(_:onerror:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpstream/expectedmedias.json b/docs/data/documentation/haishinkit/httpstream/expectedmedias.json deleted file mode 100644 index 33d994640..000000000 --- a/docs/data/documentation/haishinkit/httpstream/expectedmedias.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpstream\/expectedmedias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/expectedMedias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"For appendSampleBuffer, specifies whether media contains types .video or .audio."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":">"}],"title":"expectedMedias","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10HTTPStreamC14expectedMediasShySo11AVMediaTypeaGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream/expectedMedias":{"role":"symbol","title":"expectedMedias","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"For appendSampleBuffer, specifies whether media contains types .video or .audio."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/expectedMedias","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/expectedmedias"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/httpstream/publish(_:).json b/docs/data/documentation/haishinkit/httpstream/publish(_:).json deleted file mode 100644 index d8f8ab060..000000000 --- a/docs/data/documentation/haishinkit/httpstream/publish(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/httpstream\/publish(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/publish(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"title":"publish(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10HTTPStreamC7publishyySSSgF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream/publish(_:)":{"role":"symbol","title":"publish(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream\/publish(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/httpstream\/publish(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform.json b/docs/data/documentation/haishinkit/imagetransform.json deleted file mode 100644 index 6443357f6..000000000 --- a/docs/data/documentation/haishinkit/imagetransform.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/Se","doc:\/\/HaishinKit\/SE","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type of image transform direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"title":"ImageTransform","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit14ImageTransformO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/east","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/north","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/south","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/west"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/north":{"role":"symbol","title":"ImageTransform.north","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"north"}],"abstract":[{"type":"text","text":"The north direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/north","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/north"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/init(rawvalue:)"},"doc://HaishinKit/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/HaishinKit\/SE"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/east":{"role":"symbol","title":"ImageTransform.east","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"east"}],"abstract":[{"type":"text","text":"The east direciton."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/east","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/east"},"doc://HaishinKit/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/HaishinKit\/Se"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/south":{"role":"symbol","title":"ImageTransform.south","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"south"}],"abstract":[{"type":"text","text":"The south direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/south","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/south"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/rawrepresentable-implementations"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/west":{"role":"symbol","title":"ImageTransform.west","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"west"}],"abstract":[{"type":"text","text":"The west direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/west","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/west"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/!=(_:_:).json b/docs/data/documentation/haishinkit/imagetransform/!=(_:_:).json deleted file mode 100644 index ad813cbf1..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit14ImageTransformO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ImageTransform/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/east.json b/docs/data/documentation/haishinkit/imagetransform/east.json deleted file mode 100644 index 2e411c7be..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/east.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"east"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/east"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/east","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The east direciton."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"east"}],"title":"ImageTransform.east","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14ImageTransformO4eastyA2CmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/east":{"role":"symbol","title":"ImageTransform.east","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"east"}],"abstract":[{"type":"text","text":"The east direciton."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/east","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/east"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/encode(to:).json b/docs/data/documentation/haishinkit/imagetransform/encode(to:).json deleted file mode 100644 index ce79cb928..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/encode(to:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:10HaishinKit14ImageTransformO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ImageTransform/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/equatable-implementations.json b/docs/data/documentation/haishinkit/imagetransform/equatable-implementations.json deleted file mode 100644 index 1e31322ae..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/hash(into:).json b/docs/data/documentation/haishinkit/imagetransform/hash(into:).json deleted file mode 100644 index e930ef7f1..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit14ImageTransformO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ImageTransform/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/hashvalue.json b/docs/data/documentation/haishinkit/imagetransform/hashvalue.json deleted file mode 100644 index 08657e6b4..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit14ImageTransformO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/init(from:).json b/docs/data/documentation/haishinkit/imagetransform/init(from:).json deleted file mode 100644 index 184d0f694..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/init(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:10HaishinKit14ImageTransformO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/init(from:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/init(rawvalue:).json b/docs/data/documentation/haishinkit/imagetransform/init(rawvalue:).json deleted file mode 100644 index bbcb058bd..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit14ImageTransformO8rawValueACSgSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/north.json b/docs/data/documentation/haishinkit/imagetransform/north.json deleted file mode 100644 index b0cd8f24d..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/north.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"north"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/north"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/north","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The north direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"north"}],"title":"ImageTransform.north","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14ImageTransformO5northyA2CmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/north":{"role":"symbol","title":"ImageTransform.north","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"north"}],"abstract":[{"type":"text","text":"The north direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/north","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/north"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/imagetransform/rawrepresentable-implementations.json deleted file mode 100644 index b1abb171a..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/encode(to:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/hash(into:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/south.json b/docs/data/documentation/haishinkit/imagetransform/south.json deleted file mode 100644 index 03a456b61..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/south.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"south"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/south"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/south","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The south direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"south"}],"title":"ImageTransform.south","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14ImageTransformO5southyA2CmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/south":{"role":"symbol","title":"ImageTransform.south","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"south"}],"abstract":[{"type":"text","text":"The south direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/south","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/south"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/imagetransform/west.json b/docs/data/documentation/haishinkit/imagetransform/west.json deleted file mode 100644 index e9ba28a71..000000000 --- a/docs/data/documentation/haishinkit/imagetransform/west.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"west"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/imagetransform\/west"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/west","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The west direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"west"}],"title":"ImageTransform.west","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14ImageTransformO4westyA2CmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform/west":{"role":"symbol","title":"ImageTransform.west","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"west"}],"abstract":[{"type":"text","text":"The west direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform\/west","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/imagetransform\/west"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/instanceholder.json b/docs/data/documentation/haishinkit/instanceholder.json deleted file mode 100644 index 94827257e..000000000 --- a/docs/data/documentation/haishinkit/instanceholder.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":"> "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Equatable","preciseIdentifier":"s:SQ"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/instanceholder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The InstanceHolder class provides a shared instance memory management."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"}],"title":"InstanceHolder","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit14InstanceHolderC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"InstanceHolder"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/init(factory:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/release(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/retain()"]}],"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder/retain()":{"role":"symbol","title":"retain()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retain"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Retains an instance object if needed."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/retain()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/instanceholder\/retain()"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder/init(factory:)":{"role":"symbol","title":"init(factory:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"factory"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new InstanceHolder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/init(factory:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/instanceholder\/init(factory:)"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder":{"role":"symbol","title":"InstanceHolder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"}],"abstract":[{"type":"text","text":"The InstanceHolder class provides a shared instance memory management."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstanceHolder"}],"url":"\/documentation\/haishinkit\/instanceholder"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder/release(_:)":{"role":"symbol","title":"release(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"release"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Releases an instance object if needed."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/release(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/instanceholder\/release(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/instanceholder/init(factory:).json b/docs/data/documentation/haishinkit/instanceholder/init(factory:).json deleted file mode 100644 index 31b5e0782..000000000 --- a/docs/data/documentation/haishinkit/instanceholder/init(factory:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"factory"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/instanceholder\/init(factory:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/init(factory:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new InstanceHolder."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"factory"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"title":"init(factory:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit14InstanceHolderC7factoryACyxGxyc_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder/init(factory:)":{"role":"symbol","title":"init(factory:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"factory"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new InstanceHolder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/init(factory:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/instanceholder\/init(factory:)"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder":{"role":"symbol","title":"InstanceHolder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"}],"abstract":[{"type":"text","text":"The InstanceHolder class provides a shared instance memory management."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstanceHolder"}],"url":"\/documentation\/haishinkit\/instanceholder"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/instanceholder/release(_:).json b/docs/data/documentation/haishinkit/instanceholder/release(_:).json deleted file mode 100644 index c9b365586..000000000 --- a/docs/data/documentation/haishinkit/instanceholder/release(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"release"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"instance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/instanceholder\/release(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/release(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Releases an instance object if needed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"release"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?)"}],"title":"release(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit14InstanceHolderC7releaseyyxSgF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/InstanceHolder/release(_:)":{"role":"symbol","title":"release(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"release"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Releases an instance object if needed."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/release(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/instanceholder\/release(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder":{"role":"symbol","title":"InstanceHolder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"}],"abstract":[{"type":"text","text":"The InstanceHolder class provides a shared instance memory management."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstanceHolder"}],"url":"\/documentation\/haishinkit\/instanceholder"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/instanceholder/retain().json b/docs/data/documentation/haishinkit/instanceholder/retain().json deleted file mode 100644 index 91de91339..000000000 --- a/docs/data/documentation/haishinkit/instanceholder/retain().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retain"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/instanceholder\/retain()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/retain()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Retains an instance object if needed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retain"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?"}],"title":"retain()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit14InstanceHolderC6retainxSgyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder":{"role":"symbol","title":"InstanceHolder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"}],"abstract":[{"type":"text","text":"The InstanceHolder class provides a shared instance memory management."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstanceHolder"}],"url":"\/documentation\/haishinkit\/instanceholder"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder/retain()":{"role":"symbol","title":"retain()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retain"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Retains an instance object if needed."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder\/retain()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/instanceholder\/retain()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer.json b/docs/data/documentation/haishinkit/iomixer.json deleted file mode 100644 index ce0a233b4..000000000 --- a/docs/data/documentation/haishinkit/iomixer.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"title":"IOMixer","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit7IOMixerC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"IOMixer"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/drawable","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/hasVideo","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isPaused","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isRunning","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/recorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/session"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/appendSampleBuffer(_:)"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/audioEngineHolder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/defaultFrameRate"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitDecoding-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitEncoding-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/Running-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/recorder":{"role":"symbol","title":"recorder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"}],"abstract":[{"type":"text","text":"The recorder instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/recorder","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/recorder"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/appendSampleBuffer(_:)":{"role":"symbol","title":"appendSampleBuffer(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a CMSampleBuffer with media type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/appendSampleBuffer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/appendsamplebuffer(_:)"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/defaultFrameRate":{"role":"symbol","title":"defaultFrameRate","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"}],"abstract":[{"type":"text","text":"The default fps for an IOMixer, value is 30."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/defaultFrameRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/defaultframerate"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/hasVideo":{"role":"symbol","title":"hasVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/hasVideo","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/hasvideo"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/IOUnitDecoding-Implementations":{"role":"collectionGroup","title":"IOUnitDecoding Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitDecoding-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/iounitdecoding-implementations"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/drawable":{"role":"symbol","title":"drawable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"drawable"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"NetStreamDrawable","preciseIdentifier":"s:10HaishinKit17NetStreamDrawableP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the drawable object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/drawable","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/drawable"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/session":{"role":"symbol","title":"session","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"}],"abstract":[{"type":"text","text":"The capture session instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/session","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/session"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/isrunning"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/audioEngineHolder":{"role":"symbol","title":"audioEngineHolder","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioEngineHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InstanceHolder","preciseIdentifier":"s:10HaishinKit14InstanceHolderC"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVAudioEngine","preciseIdentifier":"c:objc(cs)AVAudioEngine"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The AVAudioEngine shared instance holder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/audioEngineHolder","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/audioengineholder"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/ispaused"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/IOUnitEncoding-Implementations":{"role":"collectionGroup","title":"IOUnitEncoding Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitEncoding-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/iounitencoding-implementations"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/appendsamplebuffer(_:).json b/docs/data/documentation/haishinkit/iomixer/appendsamplebuffer(_:).json deleted file mode 100644 index df0112031..000000000 --- a/docs/data/documentation/haishinkit/iomixer/appendsamplebuffer(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/appendsamplebuffer(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/appendSampleBuffer(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Append a CMSampleBuffer with media type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"title":"appendSampleBuffer(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit7IOMixerC18appendSampleBufferyySo08CMSampleF3RefaF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/appendSampleBuffer(_:)":{"role":"symbol","title":"appendSampleBuffer(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a CMSampleBuffer with media type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/appendSampleBuffer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/appendsamplebuffer(_:)"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/audioengineholder.json b/docs/data/documentation/haishinkit/iomixer/audioengineholder.json deleted file mode 100644 index dc9b3771b..000000000 --- a/docs/data/documentation/haishinkit/iomixer/audioengineholder.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioEngineHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","preciseIdentifier":"s:10HaishinKit14InstanceHolderC","text":"InstanceHolder"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVAudioEngine","preciseIdentifier":"c:objc(cs)AVAudioEngine"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/audioengineholder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/audioEngineHolder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The AVAudioEngine shared instance holder."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioEngineHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InstanceHolder","preciseIdentifier":"s:10HaishinKit14InstanceHolderC"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVAudioEngine","preciseIdentifier":"c:objc(cs)AVAudioEngine"},{"kind":"text","text":">"}],"title":"audioEngineHolder","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC17audioEngineHolderAA08InstanceF0CySo07AVAudioE0CGvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/audioEngineHolder":{"role":"symbol","title":"audioEngineHolder","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioEngineHolder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InstanceHolder","preciseIdentifier":"s:10HaishinKit14InstanceHolderC"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVAudioEngine","preciseIdentifier":"c:objc(cs)AVAudioEngine"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The AVAudioEngine shared instance holder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/audioEngineHolder","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/audioengineholder"},"doc://HaishinKit/documentation/HaishinKit/InstanceHolder":{"role":"symbol","title":"InstanceHolder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"InstanceHolder"}],"abstract":[{"type":"text","text":"The InstanceHolder class provides a shared instance memory management."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/InstanceHolder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InstanceHolder"}],"url":"\/documentation\/haishinkit\/instanceholder"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/defaultframerate.json b/docs/data/documentation/haishinkit/iomixer/defaultframerate.json deleted file mode 100644 index af26f66fb..000000000 --- a/docs/data/documentation/haishinkit/iomixer/defaultframerate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/defaultframerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/defaultFrameRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default fps for an IOMixer, value is 30."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"}],"title":"defaultFrameRate","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC16defaultFrameRateSdvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/defaultFrameRate":{"role":"symbol","title":"defaultFrameRate","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFrameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"}],"abstract":[{"type":"text","text":"The default fps for an IOMixer, value is 30."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/defaultFrameRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/defaultframerate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/drawable.json b/docs/data/documentation/haishinkit/iomixer/drawable.json deleted file mode 100644 index 305c6c9bb..000000000 --- a/docs/data/documentation/haishinkit/iomixer/drawable.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"drawable"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","preciseIdentifier":"s:10HaishinKit17NetStreamDrawableP","text":"NetStreamDrawable"},{"kind":"text","text":")? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/drawable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/drawable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the drawable object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"drawable"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"NetStreamDrawable","preciseIdentifier":"s:10HaishinKit17NetStreamDrawableP"},{"kind":"text","text":")?"}],"title":"drawable","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC8drawableAA17NetStreamDrawable_pSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/drawable":{"role":"symbol","title":"drawable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"drawable"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"NetStreamDrawable","preciseIdentifier":"s:10HaishinKit17NetStreamDrawableP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the drawable object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/drawable","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/drawable"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/hasvideo.json b/docs/data/documentation/haishinkit/iomixer/hasvideo.json deleted file mode 100644 index 8ad8e81b9..000000000 --- a/docs/data/documentation/haishinkit/iomixer/hasvideo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/hasvideo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/hasVideo","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"hasVideo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC8hasVideoSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/hasVideo":{"role":"symbol","title":"hasVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/hasVideo","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/hasvideo"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/iounitdecoding-implementations.json b/docs/data/documentation/haishinkit/iomixer/iounitdecoding-implementations.json deleted file mode 100644 index 7c7c0a84c..000000000 --- a/docs/data/documentation/haishinkit/iomixer/iounitdecoding-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/iounitdecoding-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitDecoding-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startDecoding()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopDecoding()"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"IOUnitDecoding Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/stopDecoding()":{"role":"symbol","title":"stopDecoding()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopDecoding"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stop decoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopDecoding()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/stopdecoding()"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/startDecoding()":{"role":"symbol","title":"startDecoding()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDecoding"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Starts decoding for video and audio data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startDecoding()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/startdecoding()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/iounitencoding-implementations.json b/docs/data/documentation/haishinkit/iomixer/iounitencoding-implementations.json deleted file mode 100644 index 1131a07e1..000000000 --- a/docs/data/documentation/haishinkit/iomixer/iounitencoding-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/iounitencoding-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitEncoding-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startEncoding(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopEncoding()"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"IOUnitEncoding Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/startEncoding(_:)":{"role":"symbol","title":"startEncoding(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startEncoding"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCodecDelegate","preciseIdentifier":"s:10HaishinKit15AVCodecDelegatea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Starts encoding for video and audio data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startEncoding(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/startencoding(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/stopEncoding()":{"role":"symbol","title":"stopEncoding()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncoding"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stop encoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopEncoding()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/stopencoding()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/ispaused.json b/docs/data/documentation/haishinkit/iomixer/ispaused.json deleted file mode 100644 index 5762dfe4d..000000000 --- a/docs/data/documentation/haishinkit/iomixer/ispaused.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/ispaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isPaused","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isPaused","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC8isPausedSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/ispaused"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/isrunning.json b/docs/data/documentation/haishinkit/iomixer/isrunning.json deleted file mode 100644 index af174bc6a..000000000 --- a/docs/data/documentation/haishinkit/iomixer/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.isRunning"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"title":"isRunning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC9isRunningAA6AtomicVySbGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/isrunning"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/recorder.json b/docs/data/documentation/haishinkit/iomixer/recorder.json deleted file mode 100644 index f9c247598..000000000 --- a/docs/data/documentation/haishinkit/iomixer/recorder.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"lazy"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC","text":"IORecorder"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/recorder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/recorder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The recorder instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"}],"title":"recorder","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC8recorderAA10IORecorderCvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/recorder":{"role":"symbol","title":"recorder","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"}],"abstract":[{"type":"text","text":"The recorder instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/recorder","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/recorder"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/running-implementations.json b/docs/data/documentation/haishinkit/iomixer/running-implementations.json deleted file mode 100644 index 0e6881367..000000000 --- a/docs/data/documentation/haishinkit/iomixer/running-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/running-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/Running-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startRunning()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopRunning()"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Running Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/startrunning()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/session.json b/docs/data/documentation/haishinkit/iomixer/session.json deleted file mode 100644 index 03858cbb9..000000000 --- a/docs/data/documentation/haishinkit/iomixer/session.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"lazy"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/session"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/session","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The capture session instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"}],"title":"session","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit7IOMixerC7sessionSo16AVCaptureSessionCvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/session":{"role":"symbol","title":"session","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"}],"abstract":[{"type":"text","text":"The capture session instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/session","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/session"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/startdecoding().json b/docs/data/documentation/haishinkit/iomixer/startdecoding().json deleted file mode 100644 index 5fe3af988..000000000 --- a/docs/data/documentation/haishinkit/iomixer/startdecoding().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDecoding"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/startdecoding()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startDecoding()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Starts decoding for video and audio data."}],"kind":"symbol","metadata":{"role":"symbol","title":"startDecoding()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDecoding"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit7IOMixerC13startDecodingyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitDecoding-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/IOUnitDecoding-Implementations":{"role":"collectionGroup","title":"IOUnitDecoding Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitDecoding-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/iounitdecoding-implementations"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/startDecoding()":{"role":"symbol","title":"startDecoding()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startDecoding"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Starts decoding for video and audio data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startDecoding()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/startdecoding()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/startencoding(_:).json b/docs/data/documentation/haishinkit/iomixer/startencoding(_:).json deleted file mode 100644 index fe38abe63..000000000 --- a/docs/data/documentation/haishinkit/iomixer/startencoding(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startEncoding"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AVCodecDelegate","preciseIdentifier":"s:10HaishinKit15AVCodecDelegatea","text":"AVCodecDelegate"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/startencoding(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startEncoding(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Starts encoding for video and audio data."}],"kind":"symbol","metadata":{"role":"symbol","title":"startEncoding(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startEncoding"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCodecDelegate","preciseIdentifier":"s:10HaishinKit15AVCodecDelegatea"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit7IOMixerC13startEncodingyyAA18AudioCodecDelegate_AA05VideogH0pF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitEncoding-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer/startEncoding(_:)":{"role":"symbol","title":"startEncoding(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startEncoding"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCodecDelegate","preciseIdentifier":"s:10HaishinKit15AVCodecDelegatea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Starts encoding for video and audio data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startEncoding(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/startencoding(_:)"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/IOUnitEncoding-Implementations":{"role":"collectionGroup","title":"IOUnitEncoding Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitEncoding-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/iounitencoding-implementations"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AVCodecDelegate":{"role":"symbol","title":"AVCodecDelegate","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"AVCodecDelegate"}],"abstract":[{"type":"text","text":"A type that can delegate itself to AudioCodec or VideoCodec."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AVCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AVCodecDelegate"}],"url":"\/documentation\/haishinkit\/avcodecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/startrunning().json b/docs/data/documentation/haishinkit/iomixer/startrunning().json deleted file mode 100644 index afc6d3a2e..000000000 --- a/docs/data/documentation/haishinkit/iomixer/startrunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/startrunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.startRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"startRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit7IOMixerC12startRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/stopdecoding().json b/docs/data/documentation/haishinkit/iomixer/stopdecoding().json deleted file mode 100644 index 79034dbf6..000000000 --- a/docs/data/documentation/haishinkit/iomixer/stopdecoding().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopDecoding"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/stopdecoding()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopDecoding()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stop decoding."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopDecoding()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopDecoding"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit7IOMixerC12stopDecodingyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitDecoding-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/stopDecoding()":{"role":"symbol","title":"stopDecoding()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopDecoding"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stop decoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopDecoding()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/stopdecoding()"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/IOUnitDecoding-Implementations":{"role":"collectionGroup","title":"IOUnitDecoding Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitDecoding-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/iounitdecoding-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/stopencoding().json b/docs/data/documentation/haishinkit/iomixer/stopencoding().json deleted file mode 100644 index dd12b2918..000000000 --- a/docs/data/documentation/haishinkit/iomixer/stopencoding().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncoding"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/stopencoding()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopEncoding()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stop encoding."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopEncoding()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncoding"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit7IOMixerC12stopEncodingyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitEncoding-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/stopEncoding()":{"role":"symbol","title":"stopEncoding()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopEncoding"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stop encoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopEncoding()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/stopencoding()"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/IOUnitEncoding-Implementations":{"role":"collectionGroup","title":"IOUnitEncoding Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/IOUnitEncoding-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/iounitencoding-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iomixer/stoprunning().json b/docs/data/documentation/haishinkit/iomixer/stoprunning().json deleted file mode 100644 index 53b66e3f8..000000000 --- a/docs/data/documentation/haishinkit/iomixer/stoprunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iomixer\/stoprunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.stopRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit7IOMixerC11stopRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/IOMixer/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iomixer\/running-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder.json b/docs/data/documentation/haishinkit/iorecorder.json deleted file mode 100644 index a2d75f1a7..000000000 --- a/docs/data/documentation/haishinkit/iorecorder.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"title":"IORecorder","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit10IORecorderC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"IORecorder"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/delegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/isRunning","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/outputSettings"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendPixelBuffer(_:withPresentationTime:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendSampleBuffer(_:)"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/defaultOutputSettings"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Running-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/appendSampleBuffer(_:)":{"role":"symbol","title":"appendSampleBuffer(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a sample buffer for recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendSampleBuffer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/appendsamplebuffer(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/defaultOutputSettings":{"role":"symbol","title":"defaultOutputSettings","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultOutputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"abstract":[{"type":"text","text":"The default output settings for an IORecorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/defaultOutputSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/defaultoutputsettings"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/appendPixelBuffer(_:withPresentationTime:)":{"role":"symbol","title":"appendPixelBuffer(_:withPresentationTime:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendPixelBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withPresentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a pixel buffer for recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendPixelBuffer(_:withPresentationTime:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/appendpixelbuffer(_:withpresentationtime:)"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The running indicies whether recording or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/outputSettings":{"role":"symbol","title":"outputSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"abstract":[{"type":"text","text":"Specifies the recorder settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/outputSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/outputsettings"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"IORecorderDelegate","preciseIdentifier":"s:10HaishinKit18IORecorderDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/delegate"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/appendpixelbuffer(_:withpresentationtime:).json b/docs/data/documentation/haishinkit/iorecorder/appendpixelbuffer(_:withpresentationtime:).json deleted file mode 100644 index fc3f040e1..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/appendpixelbuffer(_:withpresentationtime:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendPixelBuffer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"pixelBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withPresentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/appendpixelbuffer(_:withpresentationtime:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendPixelBuffer(_:withPresentationTime:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Append a pixel buffer for recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendPixelBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withPresentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"title":"appendPixelBuffer(_:withPresentationTime:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10IORecorderC17appendPixelBuffer_20withPresentationTimeySo11CVBufferRefa_So6CMTimeatF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/appendPixelBuffer(_:withPresentationTime:)":{"role":"symbol","title":"appendPixelBuffer(_:withPresentationTime:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendPixelBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withPresentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a pixel buffer for recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendPixelBuffer(_:withPresentationTime:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/appendpixelbuffer(_:withpresentationtime:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/appendsamplebuffer(_:).json b/docs/data/documentation/haishinkit/iorecorder/appendsamplebuffer(_:).json deleted file mode 100644 index 381ede5ae..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/appendsamplebuffer(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/appendsamplebuffer(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendSampleBuffer(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Append a sample buffer for recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"title":"appendSampleBuffer(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10IORecorderC18appendSampleBufferyySo08CMSampleF3RefaF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/appendSampleBuffer(_:)":{"role":"symbol","title":"appendSampleBuffer(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Append a sample buffer for recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/appendSampleBuffer(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/appendsamplebuffer(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/defaultoutputsettings.json b/docs/data/documentation/haishinkit/iorecorder/defaultoutputsettings.json deleted file mode 100644 index daea4362d..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/defaultoutputsettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultOutputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/defaultoutputsettings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/defaultOutputSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default output settings for an IORecorder."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultOutputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"title":"defaultOutputSettings","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10IORecorderC21defaultOutputSettingsSDySo11AVMediaTypeaSDySSypGGvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/defaultOutputSettings":{"role":"symbol","title":"defaultOutputSettings","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultOutputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"abstract":[{"type":"text","text":"The default output settings for an IORecorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/defaultOutputSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/defaultoutputsettings"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/delegate.json b/docs/data/documentation/haishinkit/iorecorder/delegate.json deleted file mode 100644 index e5cd377b7..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/delegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","preciseIdentifier":"s:10HaishinKit18IORecorderDelegateP","text":"IORecorderDelegate"},{"kind":"text","text":")?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"IORecorderDelegate","preciseIdentifier":"s:10HaishinKit18IORecorderDelegateP"},{"kind":"text","text":")?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10IORecorderC8delegateAA0C8Delegate_pSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate":{"role":"symbol","title":"IORecorderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorderDelegate"}],"abstract":[{"type":"text","text":"The interface an IORecorder uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorderDelegate"}],"url":"\/documentation\/haishinkit\/iorecorderdelegate"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"IORecorderDelegate","preciseIdentifier":"s:10HaishinKit18IORecorderDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/delegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/error.json b/docs/data/documentation/haishinkit/iorecorder/error.json deleted file mode 100644 index 2d8e5cbfb..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/error.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s5ErrorP","doc:\/\/HaishinKit\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"title":"IORecorder.Error","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit10IORecorderC5ErrorO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Error"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToAppend(error:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriter(error:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriterInput(error:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToFinishWriting(error:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/Error-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToFinishWriting(error:)":{"role":"symbol","title":"IORecorder.Error.failedToFinishWriting(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFinishWriting"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Failed to finish writing the AVAssetWriter."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToFinishWriting(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtofinishwriting(error:)"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/HaishinKit\/s8SendableP"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToCreateAssetWriterInput(error:)":{"role":"symbol","title":"IORecorder.Error.failedToCreateAssetWriterInput(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriterInput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSException","preciseIdentifier":"c:objc(cs)NSException"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Failed to create the AVAssetWriterInput."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriterInput(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriterinput(error:)"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/error-implementations"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToCreateAssetWriter(error:)":{"role":"symbol","title":"IORecorder.Error.failedToCreateAssetWriter(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriter"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Failed to create the AVAssetWriter."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriter(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriter(error:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/HaishinKit\/s5ErrorP"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToAppend(error:)":{"role":"symbol","title":"IORecorder.Error.failedToAppend(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToAppend"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Failed to append the PixelBuffer or SampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToAppend(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtoappend(error:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/error/error-implementations.json b/docs/data/documentation/haishinkit/iorecorder/error/error-implementations.json deleted file mode 100644 index 4067bfd11..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/error/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/error\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/localizeddescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/error/failedtoappend(error:).json b/docs/data/documentation/haishinkit/iorecorder/error/failedtoappend(error:).json deleted file mode 100644 index 0fe744184..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/error/failedtoappend(error:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToAppend"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/error\/failedtoappend(error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToAppend(error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to append the PixelBuffer or SampleBuffer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToAppend"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"title":"IORecorder.Error.failedToAppend(error:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10IORecorderC5ErrorO14failedToAppendyAEsAD_pSg_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToAppend(error:)":{"role":"symbol","title":"IORecorder.Error.failedToAppend(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToAppend"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Failed to append the PixelBuffer or SampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToAppend(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtoappend(error:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/error/failedtocreateassetwriter(error:).json b/docs/data/documentation/haishinkit/iorecorder/error/failedtocreateassetwriter(error:).json deleted file mode 100644 index 7dc1d9a3b..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/error/failedtocreateassetwriter(error:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriter"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriter(error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriter(error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to create the AVAssetWriter."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriter"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"title":"IORecorder.Error.failedToCreateAssetWriter(error:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10IORecorderC5ErrorO25failedToCreateAssetWriteryAEsAD_p_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToCreateAssetWriter(error:)":{"role":"symbol","title":"IORecorder.Error.failedToCreateAssetWriter(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriter"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Failed to create the AVAssetWriter."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriter(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriter(error:)"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/error/failedtocreateassetwriterinput(error:).json b/docs/data/documentation/haishinkit/iorecorder/error/failedtocreateassetwriterinput(error:).json deleted file mode 100644 index a4889a1e5..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/error/failedtocreateassetwriterinput(error:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriterInput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSException","preciseIdentifier":"c:objc(cs)NSException"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriterinput(error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriterInput(error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to create the AVAssetWriterInput."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriterInput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSException","preciseIdentifier":"c:objc(cs)NSException"},{"kind":"text","text":")"}],"title":"IORecorder.Error.failedToCreateAssetWriterInput(error:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10IORecorderC5ErrorO30failedToCreateAssetWriterInputyAESo11NSExceptionC_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToCreateAssetWriterInput(error:)":{"role":"symbol","title":"IORecorder.Error.failedToCreateAssetWriterInput(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreateAssetWriterInput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSException","preciseIdentifier":"c:objc(cs)NSException"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Failed to create the AVAssetWriterInput."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToCreateAssetWriterInput(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriterinput(error:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/error/failedtofinishwriting(error:).json b/docs/data/documentation/haishinkit/iorecorder/error/failedtofinishwriting(error:).json deleted file mode 100644 index ab0909e53..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/error/failedtofinishwriting(error:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFinishWriting"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/error\/failedtofinishwriting(error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToFinishWriting(error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to finish writing the AVAssetWriter."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFinishWriting"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"title":"IORecorder.Error.failedToFinishWriting(error:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10IORecorderC5ErrorO21failedToFinishWritingyAEsAD_pSg_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/failedToFinishWriting(error:)":{"role":"symbol","title":"IORecorder.Error.failedToFinishWriting(error:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFinishWriting"},{"kind":"text","text":"("},{"kind":"externalParam","text":"error"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Failed to finish writing the AVAssetWriter."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/failedToFinishWriting(error:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/failedtofinishwriting(error:)"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/error/localizeddescription.json b/docs/data/documentation/haishinkit/iorecorder/error/localizeddescription.json deleted file mode 100644 index c9e4a764e..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/error/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/error\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"HaishinKit","relatedModules":["Swift"]}],"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:10HaishinKit10IORecorderC5ErrorO","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"8.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.10","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"9.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"2.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/Error-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/localizeddescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/error\/error-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/isrunning.json b/docs/data/documentation/haishinkit/iorecorder/isrunning.json deleted file mode 100644 index c7d4bd2cf..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The running indicies whether recording or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"title":"isRunning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10IORecorderC9isRunningAA6AtomicVySbGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The running indicies whether recording or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/isrunning"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/outputsettings.json b/docs/data/documentation/haishinkit/iorecorder/outputsettings.json deleted file mode 100644 index a498d7954..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/outputsettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/outputsettings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/outputSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the recorder settings."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"title":"outputSettings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10IORecorderC14outputSettingsSDySo11AVMediaTypeaSDySSypGGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/outputSettings":{"role":"symbol","title":"outputSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]]"}],"abstract":[{"type":"text","text":"Specifies the recorder settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/outputSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/outputsettings"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/running-implementations.json b/docs/data/documentation/haishinkit/iorecorder/running-implementations.json deleted file mode 100644 index 99433500c..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/running-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/running-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Running-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/startRunning()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/stopRunning()"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Running Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/startrunning().json b/docs/data/documentation/haishinkit/iorecorder/startrunning().json deleted file mode 100644 index c5f9c65f7..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/startrunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/startrunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/startRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.startRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"startRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10IORecorderC12startRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/running-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorder/stoprunning().json b/docs/data/documentation/haishinkit/iorecorder/stoprunning().json deleted file mode 100644 index 48a9bc46e..000000000 --- a/docs/data/documentation/haishinkit/iorecorder/stoprunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorder\/stoprunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/stopRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.stopRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10IORecorderC11stopRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iorecorder\/stoprunning()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorderdelegate.json b/docs/data/documentation/haishinkit/iorecorderdelegate.json deleted file mode 100644 index ca1809e82..000000000 --- a/docs/data/documentation/haishinkit/iorecorderdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorderDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorderdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface an IORecorder uses to inform its delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorderDelegate"}],"title":"IORecorderDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit18IORecorderDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"IORecorderDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:errorOccured:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:finishWriting:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate":{"role":"symbol","title":"IORecorderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorderDelegate"}],"abstract":[{"type":"text","text":"The interface an IORecorder uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorderDelegate"}],"url":"\/documentation\/haishinkit\/iorecorderdelegate"},"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate/recorder(_:errorOccured:)":{"role":"symbol","title":"recorder(_:errorOccured:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10IORecorderC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to recorder error occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:errorOccured:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:erroroccured:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate/recorder(_:finishWriting:)":{"role":"symbol","title":"recorder(_:finishWriting:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"finishWriting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAssetWriter","preciseIdentifier":"c:objc(cs)AVAssetWriter"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to finish writing."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:finishWriting:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:finishwriting:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorderdelegate/recorder(_:erroroccured:).json b/docs/data/documentation/haishinkit/iorecorderdelegate/recorder(_:erroroccured:).json deleted file mode 100644 index 4ba1c92cd..000000000 --- a/docs/data/documentation/haishinkit/iorecorderdelegate/recorder(_:erroroccured:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"recorder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC","text":"IORecorder"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccured"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC","text":"IORecorder"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","preciseIdentifier":"s:10HaishinKit10IORecorderC5ErrorO","text":"Error"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:erroroccured:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:errorOccured:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to recorder error occured."}],"kind":"symbol","metadata":{"role":"symbol","title":"recorder(_:errorOccured:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10IORecorderC5ErrorO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit18IORecorderDelegateP8recorder_12errorOccuredyAA0C0C_AG5ErrorOtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorder/Error":{"role":"symbol","title":"IORecorder.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The IORecorder error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/iorecorder\/error"},"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate":{"role":"symbol","title":"IORecorderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorderDelegate"}],"abstract":[{"type":"text","text":"The interface an IORecorder uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorderDelegate"}],"url":"\/documentation\/haishinkit\/iorecorderdelegate"},"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate/recorder(_:errorOccured:)":{"role":"symbol","title":"recorder(_:errorOccured:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10IORecorderC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to recorder error occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:errorOccured:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:erroroccured:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iorecorderdelegate/recorder(_:finishwriting:).json b/docs/data/documentation/haishinkit/iorecorderdelegate/recorder(_:finishwriting:).json deleted file mode 100644 index b7c0494f5..000000000 --- a/docs/data/documentation/haishinkit/iorecorderdelegate/recorder(_:finishwriting:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"recorder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC","text":"IORecorder"},{"kind":"text","text":", "},{"kind":"externalParam","text":"finishWriting"},{"kind":"text","text":" "},{"kind":"internalParam","text":"writer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAssetWriter","preciseIdentifier":"c:objc(cs)AVAssetWriter"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:finishwriting:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:finishWriting:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to finish writing."}],"kind":"symbol","metadata":{"role":"symbol","title":"recorder(_:finishWriting:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"finishWriting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAssetWriter","preciseIdentifier":"c:objc(cs)AVAssetWriter"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit18IORecorderDelegateP8recorder_13finishWritingyAA0C0C_So13AVAssetWriterCtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate/recorder(_:finishWriting:)":{"role":"symbol","title":"recorder(_:finishWriting:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"recorder"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IORecorder","preciseIdentifier":"s:10HaishinKit10IORecorderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"finishWriting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAssetWriter","preciseIdentifier":"c:objc(cs)AVAssetWriter"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to finish writing."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate\/recorder(_:finishWriting:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:finishwriting:)"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/IORecorderDelegate":{"role":"symbol","title":"IORecorderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorderDelegate"}],"abstract":[{"type":"text","text":"The interface an IORecorder uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorderDelegate"}],"url":"\/documentation\/haishinkit\/iorecorderdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/ioscreencaptureunit.json b/docs/data/documentation/haishinkit/ioscreencaptureunit.json deleted file mode 100644 index 9c5910547..000000000 --- a/docs/data/documentation/haishinkit/ioscreencaptureunit.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","preciseIdentifier":"s:10HaishinKit7RunningP","text":"Running"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/ioscreencaptureunit"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"title":"IOScreenCaptureUnit","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit19IOScreenCaptureUnitP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/attributes","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/delegate"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit":{"role":"symbol","title":"IOScreenCaptureUnit","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunit"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit/attributes":{"role":"symbol","title":"attributes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"attributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Specifies the CVPixelBufferPool’s attributes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/attributes","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/ioscreencaptureunit\/attributes"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnitDelegate","preciseIdentifier":"s:10HaishinKit27IOScreenCaptureUnitDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/delegate","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/ioscreencaptureunit\/delegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/ioscreencaptureunit/attributes.json b/docs/data/documentation/haishinkit/ioscreencaptureunit/attributes.json deleted file mode 100644 index 488f6a8e8..000000000 --- a/docs/data/documentation/haishinkit/ioscreencaptureunit/attributes.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"attributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":"] { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/ioscreencaptureunit\/attributes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/attributes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the CVPixelBufferPool’s attributes."}],"kind":"symbol","metadata":{"role":"symbol","title":"attributes","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"attributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":"]"}],"symbolKind":"property","externalID":"s:10HaishinKit19IOScreenCaptureUnitP10attributesSDySo8NSStringCSo8NSObjectCGvp","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit":{"role":"symbol","title":"IOScreenCaptureUnit","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunit"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit/attributes":{"role":"symbol","title":"attributes","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"attributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Specifies the CVPixelBufferPool’s attributes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/attributes","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/ioscreencaptureunit\/attributes"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/ioscreencaptureunit/delegate.json b/docs/data/documentation/haishinkit/ioscreencaptureunit/delegate.json deleted file mode 100644 index d16368358..000000000 --- a/docs/data/documentation/haishinkit/ioscreencaptureunit/delegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","preciseIdentifier":"s:10HaishinKit27IOScreenCaptureUnitDelegateP","text":"IOScreenCaptureUnitDelegate"},{"kind":"text","text":")? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/ioscreencaptureunit\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the delegate."}],"kind":"symbol","metadata":{"role":"symbol","title":"delegate","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnitDelegate","preciseIdentifier":"s:10HaishinKit27IOScreenCaptureUnitDelegateP"},{"kind":"text","text":")?"}],"symbolKind":"property","externalID":"s:10HaishinKit19IOScreenCaptureUnitP8delegateAA0cdE8Delegate_pSgvp","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit":{"role":"symbol","title":"IOScreenCaptureUnit","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunit"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnitDelegate","preciseIdentifier":"s:10HaishinKit27IOScreenCaptureUnitDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit\/delegate","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/ioscreencaptureunit\/delegate"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate":{"role":"symbol","title":"IOScreenCaptureUnitDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/ioscreencaptureunitdelegate.json b/docs/data/documentation/haishinkit/ioscreencaptureunitdelegate.json deleted file mode 100644 index ee9def7b5..000000000 --- a/docs/data/documentation/haishinkit/ioscreencaptureunitdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/ioscreencaptureunitdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"title":"IOScreenCaptureUnitDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit27IOScreenCaptureUnitDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate\/session(_:didOutput:presentationTime:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate/session(_:didOutput:presentationTime:)":{"role":"symbol","title":"session(_:didOutput:presentationTime:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output a pixel buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate\/session(_:didOutput:presentationTime:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate\/session(_:didoutput:presentationtime:)"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate":{"role":"symbol","title":"IOScreenCaptureUnitDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/ioscreencaptureunitdelegate/session(_:didoutput:presentationtime:).json b/docs/data/documentation/haishinkit/ioscreencaptureunitdelegate/session(_:didoutput:presentationtime:).json deleted file mode 100644 index 97e8b62ae..000000000 --- a/docs/data/documentation/haishinkit/ioscreencaptureunitdelegate/session(_:didoutput:presentationtime:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP","text":"IOScreenCaptureUnit"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"pixelBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/ioscreencaptureunitdelegate\/session(_:didoutput:presentationtime:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate\/session(_:didOutput:presentationTime:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to output a pixel buffer."}],"kind":"symbol","metadata":{"role":"symbol","title":"session(_:didOutput:presentationTime:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit27IOScreenCaptureUnitDelegateP7session_9didOutput16presentationTimeyAA0cdE0_p_So11CVBufferRefaSo6CMTimeatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate":{"role":"symbol","title":"IOScreenCaptureUnitDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit":{"role":"symbol","title":"IOScreenCaptureUnit","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunit"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate/session(_:didOutput:presentationTime:)":{"role":"symbol","title":"session(_:didOutput:presentationTime:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output a pixel buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate\/session(_:didOutput:presentationTime:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate\/session(_:didoutput:presentationtime:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iovideocaptureunit.json b/docs/data/documentation/haishinkit/iovideocaptureunit.json deleted file mode 100644 index bfbb9af11..000000000 --- a/docs/data/documentation/haishinkit/iovideocaptureunit.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iovideocaptureunit"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"title":"IOVideoCaptureUnit","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit18IOVideoCaptureUnitC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/device","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/isVideoMirrored","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/videoOrientation"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/defaultVideoSettings"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit":{"role":"symbol","title":"IOVideoCaptureUnit","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}],"url":"\/documentation\/haishinkit\/iovideocaptureunit"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/device":{"role":"symbol","title":"device","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The current video device object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/device","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/device"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/defaultVideoSettings":{"role":"symbol","title":"defaultVideoSettings","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The default videoSettings for a device."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/defaultVideoSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/defaultvideosettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/isVideoMirrored":{"role":"symbol","title":"isVideoMirrored","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Spcifies the video mirroed indicates whether the video flowing through the connection should be mirrored about its vertical axis."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/isVideoMirrored","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/isvideomirrored"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[{"type":"text","text":"Specifies the videoOrientation indicates whether to rotate the video flowing through the connection to a given orientation."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/videoorientation"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iovideocaptureunit/defaultvideosettings.json b/docs/data/documentation/haishinkit/iovideocaptureunit/defaultvideosettings.json deleted file mode 100644 index abbac8043..000000000 --- a/docs/data/documentation/haishinkit/iovideocaptureunit/defaultvideosettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iovideocaptureunit\/defaultvideosettings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/defaultVideoSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default videoSettings for a device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]"}],"title":"defaultVideoSettings","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18IOVideoCaptureUnitC20defaultVideoSettingsSDySo8NSStringCyXlGvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/defaultVideoSettings":{"role":"symbol","title":"defaultVideoSettings","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoSettings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The default videoSettings for a device."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/defaultVideoSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/defaultvideosettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit":{"role":"symbol","title":"IOVideoCaptureUnit","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}],"url":"\/documentation\/haishinkit\/iovideocaptureunit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iovideocaptureunit/device.json b/docs/data/documentation/haishinkit/iovideocaptureunit/device.json deleted file mode 100644 index 2e15c1976..000000000 --- a/docs/data/documentation/haishinkit/iovideocaptureunit/device.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iovideocaptureunit\/device"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/device","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current video device object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?"}],"title":"device","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18IOVideoCaptureUnitC6deviceSo15AVCaptureDeviceCSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/device":{"role":"symbol","title":"device","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The current video device object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/device","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/device"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit":{"role":"symbol","title":"IOVideoCaptureUnit","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}],"url":"\/documentation\/haishinkit\/iovideocaptureunit"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iovideocaptureunit/isvideomirrored.json b/docs/data/documentation/haishinkit/iovideocaptureunit/isvideomirrored.json deleted file mode 100644 index d6728f367..000000000 --- a/docs/data/documentation/haishinkit/iovideocaptureunit/isvideomirrored.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iovideocaptureunit\/isvideomirrored"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/isVideoMirrored","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Spcifies the video mirroed indicates whether the video flowing through the connection should be mirrored about its vertical axis."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isVideoMirrored","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18IOVideoCaptureUnitC15isVideoMirroredSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/isVideoMirrored":{"role":"symbol","title":"isVideoMirrored","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isVideoMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Spcifies the video mirroed indicates whether the video flowing through the connection should be mirrored about its vertical axis."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/isVideoMirrored","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/isvideomirrored"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit":{"role":"symbol","title":"IOVideoCaptureUnit","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}],"url":"\/documentation\/haishinkit\/iovideocaptureunit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/iovideocaptureunit/videoorientation.json b/docs/data/documentation/haishinkit/iovideocaptureunit/videoorientation.json deleted file mode 100644 index 61dab8849..000000000 --- a/docs/data/documentation/haishinkit/iovideocaptureunit/videoorientation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/iovideocaptureunit\/videoorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/videoOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the videoOrientation indicates whether to rotate the video flowing through the connection to a given orientation."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"title":"videoOrientation","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18IOVideoCaptureUnitC16videoOrientationSo014AVCaptureVideoG0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit":{"role":"symbol","title":"IOVideoCaptureUnit","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}],"url":"\/documentation\/haishinkit\/iovideocaptureunit"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[{"type":"text","text":"Specifies the videoOrientation indicates whether to rotate the video flowing through the connection to a given orientation."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/iovideocaptureunit\/videoorientation"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/kasundefined.json b/docs/data/documentation/haishinkit/kasundefined.json deleted file mode 100644 index 67d74e95a..000000000 --- a/docs/data/documentation/haishinkit/kasundefined.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"kASUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined","preciseIdentifier":"s:10HaishinKit11ASUndefinedV","text":"ASUndefined"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/kasundefined"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/kASUndefined","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The singleton ASUndefined object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"kASUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ASUndefined","preciseIdentifier":"s:10HaishinKit11ASUndefinedV"}],"title":"kASUndefined","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:10HaishinKit12kASUndefinedAA0C0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/ASUndefined":{"role":"symbol","title":"ASUndefined","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASUndefined"}],"abstract":[{"type":"text","text":"The ASUndefined class represents an undefined for ActionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASUndefined","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASUndefined"}],"url":"\/documentation\/haishinkit\/asundefined"},"doc://HaishinKit/documentation/HaishinKit/kASUndefined":{"role":"symbol","title":"kASUndefined","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"kASUndefined"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ASUndefined","preciseIdentifier":"s:10HaishinKit11ASUndefinedV"}],"abstract":[{"type":"text","text":"The singleton ASUndefined object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/kASUndefined","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/kasundefined"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview.json b/docs/data/documentation/haishinkit/mthkview.json deleted file mode 100644 index 5f2be3a8a..000000000 --- a/docs/data/documentation/haishinkit/mthkview.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)MTKView"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSAccessibilityElement","doc:\/\/HaishinKit\/objc(pl)NSAccessibility","doc:\/\/HaishinKit\/objc(pl)NSAnimatablePropertyContainer","doc:\/\/HaishinKit\/objc(pl)NSAppearanceCustomization","doc:\/\/HaishinKit\/objc(pl)NSDraggingDestination","doc:\/\/HaishinKit\/objc(pl)NSStandardKeyBindingResponding","doc:\/\/HaishinKit\/objc(pl)NSTouchBarProvider","doc:\/\/HaishinKit\/objc(pl)NSUserActivityRestoring","doc:\/\/HaishinKit\/objc(pl)NSUserInterfaceItemIdentification","doc:\/\/HaishinKit\/objc(pl)NSCoding","doc:\/\/HaishinKit\/objc(pl)MTKViewDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/objc(pl)CALayerDelegate","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"title":"MTHKView","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)MTHKView","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"MTHKView"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(coder:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(frame:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/isMirrored","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoFormatDescription","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoGravity","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoOrientation"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/awakeFromNib()"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/MTKViewDelegate-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/NetStreamDrawable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/init(coder:)":{"role":"symbol","title":"init(coder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(coder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/init(coder:)"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/videoorientation"},"doc://HaishinKit/objc(pl)NSUserActivityRestoring":{"type":"unresolvable","title":"AppKit.NSUserActivityRestoring","identifier":"doc:\/\/HaishinKit\/objc(pl)NSUserActivityRestoring"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/init(frame:)":{"role":"symbol","title":"init(frame:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(frame:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/init(frame:)"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/objc(pl)NSStandardKeyBindingResponding":{"type":"unresolvable","title":"AppKit.NSStandardKeyBindingResponding","identifier":"doc:\/\/HaishinKit\/objc(pl)NSStandardKeyBindingResponding"},"doc://HaishinKit/objc(pl)CALayerDelegate":{"type":"unresolvable","title":"QuartzCore.CALayerDelegate","identifier":"doc:\/\/HaishinKit\/objc(pl)CALayerDelegate"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/objc(pl)MTKViewDelegate":{"type":"unresolvable","title":"MetalKit.MTKViewDelegate","identifier":"doc:\/\/HaishinKit\/objc(pl)MTKViewDelegate"},"doc://HaishinKit/objc(pl)NSUserInterfaceItemIdentification":{"type":"unresolvable","title":"AppKit.NSUserInterfaceItemIdentification","identifier":"doc:\/\/HaishinKit\/objc(pl)NSUserInterfaceItemIdentification"},"doc://HaishinKit/objc(pl)NSAppearanceCustomization":{"type":"unresolvable","title":"AppKit.NSAppearanceCustomization","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAppearanceCustomization"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/MTKViewDelegate-Implementations":{"role":"collectionGroup","title":"MTKViewDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/MTKViewDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/mtkviewdelegate-implementations"},"doc://HaishinKit/objc(pl)NSAnimatablePropertyContainer":{"type":"unresolvable","title":"AppKit.NSAnimatablePropertyContainer","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAnimatablePropertyContainer"},"doc://HaishinKit/objc(cs)MTKView":{"type":"unresolvable","title":"MetalKit.MTKView","identifier":"doc:\/\/HaishinKit\/objc(cs)MTKView"},"doc://HaishinKit/objc(pl)NSCoding":{"type":"unresolvable","title":"Foundation.NSCoding","identifier":"doc:\/\/HaishinKit\/objc(pl)NSCoding"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/netstreamdrawable-implementations"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/isMirrored":{"role":"symbol","title":"isMirrored","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/isMirrored","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/ismirrored"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/videoGravity":{"role":"symbol","title":"videoGravity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"abstract":[{"type":"text","text":"Specifies how the video is displayed within a player layer’s bounds."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoGravity","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/videogravity"},"doc://HaishinKit/objc(pl)NSAccessibilityElement":{"type":"unresolvable","title":"AppKit.NSAccessibilityElementProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAccessibilityElement"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/objc(pl)NSDraggingDestination":{"type":"unresolvable","title":"AppKit.NSDraggingDestination","identifier":"doc:\/\/HaishinKit\/objc(pl)NSDraggingDestination"},"doc://HaishinKit/objc(pl)NSAccessibility":{"type":"unresolvable","title":"AppKit.NSAccessibilityProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAccessibility"},"doc://HaishinKit/objc(pl)NSTouchBarProvider":{"type":"unresolvable","title":"AppKit.NSTouchBarProvider","identifier":"doc:\/\/HaishinKit\/objc(pl)NSTouchBarProvider"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoFormatDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/videoformatdescription"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/awakeFromNib()":{"role":"symbol","title":"awakeFromNib()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/awakeFromNib()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/awakefromnib()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/attachstream(_:).json b/docs/data/documentation/haishinkit/mthkview/attachstream(_:).json deleted file mode 100644 index 1c46cf6e5..000000000 --- a/docs/data/documentation/haishinkit/mthkview/attachstream(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/attachstream(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/attachStream(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.attachStream(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"attachStream(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit8MTHKViewC12attachStreamyyAA03NetE0CSgF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/NetStreamDrawable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/attachStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/attachstream(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/netstreamdrawable-implementations"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/awakefromnib().json b/docs/data/documentation/haishinkit/mthkview/awakefromnib().json deleted file mode 100644 index 476997f4c..000000000 --- a/docs/data/documentation/haishinkit/mthkview/awakefromnib().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/awakefromnib()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/awakeFromNib()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"title":"awakeFromNib()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"c:@M@HaishinKit@objc(cs)MTHKView(im)awakeFromNib","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView/awakeFromNib()":{"role":"symbol","title":"awakeFromNib()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/awakeFromNib()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/awakefromnib()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/draw(in:).json b/docs/data/documentation/haishinkit/mthkview/draw(in:).json deleted file mode 100644 index 1c074eddb..000000000 --- a/docs/data/documentation/haishinkit/mthkview/draw(in:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"draw"},{"kind":"text","text":"("},{"kind":"externalParam","text":"in"},{"kind":"text","text":" "},{"kind":"internalParam","text":"view"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/draw(in:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/draw(in:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"MTKViewDelegate.draw(in:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"draw(in:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"draw"},{"kind":"text","text":"("},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@HaishinKit@objc(cs)MTHKView(im)drawInMTKView:","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/MTKViewDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView/MTKViewDelegate-Implementations":{"role":"collectionGroup","title":"MTKViewDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/MTKViewDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/mtkviewdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/draw(in:)":{"role":"symbol","title":"draw(in:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"draw"},{"kind":"text","text":"("},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/draw(in:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/draw(in:)"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/enqueue(_:).json b/docs/data/documentation/haishinkit/mthkview/enqueue(_:).json deleted file mode 100644 index 8e4d0841d..000000000 --- a/docs/data/documentation/haishinkit/mthkview/enqueue(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/enqueue(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/enqueue(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.enqueue(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"enqueue(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit8MTHKViewC7enqueueyySo17CMSampleBufferRefaSgF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/NetStreamDrawable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/enqueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/enqueue(_:)"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/netstreamdrawable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/init(coder:).json b/docs/data/documentation/haishinkit/mthkview/init(coder:).json deleted file mode 100644 index 5bc13083d..000000000 --- a/docs/data/documentation/haishinkit/mthkview/init(coder:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"required"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":" "},{"kind":"internalParam","text":"aDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/init(coder:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(coder:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"title":"init(coder:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@HaishinKit@objc(cs)MTHKView(im)initWithCoder:","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/init(coder:)":{"role":"symbol","title":"init(coder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(coder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/init(coder:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/init(frame:).json b/docs/data/documentation/haishinkit/mthkview/init(frame:).json deleted file mode 100644 index 4efc7323b..000000000 --- a/docs/data/documentation/haishinkit/mthkview/init(frame:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/init(frame:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(frame:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"title":"init(frame:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@HaishinKit@objc(cs)MTHKView(im)initWithFrame:","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/init(frame:)":{"role":"symbol","title":"init(frame:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/init(frame:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/init(frame:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/ismirrored.json b/docs/data/documentation/haishinkit/mthkview/ismirrored.json deleted file mode 100644 index 46e5c273c..000000000 --- a/docs/data/documentation/haishinkit/mthkview/ismirrored.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/ismirrored"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/isMirrored","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isMirrored","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8MTHKViewC10isMirroredSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/isMirrored":{"role":"symbol","title":"isMirrored","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMirrored"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/isMirrored","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/ismirrored"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/mtkview(_:drawablesizewillchange:).json b/docs/data/documentation/haishinkit/mthkview/mtkview(_:drawablesizewillchange:).json deleted file mode 100644 index 1d89ac20a..000000000 --- a/docs/data/documentation/haishinkit/mthkview/mtkview(_:drawablesizewillchange:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtkView"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"view"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":", "},{"kind":"externalParam","text":"drawableSizeWillChange"},{"kind":"text","text":" "},{"kind":"internalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/mtkview(_:drawablesizewillchange:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/mtkView(_:drawableSizeWillChange:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"MTKViewDelegate.mtkView(_:drawableSizeWillChange:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"mtkView(_:drawableSizeWillChange:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtkView"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":", "},{"kind":"externalParam","text":"drawableSizeWillChange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@HaishinKit@objc(cs)MTHKView(im)mtkView:drawableSizeWillChange:","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/MTKViewDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView/mtkView(_:drawableSizeWillChange:)":{"role":"symbol","title":"mtkView(_:drawableSizeWillChange:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtkView"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":", "},{"kind":"externalParam","text":"drawableSizeWillChange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/mtkView(_:drawableSizeWillChange:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/mtkview(_:drawablesizewillchange:)"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/MTKViewDelegate-Implementations":{"role":"collectionGroup","title":"MTKViewDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/MTKViewDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/mtkviewdelegate-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/mtkviewdelegate-implementations.json b/docs/data/documentation/haishinkit/mthkview/mtkviewdelegate-implementations.json deleted file mode 100644 index 4fe28e253..000000000 --- a/docs/data/documentation/haishinkit/mthkview/mtkviewdelegate-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/mtkviewdelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/MTKViewDelegate-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/draw(in:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/mtkView(_:drawableSizeWillChange:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"MTKViewDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView/draw(in:)":{"role":"symbol","title":"draw(in:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"draw"},{"kind":"text","text":"("},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/draw(in:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/draw(in:)"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/mtkView(_:drawableSizeWillChange:)":{"role":"symbol","title":"mtkView(_:drawableSizeWillChange:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtkView"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"MTKView","preciseIdentifier":"c:objc(cs)MTKView"},{"kind":"text","text":", "},{"kind":"externalParam","text":"drawableSizeWillChange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/mtkView(_:drawableSizeWillChange:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/mtkview(_:drawablesizewillchange:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/netstreamdrawable-implementations.json b/docs/data/documentation/haishinkit/mthkview/netstreamdrawable-implementations.json deleted file mode 100644 index efbbf0d90..000000000 --- a/docs/data/documentation/haishinkit/mthkview/netstreamdrawable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/netstreamdrawable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/NetStreamDrawable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/attachStream(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/enqueue(_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"NetStreamDrawable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/attachStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/attachstream(_:)"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/enqueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/enqueue(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/videoformatdescription.json b/docs/data/documentation/haishinkit/mthkview/videoformatdescription.json deleted file mode 100644 index 16d0a0435..000000000 --- a/docs/data/documentation/haishinkit/mthkview/videoformatdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/videoformatdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoFormatDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.videoFormatDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"title":"videoFormatDescription","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8MTHKViewC22videoFormatDescriptionSo08CMFormatF3RefaSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoFormatDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/videoformatdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/videogravity.json b/docs/data/documentation/haishinkit/mthkview/videogravity.json deleted file mode 100644 index c96eec080..000000000 --- a/docs/data/documentation/haishinkit/mthkview/videogravity.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/videogravity"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoGravity","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies how the video is displayed within a player layer’s bounds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"title":"videoGravity","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8MTHKViewC12videoGravitySo012AVLayerVideoE0avp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView/videoGravity":{"role":"symbol","title":"videoGravity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"abstract":[{"type":"text","text":"Specifies how the video is displayed within a player layer’s bounds."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoGravity","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/videogravity"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/mthkview/videoorientation.json b/docs/data/documentation/haishinkit/mthkview/videoorientation.json deleted file mode 100644 index 7002adb70..000000000 --- a/docs/data/documentation/haishinkit/mthkview/videoorientation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/mthkview\/videoorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.videoOrientation"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"title":"videoOrientation","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8MTHKViewC16videoOrientationSo014AVCaptureVideoE0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit/MTHKView/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/mthkview\/videoorientation"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings.json b/docs/data/documentation/haishinkit/multicamcapturesettings.json deleted file mode 100644 index 4693d79c5..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/Se","doc:\/\/HaishinKit\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"title":"MultiCamCaptureSettings","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(from:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(mode:cornerRadius:regionOfInterest:direction:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/cornerRadius","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/direction","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/mode-swift.property","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/regionOfInterest"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/default"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum"]}],"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/init(mode:cornerRadius:regionOfInterest:direction:)":{"role":"symbol","title":"init(mode:cornerRadius:regionOfInterest:direction:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Mode","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":", "},{"kind":"externalParam","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Create a new MultiCamCaptureSetting."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(mode:cornerRadius:regionOfInterest:direction:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/init(mode:cornerradius:regionofinterest:direction:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/mode-swift.property":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Mode","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO"}],"abstract":[{"type":"text","text":"The image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/mode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.property"},"doc://HaishinKit/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/HaishinKit\/Se"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/direction":{"role":"symbol","title":"direction","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO"}],"abstract":[{"type":"text","text":"The direction of the splitView position."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/direction","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/direction"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/HaishinKit\/SE"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/regionOfInterest":{"role":"symbol","title":"regionOfInterest","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"}],"abstract":[{"type":"text","text":"The region of the picture in picture image."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/regionOfInterest","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/regionofinterest"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/cornerRadius":{"role":"symbol","title":"cornerRadius","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"}],"abstract":[{"type":"text","text":"The cornerRadius of the picture in picture image."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/cornerRadius","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/cornerradius"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/default":{"role":"symbol","title":"default","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"}],"abstract":[{"type":"text","text":"The default setting for the stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/default","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/default"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/cornerradius.json b/docs/data/documentation/haishinkit/multicamcapturesettings/cornerradius.json deleted file mode 100644 index dfc0634f9..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/cornerradius.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/cornerradius"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/cornerRadius","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The cornerRadius of the picture in picture image."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"}],"title":"cornerRadius","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV12cornerRadius14CoreFoundation7CGFloatVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/cornerRadius":{"role":"symbol","title":"cornerRadius","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"}],"abstract":[{"type":"text","text":"The cornerRadius of the picture in picture image."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/cornerRadius","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/cornerradius"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/default.json b/docs/data/documentation/haishinkit/multicamcapturesettings/default.json deleted file mode 100644 index 098956f73..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/default.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV","text":"MultiCamCaptureSettings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/default"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/default","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default setting for the stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"}],"title":"default","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV7defaultACvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/default":{"role":"symbol","title":"default","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"}],"abstract":[{"type":"text","text":"The default setting for the stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/default","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/default"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/direction.json b/docs/data/documentation/haishinkit/multicamcapturesettings/direction.json deleted file mode 100644 index 5511c84b2..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/direction.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO","text":"ImageTransform"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/direction"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/direction","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The direction of the splitView position."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO"}],"title":"direction","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV9directionAA14ImageTransformOvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/direction":{"role":"symbol","title":"direction","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO"}],"abstract":[{"type":"text","text":"The direction of the splitView position."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/direction","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/direction"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/init(from:).json b/docs/data/documentation/haishinkit/multicamcapturesettings/init(from:).json deleted file mode 100644 index 3364099b9..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/init(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/init(from:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/init(mode:cornerradius:regionofinterest:direction:).json b/docs/data/documentation/haishinkit/multicamcapturesettings/init(mode:cornerradius:regionofinterest:direction:).json deleted file mode 100644 index 5886e2568..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/init(mode:cornerradius:regionofinterest:direction:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV","text":"MultiCamCaptureSettings"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","text":"Mode"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":", "},{"kind":"externalParam","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO","text":"ImageTransform"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/init(mode:cornerradius:regionofinterest:direction:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(mode:cornerRadius:regionOfInterest:direction:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Create a new MultiCamCaptureSetting."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Mode","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":", "},{"kind":"externalParam","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO"},{"kind":"text","text":")"}],"title":"init(mode:cornerRadius:regionOfInterest:direction:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV4mode12cornerRadius16regionOfInterest9directionA2C4ModeO_14CoreFoundation7CGFloatVSo6CGRectVAA14ImageTransformOtcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/init(mode:cornerRadius:regionOfInterest:direction:)":{"role":"symbol","title":"init(mode:cornerRadius:regionOfInterest:direction:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Mode","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cornerRadius"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":", "},{"kind":"externalParam","text":"direction"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ImageTransform","preciseIdentifier":"s:10HaishinKit14ImageTransformO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Create a new MultiCamCaptureSetting."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/init(mode:cornerRadius:regionOfInterest:direction:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/init(mode:cornerradius:regionofinterest:direction:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/ImageTransform":{"role":"symbol","title":"ImageTransform","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageTransform"}],"abstract":[{"type":"text","text":"The type of image transform direction."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ImageTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageTransform"}],"url":"\/documentation\/haishinkit\/imagetransform"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum.json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum.json deleted file mode 100644 index 5ce9c4106..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/Se","doc:\/\/HaishinKit\/SE","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type of image display mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"title":"MultiCamCaptureSettings.Mode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Mode"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/pip","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/splitView"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/equatable-implementations"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/HaishinKit\/SE"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/pip":{"role":"symbol","title":"MultiCamCaptureSettings.Mode.pip","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pip"}],"abstract":[{"type":"text","text":"The picture in picture mode means video stream playing within an inset window, freeing the rest of the screen for other tasks."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/pip","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/pip"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/HaishinKit\/Se"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/splitView":{"role":"symbol","title":"MultiCamCaptureSettings.Mode.splitView","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"splitView"}],"abstract":[{"type":"text","text":"The split view means video stream playing within two individual windows."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/splitView","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/splitview"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/!=(_:_:).json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/!=(_:_:).json deleted file mode 100644 index af01979f7..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/encode(to:).json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/encode(to:).json deleted file mode 100644 index 55da579dc..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/encode(to:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/equatable-implementations.json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/equatable-implementations.json deleted file mode 100644 index 289146d20..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hash(into:).json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hash(into:).json deleted file mode 100644 index b33ecf9b8..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hashvalue.json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hashvalue.json deleted file mode 100644 index ccd51b5fb..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(from:).json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(from:).json deleted file mode 100644 index bf230e3c8..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(rawvalue:).json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(rawvalue:).json deleted file mode 100644 index b109c3280..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO8rawValueAESgSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/pip.json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/pip.json deleted file mode 100644 index 4ddc3a9ee..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/pip.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pip"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/pip"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/pip","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The picture in picture mode means video stream playing within an inset window, freeing the rest of the screen for other tasks."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pip"}],"title":"MultiCamCaptureSettings.Mode.pip","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO3pipyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/pip":{"role":"symbol","title":"MultiCamCaptureSettings.Mode.pip","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pip"}],"abstract":[{"type":"text","text":"The picture in picture mode means video stream playing within an inset window, freeing the rest of the screen for other tasks."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/pip","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/pip"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/rawrepresentable-implementations.json deleted file mode 100644 index f6124ce51..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/encode(to:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/splitview.json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/splitview.json deleted file mode 100644 index 43661be07..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/splitview.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"splitView"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/splitview"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/splitView","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The split view means video stream playing within two individual windows."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"splitView"}],"title":"MultiCamCaptureSettings.Mode.splitView","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO9splitViewyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum/splitView":{"role":"symbol","title":"MultiCamCaptureSettings.Mode.splitView","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"splitView"}],"abstract":[{"type":"text","text":"The split view means video stream playing within two individual windows."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum\/splitView","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/splitview"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.property.json b/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.property.json deleted file mode 100644 index 80a8f4816..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/mode-swift.property.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV","text":"MultiCamCaptureSettings"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO","text":"Mode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/mode-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The image display mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Mode","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO"}],"title":"mode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV4modeAC4ModeOvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/Mode-swift.enum":{"role":"symbol","title":"MultiCamCaptureSettings.Mode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Mode"}],"abstract":[{"type":"text","text":"The type of image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/Mode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Mode"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/mode-swift.property":{"role":"symbol","title":"mode","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Mode","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV4ModeO"}],"abstract":[{"type":"text","text":"The image display mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/mode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.property"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/multicamcapturesettings/regionofinterest.json b/docs/data/documentation/haishinkit/multicamcapturesettings/regionofinterest.json deleted file mode 100644 index f571fbf07..000000000 --- a/docs/data/documentation/haishinkit/multicamcapturesettings/regionofinterest.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/multicamcapturesettings\/regionofinterest"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/regionOfInterest","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The region of the picture in picture image."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"}],"title":"regionOfInterest","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit23MultiCamCaptureSettingsV16regionOfInterestSo6CGRectVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings/regionOfInterest":{"role":"symbol","title":"regionOfInterest","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"regionOfInterest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"}],"abstract":[{"type":"text","text":"The region of the picture in picture image."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings\/regionOfInterest","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/multicamcapturesettings\/regionofinterest"},"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netclient.json b/docs/data/documentation/haishinkit/netclient.json deleted file mode 100644 index ba6030e10..000000000 --- a/docs/data/documentation/haishinkit/netclient.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"final"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netclient"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSStreamDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"title":"NetClient","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)NetClient","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"NetClient"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient\/listen()"]}],"references":{"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/objc(pl)NSStreamDelegate":{"type":"unresolvable","title":"Foundation.StreamDelegate","identifier":"doc:\/\/HaishinKit\/objc(pl)NSStreamDelegate"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetClient/listen()":{"role":"symbol","title":"listen()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient\/listen()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netclient\/listen()"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netclient/listen().json b/docs/data/documentation/haishinkit/netclient/listen().json deleted file mode 100644 index 132d4e6e4..000000000 --- a/docs/data/documentation/haishinkit/netclient/listen().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netclient\/listen()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient\/listen()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetSocket.listen()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"title":"listen()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetClientC6listenyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetClient/listen()":{"role":"symbol","title":"listen()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient\/listen()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netclient\/listen()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice.json b/docs/data/documentation/haishinkit/netservice.json deleted file mode 100644 index b1a8ad4ad..000000000 --- a/docs/data/documentation/haishinkit/netservice.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSNetServiceDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"title":"NetService","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)NetService","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"NetService"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/init(domain:type:name:port:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/clients","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/domain","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/isRunning","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/name","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/port","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/txtData","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/type"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/NetServiceDelegate-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/Running-Implementations"],"generated":true}],"references":{"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/NetService/domain":{"role":"symbol","title":"domain","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The domain for the service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/domain","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/domain"},"doc://HaishinKit/documentation/HaishinKit/NetService/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The service is running or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/NetService/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The network service type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/type","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/type"},"doc://HaishinKit/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/HaishinKit\/objc(cs)NSObject"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit/NetService/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The name of service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/name","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/name"},"doc://HaishinKit/documentation/HaishinKit/NetService/txtData":{"role":"symbol","title":"txtData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"txtData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The TXT record for the receiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/txtData","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/txtdata"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit/NetService/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netservice\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/objc(pl)NSNetServiceDelegate":{"type":"unresolvable","title":"Foundation.NetServiceDelegate","identifier":"doc:\/\/HaishinKit\/objc(pl)NSNetServiceDelegate"},"doc://HaishinKit/documentation/HaishinKit/NetService/init(domain:type:name:port:)":{"role":"symbol","title":"init(domain:type:name:port:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Create a new NetService object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/init(domain:type:name:port:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/init(domain:type:name:port:)"},"doc://HaishinKit/documentation/HaishinKit/NetService/NetServiceDelegate-Implementations":{"role":"collectionGroup","title":"NetServiceDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/NetServiceDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netservice\/netservicedelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetService/port":{"role":"symbol","title":"port","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The port."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/port","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/port"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetService/clients":{"role":"symbol","title":"clients","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clients"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The current connected client objects."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/clients","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/clients"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/clients.json b/docs/data/documentation/haishinkit/netservice/clients.json deleted file mode 100644 index 3c38dc90d..000000000 --- a/docs/data/documentation/haishinkit/netservice/clients.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clients"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient","text":"NetClient"},{"kind":"text","text":"] { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/clients"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/clients","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current connected client objects."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clients"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":"]"}],"title":"clients","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10NetServiceC7clientsSayAA0C6ClientCGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/documentation/HaishinKit/NetService/clients":{"role":"symbol","title":"clients","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"clients"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NetClient","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetClient"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The current connected client objects."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/clients","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/clients"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/domain.json b/docs/data/documentation/haishinkit/netservice/domain.json deleted file mode 100644 index e5b428663..000000000 --- a/docs/data/documentation/haishinkit/netservice/domain.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/domain"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/domain","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The domain for the service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"domain","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10NetServiceC6domainSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService/domain":{"role":"symbol","title":"domain","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The domain for the service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/domain","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/domain"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/init(domain:type:name:port:).json b/docs/data/documentation/haishinkit/netservice/init(domain:type:name:port:).json deleted file mode 100644 index 4883e8a04..000000000 --- a/docs/data/documentation/haishinkit/netservice/init(domain:type:name:port:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/init(domain:type:name:port:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/init(domain:type:name:port:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Create a new NetService object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":")"}],"title":"init(domain:type:name:port:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit10NetServiceC6domain4type4name4portACSS_S2Ss5Int32Vtcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService/init(domain:type:name:port:)":{"role":"symbol","title":"init(domain:type:name:port:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"domain"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Create a new NetService object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/init(domain:type:name:port:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/init(domain:type:name:port:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/isrunning.json b/docs/data/documentation/haishinkit/netservice/isrunning.json deleted file mode 100644 index b4564647a..000000000 --- a/docs/data/documentation/haishinkit/netservice/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The service is running or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"title":"isRunning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10NetServiceC9isRunningAA6AtomicVySbGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The service is running or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/isrunning"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/name.json b/docs/data/documentation/haishinkit/netservice/name.json deleted file mode 100644 index 3a1338946..000000000 --- a/docs/data/documentation/haishinkit/netservice/name.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The name of service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10NetServiceC4nameSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The name of service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/name","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/name"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/netservice(_:didacceptconnectionwith:outputstream:).json b/docs/data/documentation/haishinkit/netservice/netservice(_:didacceptconnectionwith:outputstream:).json deleted file mode 100644 index a8653a4ed..000000000 --- a/docs/data/documentation/haishinkit/netservice/netservice(_:didacceptconnectionwith:outputstream:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"netService"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sender"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NetService","preciseIdentifier":"c:objc(cs)NSNetService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didAcceptConnectionWith"},{"kind":"text","text":" "},{"kind":"internalParam","text":"inputStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InputStream","preciseIdentifier":"c:objc(cs)NSInputStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"outputStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OutputStream","preciseIdentifier":"c:objc(cs)NSOutputStream"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/netservice(_:didacceptconnectionwith:outputstream:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/netService(_:didAcceptConnectionWith:outputStream:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetServiceDelegate.netService(_:didAcceptConnectionWith:outputStream:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"netService(_:didAcceptConnectionWith:outputStream:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"netService"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetService","preciseIdentifier":"c:objc(cs)NSNetService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didAcceptConnectionWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InputStream","preciseIdentifier":"c:objc(cs)NSInputStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"outputStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OutputStream","preciseIdentifier":"c:objc(cs)NSOutputStream"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@HaishinKit@objc(cs)NetService(im)netService:didAcceptConnectionWithInputStream:outputStream:","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/NetServiceDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService/netService(_:didAcceptConnectionWith:outputStream:)":{"role":"symbol","title":"netService(_:didAcceptConnectionWith:outputStream:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"netService"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetService","preciseIdentifier":"c:objc(cs)NSNetService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didAcceptConnectionWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InputStream","preciseIdentifier":"c:objc(cs)NSInputStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"outputStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OutputStream","preciseIdentifier":"c:objc(cs)NSOutputStream"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/netService(_:didAcceptConnectionWith:outputStream:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/netservice(_:didacceptconnectionwith:outputstream:)"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit/NetService/NetServiceDelegate-Implementations":{"role":"collectionGroup","title":"NetServiceDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/NetServiceDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netservice\/netservicedelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/netservicedelegate-implementations.json b/docs/data/documentation/haishinkit/netservice/netservicedelegate-implementations.json deleted file mode 100644 index 9dfe07644..000000000 --- a/docs/data/documentation/haishinkit/netservice/netservicedelegate-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/netservicedelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/NetServiceDelegate-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/netService(_:didAcceptConnectionWith:outputStream:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"NetServiceDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService/netService(_:didAcceptConnectionWith:outputStream:)":{"role":"symbol","title":"netService(_:didAcceptConnectionWith:outputStream:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"netService"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetService","preciseIdentifier":"c:objc(cs)NSNetService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didAcceptConnectionWith"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"InputStream","preciseIdentifier":"c:objc(cs)NSInputStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"outputStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OutputStream","preciseIdentifier":"c:objc(cs)NSOutputStream"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/netService(_:didAcceptConnectionWith:outputStream:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/netservice(_:didacceptconnectionwith:outputstream:)"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/port.json b/docs/data/documentation/haishinkit/netservice/port.json deleted file mode 100644 index 24b855d68..000000000 --- a/docs/data/documentation/haishinkit/netservice/port.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/port"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/port","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The port."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"port","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10NetServiceC4ports5Int32Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit/NetService/port":{"role":"symbol","title":"port","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The port."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/port","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/port"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/running-implementations.json b/docs/data/documentation/haishinkit/netservice/running-implementations.json deleted file mode 100644 index 3fc11eb57..000000000 --- a/docs/data/documentation/haishinkit/netservice/running-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/running-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/Running-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/startRunning()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/stopRunning()"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Running Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/NetService/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/startrunning().json b/docs/data/documentation/haishinkit/netservice/startrunning().json deleted file mode 100644 index 2f61b9151..000000000 --- a/docs/data/documentation/haishinkit/netservice/startrunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/startrunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/startRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.startRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"startRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10NetServiceC12startRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/NetService/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netservice\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/stoprunning().json b/docs/data/documentation/haishinkit/netservice/stoprunning().json deleted file mode 100644 index 18e26c5a5..000000000 --- a/docs/data/documentation/haishinkit/netservice/stoprunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/stoprunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/stopRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.stopRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10NetServiceC11stopRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netservice\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit/NetService/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/txtdata.json b/docs/data/documentation/haishinkit/netservice/txtdata.json deleted file mode 100644 index 441c64cef..000000000 --- a/docs/data/documentation/haishinkit/netservice/txtdata.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"txtData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/txtdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/txtData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The TXT record for the receiver."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"txtData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"title":"txtData","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10NetServiceC7txtData10Foundation0F0VSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService/txtData":{"role":"symbol","title":"txtData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"txtData"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The TXT record for the receiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/txtData","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/txtdata"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netservice/type.json b/docs/data/documentation/haishinkit/netservice/type.json deleted file mode 100644 index 749cd671c..000000000 --- a/docs/data/documentation/haishinkit/netservice/type.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netservice\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The network service type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10NetServiceC4typeSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetService/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The network service type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService\/type","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netservice\/type"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket.json b/docs/data/documentation/haishinkit/netsocket.json deleted file mode 100644 index 703f7fc59..000000000 --- a/docs/data/documentation/haishinkit/netsocket.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSStreamDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"title":"NetSocket","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)NetSocket","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"NetSocket"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connected","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/inputBuffer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/outputBufferSize","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/qualityOfService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/queueBytesOut","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/securityLevel","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/timeout","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesIn","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesOut","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/windowSizeC"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/close()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connect(withName:port:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/doOutput(data:locked:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/listen()"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultTimeout","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultWindowSizeC"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/StreamDelegate-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/connected":{"role":"symbol","title":"connected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies instance connected to server(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/connected"},"doc://HaishinKit/documentation/HaishinKit/NetClient":{"role":"symbol","title":"NetClient","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetClient"}],"abstract":[{"type":"text","text":"The NetClient class creates a two-way connection between a NetService."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetClient","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetClient"}],"url":"\/documentation\/haishinkit\/netclient"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/securityLevel":{"role":"symbol","title":"securityLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"securityLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamSocketSecurityLevel","preciseIdentifier":"c:@T@NSStreamSocketSecurityLevel"}],"abstract":[{"type":"text","text":"Specifies instance determine to use the secure-socket layer (SSL) security level."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/securityLevel","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/securitylevel"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/HaishinKit\/objc(cs)NSObject"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/totalBytesOut":{"role":"symbol","title":"totalBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Specifies statistics of total outgoing bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/totalbytesout"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/defaultWindowSizeC":{"role":"symbol","title":"defaultWindowSizeC","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The defulat stream’s TCP window size."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultWindowSizeC","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/defaultwindowsizec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/qualityOfService":{"role":"symbol","title":"qualityOfService","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"}],"abstract":[{"type":"text","text":"Specifies instance’s quality of service for a Socket IO."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/qualityOfService","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/qualityofservice"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/defaultTimeout":{"role":"symbol","title":"defaultTimeout","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultTimeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default time to wait for TCP\/IP Handshake done."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultTimeout","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/defaulttimeout"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/connect(withName:port:)":{"role":"symbol","title":"connect(withName:port:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a two-way connection to a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connect(withName:port:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/connect(withname:port:)"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/inputBuffer":{"role":"symbol","title":"inputBuffer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"inputBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"}],"abstract":[{"type":"text","text":"The current incoming data buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/inputBuffer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/inputbuffer"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/doOutput(data:locked:)":{"role":"symbol","title":"doOutput(data:locked:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"doOutput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"locked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UnsafeMutablePointer","preciseIdentifier":"s:Sp"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":">?) -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Does output data buffer to the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/doOutput(data:locked:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/dooutput(data:locked:)"},"doc://HaishinKit/objc(pl)NSStreamDelegate":{"type":"unresolvable","title":"Foundation.StreamDelegate","identifier":"doc:\/\/HaishinKit\/objc(pl)NSStreamDelegate"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/totalBytesIn":{"role":"symbol","title":"totalBytesIn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Specifies statistics of total incoming bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesIn","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/totalbytesin"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/outputBufferSize":{"role":"symbol","title":"outputBufferSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputBufferSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the output buffer size in bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/outputBufferSize","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/outputbuffersize"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/listen()":{"role":"symbol","title":"listen()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Listen incoming data buffer from the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/listen()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/listen()"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/windowSizeC":{"role":"symbol","title":"windowSizeC","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"windowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the output buffer size in bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/windowSizeC","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/windowsizec"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/StreamDelegate-Implementations":{"role":"collectionGroup","title":"StreamDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/StreamDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/streamdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/queueBytesOut":{"role":"symbol","title":"queueBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Specifies statistics of total outgoing queued bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/queueBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/queuebytesout"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/timeout":{"role":"symbol","title":"timeout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies time to wait for TCP\/IP Handshake done."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/timeout","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/timeout"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Closes the connection from the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/close()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/close().json b/docs/data/documentation/haishinkit/netsocket/close().json deleted file mode 100644 index e4c0fb7ac..000000000 --- a/docs/data/documentation/haishinkit/netsocket/close().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/close()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/close()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Closes the connection from the server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"title":"close()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetSocketC5closeyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Closes the connection from the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/close()"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/connect(withname:port:).json b/docs/data/documentation/haishinkit/netsocket/connect(withname:port:).json deleted file mode 100644 index 150e8934f..000000000 --- a/docs/data/documentation/haishinkit/netsocket/connect(withname:port:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/connect(withname:port:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connect(withName:port:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a two-way connection to a server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"title":"connect(withName:port:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetSocketC7connect8withName4portySS_SitF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/connect(withName:port:)":{"role":"symbol","title":"connect(withName:port:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"port"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a two-way connection to a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connect(withName:port:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/connect(withname:port:)"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/connected.json b/docs/data/documentation/haishinkit/netsocket/connected.json deleted file mode 100644 index 9bfe02c9d..000000000 --- a/docs/data/documentation/haishinkit/netsocket/connected.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/connected"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connected","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies instance connected to server(true) or not(false)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"connected","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC9connectedSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/connected":{"role":"symbol","title":"connected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies instance connected to server(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/connected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/connected"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/defaulttimeout.json b/docs/data/documentation/haishinkit/netsocket/defaulttimeout.json deleted file mode 100644 index e5a367bcf..000000000 --- a/docs/data/documentation/haishinkit/netsocket/defaulttimeout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultTimeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/defaulttimeout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultTimeout","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default time to wait for TCP\/IP Handshake done."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultTimeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"defaultTimeout","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC14defaultTimeoutSivpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/defaultTimeout":{"role":"symbol","title":"defaultTimeout","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultTimeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default time to wait for TCP\/IP Handshake done."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultTimeout","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/defaulttimeout"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/defaultwindowsizec.json b/docs/data/documentation/haishinkit/netsocket/defaultwindowsizec.json deleted file mode 100644 index c263d8414..000000000 --- a/docs/data/documentation/haishinkit/netsocket/defaultwindowsizec.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/defaultwindowsizec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultWindowSizeC","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The defulat stream’s TCP window size."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"defaultWindowSizeC","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC18defaultWindowSizeCSivpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/defaultWindowSizeC":{"role":"symbol","title":"defaultWindowSizeC","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The defulat stream’s TCP window size."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/defaultWindowSizeC","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/defaultwindowsizec"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/dooutput(data:locked:).json b/docs/data/documentation/haishinkit/netsocket/dooutput(data:locked:).json deleted file mode 100644 index ba31efc19..000000000 --- a/docs/data/documentation/haishinkit/netsocket/dooutput(data:locked:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@discardableResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"doOutput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"locked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UnsafeMutablePointer","preciseIdentifier":"s:Sp"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":">? = nil) -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/dooutput(data:locked:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/doOutput(data:locked:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Does output data buffer to the server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"doOutput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"locked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UnsafeMutablePointer","preciseIdentifier":"s:Sp"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":">?) -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"doOutput(data:locked:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetSocketC8doOutput4data6lockedSi10Foundation4DataV_Spys6UInt32VGSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/doOutput(data:locked:)":{"role":"symbol","title":"doOutput(data:locked:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"doOutput"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"locked"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UnsafeMutablePointer","preciseIdentifier":"s:Sp"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":">?) -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Does output data buffer to the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/doOutput(data:locked:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/dooutput(data:locked:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/inputbuffer.json b/docs/data/documentation/haishinkit/netsocket/inputbuffer.json deleted file mode 100644 index 1ce88c426..000000000 --- a/docs/data/documentation/haishinkit/netsocket/inputbuffer.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"inputBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/inputbuffer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/inputBuffer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current incoming data buffer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"inputBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"}],"title":"inputBuffer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC11inputBuffer10Foundation4DataVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/inputBuffer":{"role":"symbol","title":"inputBuffer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"inputBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"}],"abstract":[{"type":"text","text":"The current incoming data buffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/inputBuffer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/inputbuffer"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/listen().json b/docs/data/documentation/haishinkit/netsocket/listen().json deleted file mode 100644 index d30d432bb..000000000 --- a/docs/data/documentation/haishinkit/netsocket/listen().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/listen()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/listen()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Listen incoming data buffer from the server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"title":"listen()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetSocketC6listenyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/listen()":{"role":"symbol","title":"listen()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listen"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Listen incoming data buffer from the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/listen()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/listen()"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/outputbuffersize.json b/docs/data/documentation/haishinkit/netsocket/outputbuffersize.json deleted file mode 100644 index b739046ce..000000000 --- a/docs/data/documentation/haishinkit/netsocket/outputbuffersize.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputBufferSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/outputbuffersize"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/outputBufferSize","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the output buffer size in bytes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputBufferSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"outputBufferSize","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC16outputBufferSizeSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/outputBufferSize":{"role":"symbol","title":"outputBufferSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"outputBufferSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the output buffer size in bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/outputBufferSize","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/outputbuffersize"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/qualityofservice.json b/docs/data/documentation/haishinkit/netsocket/qualityofservice.json deleted file mode 100644 index 03f638d71..000000000 --- a/docs/data/documentation/haishinkit/netsocket/qualityofservice.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/qualityofservice"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/qualityOfService","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies instance’s quality of service for a Socket IO."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"}],"title":"qualityOfService","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC16qualityOfService8Dispatch0H3QoSVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/qualityOfService":{"role":"symbol","title":"qualityOfService","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"}],"abstract":[{"type":"text","text":"Specifies instance’s quality of service for a Socket IO."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/qualityOfService","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/qualityofservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/queuebytesout.json b/docs/data/documentation/haishinkit/netsocket/queuebytesout.json deleted file mode 100644 index 5d50ca6f2..000000000 --- a/docs/data/documentation/haishinkit/netsocket/queuebytesout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/queuebytesout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/queueBytesOut","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies statistics of total outgoing queued bytes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"title":"queueBytesOut","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC13queueBytesOutAA6AtomicVys5Int64VGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/queueBytesOut":{"role":"symbol","title":"queueBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"queueBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Specifies statistics of total outgoing queued bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/queueBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/queuebytesout"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/securitylevel.json b/docs/data/documentation/haishinkit/netsocket/securitylevel.json deleted file mode 100644 index 90d9aaa67..000000000 --- a/docs/data/documentation/haishinkit/netsocket/securitylevel.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"securityLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamSocketSecurityLevel","preciseIdentifier":"c:@T@NSStreamSocketSecurityLevel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/securitylevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/securityLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies instance determine to use the secure-socket layer (SSL) security level."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"securityLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamSocketSecurityLevel","preciseIdentifier":"c:@T@NSStreamSocketSecurityLevel"}],"title":"securityLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC13securityLevelSo08NSStreamd8SecurityF0avp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/securityLevel":{"role":"symbol","title":"securityLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"securityLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StreamSocketSecurityLevel","preciseIdentifier":"c:@T@NSStreamSocketSecurityLevel"}],"abstract":[{"type":"text","text":"Specifies instance determine to use the secure-socket layer (SSL) security level."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/securityLevel","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/securitylevel"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/stream(_:handle:).json b/docs/data/documentation/haishinkit/netsocket/stream(_:handle:).json deleted file mode 100644 index 147ca7533..000000000 --- a/docs/data/documentation/haishinkit/netsocket/stream(_:handle:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"aStream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handle"},{"kind":"text","text":" "},{"kind":"internalParam","text":"eventCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"c:@E@NSStreamEvent"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/stream(_:handle:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/stream(_:handle:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"StreamDelegate.stream(_:handle:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"stream(_:handle:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"c:@E@NSStreamEvent"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@HaishinKit@objc(cs)NetSocket(im)stream:handleEvent:","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/StreamDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/StreamDelegate-Implementations":{"role":"collectionGroup","title":"StreamDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/StreamDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/streamdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/stream(_:handle:)":{"role":"symbol","title":"stream(_:handle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"c:@E@NSStreamEvent"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/stream(_:handle:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/stream(_:handle:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/streamdelegate-implementations.json b/docs/data/documentation/haishinkit/netsocket/streamdelegate-implementations.json deleted file mode 100644 index 730758e4c..000000000 --- a/docs/data/documentation/haishinkit/netsocket/streamdelegate-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/streamdelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/StreamDelegate-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/stream(_:handle:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"StreamDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/stream(_:handle:)":{"role":"symbol","title":"stream(_:handle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Stream","preciseIdentifier":"c:objc(cs)NSStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"c:@E@NSStreamEvent"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/stream(_:handle:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/stream(_:handle:)"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/timeout.json b/docs/data/documentation/haishinkit/netsocket/timeout.json deleted file mode 100644 index 6916c6d8b..000000000 --- a/docs/data/documentation/haishinkit/netsocket/timeout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/timeout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/timeout","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies time to wait for TCP\/IP Handshake done."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"timeout","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC7timeoutSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/timeout":{"role":"symbol","title":"timeout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies time to wait for TCP\/IP Handshake done."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/timeout","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/timeout"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/totalbytesin.json b/docs/data/documentation/haishinkit/netsocket/totalbytesin.json deleted file mode 100644 index ff602d50a..000000000 --- a/docs/data/documentation/haishinkit/netsocket/totalbytesin.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/totalbytesin"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesIn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies statistics of total incoming bytes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"title":"totalBytesIn","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC12totalBytesInAA6AtomicVys5Int64VGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket/totalBytesIn":{"role":"symbol","title":"totalBytesIn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Specifies statistics of total incoming bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesIn","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/totalbytesin"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/totalbytesout.json b/docs/data/documentation/haishinkit/netsocket/totalbytesout.json deleted file mode 100644 index 9cbfb5755..000000000 --- a/docs/data/documentation/haishinkit/netsocket/totalbytesout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/totalbytesout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesOut","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies statistics of total outgoing bytes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"title":"totalBytesOut","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC13totalBytesOutAA6AtomicVys5Int64VGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/totalBytesOut":{"role":"symbol","title":"totalBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Specifies statistics of total outgoing bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/totalBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/totalbytesout"},"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netsocket/windowsizec.json b/docs/data/documentation/haishinkit/netsocket/windowsizec.json deleted file mode 100644 index 311868e5b..000000000 --- a/docs/data/documentation/haishinkit/netsocket/windowsizec.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"windowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netsocket\/windowsizec"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/windowSizeC","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the output buffer size in bytes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"windowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"windowSizeC","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetSocketC11windowSizeCSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetSocket":{"role":"symbol","title":"NetSocket","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetSocket"}],"abstract":[{"type":"text","text":"The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetSocket"}],"url":"\/documentation\/haishinkit\/netsocket"},"doc://HaishinKit/documentation/HaishinKit/NetSocket/windowSizeC":{"role":"symbol","title":"windowSizeC","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"windowSizeC"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the output buffer size in bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetSocket\/windowSizeC","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netsocket\/windowsizec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream.json b/docs/data/documentation/haishinkit/netstream.json deleted file mode 100644 index 6babee123..000000000 --- a/docs/data/documentation/haishinkit/netstream.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/objc(pl)SCStreamOutput","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"title":"NetStream","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)NetStream","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"NetStream"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/init()"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/audioSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/context","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/delegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/frameRate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasAudio","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasVideo","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/lockQueue","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/loopback","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/mixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/multiCamCaptureSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/sessionPreset","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/torch","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoOrientation","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoSettings"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/appendSampleBuffer(_:options:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachCamera(_:onError:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachMultiCamera(_:onError:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachScreen(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerAudioEffect(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerVideoEffect(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/startRecording(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stopRecording()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterAudioEffect(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterVideoEffect(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoCapture(for:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/IOScreenCaptureUnitDelegate-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/SCStreamOutput-Implementations"],"generated":true}],"references":{"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/HTTPStream":{"role":"symbol","title":"HTTPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPStream"}],"abstract":[{"type":"text","text":"The HTTPStream class represents an HLS playlist and .ts files."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPStream"}],"url":"\/documentation\/haishinkit\/httpstream"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetStream/registerVideoEffect(_:)":{"role":"symbol","title":"registerVideoEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerVideoEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Register a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerVideoEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/registervideoeffect(_:)"},"doc://HaishinKit/objc(pl)SCStreamOutput":{"type":"unresolvable","title":"ScreenCaptureKit.SCStreamOutput","identifier":"doc:\/\/HaishinKit\/objc(pl)SCStreamOutput"},"doc://HaishinKit/documentation/HaishinKit/NetStream/attachMultiCamera(_:onError:)":{"role":"symbol","title":"attachMultiCamera(_:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachMultiCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Attaches the 2ndary camera object for picture in picture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachMultiCamera(_:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/attachmulticamera(_:onerror:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream/IOScreenCaptureUnitDelegate-Implementations":{"role":"collectionGroup","title":"IOScreenCaptureUnitDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/IOScreenCaptureUnitDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netstream\/ioscreencaptureunitdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate":{"role":"symbol","title":"IOScreenCaptureUnitDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate"},"doc://HaishinKit/documentation/HaishinKit/NetStream/attachScreen(_:)":{"role":"symbol","title":"attachScreen(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachScreen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureScreenInput","preciseIdentifier":"c:objc(cs)AVCaptureScreenInput"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Attaches the screen input object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachScreen(_:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/haishinkit\/netstream\/attachscreen(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream/sessionPreset":{"role":"symbol","title":"sessionPreset","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Preset","preciseIdentifier":"c:@T@AVCaptureSessionPreset"}],"abstract":[{"type":"text","text":"Specifies the sessionPreset for the AVCaptureSession."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/sessionPreset","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/sessionpreset"},"doc://HaishinKit/documentation/HaishinKit/NetStream/torch":{"role":"symbol","title":"torch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"torch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifiet the device torch indicating wheter the turn on(TRUE) or not(FALSE)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/torch","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/torch"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetStream/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[{"type":"text","text":"Specifies the video orientation for stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/videoorientation"},"doc://HaishinKit/documentation/HaishinKit/NetStream/frameRate":{"role":"symbol","title":"frameRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"frameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"}],"abstract":[{"type":"text","text":"Specifies the frame rate of a device capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/frameRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/framerate"},"doc://HaishinKit/documentation/HaishinKit/NetStream/mixer":{"role":"symbol","title":"mixer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IOMixer","preciseIdentifier":"s:10HaishinKit7IOMixerC"}],"abstract":[{"type":"text","text":"The mixer object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/mixer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/mixer"},"doc://HaishinKit/documentation/HaishinKit/NetStream/registerAudioEffect(_:)":{"role":"symbol","title":"registerAudioEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerAudioEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Register a audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerAudioEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/registeraudioeffect(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates a NetStream object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/init()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/context":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"}],"abstract":[{"type":"text","text":"Specifies the context object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/context","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/context"},"doc://HaishinKit/documentation/HaishinKit/NetStream/hasAudio":{"role":"symbol","title":"hasAudio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the hasAudio indicies whether no signal audio or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasAudio","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/hasaudio"},"doc://HaishinKit/documentation/HaishinKit/NetStream/appendSampleBuffer(_:options:)":{"role":"symbol","title":"appendSampleBuffer(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Append a CMSampleBuffer?."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/appendSampleBuffer(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/appendsamplebuffer(_:options:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream/unregisterVideoEffect(_:)":{"role":"symbol","title":"unregisterVideoEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterVideoEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Unregister a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterVideoEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/unregistervideoeffect(_:)"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/documentation/HaishinKit/NetStream/unregisterAudioEffect(_:)":{"role":"symbol","title":"unregisterAudioEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterAudioEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Unregister a audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterAudioEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/unregisteraudioeffect(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream/lockQueue":{"role":"symbol","title":"lockQueue","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockQueue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"}],"abstract":[{"type":"text","text":"The lockQueue."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/lockQueue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/lockqueue"},"doc://HaishinKit/documentation/HaishinKit/NetStream/stopRecording()":{"role":"symbol","title":"stopRecording()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRecording"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stop recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stopRecording()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/stoprecording()"},"doc://HaishinKit/documentation/HaishinKit/NetStream/videoSettings":{"role":"symbol","title":"videoSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the video compression properties."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/videosettings"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/NetStream/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)":{"role":"symbol","title":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Attaches the audio capture object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream/videoCapture(for:)":{"role":"symbol","title":"videoCapture(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCapture"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"IOVideoCaptureUnit","preciseIdentifier":"s:10HaishinKit18IOVideoCaptureUnitC"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the IOVideoCaptureUnit by index."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoCapture(for:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/videocapture(for:)"},"doc://HaishinKit/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/HaishinKit\/objc(cs)NSObject"},"doc://HaishinKit/documentation/HaishinKit/NetStream/audioSettings":{"role":"symbol","title":"audioSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the audio compression properties."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/audioSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/audiosettings"},"doc://HaishinKit/documentation/HaishinKit/NetStream/attachCamera(_:onError:)":{"role":"symbol","title":"attachCamera(_:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Attaches the primary camera object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachCamera(_:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/attachcamera(_:onerror:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/SCStreamOutput-Implementations":{"role":"collectionGroup","title":"SCStreamOutput Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/SCStreamOutput-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netstream\/scstreamoutput-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetStream/multiCamCaptureSettings":{"role":"symbol","title":"multiCamCaptureSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiCamCaptureSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"}],"abstract":[{"type":"text","text":"Specifies the multi camera capture properties."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/multiCamCaptureSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/NetStream/hasVideo":{"role":"symbol","title":"hasVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the hasVideo indicies whether freeze video signal or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasVideo","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/hasvideo"},"doc://HaishinKit/documentation/HaishinKit/NetStream/loopback":{"role":"symbol","title":"loopback","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loopback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the loopback audio or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/loopback","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/loopback"},"doc://HaishinKit/documentation/HaishinKit/NetStream/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"NetStreamDelegate","preciseIdentifier":"s:10HaishinKit17NetStreamDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate of the NetStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/delegate"},"doc://HaishinKit/documentation/HaishinKit/NetStream/startRecording(_:)":{"role":"symbol","title":"startRecording(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRecording"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]])"}],"abstract":[{"type":"text","text":"Starts recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/startRecording(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/startrecording(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/appendsamplebuffer(_:options:).json b/docs/data/documentation/haishinkit/netstream/appendsamplebuffer(_:options:).json deleted file mode 100644 index 05abcedc5..000000000 --- a/docs/data/documentation/haishinkit/netstream/appendsamplebuffer(_:options:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This method can’t use attachCamera or attachAudio method at the same time."}]}],"type":"aside","name":"Warning"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/appendsamplebuffer(_:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/appendSampleBuffer(_:options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Append a CMSampleBuffer?."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]?)"}],"title":"appendSampleBuffer(_:options:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC18appendSampleBuffer_7optionsySo08CMSampleG3Refa_SDySo8NSObjectCyXlGSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/appendSampleBuffer(_:options:)":{"role":"symbol","title":"appendSampleBuffer(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendSampleBuffer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSObject","preciseIdentifier":"c:objc(cs)NSObject"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Append a CMSampleBuffer?."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/appendSampleBuffer(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/appendsamplebuffer(_:options:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:).json b/docs/data/documentation/haishinkit/netstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:).json deleted file mode 100644 index 345f7ab07..000000000 --- a/docs/data/documentation/haishinkit/netstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This method can’t use appendSampleBuffer at the same time."}]}],"type":"aside","name":"Warning"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Attaches the audio capture object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"title":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC11attachAudio_034automaticallyConfiguresApplicationF7Session7onErrorySo15AVCaptureDeviceCSg_Sbys0L0_pcSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)":{"role":"symbol","title":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachAudio"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"automaticallyConfiguresApplicationAudioSession"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Attaches the audio capture object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/attachcamera(_:onerror:).json b/docs/data/documentation/haishinkit/netstream/attachcamera(_:onerror:).json deleted file mode 100644 index 7f3051d39..000000000 --- a/docs/data/documentation/haishinkit/netstream/attachcamera(_:onerror:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This method can’t use appendSampleBuffer at the same time."}]}],"type":"aside","name":"Warning"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/attachcamera(_:onerror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachCamera(_:onError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Attaches the primary camera object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"title":"attachCamera(_:onError:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC12attachCamera_7onErrorySo15AVCaptureDeviceCSg_ys0H0_pcSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/attachCamera(_:onError:)":{"role":"symbol","title":"attachCamera(_:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Attaches the primary camera object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachCamera(_:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/attachcamera(_:onerror:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/attachmulticamera(_:onerror:).json b/docs/data/documentation/haishinkit/netstream/attachmulticamera(_:onerror:).json deleted file mode 100644 index d01273a02..000000000 --- a/docs/data/documentation/haishinkit/netstream/attachmulticamera(_:onerror:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachMultiCamera"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"device"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"warning","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This method can’t use appendSampleBuffer at the same time."}]}],"type":"aside","name":"Warning"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/attachmulticamera(_:onerror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachMultiCamera(_:onError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Attaches the 2ndary camera object for picture in picture."}],"kind":"symbol","metadata":{"role":"symbol","title":"attachMultiCamera(_:onError:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachMultiCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC17attachMultiCamera_7onErrorySo15AVCaptureDeviceCSg_ys0I0_pcSgtF","modules":[{"name":"HaishinKit"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/attachMultiCamera(_:onError:)":{"role":"symbol","title":"attachMultiCamera(_:onError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachMultiCamera"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureDevice","preciseIdentifier":"c:objc(cs)AVCaptureDevice"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?)"}],"abstract":[{"type":"text","text":"Attaches the 2ndary camera object for picture in picture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachMultiCamera(_:onError:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/attachmulticamera(_:onerror:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/attachscreen(_:).json b/docs/data/documentation/haishinkit/netstream/attachscreen(_:).json deleted file mode 100644 index 1b4cda49f..000000000 --- a/docs/data/documentation/haishinkit/netstream/attachscreen(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachScreen"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"input"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureScreenInput","preciseIdentifier":"c:objc(cs)AVCaptureScreenInput"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/attachscreen(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachScreen(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Attaches the screen input object."}],"kind":"symbol","metadata":{"role":"symbol","title":"attachScreen(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachScreen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureScreenInput","preciseIdentifier":"c:objc(cs)AVCaptureScreenInput"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC12attachScreenyySo09AVCaptureF5InputCSgF","modules":[{"name":"HaishinKit"}],"platforms":[]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/attachScreen(_:)":{"role":"symbol","title":"attachScreen(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachScreen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AVCaptureScreenInput","preciseIdentifier":"c:objc(cs)AVCaptureScreenInput"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Attaches the screen input object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/attachScreen(_:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/haishinkit\/netstream\/attachscreen(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/audiosettings.json b/docs/data/documentation/haishinkit/netstream/audiosettings.json deleted file mode 100644 index 21423f7a4..000000000 --- a/docs/data/documentation/haishinkit/netstream/audiosettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV","text":"AudioCodecSettings"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/audiosettings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/audioSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the audio compression properties."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"title":"audioSettings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC13audioSettingsAA010AudioCodecF0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/audioSettings":{"role":"symbol","title":"audioSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodecSettings","preciseIdentifier":"s:10HaishinKit18AudioCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the audio compression properties."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/audioSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/audiosettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecSettings":{"role":"symbol","title":"AudioCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecSettings"}],"abstract":[{"type":"text","text":"The AudioCodecSettings class specifying audio compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecSettings"}],"url":"\/documentation\/haishinkit\/audiocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/context.json b/docs/data/documentation/haishinkit/netstream/context.json deleted file mode 100644 index 764841a28..000000000 --- a/docs/data/documentation/haishinkit/netstream/context.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/context"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/context","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the context object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"}],"title":"context","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC7contextSo9CIContextCvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/context":{"role":"symbol","title":"context","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"}],"abstract":[{"type":"text","text":"Specifies the context object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/context","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/context"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/delegate.json b/docs/data/documentation/haishinkit/netstream/delegate.json deleted file mode 100644 index a84938121..000000000 --- a/docs/data/documentation/haishinkit/netstream/delegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","preciseIdentifier":"s:10HaishinKit17NetStreamDelegateP","text":"NetStreamDelegate"},{"kind":"text","text":")?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the delegate of the NetStream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"NetStreamDelegate","preciseIdentifier":"s:10HaishinKit17NetStreamDelegateP"},{"kind":"text","text":")?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC8delegateAA0cD8Delegate_pSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"NetStreamDelegate","preciseIdentifier":"s:10HaishinKit17NetStreamDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate of the NetStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/delegate"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/framerate.json b/docs/data/documentation/haishinkit/netstream/framerate.json deleted file mode 100644 index 8d6428fea..000000000 --- a/docs/data/documentation/haishinkit/netstream/framerate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"frameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/framerate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/frameRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the frame rate of a device capture."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"frameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"}],"title":"frameRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC9frameRateSdvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/frameRate":{"role":"symbol","title":"frameRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"frameRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float64","preciseIdentifier":"s:s7Float64a"}],"abstract":[{"type":"text","text":"Specifies the frame rate of a device capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/frameRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/framerate"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/hasaudio.json b/docs/data/documentation/haishinkit/netstream/hasaudio.json deleted file mode 100644 index 4c05379e7..000000000 --- a/docs/data/documentation/haishinkit/netstream/hasaudio.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/hasaudio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasAudio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the hasAudio indicies whether no signal audio or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"hasAudio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC8hasAudioSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/hasAudio":{"role":"symbol","title":"hasAudio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the hasAudio indicies whether no signal audio or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasAudio","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/hasaudio"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/hasvideo.json b/docs/data/documentation/haishinkit/netstream/hasvideo.json deleted file mode 100644 index 3138379bb..000000000 --- a/docs/data/documentation/haishinkit/netstream/hasvideo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/hasvideo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasVideo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the hasVideo indicies whether freeze video signal or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"hasVideo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC8hasVideoSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/hasVideo":{"role":"symbol","title":"hasVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hasVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the hasVideo indicies whether freeze video signal or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/hasVideo","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/hasvideo"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/init().json b/docs/data/documentation/haishinkit/netstream/init().json deleted file mode 100644 index 999ecd249..000000000 --- a/docs/data/documentation/haishinkit/netstream/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a NetStream object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@HaishinKit@objc(cs)NetStream(im)init","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates a NetStream object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/init()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/ioscreencaptureunitdelegate-implementations.json b/docs/data/documentation/haishinkit/netstream/ioscreencaptureunitdelegate-implementations.json deleted file mode 100644 index bb4d7693c..000000000 --- a/docs/data/documentation/haishinkit/netstream/ioscreencaptureunitdelegate-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/ioscreencaptureunitdelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/IOScreenCaptureUnitDelegate-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/session(_:didOutput:presentationTime:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"IOScreenCaptureUnitDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/session(_:didOutput:presentationTime:)":{"role":"symbol","title":"session(_:didOutput:presentationTime:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/session(_:didOutput:presentationTime:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/session(_:didoutput:presentationtime:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/lockqueue.json b/docs/data/documentation/haishinkit/netstream/lockqueue.json deleted file mode 100644 index 048bf25e9..000000000 --- a/docs/data/documentation/haishinkit/netstream/lockqueue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockQueue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/lockqueue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/lockQueue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The lockQueue."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockQueue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"}],"title":"lockQueue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC9lockQueueSo17OS_dispatch_queueCvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/lockQueue":{"role":"symbol","title":"lockQueue","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"lockQueue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"}],"abstract":[{"type":"text","text":"The lockQueue."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/lockQueue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/lockqueue"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/loopback.json b/docs/data/documentation/haishinkit/netstream/loopback.json deleted file mode 100644 index 92bf1bdbe..000000000 --- a/docs/data/documentation/haishinkit/netstream/loopback.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loopback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/loopback"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/loopback","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the loopback audio or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loopback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"loopback","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC8loopbackSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/loopback":{"role":"symbol","title":"loopback","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"loopback"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the loopback audio or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/loopback","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/loopback"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/mixer.json b/docs/data/documentation/haishinkit/netstream/mixer.json deleted file mode 100644 index a7772b33d..000000000 --- a/docs/data/documentation/haishinkit/netstream/mixer.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"lazy"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","preciseIdentifier":"s:10HaishinKit7IOMixerC","text":"IOMixer"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/mixer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/mixer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The mixer object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IOMixer","preciseIdentifier":"s:10HaishinKit7IOMixerC"}],"title":"mixer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC5mixerAA7IOMixerCvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/mixer":{"role":"symbol","title":"mixer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"mixer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IOMixer","preciseIdentifier":"s:10HaishinKit7IOMixerC"}],"abstract":[{"type":"text","text":"The mixer object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/mixer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/mixer"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/multicamcapturesettings.json b/docs/data/documentation/haishinkit/netstream/multicamcapturesettings.json deleted file mode 100644 index 8ae9d7208..000000000 --- a/docs/data/documentation/haishinkit/netstream/multicamcapturesettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiCamCaptureSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV","text":"MultiCamCaptureSettings"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/multicamcapturesettings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/multiCamCaptureSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the multi camera capture properties."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiCamCaptureSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"}],"title":"multiCamCaptureSettings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC23multiCamCaptureSettingsAA05MultifgH0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/MultiCamCaptureSettings":{"role":"symbol","title":"MultiCamCaptureSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MultiCamCaptureSettings"}],"abstract":[{"type":"text","text":"The MultiCamCaptureSetting represents the pip capture settings for the video capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MultiCamCaptureSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MultiCamCaptureSettings"}],"url":"\/documentation\/haishinkit\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/multiCamCaptureSettings":{"role":"symbol","title":"multiCamCaptureSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiCamCaptureSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MultiCamCaptureSettings","preciseIdentifier":"s:10HaishinKit23MultiCamCaptureSettingsV"}],"abstract":[{"type":"text","text":"Specifies the multi camera capture properties."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/multiCamCaptureSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/multicamcapturesettings"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/registeraudioeffect(_:).json b/docs/data/documentation/haishinkit/netstream/registeraudioeffect(_:).json deleted file mode 100644 index 993e5d5b2..000000000 --- a/docs/data/documentation/haishinkit/netstream/registeraudioeffect(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerAudioEffect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"effect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect","text":"AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/registeraudioeffect(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerAudioEffect(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Register a audio effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerAudioEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"registerAudioEffect(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC19registerAudioEffectySbAA0fG0CF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/registerAudioEffect(_:)":{"role":"symbol","title":"registerAudioEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerAudioEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Register a audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerAudioEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/registeraudioeffect(_:)"},"doc://HaishinKit/documentation/HaishinKit/AudioEffect":{"role":"symbol","title":"AudioEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioEffect"}],"abstract":[{"type":"text","text":"An object that apply an audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioEffect"}],"url":"\/documentation\/haishinkit\/audioeffect"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/registervideoeffect(_:).json b/docs/data/documentation/haishinkit/netstream/registervideoeffect(_:).json deleted file mode 100644 index 0e99e109e..000000000 --- a/docs/data/documentation/haishinkit/netstream/registervideoeffect(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerVideoEffect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"effect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect","text":"VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/registervideoeffect(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerVideoEffect(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Register a video effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerVideoEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"registerVideoEffect(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC19registerVideoEffectySbAA0fG0CF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect":{"role":"symbol","title":"VideoEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"abstract":[{"type":"text","text":"An object that apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoEffect"}],"url":"\/documentation\/haishinkit\/videoeffect"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/registerVideoEffect(_:)":{"role":"symbol","title":"registerVideoEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerVideoEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Register a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/registerVideoEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/registervideoeffect(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/scstreamoutput-implementations.json b/docs/data/documentation/haishinkit/netstream/scstreamoutput-implementations.json deleted file mode 100644 index aaf10850d..000000000 --- a/docs/data/documentation/haishinkit/netstream/scstreamoutput-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/scstreamoutput-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/SCStreamOutput-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stream(_:didOutputSampleBuffer:of:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"SCStreamOutput Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStream/stream(_:didOutputSampleBuffer:of:)":{"role":"symbol","title":"stream(_:didOutputSampleBuffer:of:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"SCStream","preciseIdentifier":"c:objc(cs)SCStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutputSampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SCStreamOutputType","preciseIdentifier":"c:@E@SCStreamOutputType"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stream(_:didOutputSampleBuffer:of:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/stream(_:didoutputsamplebuffer:of:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/session(_:didoutput:presentationtime:).json b/docs/data/documentation/haishinkit/netstream/session(_:didoutput:presentationtime:).json deleted file mode 100644 index 28bee2b69..000000000 --- a/docs/data/documentation/haishinkit/netstream/session(_:didoutput:presentationtime:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP","text":"IOScreenCaptureUnit"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"pixelBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/session(_:didoutput:presentationtime:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/session(_:didOutput:presentationTime:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"IOScreenCaptureUnitDelegate.session(_:didOutput:presentationTime:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"session(_:didOutput:presentationTime:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC7session_9didOutput16presentationTimeyAA19IOScreenCaptureUnit_p_So11CVBufferRefaSo6CMTimeatF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/IOScreenCaptureUnitDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/IOScreenCaptureUnitDelegate-Implementations":{"role":"collectionGroup","title":"IOScreenCaptureUnitDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/IOScreenCaptureUnitDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netstream\/ioscreencaptureunitdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetStream/session(_:didOutput:presentationTime:)":{"role":"symbol","title":"session(_:didOutput:presentationTime:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"session"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"IOScreenCaptureUnit","preciseIdentifier":"s:10HaishinKit19IOScreenCaptureUnitP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CVPixelBuffer","preciseIdentifier":"c:@T@CVPixelBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTime"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/session(_:didOutput:presentationTime:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/session(_:didoutput:presentationtime:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit":{"role":"symbol","title":"IOScreenCaptureUnit","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunit"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/sessionpreset.json b/docs/data/documentation/haishinkit/netstream/sessionpreset.json deleted file mode 100644 index 0a5740653..000000000 --- a/docs/data/documentation/haishinkit/netstream/sessionpreset.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Preset","preciseIdentifier":"c:@T@AVCaptureSessionPreset"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/sessionpreset"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/sessionPreset","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the sessionPreset for the AVCaptureSession."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Preset","preciseIdentifier":"c:@T@AVCaptureSessionPreset"}],"title":"sessionPreset","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC13sessionPresetSo016AVCaptureSessionF0avp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/sessionPreset":{"role":"symbol","title":"sessionPreset","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sessionPreset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureSession","preciseIdentifier":"c:objc(cs)AVCaptureSession"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Preset","preciseIdentifier":"c:@T@AVCaptureSessionPreset"}],"abstract":[{"type":"text","text":"Specifies the sessionPreset for the AVCaptureSession."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/sessionPreset","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/sessionpreset"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/startrecording(_:).json b/docs/data/documentation/haishinkit/netstream/startrecording(_:).json deleted file mode 100644 index 0cebc8a3c..000000000 --- a/docs/data/documentation/haishinkit/netstream/startrecording(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRecording"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"settings"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]] = IORecorder.defaultOutputSettings)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/startrecording(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/startRecording(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Starts recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRecording"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]])"}],"title":"startRecording(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC14startRecordingyySDySo11AVMediaTypeaSDySSypGGF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/startRecording(_:)":{"role":"symbol","title":"startRecording(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRecording"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":" : ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]])"}],"abstract":[{"type":"text","text":"Starts recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/startRecording(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/startrecording(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/stoprecording().json b/docs/data/documentation/haishinkit/netstream/stoprecording().json deleted file mode 100644 index 0d215c88f..000000000 --- a/docs/data/documentation/haishinkit/netstream/stoprecording().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRecording"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/stoprecording()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stopRecording()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stop recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRecording"},{"kind":"text","text":"()"}],"title":"stopRecording()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC13stopRecordingyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/stopRecording()":{"role":"symbol","title":"stopRecording()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRecording"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stop recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stopRecording()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/stoprecording()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/stream(_:didoutputsamplebuffer:of:).json b/docs/data/documentation/haishinkit/netstream/stream(_:didoutputsamplebuffer:of:).json deleted file mode 100644 index b532a8c09..000000000 --- a/docs/data/documentation/haishinkit/netstream/stream(_:didoutputsamplebuffer:of:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SCStream","preciseIdentifier":"c:objc(cs)SCStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutputSampleBuffer"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SCStreamOutputType","preciseIdentifier":"c:@E@SCStreamOutputType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/stream(_:didoutputsamplebuffer:of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stream(_:didOutputSampleBuffer:of:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"SCStreamOutput.stream(_:didOutputSampleBuffer:of:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"HaishinKit"}],"role":"symbol","title":"stream(_:didOutputSampleBuffer:of:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"SCStream","preciseIdentifier":"c:objc(cs)SCStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutputSampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SCStreamOutputType","preciseIdentifier":"c:@E@SCStreamOutputType"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@HaishinKit@objc(cs)NetStream(im)stream:didOutputSampleBuffer:ofType:","extendedModule":"HaishinKit","platforms":[{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"12.3","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/SCStreamOutput-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/SCStreamOutput-Implementations":{"role":"collectionGroup","title":"SCStreamOutput Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/SCStreamOutput-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/netstream\/scstreamoutput-implementations"},"doc://HaishinKit/documentation/HaishinKit/NetStream/stream(_:didOutputSampleBuffer:of:)":{"role":"symbol","title":"stream(_:didOutputSampleBuffer:of:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"SCStream","preciseIdentifier":"c:objc(cs)SCStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutputSampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":", "},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SCStreamOutputType","preciseIdentifier":"c:@E@SCStreamOutputType"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/stream(_:didOutputSampleBuffer:of:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/stream(_:didoutputsamplebuffer:of:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/torch.json b/docs/data/documentation/haishinkit/netstream/torch.json deleted file mode 100644 index c0d7dafaa..000000000 --- a/docs/data/documentation/haishinkit/netstream/torch.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"torch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/torch"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/torch","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifiet the device torch indicating wheter the turn on(TRUE) or not(FALSE)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"torch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"torch","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC5torchSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/torch":{"role":"symbol","title":"torch","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"torch"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifiet the device torch indicating wheter the turn on(TRUE) or not(FALSE)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/torch","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/torch"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/unregisteraudioeffect(_:).json b/docs/data/documentation/haishinkit/netstream/unregisteraudioeffect(_:).json deleted file mode 100644 index be7480c67..000000000 --- a/docs/data/documentation/haishinkit/netstream/unregisteraudioeffect(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterAudioEffect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"effect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect","text":"AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/unregisteraudioeffect(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterAudioEffect(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Unregister a audio effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterAudioEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"unregisterAudioEffect(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC21unregisterAudioEffectySbAA0fG0CF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/AudioEffect":{"role":"symbol","title":"AudioEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioEffect"}],"abstract":[{"type":"text","text":"An object that apply an audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioEffect"}],"url":"\/documentation\/haishinkit\/audioeffect"},"doc://HaishinKit/documentation/HaishinKit/NetStream/unregisterAudioEffect(_:)":{"role":"symbol","title":"unregisterAudioEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterAudioEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)AudioEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Unregister a audio effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterAudioEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/unregisteraudioeffect(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/unregistervideoeffect(_:).json b/docs/data/documentation/haishinkit/netstream/unregistervideoeffect(_:).json deleted file mode 100644 index 64499919a..000000000 --- a/docs/data/documentation/haishinkit/netstream/unregistervideoeffect(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterVideoEffect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"effect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect","text":"VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/unregistervideoeffect(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterVideoEffect(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Unregister a video effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterVideoEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"unregisterVideoEffect(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC21unregisterVideoEffectySbAA0fG0CF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/unregisterVideoEffect(_:)":{"role":"symbol","title":"unregisterVideoEffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"unregisterVideoEffect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoEffect","preciseIdentifier":"c:@M@HaishinKit@objc(cs)VideoEffect"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Unregister a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/unregisterVideoEffect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/unregistervideoeffect(_:)"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect":{"role":"symbol","title":"VideoEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"abstract":[{"type":"text","text":"An object that apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoEffect"}],"url":"\/documentation\/haishinkit\/videoeffect"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/videocapture(for:).json b/docs/data/documentation/haishinkit/netstream/videocapture(for:).json deleted file mode 100644 index 79490b35f..000000000 --- a/docs/data/documentation/haishinkit/netstream/videocapture(for:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCapture"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","preciseIdentifier":"s:10HaishinKit18IOVideoCaptureUnitC","text":"IOVideoCaptureUnit"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/videocapture(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoCapture(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the IOVideoCaptureUnit by index."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCapture"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"IOVideoCaptureUnit","preciseIdentifier":"s:10HaishinKit18IOVideoCaptureUnitC"},{"kind":"text","text":"?"}],"title":"videoCapture(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit9NetStreamC12videoCapture3forAA07IOVideoF4UnitCSgSi_tF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/IOVideoCaptureUnit":{"role":"symbol","title":"IOVideoCaptureUnit","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOVideoCaptureUnit"}],"abstract":[{"type":"text","text":"An object that provides the interface to control the AVCaptureDevice’s transport behavior."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOVideoCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOVideoCaptureUnit"}],"url":"\/documentation\/haishinkit\/iovideocaptureunit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/videoCapture(for:)":{"role":"symbol","title":"videoCapture(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCapture"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"IOVideoCaptureUnit","preciseIdentifier":"s:10HaishinKit18IOVideoCaptureUnitC"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the IOVideoCaptureUnit by index."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoCapture(for:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/videocapture(for:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/videoorientation.json b/docs/data/documentation/haishinkit/netstream/videoorientation.json deleted file mode 100644 index 7b918eb1a..000000000 --- a/docs/data/documentation/haishinkit/netstream/videoorientation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/videoorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the video orientation for stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"title":"videoOrientation","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC16videoOrientationSo014AVCaptureVideoF0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[{"type":"text","text":"Specifies the video orientation for stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/videoorientation"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstream/videosettings.json b/docs/data/documentation/haishinkit/netstream/videosettings.json deleted file mode 100644 index 92d100139..000000000 --- a/docs/data/documentation/haishinkit/netstream/videosettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV","text":"VideoCodecSettings"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstream\/videosettings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the video compression properties."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"title":"videoSettings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9NetStreamC13videoSettingsAA010VideoCodecF0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStream/videoSettings":{"role":"symbol","title":"videoSettings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSettings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the video compression properties."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream\/videoSettings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/netstream\/videosettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdelegate.json b/docs/data/documentation/haishinkit/netstreamdelegate.json deleted file mode 100644 index 676e67b20..000000000 --- a/docs/data/documentation/haishinkit/netstreamdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"title":"NetStreamDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit17NetStreamDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:audioCodecErrorOccurred:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:presentationTimeStamp:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:videoCodecErrorOccurred:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamDidOpen(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamWillDropFrame(_:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:didOutput:)":{"role":"symbol","title":"stream(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to playback a video packet incoming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:)"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:didOutput:presentationTimeStamp:)":{"role":"symbol","title":"stream(_:didOutput:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to playback an audio packet incoming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:presentationTimeStamp:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:presentationtimestamp:)"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/streamWillDropFrame(_:)":{"role":"symbol","title":"streamWillDropFrame(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamWillDropFrame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Tells the receiver to will drop video frame."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamWillDropFrame(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/streamwilldropframe(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:audioCodecErrorOccurred:)":{"role":"symbol","title":"stream(_:audioCodecErrorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"audioCodecErrorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to audio codec error occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:audioCodecErrorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:audiocodecerroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/streamDidOpen(_:)":{"role":"symbol","title":"streamDidOpen(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamDidOpen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to the stream opened."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamDidOpen(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/streamdidopen(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:videoCodecErrorOccurred:)":{"role":"symbol","title":"stream(_:videoCodecErrorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"videoCodecErrorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to video codec error occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:videoCodecErrorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:videocodecerroroccurred:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:audiocodecerroroccurred:).json b/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:audiocodecerroroccurred:).json deleted file mode 100644 index e553ea451..000000000 --- a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:audiocodecerroroccurred:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"audioCodecErrorOccurred"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO","text":"Error"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdelegate\/stream(_:audiocodecerroroccurred:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:audioCodecErrorOccurred:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to audio codec error occured."}],"kind":"symbol","metadata":{"role":"symbol","title":"stream(_:audioCodecErrorOccurred:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"audioCodecErrorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDelegateP6stream_23audioCodecErrorOccurredyAA0cD0C_AA05AudioH0C0I0OtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:audioCodecErrorOccurred:)":{"role":"symbol","title":"stream(_:audioCodecErrorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"audioCodecErrorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to audio codec error occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:audioCodecErrorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:audiocodecerroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:).json b/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:).json deleted file mode 100644 index 46b29c801..000000000 --- a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"video"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to playback a video packet incoming."}],"kind":"symbol","metadata":{"role":"symbol","title":"stream(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDelegateP6stream_9didOutputyAA0cD0C_So17CMSampleBufferRefatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:didOutput:)":{"role":"symbol","title":"stream(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to playback a video packet incoming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:presentationtimestamp:).json b/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:presentationtimestamp:).json deleted file mode 100644 index b55b1560f..000000000 --- a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:presentationtimestamp:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"audio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:presentationtimestamp:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:presentationTimeStamp:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to playback an audio packet incoming."}],"kind":"symbol","metadata":{"role":"symbol","title":"stream(_:didOutput:presentationTimeStamp:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDelegateP6stream_9didOutput21presentationTimeStampyAA0cD0C_So13AVAudioBufferCSo6CMTimeatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:didOutput:presentationTimeStamp:)":{"role":"symbol","title":"stream(_:didOutput:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to playback an audio packet incoming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:didOutput:presentationTimeStamp:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:presentationtimestamp:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:videocodecerroroccurred:).json b/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:videocodecerroroccurred:).json deleted file mode 100644 index 71baf9c67..000000000 --- a/docs/data/documentation/haishinkit/netstreamdelegate/stream(_:videocodecerroroccurred:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"videoCodecErrorOccurred"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO","text":"Error"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdelegate\/stream(_:videocodecerroroccurred:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:videoCodecErrorOccurred:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to video codec error occured."}],"kind":"symbol","metadata":{"role":"symbol","title":"stream(_:videoCodecErrorOccurred:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"videoCodecErrorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDelegateP6stream_23videoCodecErrorOccurredyAA0cD0C_AA05VideoH0C0I0OtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/stream(_:videoCodecErrorOccurred:)":{"role":"symbol","title":"stream(_:videoCodecErrorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":", "},{"kind":"externalParam","text":"videoCodecErrorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to video codec error occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/stream(_:videoCodecErrorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:videocodecerroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdelegate/streamdidopen(_:).json b/docs/data/documentation/haishinkit/netstreamdelegate/streamdidopen(_:).json deleted file mode 100644 index 3b5866a5c..000000000 --- a/docs/data/documentation/haishinkit/netstreamdelegate/streamdidopen(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamDidOpen"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdelegate\/streamdidopen(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamDidOpen(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to the stream opened."}],"kind":"symbol","metadata":{"role":"symbol","title":"streamDidOpen(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamDidOpen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDelegateP13streamDidOpenyyAA0cD0CF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/streamDidOpen(_:)":{"role":"symbol","title":"streamDidOpen(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamDidOpen"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to the stream opened."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamDidOpen(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/streamdidopen(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdelegate/streamwilldropframe(_:).json b/docs/data/documentation/haishinkit/netstreamdelegate/streamwilldropframe(_:).json deleted file mode 100644 index af7ad34f2..000000000 --- a/docs/data/documentation/haishinkit/netstreamdelegate/streamwilldropframe(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamWillDropFrame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdelegate\/streamwilldropframe(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamWillDropFrame(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to will drop video frame."}],"kind":"symbol","metadata":{"role":"symbol","title":"streamWillDropFrame(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamWillDropFrame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDelegateP19streamWillDropFrameySbAA0cD0CF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate/streamWillDropFrame(_:)":{"role":"symbol","title":"streamWillDropFrame(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"streamWillDropFrame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Tells the receiver to will drop video frame."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate\/streamWillDropFrame(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdelegate\/streamwilldropframe(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDelegate":{"role":"symbol","title":"NetStreamDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDelegate"}],"abstract":[{"type":"text","text":"The interface a NetStream uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDelegate"}],"url":"\/documentation\/haishinkit\/netstreamdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdrawable.json b/docs/data/documentation/haishinkit/netstreamdrawable.json deleted file mode 100644 index beebf5a87..000000000 --- a/docs/data/documentation/haishinkit/netstreamdrawable.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdrawable"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"title":"NetStreamDrawable","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit17NetStreamDrawableP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoFormatDescription","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoOrientation"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/attachStream(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/enqueue(_:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[{"type":"text","text":"Specifies the orientation of AVCaptureVideoOrientation."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoOrientation","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/videoorientation"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Enqueue a CMSampleBuffer? to draw."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/enqueue(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/enqueue(_:)"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/documentation/HaishinKit/HKView":{"role":"symbol","title":"HKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVCaptureVideoPreviewLayer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HKView"}],"url":"\/documentation\/haishinkit\/hkview"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The videoFormatDescription which is the current CMSampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoFormatDescription","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/videoformatdescription"},"doc://HaishinKit/documentation/HaishinKit/MTHKView":{"role":"symbol","title":"MTHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MTHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses Metal api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/MTHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MTHKView"}],"url":"\/documentation\/haishinkit\/mthkview"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Attaches a drawable to a new NetStream object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/attachStream(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/attachstream(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdrawable/attachstream(_:).json b/docs/data/documentation/haishinkit/netstreamdrawable/attachstream(_:).json deleted file mode 100644 index 661176775..000000000 --- a/docs/data/documentation/haishinkit/netstreamdrawable/attachstream(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdrawable\/attachstream(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/attachStream(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Attaches a drawable to a new NetStream object."}],"kind":"symbol","metadata":{"role":"symbol","title":"attachStream(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDrawableP06attachD0yyAA0cD0CSgF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Attaches a drawable to a new NetStream object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/attachStream(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/attachstream(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdrawable/enqueue(_:).json b/docs/data/documentation/haishinkit/netstreamdrawable/enqueue(_:).json deleted file mode 100644 index 10a66e8df..000000000 --- a/docs/data/documentation/haishinkit/netstreamdrawable/enqueue(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdrawable\/enqueue(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/enqueue(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Enqueue a CMSampleBuffer? to draw."}],"kind":"symbol","metadata":{"role":"symbol","title":"enqueue(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit17NetStreamDrawableP7enqueueyySo17CMSampleBufferRefaSgF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Enqueue a CMSampleBuffer? to draw."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/enqueue(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/enqueue(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdrawable/videoformatdescription.json b/docs/data/documentation/haishinkit/netstreamdrawable/videoformatdescription.json deleted file mode 100644 index b1c43e52b..000000000 --- a/docs/data/documentation/haishinkit/netstreamdrawable/videoformatdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdrawable\/videoformatdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoFormatDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The videoFormatDescription which is the current CMSampleBuffer."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoFormatDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:10HaishinKit17NetStreamDrawableP22videoFormatDescriptionSo08CMFormatH3RefaSgvp","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The videoFormatDescription which is the current CMSampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoFormatDescription","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/videoformatdescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/netstreamdrawable/videoorientation.json b/docs/data/documentation/haishinkit/netstreamdrawable/videoorientation.json deleted file mode 100644 index ffffe49e2..000000000 --- a/docs/data/documentation/haishinkit/netstreamdrawable/videoorientation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/netstreamdrawable\/videoorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the orientation of AVCaptureVideoOrientation."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoOrientation","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"symbolKind":"property","externalID":"s:10HaishinKit17NetStreamDrawableP16videoOrientationSo014AVCaptureVideoG0Vvp","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[{"type":"text","text":"Specifies the orientation of AVCaptureVideoOrientation."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable\/videoOrientation","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/netstreamdrawable\/videoorientation"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview.json b/docs/data/documentation/haishinkit/piphkview.json deleted file mode 100644 index d120caffd..000000000 --- a/docs/data/documentation/haishinkit/piphkview.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)NSView"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSAccessibilityElement","doc:\/\/HaishinKit\/objc(pl)NSAccessibility","doc:\/\/HaishinKit\/objc(pl)NSAnimatablePropertyContainer","doc:\/\/HaishinKit\/objc(pl)NSAppearanceCustomization","doc:\/\/HaishinKit\/objc(pl)NSDraggingDestination","doc:\/\/HaishinKit\/objc(pl)NSStandardKeyBindingResponding","doc:\/\/HaishinKit\/objc(pl)NSTouchBarProvider","doc:\/\/HaishinKit\/objc(pl)NSUserActivityRestoring","doc:\/\/HaishinKit\/objc(pl)NSUserInterfaceItemIdentification","doc:\/\/HaishinKit\/objc(pl)NSCoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"title":"PiPHKView","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)PiPHKView","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(coder:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(frame:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoFormatDescription","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoGravity","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoOrientation"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/awakeFromNib()"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/defaultBackgroundColor"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/NetStreamDrawable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/init(frame:)":{"role":"symbol","title":"init(frame:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(frame:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/init(frame:)"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/init(coder:)":{"role":"symbol","title":"init(coder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(coder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/init(coder:)"},"doc://HaishinKit/objc(cs)NSView":{"type":"unresolvable","title":"AppKit.NSView","identifier":"doc:\/\/HaishinKit\/objc(cs)NSView"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A value that displays a video format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoFormatDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/videoformatdescription"},"doc://HaishinKit/objc(pl)NSAccessibility":{"type":"unresolvable","title":"AppKit.NSAccessibilityProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAccessibility"},"doc://HaishinKit/objc(pl)NSCoding":{"type":"unresolvable","title":"Foundation.NSCoding","identifier":"doc:\/\/HaishinKit\/objc(pl)NSCoding"},"doc://HaishinKit/objc(pl)NSTouchBarProvider":{"type":"unresolvable","title":"AppKit.NSTouchBarProvider","identifier":"doc:\/\/HaishinKit\/objc(pl)NSTouchBarProvider"},"doc://HaishinKit/objc(pl)NSAccessibilityElement":{"type":"unresolvable","title":"AppKit.NSAccessibilityElementProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAccessibilityElement"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/awakeFromNib()":{"role":"symbol","title":"awakeFromNib()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/awakeFromNib()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/awakefromnib()"},"doc://HaishinKit/objc(pl)NSUserActivityRestoring":{"type":"unresolvable","title":"AppKit.NSUserActivityRestoring","identifier":"doc:\/\/HaishinKit\/objc(pl)NSUserActivityRestoring"},"doc://HaishinKit/objc(pl)NSAnimatablePropertyContainer":{"type":"unresolvable","title":"AppKit.NSAnimatablePropertyContainer","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAnimatablePropertyContainer"},"doc://HaishinKit/objc(pl)NSDraggingDestination":{"type":"unresolvable","title":"AppKit.NSDraggingDestination","identifier":"doc:\/\/HaishinKit\/objc(pl)NSDraggingDestination"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/videoorientation"},"doc://HaishinKit/objc(pl)NSAppearanceCustomization":{"type":"unresolvable","title":"AppKit.NSAppearanceCustomization","identifier":"doc:\/\/HaishinKit\/objc(pl)NSAppearanceCustomization"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/videoGravity":{"role":"symbol","title":"videoGravity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"abstract":[{"type":"text","text":"A value that specifies how the video is displayed within a player layer’s bounds."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoGravity","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/videogravity"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/defaultBackgroundColor":{"role":"symbol","title":"defaultBackgroundColor","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"abstract":[{"type":"text","text":"The view’s background color."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/defaultBackgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/defaultbackgroundcolor"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/netstreamdrawable-implementations"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/NetStreamDrawable":{"role":"symbol","title":"NetStreamDrawable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStreamDrawable"}],"abstract":[{"type":"text","text":"An interface that manages the NetStream content on the screen."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStreamDrawable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStreamDrawable"}],"url":"\/documentation\/haishinkit\/netstreamdrawable"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/objc(pl)NSStandardKeyBindingResponding":{"type":"unresolvable","title":"AppKit.NSStandardKeyBindingResponding","identifier":"doc:\/\/HaishinKit\/objc(pl)NSStandardKeyBindingResponding"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/objc(pl)NSUserInterfaceItemIdentification":{"type":"unresolvable","title":"AppKit.NSUserInterfaceItemIdentification","identifier":"doc:\/\/HaishinKit\/objc(pl)NSUserInterfaceItemIdentification"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/attachstream(_:).json b/docs/data/documentation/haishinkit/piphkview/attachstream(_:).json deleted file mode 100644 index 07f81bc46..000000000 --- a/docs/data/documentation/haishinkit/piphkview/attachstream(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream","text":"NetStream"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/attachstream(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/attachStream(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.attachStream(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"attachStream(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit9PiPHKViewC12attachStreamyyAA03NetF0CSgF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/NetStreamDrawable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/attachStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/attachstream(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/netstreamdrawable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/awakefromnib().json b/docs/data/documentation/haishinkit/piphkview/awakefromnib().json deleted file mode 100644 index fade58bdf..000000000 --- a/docs/data/documentation/haishinkit/piphkview/awakefromnib().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/awakefromnib()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/awakeFromNib()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"title":"awakeFromNib()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"c:@M@HaishinKit@objc(cs)PiPHKView(im)awakeFromNib","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/awakeFromNib()":{"role":"symbol","title":"awakeFromNib()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"awakeFromNib"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/awakeFromNib()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/awakefromnib()"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/defaultbackgroundcolor.json b/docs/data/documentation/haishinkit/piphkview/defaultbackgroundcolor.json deleted file mode 100644 index 14ff53554..000000000 --- a/docs/data/documentation/haishinkit/piphkview/defaultbackgroundcolor.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/defaultbackgroundcolor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/defaultBackgroundColor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The view’s background color."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"title":"defaultBackgroundColor","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9PiPHKViewC22defaultBackgroundColorSo7NSColorCvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/PiPHKView/defaultBackgroundColor":{"role":"symbol","title":"defaultBackgroundColor","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultBackgroundColor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSColor","preciseIdentifier":"c:objc(cs)NSColor"}],"abstract":[{"type":"text","text":"The view’s background color."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/defaultBackgroundColor","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/defaultbackgroundcolor"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/enqueue(_:).json b/docs/data/documentation/haishinkit/piphkview/enqueue(_:).json deleted file mode 100644 index 3ae62d93e..000000000 --- a/docs/data/documentation/haishinkit/piphkview/enqueue(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/enqueue(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/enqueue(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.enqueue(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"enqueue(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit9PiPHKViewC7enqueueyySo17CMSampleBufferRefaSgF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/NetStreamDrawable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/NetStreamDrawable-Implementations":{"role":"collectionGroup","title":"NetStreamDrawable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/NetStreamDrawable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/netstreamdrawable-implementations"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/enqueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/enqueue(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/init(coder:).json b/docs/data/documentation/haishinkit/piphkview/init(coder:).json deleted file mode 100644 index 56b1e3daa..000000000 --- a/docs/data/documentation/haishinkit/piphkview/init(coder:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"required"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":" "},{"kind":"internalParam","text":"aDecoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/init(coder:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(coder:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"title":"init(coder:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@HaishinKit@objc(cs)PiPHKView(im)initWithCoder:","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/PiPHKView/init(coder:)":{"role":"symbol","title":"init(coder:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"coder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSCoder","preciseIdentifier":"c:objc(cs)NSCoder"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Returns an object initialized from data in a given unarchiver."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(coder:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/init(coder:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/init(frame:).json b/docs/data/documentation/haishinkit/piphkview/init(frame:).json deleted file mode 100644 index 17f1b7264..000000000 --- a/docs/data/documentation/haishinkit/piphkview/init(frame:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/init(frame:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(frame:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"title":"init(frame:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@HaishinKit@objc(cs)PiPHKView(im)initWithFrame:","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/init(frame:)":{"role":"symbol","title":"init(frame:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"frame"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGRect","preciseIdentifier":"c:@S@CGRect"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes and returns a newly allocated view object with the specified frame rectangle."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/init(frame:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/init(frame:)"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/netstreamdrawable-implementations.json b/docs/data/documentation/haishinkit/piphkview/netstreamdrawable-implementations.json deleted file mode 100644 index c8bf487ce..000000000 --- a/docs/data/documentation/haishinkit/piphkview/netstreamdrawable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/netstreamdrawable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/NetStreamDrawable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/attachStream(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/enqueue(_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"NetStreamDrawable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/PiPHKView/enqueue(_:)":{"role":"symbol","title":"enqueue(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enqueue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/enqueue(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/enqueue(_:)"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/attachStream(_:)":{"role":"symbol","title":"attachStream(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"attachStream"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NetStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)NetStream"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/attachStream(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/attachstream(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/videoformatdescription.json b/docs/data/documentation/haishinkit/piphkview/videoformatdescription.json deleted file mode 100644 index 392911eea..000000000 --- a/docs/data/documentation/haishinkit/piphkview/videoformatdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/videoformatdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoFormatDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A value that displays a video format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"title":"videoFormatDescription","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9PiPHKViewC22videoFormatDescriptionSo08CMFormatG3RefaSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/PiPHKView/videoFormatDescription":{"role":"symbol","title":"videoFormatDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoFormatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMVideoFormatDescription","preciseIdentifier":"c:@T@CMVideoFormatDescriptionRef"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A value that displays a video format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoFormatDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/videoformatdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/videogravity.json b/docs/data/documentation/haishinkit/piphkview/videogravity.json deleted file mode 100644 index 6312e5418..000000000 --- a/docs/data/documentation/haishinkit/piphkview/videogravity.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/videogravity"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoGravity","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A value that specifies how the video is displayed within a player layer’s bounds."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"title":"videoGravity","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9PiPHKViewC12videoGravitySo012AVLayerVideoF0avp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView/videoGravity":{"role":"symbol","title":"videoGravity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoGravity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVLayerVideoGravity","preciseIdentifier":"c:@T@AVLayerVideoGravity"}],"abstract":[{"type":"text","text":"A value that specifies how the video is displayed within a player layer’s bounds."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoGravity","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/videogravity"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/piphkview/videoorientation.json b/docs/data/documentation/haishinkit/piphkview/videoorientation.json deleted file mode 100644 index 829c4d03c..000000000 --- a/docs/data/documentation/haishinkit/piphkview/videoorientation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/piphkview\/videoorientation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoOrientation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"NetStreamDrawable.videoOrientation"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"title":"videoOrientation","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit9PiPHKViewC16videoOrientationSo014AVCaptureVideoF0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/PiPHKView/videoOrientation":{"role":"symbol","title":"videoOrientation","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoOrientation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVCaptureVideoOrientation","preciseIdentifier":"c:@E@AVCaptureVideoOrientation"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView\/videoOrientation","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/piphkview\/videoorientation"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/PiPHKView":{"role":"symbol","title":"PiPHKView","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PiPHKView"}],"abstract":[{"type":"text","text":"A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/PiPHKView","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PiPHKView"}],"url":"\/documentation\/haishinkit\/piphkview"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection.json b/docs/data/documentation/haishinkit/rtmpconnection.json deleted file mode 100644 index 12542e98c..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"title":"RTMPConnection","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit14RTMPConnectionC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/init()"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/chunkSize","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connected","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesInPerSecond","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesOutPerSecond","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/delegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/flashVer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/objectEncoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/pageUrl","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/parameters","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/previousQueueBytesOut","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/qualityOfService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/requireNetworkFramework","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/swfUrl","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/timeout","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesIn","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesOut","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalStreamsCount","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/uri"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/call(_:responder:arguments:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/close()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connect(_:arguments:)"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultCapabilities","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultChunkSizeS","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultFlashVer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultObjectEncoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultPort","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultSecurePort","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultWindowSizeS","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/supportedProtocols"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/uri":{"role":"symbol","title":"uri","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the URI passed to the Self.connect() method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/uri","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/uri"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/timeout":{"role":"symbol","title":"timeout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the time to wait for TCP\/IP Handshake done."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/timeout","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/timeout"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/pageUrl":{"role":"symbol","title":"pageUrl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the URL of an HTTP referer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/pageUrl","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/pageurl"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultObjectEncoding":{"role":"symbol","title":"defaultObjectEncoding","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultObjectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"The default object encoding for RTMPConnection class."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultObjectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultobjectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/totalStreamsCount":{"role":"symbol","title":"totalStreamsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalStreamsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The statistics of total RTMPStream counts."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalStreamsCount","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/totalstreamscount"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/requireNetworkFramework":{"role":"symbol","title":"requireNetworkFramework","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNetworkFramework"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the instance requires Network.framework if possible."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/requireNetworkFramework","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/requirenetworkframework"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultCapabilities":{"role":"symbol","title":"defaultCapabilities","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultCapabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default capabilities for RTMPConneciton."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultCapabilities","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultcapabilities"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Closes the connection from the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/close()"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates a new connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/init()"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultWindowSizeS":{"role":"symbol","title":"defaultWindowSizeS","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"The default network’s window size for RTMPConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultWindowSizeS","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultwindowsizes"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/chunkSize":{"role":"symbol","title":"chunkSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chunkSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies theoutgoing RTMPChunkSize."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/chunkSize","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/chunksize"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/objectEncoding":{"role":"symbol","title":"objectEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"Specifies the object encoding for this RTMPConnection instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/objectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/objectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/currentBytesInPerSecond":{"role":"symbol","title":"currentBytesInPerSecond","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesInPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The statistics of incoming bytes per second."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesInPerSecond","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/currentbytesinpersecond"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/flashVer":{"role":"symbol","title":"flashVer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"flashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the name of application."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/flashVer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/flashver"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/totalBytesOut":{"role":"symbol","title":"totalBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"The statistics of total outgoing bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/totalbytesout"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/call(_:responder:arguments:)":{"role":"symbol","title":"call(_:responder:arguments:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"call"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"responder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Calls a command or method on RTMP Server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/call(_:responder:arguments:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/call(_:responder:arguments:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/supportedProtocols":{"role":"symbol","title":"supportedProtocols","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedProtocols"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The supported protocols are rtmp, rtmps, rtmpt and rtmps."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/supportedProtocols","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/supportedprotocols"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/previousQueueBytesOut":{"role":"symbol","title":"previousQueueBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousQueueBytesOut"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The statistics of outgoing queue bytes per second."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/previousQueueBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/previousqueuebytesout"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/qualityOfService":{"role":"symbol","title":"qualityOfService","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"}],"abstract":[{"type":"text","text":"Specifies the dispatchQos for socket."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/qualityOfService","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/qualityofservice"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"RTMPConnectionDelegate","preciseIdentifier":"s:10HaishinKit22RTMPConnectionDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate of the NetStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/delegate"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultPort":{"role":"symbol","title":"defaultPort","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default RTMP port is 1935."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultPort","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultport"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/swfUrl":{"role":"symbol","title":"swfUrl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"swfUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the URL of .swf."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/swfUrl","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/swfurl"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultFlashVer":{"role":"symbol","title":"defaultFlashVer","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFlashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The default flashVer is FMLE\/3.0 (compatible; FMSc\/1.0)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultFlashVer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultflashver"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/parameters":{"role":"symbol","title":"parameters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parameters"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the socket optional parameters."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/parameters","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/parameters"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultSecurePort":{"role":"symbol","title":"defaultSecurePort","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSecurePort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default RTMPS port is 443."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultSecurePort","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultsecureport"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/connected":{"role":"symbol","title":"connected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the instance connected to server(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/connected"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/connect(_:arguments:)":{"role":"symbol","title":"connect(_:arguments:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Creates a two-way connection to an application on RTMP Server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connect(_:arguments:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/connect(_:arguments:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultChunkSizeS":{"role":"symbol","title":"defaultChunkSizeS","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultChunkSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default chunk size for RTMPConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultChunkSizeS","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultchunksizes"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/totalBytesIn":{"role":"symbol","title":"totalBytesIn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"The statistics of total incoming bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesIn","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/totalbytesin"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/currentBytesOutPerSecond":{"role":"symbol","title":"currentBytesOutPerSecond","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesOutPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The statistics of outgoing bytes per second."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesOutPerSecond","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/currentbytesoutpersecond"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/call(_:responder:arguments:).json b/docs/data/documentation/haishinkit/rtmpconnection/call(_:responder:arguments:).json deleted file mode 100644 index 0eb49032a..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/call(_:responder:arguments:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"call"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"commandName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"responder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC","text":"RTMPResponder"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/call(_:responder:arguments:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/call(_:responder:arguments:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Calls a command or method on RTMP Server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"call"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"responder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"title":"call(_:responder:arguments:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit14RTMPConnectionC4call_9responder9argumentsySS_AA13RTMPResponderCSgypSgdtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/call(_:responder:arguments:)":{"role":"symbol","title":"call(_:responder:arguments:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"call"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"responder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Calls a command or method on RTMP Server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/call(_:responder:arguments:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/call(_:responder:arguments:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPResponder":{"role":"symbol","title":"RTMPResponder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPResponder"}],"abstract":[{"type":"text","text":"The RTMPResponder class provides to use handle RTMPConnection’s callback."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPResponder"}],"url":"\/documentation\/haishinkit\/rtmpresponder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/chunksize.json b/docs/data/documentation/haishinkit/rtmpconnection/chunksize.json deleted file mode 100644 index 9ba12b6e0..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/chunksize.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chunkSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/chunksize"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/chunkSize","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies theoutgoing RTMPChunkSize."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chunkSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"chunkSize","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC9chunkSizeSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/chunkSize":{"role":"symbol","title":"chunkSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"chunkSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies theoutgoing RTMPChunkSize."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/chunkSize","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/chunksize"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/close().json b/docs/data/documentation/haishinkit/rtmpconnection/close().json deleted file mode 100644 index e21fed766..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/close().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/close()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/close()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Closes the connection from the server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"title":"close()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit14RTMPConnectionC5closeyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Closes the connection from the server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/close()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code.json b/docs/data/documentation/haishinkit/rtmpconnection/code.json deleted file mode 100644 index 958a22e44..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"NetStatusEvent#info.code for NetConnection"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"see: https:\/\/help.adobe.com\/en_US\/air\/reference\/html\/flash\/events\/NetStatusEvent.html#NET_STATUS"}]}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","interfaceLanguage":"swift"},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callBadVersion","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callFailed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callProhibited","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectAppshutdown","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectClosed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectFailed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectIdleTimeOut","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectInvalidApp","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectNetworkChange","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectRejected","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectSuccess"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/init(rawValue:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/level"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/RawRepresentable-Implementations"],"generated":true}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"title":"RTMPConnection.Code","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Code"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectClosed":{"role":"symbol","title":"RTMPConnection.Code.connectClosed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectClosed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectclosed"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/rawrepresentable-implementations"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/callFailed":{"role":"symbol","title":"RTMPConnection.Code.callFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/callfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectSuccess":{"role":"symbol","title":"RTMPConnection.Code.connectSuccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectSuccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectsuccess"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/callBadVersion":{"role":"symbol","title":"RTMPConnection.Code.callBadVersion","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callBadVersion"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callBadVersion","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/callbadversion"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectAppshutdown":{"role":"symbol","title":"RTMPConnection.Code.connectAppshutdown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectAppshutdown"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectAppshutdown","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectappshutdown"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/level","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/level"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectIdleTimeOut":{"role":"symbol","title":"RTMPConnection.Code.connectIdleTimeOut","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectIdleTimeOut"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectIdleTimeOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectidletimeout"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectInvalidApp":{"role":"symbol","title":"RTMPConnection.Code.connectInvalidApp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectInvalidApp"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectInvalidApp","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectinvalidapp"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/callProhibited":{"role":"symbol","title":"RTMPConnection.Code.callProhibited","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callProhibited"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callProhibited","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/callprohibited"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectFailed":{"role":"symbol","title":"RTMPConnection.Code.connectFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectNetworkChange":{"role":"symbol","title":"RTMPConnection.Code.connectNetworkChange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectNetworkChange"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectNetworkChange","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectnetworkchange"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectRejected":{"role":"symbol","title":"RTMPConnection.Code.connectRejected","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectRejected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectrejected"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/!=(_:_:).json b/docs/data/documentation/haishinkit/rtmpconnection/code/!=(_:_:).json deleted file mode 100644 index 3f8bf9d65..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit14RTMPConnectionC4CodeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/callbadversion.json b/docs/data/documentation/haishinkit/rtmpconnection/code/callbadversion.json deleted file mode 100644 index 1c3cea20e..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/callbadversion.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callBadVersion"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/callbadversion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callBadVersion","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callBadVersion"}],"title":"RTMPConnection.Code.callBadVersion","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO14callBadVersionyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/callBadVersion":{"role":"symbol","title":"RTMPConnection.Code.callBadVersion","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callBadVersion"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callBadVersion","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/callbadversion"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/callfailed.json b/docs/data/documentation/haishinkit/rtmpconnection/code/callfailed.json deleted file mode 100644 index a85e65c77..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/callfailed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callFailed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/callfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callFailed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callFailed"}],"title":"RTMPConnection.Code.callFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO10callFailedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/callFailed":{"role":"symbol","title":"RTMPConnection.Code.callFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/callfailed"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/callprohibited.json b/docs/data/documentation/haishinkit/rtmpconnection/code/callprohibited.json deleted file mode 100644 index 8777fec68..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/callprohibited.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callProhibited"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/callprohibited"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callProhibited","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callProhibited"}],"title":"RTMPConnection.Code.callProhibited","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO14callProhibitedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/callProhibited":{"role":"symbol","title":"RTMPConnection.Code.callProhibited","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"callProhibited"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/callProhibited","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/callprohibited"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectappshutdown.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectappshutdown.json deleted file mode 100644 index 452ee68c4..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectappshutdown.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectAppshutdown"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectappshutdown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectAppshutdown","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectAppshutdown"}],"title":"RTMPConnection.Code.connectAppshutdown","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO18connectAppshutdownyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectAppshutdown":{"role":"symbol","title":"RTMPConnection.Code.connectAppshutdown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectAppshutdown"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectAppshutdown","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectappshutdown"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectclosed.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectclosed.json deleted file mode 100644 index 2b36c421d..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectclosed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectclosed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectClosed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"title":"RTMPConnection.Code.connectClosed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO13connectClosedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectClosed":{"role":"symbol","title":"RTMPConnection.Code.connectClosed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectClosed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectclosed"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectfailed.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectfailed.json deleted file mode 100644 index b1575082a..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectfailed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectFailed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"title":"RTMPConnection.Code.connectFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO13connectFailedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectFailed":{"role":"symbol","title":"RTMPConnection.Code.connectFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectidletimeout.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectidletimeout.json deleted file mode 100644 index 526eb946a..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectidletimeout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectIdleTimeOut"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectidletimeout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectIdleTimeOut","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectIdleTimeOut"}],"title":"RTMPConnection.Code.connectIdleTimeOut","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO18connectIdleTimeOutyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectIdleTimeOut":{"role":"symbol","title":"RTMPConnection.Code.connectIdleTimeOut","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectIdleTimeOut"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectIdleTimeOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectidletimeout"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectinvalidapp.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectinvalidapp.json deleted file mode 100644 index 0b11f473c..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectinvalidapp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectInvalidApp"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectinvalidapp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectInvalidApp","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectInvalidApp"}],"title":"RTMPConnection.Code.connectInvalidApp","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO17connectInvalidAppyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectInvalidApp":{"role":"symbol","title":"RTMPConnection.Code.connectInvalidApp","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectInvalidApp"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectInvalidApp","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectinvalidapp"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectnetworkchange.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectnetworkchange.json deleted file mode 100644 index 0595c20c3..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectnetworkchange.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectNetworkChange"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectnetworkchange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectNetworkChange","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectNetworkChange"}],"title":"RTMPConnection.Code.connectNetworkChange","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO20connectNetworkChangeyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectNetworkChange":{"role":"symbol","title":"RTMPConnection.Code.connectNetworkChange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectNetworkChange"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectNetworkChange","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectnetworkchange"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectrejected.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectrejected.json deleted file mode 100644 index 966d76501..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectrejected.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectrejected"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectRejected","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"title":"RTMPConnection.Code.connectRejected","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO15connectRejectedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectRejected":{"role":"symbol","title":"RTMPConnection.Code.connectRejected","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectRejected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectrejected"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/connectsuccess.json b/docs/data/documentation/haishinkit/rtmpconnection/code/connectsuccess.json deleted file mode 100644 index 7c72a604c..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/connectsuccess.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/connectsuccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectSuccess","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"title":"RTMPConnection.Code.connectSuccess","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO14connectSuccessyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/connectSuccess":{"role":"symbol","title":"RTMPConnection.Code.connectSuccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/connectSuccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectsuccess"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/equatable-implementations.json b/docs/data/documentation/haishinkit/rtmpconnection/code/equatable-implementations.json deleted file mode 100644 index a72e75d1f..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/hash(into:).json b/docs/data/documentation/haishinkit/rtmpconnection/code/hash(into:).json deleted file mode 100644 index bfd9e9ef3..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit14RTMPConnectionC4CodeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/hash(into:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/hashvalue.json b/docs/data/documentation/haishinkit/rtmpconnection/code/hashvalue.json deleted file mode 100644 index a52c79d85..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit14RTMPConnectionC4CodeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/init(rawvalue:).json b/docs/data/documentation/haishinkit/rtmpconnection/code/init(rawvalue:).json deleted file mode 100644 index 87270de1f..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO8rawValueAESgSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/level.json b/docs/data/documentation/haishinkit/rtmpconnection/code/level.json deleted file mode 100644 index 1163fa97b..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/level.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/level","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC4CodeO5levelSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/level","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/level"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/code/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/rtmpconnection/code/rawrepresentable-implementations.json deleted file mode 100644 index 502d64f83..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/code/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/code\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/code\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/Code":{"role":"symbol","title":"RTMPConnection.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpconnection\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/connect(_:arguments:).json b/docs/data/documentation/haishinkit/rtmpconnection/connect(_:arguments:).json deleted file mode 100644 index 6e815a278..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/connect(_:arguments:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"command"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/connect(_:arguments:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connect(_:arguments:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a two-way connection to an application on RTMP Server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"title":"connect(_:arguments:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit14RTMPConnectionC7connect_9argumentsySS_ypSgdtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/connect(_:arguments:)":{"role":"symbol","title":"connect(_:arguments:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Creates a two-way connection to an application on RTMP Server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connect(_:arguments:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/connect(_:arguments:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/connected.json b/docs/data/documentation/haishinkit/rtmpconnection/connected.json deleted file mode 100644 index 6f18ea592..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/connected.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/connected"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connected","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the instance connected to server(true) or not(false)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"connected","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC9connectedSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/connected":{"role":"symbol","title":"connected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the instance connected to server(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/connected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/connected"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/currentbytesinpersecond.json b/docs/data/documentation/haishinkit/rtmpconnection/currentbytesinpersecond.json deleted file mode 100644 index 10b8835ed..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/currentbytesinpersecond.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"dynamic"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesInPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/currentbytesinpersecond"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesInPerSecond","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The statistics of incoming bytes per second."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesInPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"currentBytesInPerSecond","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC23currentBytesInPerSeconds5Int32Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/currentBytesInPerSecond":{"role":"symbol","title":"currentBytesInPerSecond","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesInPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The statistics of incoming bytes per second."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesInPerSecond","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/currentbytesinpersecond"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/currentbytesoutpersecond.json b/docs/data/documentation/haishinkit/rtmpconnection/currentbytesoutpersecond.json deleted file mode 100644 index 6f15422e0..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/currentbytesoutpersecond.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"dynamic"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesOutPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/currentbytesoutpersecond"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesOutPerSecond","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The statistics of outgoing bytes per second."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesOutPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"currentBytesOutPerSecond","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC24currentBytesOutPerSeconds5Int32Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/currentBytesOutPerSecond":{"role":"symbol","title":"currentBytesOutPerSecond","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesOutPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The statistics of outgoing bytes per second."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/currentBytesOutPerSecond","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/currentbytesoutpersecond"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/defaultcapabilities.json b/docs/data/documentation/haishinkit/rtmpconnection/defaultcapabilities.json deleted file mode 100644 index 8a736edbf..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/defaultcapabilities.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultCapabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/defaultcapabilities"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultCapabilities","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default capabilities for RTMPConneciton."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultCapabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"defaultCapabilities","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC19defaultCapabilitiesSivpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultCapabilities":{"role":"symbol","title":"defaultCapabilities","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultCapabilities"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default capabilities for RTMPConneciton."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultCapabilities","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultcapabilities"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/defaultchunksizes.json b/docs/data/documentation/haishinkit/rtmpconnection/defaultchunksizes.json deleted file mode 100644 index c4008ad92..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/defaultchunksizes.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultChunkSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/defaultchunksizes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultChunkSizeS","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default chunk size for RTMPConnection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultChunkSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"defaultChunkSizeS","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC17defaultChunkSizeSSivpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultChunkSizeS":{"role":"symbol","title":"defaultChunkSizeS","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultChunkSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default chunk size for RTMPConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultChunkSizeS","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultchunksizes"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/defaultflashver.json b/docs/data/documentation/haishinkit/rtmpconnection/defaultflashver.json deleted file mode 100644 index c88a4b4da..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/defaultflashver.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFlashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/defaultflashver"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultFlashVer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default flashVer is FMLE\/3.0 (compatible; FMSc\/1.0)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFlashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"defaultFlashVer","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC15defaultFlashVerSSvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultFlashVer":{"role":"symbol","title":"defaultFlashVer","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultFlashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The default flashVer is FMLE\/3.0 (compatible; FMSc\/1.0)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultFlashVer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultflashver"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/defaultobjectencoding.json b/docs/data/documentation/haishinkit/rtmpconnection/defaultobjectencoding.json deleted file mode 100644 index 4d3df8831..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/defaultobjectencoding.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultObjectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO","text":"RTMPObjectEncoding"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/defaultobjectencoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultObjectEncoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default object encoding for RTMPConnection class."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultObjectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"title":"defaultObjectEncoding","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC21defaultObjectEncodingAA010RTMPObjectF0OvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultObjectEncoding":{"role":"symbol","title":"defaultObjectEncoding","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultObjectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"The default object encoding for RTMPConnection class."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultObjectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/defaultport.json b/docs/data/documentation/haishinkit/rtmpconnection/defaultport.json deleted file mode 100644 index 0184b8eaf..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/defaultport.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/defaultport"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultPort","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default RTMP port is 1935."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"defaultPort","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC11defaultPortSivpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultPort":{"role":"symbol","title":"defaultPort","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default RTMP port is 1935."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultPort","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultport"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/defaultsecureport.json b/docs/data/documentation/haishinkit/rtmpconnection/defaultsecureport.json deleted file mode 100644 index 783ec1743..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/defaultsecureport.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSecurePort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/defaultsecureport"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultSecurePort","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default RTMPS port is 443."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSecurePort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"defaultSecurePort","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC17defaultSecurePortSivpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultSecurePort":{"role":"symbol","title":"defaultSecurePort","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSecurePort"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The default RTMPS port is 443."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultSecurePort","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultsecureport"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/defaultwindowsizes.json b/docs/data/documentation/haishinkit/rtmpconnection/defaultwindowsizes.json deleted file mode 100644 index 51fb9c224..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/defaultwindowsizes.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/defaultwindowsizes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultWindowSizeS","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default network’s window size for RTMPConnection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"defaultWindowSizeS","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC18defaultWindowSizeSs5Int64VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/defaultWindowSizeS":{"role":"symbol","title":"defaultWindowSizeS","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultWindowSizeS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"The default network’s window size for RTMPConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/defaultWindowSizeS","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/defaultwindowsizes"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/delegate.json b/docs/data/documentation/haishinkit/rtmpconnection/delegate.json deleted file mode 100644 index 69f914710..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/delegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","preciseIdentifier":"s:10HaishinKit22RTMPConnectionDelegateP","text":"RTMPConnectionDelegate"},{"kind":"text","text":")?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the delegate of the NetStream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"RTMPConnectionDelegate","preciseIdentifier":"s:10HaishinKit22RTMPConnectionDelegateP"},{"kind":"text","text":")?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC8delegateAA0C8Delegate_pSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate":{"role":"symbol","title":"RTMPConnectionDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"}],"abstract":[{"type":"text","text":"The interface a RTMPConnectionDelegate uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnectionDelegate"}],"url":"\/documentation\/haishinkit\/rtmpconnectiondelegate"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"RTMPConnectionDelegate","preciseIdentifier":"s:10HaishinKit22RTMPConnectionDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate of the NetStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/delegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/flashver.json b/docs/data/documentation/haishinkit/rtmpconnection/flashver.json deleted file mode 100644 index 1c9d7cd94..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/flashver.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"flashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/flashver"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/flashVer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the name of application."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"flashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"flashVer","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC8flashVerSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/flashVer":{"role":"symbol","title":"flashVer","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"flashVer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the name of application."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/flashVer","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/flashver"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/init().json b/docs/data/documentation/haishinkit/rtmpconnection/init().json deleted file mode 100644 index ffa12aa65..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new connection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit14RTMPConnectionCACycfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Creates a new connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/init()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/objectencoding.json b/docs/data/documentation/haishinkit/rtmpconnection/objectencoding.json deleted file mode 100644 index 1cf7a25b7..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/objectencoding.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO","text":"RTMPObjectEncoding"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/objectencoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/objectEncoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the object encoding for this RTMPConnection instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"title":"objectEncoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC14objectEncodingAA010RTMPObjectE0Ovp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/objectEncoding":{"role":"symbol","title":"objectEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"Specifies the object encoding for this RTMPConnection instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/objectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/objectencoding"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/pageurl.json b/docs/data/documentation/haishinkit/rtmpconnection/pageurl.json deleted file mode 100644 index 86f2a12e6..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/pageurl.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/pageurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/pageUrl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the URL of an HTTP referer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"pageUrl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC7pageUrlSSSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/pageUrl":{"role":"symbol","title":"pageUrl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pageUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the URL of an HTTP referer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/pageUrl","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/pageurl"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/parameters.json b/docs/data/documentation/haishinkit/rtmpconnection/parameters.json deleted file mode 100644 index 06e112dba..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/parameters.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parameters"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/parameters"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/parameters","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the socket optional parameters."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parameters"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"title":"parameters","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC10parametersypSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/parameters":{"role":"symbol","title":"parameters","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"parameters"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the socket optional parameters."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/parameters","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/parameters"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/previousqueuebytesout.json b/docs/data/documentation/haishinkit/rtmpconnection/previousqueuebytesout.json deleted file mode 100644 index 407caa449..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/previousqueuebytesout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"dynamic"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousQueueBytesOut"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"] { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/previousqueuebytesout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/previousQueueBytesOut","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The statistics of outgoing queue bytes per second."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousQueueBytesOut"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"]"}],"title":"previousQueueBytesOut","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC21previousQueueBytesOutSays5Int64VGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/previousQueueBytesOut":{"role":"symbol","title":"previousQueueBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"previousQueueBytesOut"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The statistics of outgoing queue bytes per second."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/previousQueueBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/previousqueuebytesout"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/qualityofservice.json b/docs/data/documentation/haishinkit/rtmpconnection/qualityofservice.json deleted file mode 100644 index b9787d8f0..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/qualityofservice.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/qualityofservice"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/qualityOfService","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the dispatchQos for socket."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"}],"title":"qualityOfService","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC16qualityOfService8Dispatch0G3QoSVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/qualityOfService":{"role":"symbol","title":"qualityOfService","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"qualityOfService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQoS","preciseIdentifier":"s:8Dispatch0A3QoSV"}],"abstract":[{"type":"text","text":"Specifies the dispatchQos for socket."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/qualityOfService","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/qualityofservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/requirenetworkframework.json b/docs/data/documentation/haishinkit/rtmpconnection/requirenetworkframework.json deleted file mode 100644 index 37fa57130..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/requirenetworkframework.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNetworkFramework"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/requirenetworkframework"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/requireNetworkFramework","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the instance requires Network.framework if possible."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNetworkFramework"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"requireNetworkFramework","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC23requireNetworkFrameworkSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/requireNetworkFramework":{"role":"symbol","title":"requireNetworkFramework","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"requireNetworkFramework"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the instance requires Network.framework if possible."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/requireNetworkFramework","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/requirenetworkframework"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/supportedprotocols.json b/docs/data/documentation/haishinkit/rtmpconnection/supportedprotocols.json deleted file mode 100644 index 5fa3072c7..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/supportedprotocols.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedProtocols"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/supportedprotocols"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/supportedProtocols","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The supported protocols are rtmp, rtmps, rtmpt and rtmps."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedProtocols"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"title":"supportedProtocols","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC18supportedProtocolsShySSGvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/supportedProtocols":{"role":"symbol","title":"supportedProtocols","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"supportedProtocols"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The supported protocols are rtmp, rtmps, rtmpt and rtmps."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/supportedProtocols","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/supportedprotocols"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/swfurl.json b/docs/data/documentation/haishinkit/rtmpconnection/swfurl.json deleted file mode 100644 index 2f4a763a7..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/swfurl.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"swfUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/swfurl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/swfUrl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the URL of .swf."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"swfUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"swfUrl","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC6swfUrlSSSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/swfUrl":{"role":"symbol","title":"swfUrl","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"swfUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the URL of .swf."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/swfUrl","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/swfurl"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/timeout.json b/docs/data/documentation/haishinkit/rtmpconnection/timeout.json deleted file mode 100644 index 756cf6c17..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/timeout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/timeout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/timeout","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the time to wait for TCP\/IP Handshake done."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"timeout","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC7timeoutSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/timeout":{"role":"symbol","title":"timeout","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timeout"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Specifies the time to wait for TCP\/IP Handshake done."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/timeout","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/timeout"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/totalbytesin.json b/docs/data/documentation/haishinkit/rtmpconnection/totalbytesin.json deleted file mode 100644 index 9f44f75f8..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/totalbytesin.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/totalbytesin"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesIn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The statistics of total incoming bytes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"totalBytesIn","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC12totalBytesIns5Int64Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/totalBytesIn":{"role":"symbol","title":"totalBytesIn","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesIn"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"The statistics of total incoming bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesIn","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/totalbytesin"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/totalbytesout.json b/docs/data/documentation/haishinkit/rtmpconnection/totalbytesout.json deleted file mode 100644 index 1b1944a6b..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/totalbytesout.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/totalbytesout"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesOut","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The statistics of total outgoing bytes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"totalBytesOut","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC13totalBytesOuts5Int64Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/totalBytesOut":{"role":"symbol","title":"totalBytesOut","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalBytesOut"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"The statistics of total outgoing bytes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalBytesOut","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/totalbytesout"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/totalstreamscount.json b/docs/data/documentation/haishinkit/rtmpconnection/totalstreamscount.json deleted file mode 100644 index 188b14b71..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/totalstreamscount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalStreamsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/totalstreamscount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalStreamsCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The statistics of total RTMPStream counts."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalStreamsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"totalStreamsCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC17totalStreamsCountSivp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/totalStreamsCount":{"role":"symbol","title":"totalStreamsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"totalStreamsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The statistics of total RTMPStream counts."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/totalStreamsCount","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/totalstreamscount"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnection/uri.json b/docs/data/documentation/haishinkit/rtmpconnection/uri.json deleted file mode 100644 index 5de998eea..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnection/uri.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnection\/uri"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/uri","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the URI passed to the Self.connect() method."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"?"}],"title":"uri","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPConnectionC3uri10Foundation3URLVSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection/uri":{"role":"symbol","title":"uri","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uri"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the URI passed to the Self.connect() method."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection\/uri","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpconnection\/uri"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnectiondelegate.json b/docs/data/documentation/haishinkit/rtmpconnectiondelegate.json deleted file mode 100644 index 02524eb43..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnectiondelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnectiondelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface a RTMPConnectionDelegate uses to inform its delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"}],"title":"RTMPConnectionDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit22RTMPConnectionDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RTMPConnectionDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishInsufficientBWOccured:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishSufficientBWOccured:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:updateStats:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate/connection(_:publishInsufficientBWOccured:)":{"role":"symbol","title":"connection(_:publishInsufficientBWOccured:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishInsufficientBWOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to publish insufficient bandwidth occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishInsufficientBWOccured:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishinsufficientbwoccured:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate":{"role":"symbol","title":"RTMPConnectionDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"}],"abstract":[{"type":"text","text":"The interface a RTMPConnectionDelegate uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnectionDelegate"}],"url":"\/documentation\/haishinkit\/rtmpconnectiondelegate"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate/connection(_:publishSufficientBWOccured:)":{"role":"symbol","title":"connection(_:publishSufficientBWOccured:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishSufficientBWOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to publish sufficient bandwidth occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishSufficientBWOccured:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishsufficientbwoccured:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate/connection(_:updateStats:)":{"role":"symbol","title":"connection(_:updateStats:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"updateStats"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to update statistics."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:updateStats:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:updatestats:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishinsufficientbwoccured:).json b/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishinsufficientbwoccured:).json deleted file mode 100644 index 7e72e2dbf..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishinsufficientbwoccured:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"connection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC","text":"RTMPConnection"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishInsufficientBWOccured"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream","text":"RTMPStream"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishinsufficientbwoccured:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishInsufficientBWOccured:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to publish insufficient bandwidth occured."}],"kind":"symbol","metadata":{"role":"symbol","title":"connection(_:publishInsufficientBWOccured:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishInsufficientBWOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit22RTMPConnectionDelegateP10connection_28publishInsufficientBWOccuredyAA0C0C_AA10RTMPStreamCtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate":{"role":"symbol","title":"RTMPConnectionDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"}],"abstract":[{"type":"text","text":"The interface a RTMPConnectionDelegate uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnectionDelegate"}],"url":"\/documentation\/haishinkit\/rtmpconnectiondelegate"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate/connection(_:publishInsufficientBWOccured:)":{"role":"symbol","title":"connection(_:publishInsufficientBWOccured:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishInsufficientBWOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to publish insufficient bandwidth occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishInsufficientBWOccured:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishinsufficientbwoccured:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishsufficientbwoccured:).json b/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishsufficientbwoccured:).json deleted file mode 100644 index d47fd6be0..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishsufficientbwoccured:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"connection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC","text":"RTMPConnection"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishSufficientBWOccured"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream","text":"RTMPStream"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishsufficientbwoccured:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishSufficientBWOccured:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to publish sufficient bandwidth occured."}],"kind":"symbol","metadata":{"role":"symbol","title":"connection(_:publishSufficientBWOccured:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishSufficientBWOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit22RTMPConnectionDelegateP10connection_26publishSufficientBWOccuredyAA0C0C_AA10RTMPStreamCtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate":{"role":"symbol","title":"RTMPConnectionDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"}],"abstract":[{"type":"text","text":"The interface a RTMPConnectionDelegate uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnectionDelegate"}],"url":"\/documentation\/haishinkit\/rtmpconnectiondelegate"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate/connection(_:publishSufficientBWOccured:)":{"role":"symbol","title":"connection(_:publishSufficientBWOccured:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"publishSufficientBWOccured"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to publish sufficient bandwidth occured."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:publishSufficientBWOccured:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishsufficientbwoccured:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:updatestats:).json b/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:updatestats:).json deleted file mode 100644 index aae0294b1..000000000 --- a/docs/data/documentation/haishinkit/rtmpconnectiondelegate/connection(_:updatestats:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"connection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC","text":"RTMPConnection"},{"kind":"text","text":", "},{"kind":"externalParam","text":"updateStats"},{"kind":"text","text":" "},{"kind":"internalParam","text":"stream"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream","text":"RTMPStream"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:updatestats:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:updateStats:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to update statistics."}],"kind":"symbol","metadata":{"role":"symbol","title":"connection(_:updateStats:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"updateStats"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit22RTMPConnectionDelegateP10connection_11updateStatsyAA0C0C_AA10RTMPStreamCtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate/connection(_:updateStats:)":{"role":"symbol","title":"connection(_:updateStats:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"updateStats"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to update statistics."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate\/connection(_:updateStats:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:updatestats:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnectionDelegate":{"role":"symbol","title":"RTMPConnectionDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnectionDelegate"}],"abstract":[{"type":"text","text":"The interface a RTMPConnectionDelegate uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnectionDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnectionDelegate"}],"url":"\/documentation\/haishinkit\/rtmpconnectiondelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding.json b/docs/data/documentation/haishinkit/rtmpobjectencoding.json deleted file mode 100644 index edf89288f..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"title":"RTMPObjectEncoding","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit18RTMPObjectEncodingO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf0","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf3"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/rawrepresentable-implementations"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/amf0":{"role":"symbol","title":"RTMPObjectEncoding.amf0","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf0"}],"abstract":[{"type":"text","text":"The AMF0 Encoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf0","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/amf0"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/amf3":{"role":"symbol","title":"RTMPObjectEncoding.amf3","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf3"}],"abstract":[{"type":"text","text":"The AMF3 Encoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf3","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/amf3"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/!=(_:_:).json b/docs/data/documentation/haishinkit/rtmpobjectencoding/!=(_:_:).json deleted file mode 100644 index 06b86f825..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit18RTMPObjectEncodingO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/equatable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/amf0.json b/docs/data/documentation/haishinkit/rtmpobjectencoding/amf0.json deleted file mode 100644 index 60202e4e6..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/amf0.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf0"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/amf0"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf0","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The AMF0 Encoding."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf0"}],"title":"RTMPObjectEncoding.amf0","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit18RTMPObjectEncodingO4amf0yA2CmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/amf0":{"role":"symbol","title":"RTMPObjectEncoding.amf0","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf0"}],"abstract":[{"type":"text","text":"The AMF0 Encoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf0","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/amf0"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/amf3.json b/docs/data/documentation/haishinkit/rtmpobjectencoding/amf3.json deleted file mode 100644 index 83e313f7b..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/amf3.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf3"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/amf3"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf3","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The AMF3 Encoding."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf3"}],"title":"RTMPObjectEncoding.amf3","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit18RTMPObjectEncodingO4amf3yA2CmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/amf3":{"role":"symbol","title":"RTMPObjectEncoding.amf3","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"amf3"}],"abstract":[{"type":"text","text":"The AMF3 Encoding."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/amf3","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/amf3"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/equatable-implementations.json b/docs/data/documentation/haishinkit/rtmpobjectencoding/equatable-implementations.json deleted file mode 100644 index bbfd65a92..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/hash(into:).json b/docs/data/documentation/haishinkit/rtmpobjectencoding/hash(into:).json deleted file mode 100644 index cfb11bc11..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit18RTMPObjectEncodingO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/hashvalue.json b/docs/data/documentation/haishinkit/rtmpobjectencoding/hashvalue.json deleted file mode 100644 index 57207bca7..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit18RTMPObjectEncodingO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/hashvalue"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/init(rawvalue:).json b/docs/data/documentation/haishinkit/rtmpobjectencoding/init(rawvalue:).json deleted file mode 100644 index d7e7cbd1c..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit18RTMPObjectEncodingO8rawValueACSgs5UInt8V_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt8","preciseIdentifier":"s:s5UInt8V"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpobjectencoding/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/rtmpobjectencoding/rawrepresentable-implementations.json deleted file mode 100644 index 1d9ede5f0..000000000 --- a/docs/data/documentation/haishinkit/rtmpobjectencoding/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpobjectencoding\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpobjectencoding\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpresponder.json b/docs/data/documentation/haishinkit/rtmpresponder.json deleted file mode 100644 index ae5ca6176..000000000 --- a/docs/data/documentation/haishinkit/rtmpresponder.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPResponder"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpresponder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The RTMPResponder class provides to use handle RTMPConnection’s callback."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPResponder"}],"title":"RTMPResponder","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit13RTMPResponderC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RTMPResponder"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/init(result:status:)"]},{"title":"Type Aliases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/Handler"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPResponder/Handler":{"role":"symbol","title":"RTMPResponder.Handler","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Handler"}],"abstract":[{"type":"text","text":"A Handler represents RTMPResponder’s callback function."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/Handler","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Handler"}],"url":"\/documentation\/haishinkit\/rtmpresponder\/handler"},"doc://HaishinKit/documentation/HaishinKit/RTMPResponder":{"role":"symbol","title":"RTMPResponder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPResponder"}],"abstract":[{"type":"text","text":"The RTMPResponder class provides to use handle RTMPConnection’s callback."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPResponder"}],"url":"\/documentation\/haishinkit\/rtmpresponder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPResponder/init(result:status:)":{"role":"symbol","title":"init(result:status:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"result"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera"},{"kind":"text","text":", "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Creates a new RTMPResponder object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/init(result:status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpresponder\/init(result:status:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpresponder/handler.json b/docs/data/documentation/haishinkit/rtmpresponder/handler.json deleted file mode 100644 index 160265fdd..000000000 --- a/docs/data/documentation/haishinkit/rtmpresponder/handler.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Handler"},{"kind":"text","text":" = (["},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?]) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpresponder\/handler"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/Handler","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Handler represents RTMPResponder’s callback function."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Handler"}],"title":"RTMPResponder.Handler","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:10HaishinKit13RTMPResponderC7Handlera","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Handler"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPResponder":{"role":"symbol","title":"RTMPResponder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPResponder"}],"abstract":[{"type":"text","text":"The RTMPResponder class provides to use handle RTMPConnection’s callback."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPResponder"}],"url":"\/documentation\/haishinkit\/rtmpresponder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPResponder/Handler":{"role":"symbol","title":"RTMPResponder.Handler","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Handler"}],"abstract":[{"type":"text","text":"A Handler represents RTMPResponder’s callback function."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/Handler","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Handler"}],"url":"\/documentation\/haishinkit\/rtmpresponder\/handler"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpresponder/init(result:status:).json b/docs/data/documentation/haishinkit/rtmpresponder/init(result:status:).json deleted file mode 100644 index 255f412c4..000000000 --- a/docs/data/documentation/haishinkit/rtmpresponder/init(result:status:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"result"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC","text":"RTMPResponder"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera","text":"Handler"},{"kind":"text","text":", "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC","text":"RTMPResponder"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera","text":"Handler"},{"kind":"text","text":"? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpresponder\/init(result:status:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/init(result:status:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new RTMPResponder object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"result"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera"},{"kind":"text","text":", "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera"},{"kind":"text","text":"?)"}],"title":"init(result:status:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit13RTMPResponderC6result6statusACySayypSgGc_yAGcSgtcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPResponder":{"role":"symbol","title":"RTMPResponder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPResponder"}],"abstract":[{"type":"text","text":"The RTMPResponder class provides to use handle RTMPConnection’s callback."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPResponder"}],"url":"\/documentation\/haishinkit\/rtmpresponder"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPResponder/init(result:status:)":{"role":"symbol","title":"init(result:status:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"result"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera"},{"kind":"text","text":", "},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPResponder","preciseIdentifier":"s:10HaishinKit13RTMPResponderC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Handler","preciseIdentifier":"s:10HaishinKit13RTMPResponderC7Handlera"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Creates a new RTMPResponder object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/init(result:status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpresponder\/init(result:status:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPResponder/Handler":{"role":"symbol","title":"RTMPResponder.Handler","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Handler"}],"abstract":[{"type":"text","text":"A Handler represents RTMPResponder’s callback function."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPResponder\/Handler","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Handler"}],"url":"\/documentation\/haishinkit\/rtmpresponder\/handler"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject.json b/docs/data/documentation/haishinkit/rtmpsharedobject.json deleted file mode 100644 index e6625aef4..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"title":"RTMPSharedObject","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit16RTMPSharedObjectC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/data","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/objectEncoding"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/clear()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/close()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/connect(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/setProperty(_:_:)"]},{"title":"Type Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/getRemote(withName:remotePath:persistence:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/CustomDebugStringConvertible-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Closes the connection a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/close()"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/objectEncoding":{"role":"symbol","title":"objectEncoding","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"The AMF object encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/objectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/objectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/clear()":{"role":"symbol","title":"clear()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Purges all of the data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/clear()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/clear()"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?]"}],"abstract":[{"type":"text","text":"The current data storage."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/data","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/data"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcher":{"role":"symbol","title":"EventDispatcher","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcher"}],"abstract":[{"type":"text","text":"The EventDispatcher interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcher","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcher"}],"url":"\/documentation\/haishinkit\/eventdispatcher"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/connect(_:)":{"role":"symbol","title":"connect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Connects to a remove shared object on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/connect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/connect(_:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/setProperty(_:_:)":{"role":"symbol","title":"setProperty(_:_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setProperty"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Updates the value of a property in shared object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/setProperty(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/setproperty(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/getRemote(withName:remotePath:persistence:)":{"role":"symbol","title":"getRemote(withName:remotePath:persistence:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemote"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"remotePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"persistence"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"RTMPSharedObject","preciseIdentifier":"s:10HaishinKit16RTMPSharedObjectC"}],"abstract":[{"type":"text","text":"Returns a reference to a shared object on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/getRemote(withName:remotePath:persistence:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/getremote(withname:remotepath:persistence:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/clear().json b/docs/data/documentation/haishinkit/rtmpsharedobject/clear().json deleted file mode 100644 index b81b7fd6e..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/clear().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/clear()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/clear()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Purges all of the data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"title":"clear()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit16RTMPSharedObjectC5clearyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/clear()":{"role":"symbol","title":"clear()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Purges all of the data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/clear()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/clear()"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/close().json b/docs/data/documentation/haishinkit/rtmpsharedobject/close().json deleted file mode 100644 index e47292e39..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/close().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/close()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/close()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Closes the connection a server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"title":"close()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit16RTMPSharedObjectC5closeyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Closes the connection a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/close()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/connect(_:).json b/docs/data/documentation/haishinkit/rtmpsharedobject/connect(_:).json deleted file mode 100644 index c3f800dca..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/connect(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"rtmpConnection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC","text":"RTMPConnection"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/connect(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/connect(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Connects to a remove shared object on a server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":")"}],"title":"connect(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit16RTMPSharedObjectC7connectyyAA14RTMPConnectionCF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"},"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/connect(_:)":{"role":"symbol","title":"connect(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Connects to a remove shared object on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/connect(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/connect(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/customdebugstringconvertible-implementations.json b/docs/data/documentation/haishinkit/rtmpsharedobject/customdebugstringconvertible-implementations.json deleted file mode 100644 index 40e0ed4d7..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/customdebugstringconvertible-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/customdebugstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/CustomDebugStringConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/debugDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/data.json b/docs/data/documentation/haishinkit/rtmpsharedobject/data.json deleted file mode 100644 index f7176c3c0..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/data.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?] { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/data"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/data","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current data storage."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?]"}],"title":"data","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit16RTMPSharedObjectC4dataSDySSypSgGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?]"}],"abstract":[{"type":"text","text":"The current data storage."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/data","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/data"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/debugdescription.json b/docs/data/documentation/haishinkit/rtmpsharedobject/debugdescription.json deleted file mode 100644 index 1ffe829f5..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/debugdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/debugdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/debugDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomDebugStringConvertible.debugDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"debugDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:10HaishinKit16RTMPSharedObjectC16debugDescriptionSSvp","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/CustomDebugStringConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/getremote(withname:remotepath:persistence:).json b/docs/data/documentation/haishinkit/rtmpsharedobject/getremote(withname:remotepath:persistence:).json deleted file mode 100644 index 214a0d587..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/getremote(withname:remotepath:persistence:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemote"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"remotePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"persistence"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","preciseIdentifier":"s:10HaishinKit16RTMPSharedObjectC","text":"RTMPSharedObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/getremote(withname:remotepath:persistence:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/getRemote(withName:remotePath:persistence:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns a reference to a shared object on a server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemote"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"remotePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"persistence"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"RTMPSharedObject","preciseIdentifier":"s:10HaishinKit16RTMPSharedObjectC"}],"title":"getRemote(withName:remotePath:persistence:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit16RTMPSharedObjectC9getRemote8withName10remotePath11persistenceACSS_SSSbtFZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/getRemote(withName:remotePath:persistence:)":{"role":"symbol","title":"getRemote(withName:remotePath:persistence:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"getRemote"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"remotePath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"persistence"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"RTMPSharedObject","preciseIdentifier":"s:10HaishinKit16RTMPSharedObjectC"}],"abstract":[{"type":"text","text":"Returns a reference to a shared object on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/getRemote(withName:remotePath:persistence:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/getremote(withname:remotepath:persistence:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/objectencoding.json b/docs/data/documentation/haishinkit/rtmpsharedobject/objectencoding.json deleted file mode 100644 index f9e756ce3..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/objectencoding.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO","text":"RTMPObjectEncoding"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/objectencoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/objectEncoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The AMF object encoding type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"title":"objectEncoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit16RTMPSharedObjectC14objectEncodingAA010RTMPObjectF0Ovp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/objectEncoding":{"role":"symbol","title":"objectEncoding","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"The AMF object encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/objectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/objectencoding"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpsharedobject/setproperty(_:_:).json b/docs/data/documentation/haishinkit/rtmpsharedobject/setproperty(_:_:).json deleted file mode 100644 index 3b20410e7..000000000 --- a/docs/data/documentation/haishinkit/rtmpsharedobject/setproperty(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setProperty"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpsharedobject\/setproperty(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/setProperty(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Updates the value of a property in shared object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setProperty"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"title":"setProperty(_:_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit16RTMPSharedObjectC11setPropertyyySS_ypSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject":{"role":"symbol","title":"RTMPSharedObject","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPSharedObject"}],"abstract":[{"type":"text","text":"The RTMPSharedObject class is used to read and write data on a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPSharedObject"}],"url":"\/documentation\/haishinkit\/rtmpsharedobject"},"doc://HaishinKit/documentation/HaishinKit/RTMPSharedObject/setProperty(_:_:)":{"role":"symbol","title":"setProperty(_:_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setProperty"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Updates the value of a property in shared object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPSharedObject\/setProperty(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpsharedobject\/setproperty(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream.json b/docs/data/documentation/haishinkit/rtmpstream.json deleted file mode 100644 index 93f1de2e1..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/objc(pl)SCStreamOutput","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"title":"RTMPStream","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)RTMPStream","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/init(connection:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/currentFPS","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/info","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/objectEncoding","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/paused","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveAudio","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveVideo","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/soundTransform"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/close()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/makeMetaData()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/play(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/publish(_:type:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/seek(_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/send(handlerName:arguments:)"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/seek(_:)":{"role":"symbol","title":"seek(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Seeks the keyframe."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/seek(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/seek(_:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/receiveAudio":{"role":"symbol","title":"receiveAudio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Incoming audio plays on the stream or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveAudio","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/receiveaudio"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/info":{"role":"symbol","title":"info","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStreamInfo","preciseIdentifier":"s:10HaishinKit14RTMPStreamInfoV"}],"abstract":[{"type":"text","text":"The NetStreamInfo object whose properties contain data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/info","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/info"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/publish(_:type:)":{"role":"symbol","title":"publish(_:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"HowToPublish","preciseIdentifier":"s:10HaishinKit10RTMPStreamC12HowToPublishO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sends streaming audio, vidoe and data message from client."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/publish(_:type:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/publish(_:type:)"},"doc://HaishinKit/documentation/HaishinKit/NetStream":{"role":"symbol","title":"NetStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetStream"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"NetStream"},{"type":"text","text":" class is the foundation of a RTMPStream, HTTPStream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetStream"}],"url":"\/documentation\/haishinkit\/netstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/currentFPS":{"role":"symbol","title":"currentFPS","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentFPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[{"type":"text","text":"The number of frames per second being displayed."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/currentFPS","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/currentfps"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/receiveVideo":{"role":"symbol","title":"receiveVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Incoming video plays on the stream or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveVideo","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/receivevideo"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/send(handlerName:arguments:)":{"role":"symbol","title":"send(handlerName:arguments:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"externalParam","text":"handlerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Sends a message on a published stream to all subscribing clients."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/send(handlerName:arguments:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/send(handlername:arguments:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnitDelegate":{"role":"symbol","title":"IOScreenCaptureUnitDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"abstract":[{"type":"text","text":"The interface a capture session uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnitDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnitDelegate"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/paused":{"role":"symbol","title":"paused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Pauses playback or publish of a video stream or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/paused","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/paused"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/play(_:)":{"role":"symbol","title":"play(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Plays a live stream from RTMPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/play(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/play(_:)"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/init(connection:)":{"role":"symbol","title":"init(connection:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"connection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/init(connection:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/init(connection:)"},"doc://HaishinKit/objc(pl)SCStreamOutput":{"type":"unresolvable","title":"ScreenCaptureKit.SCStreamOutput","identifier":"doc:\/\/HaishinKit\/objc(pl)SCStreamOutput"},"doc://HaishinKit/documentation/HaishinKit/EventDispatcherConvertible":{"role":"symbol","title":"EventDispatcherConvertible","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventDispatcherConvertible"}],"abstract":[{"type":"text","text":"The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/EventDispatcherConvertible","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventDispatcherConvertible"}],"url":"\/documentation\/haishinkit\/eventdispatcherconvertible"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/soundTransform":{"role":"symbol","title":"soundTransform","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundTransform"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SoundTransform","preciseIdentifier":"s:10HaishinKit14SoundTransformV"}],"abstract":[{"type":"text","text":"Specifies the controls sound."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/soundTransform","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/EventDispatcherConvertible-Implementations":{"role":"collectionGroup","title":"EventDispatcherConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/eventdispatcherconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/objectEncoding":{"role":"symbol","title":"objectEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"The object encoding (AMF). Framework supports AMF0 only."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/objectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/objectencoding"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stops playing or publishing and makes available other uses."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/close()"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/makeMetaData()":{"role":"symbol","title":"makeMetaData()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeMetaData"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"ASObject","preciseIdentifier":"s:10HaishinKit8ASObjecta"}],"abstract":[{"type":"text","text":"Creates flv metadata for a stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/makeMetaData()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/makemetadata()"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/addeventlistener(_:selector:observer:usecapture:).json b/docs/data/documentation/haishinkit/rtmpstream/addeventlistener(_:selector:observer:usecapture:).json deleted file mode 100644 index cd20fa951..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/addeventlistener(_:selector:observer:usecapture:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/addeventlistener(_:selector:observer:usecapture:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/addEventListener(_:selector:observer:useCapture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"EventDispatcherConvertible.addEventListener(_:selector:observer:useCapture:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC16addEventListener_8selector8observer10useCaptureyAA0E0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/EventDispatcherConvertible-Implementations":{"role":"collectionGroup","title":"EventDispatcherConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/eventdispatcherconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/addEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/addEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/addeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/close().json b/docs/data/documentation/haishinkit/rtmpstream/close().json deleted file mode 100644 index 222fe9681..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/close().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/close()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/close()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stops playing or publishing and makes available other uses."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"title":"close()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC5closeyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/close()":{"role":"symbol","title":"close()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"close"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stops playing or publishing and makes available other uses."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/close()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/close()"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code.json b/docs/data/documentation/haishinkit/rtmpstream/code.json deleted file mode 100644 index 462975883..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"https:\/\/help.adobe.com\/en_US\/air\/reference\/html\/flash\/events\/NetStatusEvent.html#NET_STATUS"}]}],"type":"aside","name":"See Also"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"title":"RTMPStream.Code","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit10RTMPStreamC4CodeO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Code"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferEmpty","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFlush","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFull","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectClosed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectFailed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectRejected","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectSuccess","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/drmUpdateNeeded","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/failed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/multicastStreamReset","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/pauseNotify","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFailed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFileStructureInvalid","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playInsufficientBW","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playNoSupportedTrackFound","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playReset","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStart","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStop","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStreamNotFound","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playTransition","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playUnpublishNotify","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishBadName","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishIdle","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishStart","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordAlreadyExists","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordDiskQuotaExceeded","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordFailed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordNoAccess","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStart","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStop","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStart","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStop","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekFailed","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekInvalidTime","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekNotify","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/stepNotify","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpauseNotify","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpublishSuccess","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/videoDimensionChange"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/init(rawValue:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/level"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordDiskQuotaExceeded":{"role":"symbol","title":"RTMPStream.Code.recordDiskQuotaExceeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordDiskQuotaExceeded"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordDiskQuotaExceeded","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recorddiskquotaexceeded"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playStreamNotFound":{"role":"symbol","title":"RTMPStream.Code.playStreamNotFound","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStreamNotFound"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStreamNotFound","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playstreamnotfound"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/multicastStreamReset":{"role":"symbol","title":"RTMPStream.Code.multicastStreamReset","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"multicastStreamReset"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/multicastStreamReset","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/multicaststreamreset"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/seekFailed":{"role":"symbol","title":"RTMPStream.Code.seekFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/seekfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/unpauseNotify":{"role":"symbol","title":"RTMPStream.Code.unpauseNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpauseNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpauseNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/unpausenotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectFailed":{"role":"symbol","title":"RTMPStream.Code.connectFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/pauseNotify":{"role":"symbol","title":"RTMPStream.Code.pauseNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pauseNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/pauseNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/pausenotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectSuccess":{"role":"symbol","title":"RTMPStream.Code.connectSuccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectSuccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectsuccess"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/bufferFlush":{"role":"symbol","title":"RTMPStream.Code.bufferFlush","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFlush"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFlush","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferflush"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/secondScreenStart":{"role":"symbol","title":"RTMPStream.Code.secondScreenStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstart"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playTransition":{"role":"symbol","title":"RTMPStream.Code.playTransition","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTransition"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playTransition","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playtransition"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectRejected":{"role":"symbol","title":"RTMPStream.Code.connectRejected","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectRejected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectrejected"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/level","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/level"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/bufferEmpty":{"role":"symbol","title":"RTMPStream.Code.bufferEmpty","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferEmpty"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferEmpty","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferempty"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playNoSupportedTrackFound":{"role":"symbol","title":"RTMPStream.Code.playNoSupportedTrackFound","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNoSupportedTrackFound"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playNoSupportedTrackFound","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playnosupportedtrackfound"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordAlreadyExists":{"role":"symbol","title":"RTMPStream.Code.recordAlreadyExists","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordAlreadyExists"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordAlreadyExists","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordalreadyexists"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/stepNotify":{"role":"symbol","title":"RTMPStream.Code.stepNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stepNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/stepNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/stepnotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playInsufficientBW":{"role":"symbol","title":"RTMPStream.Code.playInsufficientBW","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInsufficientBW"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playInsufficientBW","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playinsufficientbw"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playStart":{"role":"symbol","title":"RTMPStream.Code.playStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playstart"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/videoDimensionChange":{"role":"symbol","title":"RTMPStream.Code.videoDimensionChange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDimensionChange"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/videoDimensionChange","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/videodimensionchange"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectClosed":{"role":"symbol","title":"RTMPStream.Code.connectClosed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectClosed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectclosed"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/unpublishSuccess":{"role":"symbol","title":"RTMPStream.Code.unpublishSuccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpublishSuccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpublishSuccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/unpublishsuccess"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playFailed":{"role":"symbol","title":"RTMPStream.Code.playFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/publishStart":{"role":"symbol","title":"RTMPStream.Code.publishStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/publishstart"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playFileStructureInvalid":{"role":"symbol","title":"RTMPStream.Code.playFileStructureInvalid","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFileStructureInvalid"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFileStructureInvalid","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playfilestructureinvalid"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playStop":{"role":"symbol","title":"RTMPStream.Code.playStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStop"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStop","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playstop"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordFailed":{"role":"symbol","title":"RTMPStream.Code.recordFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordNoAccess":{"role":"symbol","title":"RTMPStream.Code.recordNoAccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordNoAccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordNoAccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordnoaccess"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/seekInvalidTime":{"role":"symbol","title":"RTMPStream.Code.seekInvalidTime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekInvalidTime"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekInvalidTime","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/seekinvalidtime"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/bufferFull":{"role":"symbol","title":"RTMPStream.Code.bufferFull","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFull"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFull","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferfull"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/secondScreenStop":{"role":"symbol","title":"RTMPStream.Code.secondScreenStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStop"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStop","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstop"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordStart":{"role":"symbol","title":"RTMPStream.Code.recordStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordstart"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/failed":{"role":"symbol","title":"RTMPStream.Code.failed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/failed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/failed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/seekNotify":{"role":"symbol","title":"RTMPStream.Code.seekNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/seeknotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordStop":{"role":"symbol","title":"RTMPStream.Code.recordStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStop"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStop","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordstop"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playUnpublishNotify":{"role":"symbol","title":"RTMPStream.Code.playUnpublishNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playUnpublishNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playUnpublishNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playunpublishnotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/publishIdle":{"role":"symbol","title":"RTMPStream.Code.publishIdle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishIdle"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishIdle","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/publishidle"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/publishBadName":{"role":"symbol","title":"RTMPStream.Code.publishBadName","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishBadName"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishBadName","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/publishbadname"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/drmUpdateNeeded":{"role":"symbol","title":"RTMPStream.Code.drmUpdateNeeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drmUpdateNeeded"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/drmUpdateNeeded","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/drmupdateneeded"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playReset":{"role":"symbol","title":"RTMPStream.Code.playReset","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playReset"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playReset","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playreset"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/!=(_:_:).json b/docs/data/documentation/haishinkit/rtmpstream/code/!=(_:_:).json deleted file mode 100644 index 4090a9779..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit10RTMPStreamC4CodeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/bufferempty.json b/docs/data/documentation/haishinkit/rtmpstream/code/bufferempty.json deleted file mode 100644 index 72270ca16..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/bufferempty.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferEmpty"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/bufferempty"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferEmpty","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferEmpty"}],"title":"RTMPStream.Code.bufferEmpty","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO11bufferEmptyyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/bufferEmpty":{"role":"symbol","title":"RTMPStream.Code.bufferEmpty","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferEmpty"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferEmpty","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferempty"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/bufferflush.json b/docs/data/documentation/haishinkit/rtmpstream/code/bufferflush.json deleted file mode 100644 index a2c3c47d5..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/bufferflush.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFlush"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/bufferflush"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFlush","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFlush"}],"title":"RTMPStream.Code.bufferFlush","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO11bufferFlushyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/bufferFlush":{"role":"symbol","title":"RTMPStream.Code.bufferFlush","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFlush"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFlush","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferflush"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/bufferfull.json b/docs/data/documentation/haishinkit/rtmpstream/code/bufferfull.json deleted file mode 100644 index f8fbe5836..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/bufferfull.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFull"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/bufferfull"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFull","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFull"}],"title":"RTMPStream.Code.bufferFull","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO10bufferFullyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/bufferFull":{"role":"symbol","title":"RTMPStream.Code.bufferFull","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"bufferFull"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/bufferFull","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferfull"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/connectclosed.json b/docs/data/documentation/haishinkit/rtmpstream/code/connectclosed.json deleted file mode 100644 index 454beace7..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/connectclosed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/connectclosed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectClosed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"title":"RTMPStream.Code.connectClosed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO13connectClosedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectClosed":{"role":"symbol","title":"RTMPStream.Code.connectClosed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectClosed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectClosed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectclosed"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/connectfailed.json b/docs/data/documentation/haishinkit/rtmpstream/code/connectfailed.json deleted file mode 100644 index 99b3fa03f..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/connectfailed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/connectfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectFailed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"title":"RTMPStream.Code.connectFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO13connectFailedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectFailed":{"role":"symbol","title":"RTMPStream.Code.connectFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/connectrejected.json b/docs/data/documentation/haishinkit/rtmpstream/code/connectrejected.json deleted file mode 100644 index e2cc44e3b..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/connectrejected.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/connectrejected"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectRejected","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"title":"RTMPStream.Code.connectRejected","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO15connectRejectedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectRejected":{"role":"symbol","title":"RTMPStream.Code.connectRejected","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectRejected"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectRejected","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectrejected"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/connectsuccess.json b/docs/data/documentation/haishinkit/rtmpstream/code/connectsuccess.json deleted file mode 100644 index b6cf0a7f1..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/connectsuccess.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/connectsuccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectSuccess","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"title":"RTMPStream.Code.connectSuccess","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO14connectSuccessyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/connectSuccess":{"role":"symbol","title":"RTMPStream.Code.connectSuccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectSuccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/connectSuccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/connectsuccess"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/drmupdateneeded.json b/docs/data/documentation/haishinkit/rtmpstream/code/drmupdateneeded.json deleted file mode 100644 index 66df36c06..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/drmupdateneeded.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drmUpdateNeeded"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/drmupdateneeded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/drmUpdateNeeded","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drmUpdateNeeded"}],"title":"RTMPStream.Code.drmUpdateNeeded","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO15drmUpdateNeededyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/drmUpdateNeeded":{"role":"symbol","title":"RTMPStream.Code.drmUpdateNeeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"drmUpdateNeeded"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/drmUpdateNeeded","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/drmupdateneeded"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/equatable-implementations.json b/docs/data/documentation/haishinkit/rtmpstream/code/equatable-implementations.json deleted file mode 100644 index b85356055..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/failed.json b/docs/data/documentation/haishinkit/rtmpstream/code/failed.json deleted file mode 100644 index 2c490b255..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/failed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/failed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/failed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"title":"RTMPStream.Code.failed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO6failedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/failed":{"role":"symbol","title":"RTMPStream.Code.failed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/failed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/failed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/hash(into:).json b/docs/data/documentation/haishinkit/rtmpstream/code/hash(into:).json deleted file mode 100644 index a342996a2..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit10RTMPStreamC4CodeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/hashvalue.json b/docs/data/documentation/haishinkit/rtmpstream/code/hashvalue.json deleted file mode 100644 index e0a7b43dd..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit10RTMPStreamC4CodeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/init(rawvalue:).json b/docs/data/documentation/haishinkit/rtmpstream/code/init(rawvalue:).json deleted file mode 100644 index e2895977b..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit10RTMPStreamC4CodeO8rawValueAESgSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/level.json b/docs/data/documentation/haishinkit/rtmpstream/code/level.json deleted file mode 100644 index 313c32184..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/level.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/level"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/level","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"level","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10RTMPStreamC4CodeO5levelSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/level":{"role":"symbol","title":"level","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"level"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/level","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/level"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/multicaststreamreset.json b/docs/data/documentation/haishinkit/rtmpstream/code/multicaststreamreset.json deleted file mode 100644 index 5c7e55416..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/multicaststreamreset.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"multicastStreamReset"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/multicaststreamreset"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/multicastStreamReset","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"multicastStreamReset"}],"title":"RTMPStream.Code.multicastStreamReset","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO20multicastStreamResetyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/multicastStreamReset":{"role":"symbol","title":"RTMPStream.Code.multicastStreamReset","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"multicastStreamReset"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/multicastStreamReset","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/multicaststreamreset"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/pausenotify.json b/docs/data/documentation/haishinkit/rtmpstream/code/pausenotify.json deleted file mode 100644 index 2c466106e..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/pausenotify.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pauseNotify"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/pausenotify"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/pauseNotify","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pauseNotify"}],"title":"RTMPStream.Code.pauseNotify","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO11pauseNotifyyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/pauseNotify":{"role":"symbol","title":"RTMPStream.Code.pauseNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pauseNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/pauseNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/pausenotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playfailed.json b/docs/data/documentation/haishinkit/rtmpstream/code/playfailed.json deleted file mode 100644 index 8cf96935b..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playfailed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFailed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFailed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFailed"}],"title":"RTMPStream.Code.playFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO10playFailedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playFailed":{"role":"symbol","title":"RTMPStream.Code.playFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playfailed"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playfilestructureinvalid.json b/docs/data/documentation/haishinkit/rtmpstream/code/playfilestructureinvalid.json deleted file mode 100644 index e29d80be4..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playfilestructureinvalid.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFileStructureInvalid"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playfilestructureinvalid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFileStructureInvalid","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFileStructureInvalid"}],"title":"RTMPStream.Code.playFileStructureInvalid","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO24playFileStructureInvalidyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playFileStructureInvalid":{"role":"symbol","title":"RTMPStream.Code.playFileStructureInvalid","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playFileStructureInvalid"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playFileStructureInvalid","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playfilestructureinvalid"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playinsufficientbw.json b/docs/data/documentation/haishinkit/rtmpstream/code/playinsufficientbw.json deleted file mode 100644 index 839e1a106..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playinsufficientbw.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInsufficientBW"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playinsufficientbw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playInsufficientBW","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInsufficientBW"}],"title":"RTMPStream.Code.playInsufficientBW","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO18playInsufficientBWyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playInsufficientBW":{"role":"symbol","title":"RTMPStream.Code.playInsufficientBW","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playInsufficientBW"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playInsufficientBW","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playinsufficientbw"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playnosupportedtrackfound.json b/docs/data/documentation/haishinkit/rtmpstream/code/playnosupportedtrackfound.json deleted file mode 100644 index 2ec934cc9..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playnosupportedtrackfound.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNoSupportedTrackFound"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playnosupportedtrackfound"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playNoSupportedTrackFound","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNoSupportedTrackFound"}],"title":"RTMPStream.Code.playNoSupportedTrackFound","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO25playNoSupportedTrackFoundyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playNoSupportedTrackFound":{"role":"symbol","title":"RTMPStream.Code.playNoSupportedTrackFound","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playNoSupportedTrackFound"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playNoSupportedTrackFound","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playnosupportedtrackfound"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playreset.json b/docs/data/documentation/haishinkit/rtmpstream/code/playreset.json deleted file mode 100644 index 778975cbc..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playreset.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playReset"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playreset"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playReset","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playReset"}],"title":"RTMPStream.Code.playReset","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO9playResetyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playReset":{"role":"symbol","title":"RTMPStream.Code.playReset","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playReset"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playReset","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playreset"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playstart.json b/docs/data/documentation/haishinkit/rtmpstream/code/playstart.json deleted file mode 100644 index c45e838a3..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playstart.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playstart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStart","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStart"}],"title":"RTMPStream.Code.playStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO9playStartyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playStart":{"role":"symbol","title":"RTMPStream.Code.playStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playstart"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playstop.json b/docs/data/documentation/haishinkit/rtmpstream/code/playstop.json deleted file mode 100644 index e9dc6fae6..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playstop.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playstop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStop","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStop"}],"title":"RTMPStream.Code.playStop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO8playStopyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playStop":{"role":"symbol","title":"RTMPStream.Code.playStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStop"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStop","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playstop"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playstreamnotfound.json b/docs/data/documentation/haishinkit/rtmpstream/code/playstreamnotfound.json deleted file mode 100644 index e252d4157..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playstreamnotfound.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStreamNotFound"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playstreamnotfound"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStreamNotFound","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStreamNotFound"}],"title":"RTMPStream.Code.playStreamNotFound","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO18playStreamNotFoundyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playStreamNotFound":{"role":"symbol","title":"RTMPStream.Code.playStreamNotFound","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playStreamNotFound"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playStreamNotFound","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playstreamnotfound"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playtransition.json b/docs/data/documentation/haishinkit/rtmpstream/code/playtransition.json deleted file mode 100644 index 88eaa73d3..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playtransition.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTransition"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playtransition"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playTransition","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTransition"}],"title":"RTMPStream.Code.playTransition","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO14playTransitionyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playTransition":{"role":"symbol","title":"RTMPStream.Code.playTransition","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playTransition"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playTransition","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playtransition"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/playunpublishnotify.json b/docs/data/documentation/haishinkit/rtmpstream/code/playunpublishnotify.json deleted file mode 100644 index 3eb61fabd..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/playunpublishnotify.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playUnpublishNotify"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/playunpublishnotify"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playUnpublishNotify","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playUnpublishNotify"}],"title":"RTMPStream.Code.playUnpublishNotify","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO19playUnpublishNotifyyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/playUnpublishNotify":{"role":"symbol","title":"RTMPStream.Code.playUnpublishNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"playUnpublishNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/playUnpublishNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/playunpublishnotify"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/publishbadname.json b/docs/data/documentation/haishinkit/rtmpstream/code/publishbadname.json deleted file mode 100644 index 900509f84..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/publishbadname.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishBadName"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/publishbadname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishBadName","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishBadName"}],"title":"RTMPStream.Code.publishBadName","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO14publishBadNameyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/publishBadName":{"role":"symbol","title":"RTMPStream.Code.publishBadName","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishBadName"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishBadName","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/publishbadname"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/publishidle.json b/docs/data/documentation/haishinkit/rtmpstream/code/publishidle.json deleted file mode 100644 index 11eb0532c..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/publishidle.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishIdle"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/publishidle"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishIdle","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishIdle"}],"title":"RTMPStream.Code.publishIdle","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO11publishIdleyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/publishIdle":{"role":"symbol","title":"RTMPStream.Code.publishIdle","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishIdle"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishIdle","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/publishidle"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/publishstart.json b/docs/data/documentation/haishinkit/rtmpstream/code/publishstart.json deleted file mode 100644 index a4b8afb28..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/publishstart.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishStart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/publishstart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishStart","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishStart"}],"title":"RTMPStream.Code.publishStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO12publishStartyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/publishStart":{"role":"symbol","title":"RTMPStream.Code.publishStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"publishStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/publishStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/publishstart"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/rtmpstream/code/rawrepresentable-implementations.json deleted file mode 100644 index c9f05badf..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/hash(into:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/recordalreadyexists.json b/docs/data/documentation/haishinkit/rtmpstream/code/recordalreadyexists.json deleted file mode 100644 index 87673c540..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/recordalreadyexists.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordAlreadyExists"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/recordalreadyexists"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordAlreadyExists","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordAlreadyExists"}],"title":"RTMPStream.Code.recordAlreadyExists","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO19recordAlreadyExistsyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordAlreadyExists":{"role":"symbol","title":"RTMPStream.Code.recordAlreadyExists","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordAlreadyExists"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordAlreadyExists","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordalreadyexists"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/recorddiskquotaexceeded.json b/docs/data/documentation/haishinkit/rtmpstream/code/recorddiskquotaexceeded.json deleted file mode 100644 index 2eeb58102..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/recorddiskquotaexceeded.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordDiskQuotaExceeded"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/recorddiskquotaexceeded"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordDiskQuotaExceeded","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordDiskQuotaExceeded"}],"title":"RTMPStream.Code.recordDiskQuotaExceeded","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO23recordDiskQuotaExceededyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordDiskQuotaExceeded":{"role":"symbol","title":"RTMPStream.Code.recordDiskQuotaExceeded","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordDiskQuotaExceeded"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordDiskQuotaExceeded","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recorddiskquotaexceeded"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/recordfailed.json b/docs/data/documentation/haishinkit/rtmpstream/code/recordfailed.json deleted file mode 100644 index 6e22661b6..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/recordfailed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordFailed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/recordfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordFailed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordFailed"}],"title":"RTMPStream.Code.recordFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO12recordFailedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordFailed":{"role":"symbol","title":"RTMPStream.Code.recordFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/recordnoaccess.json b/docs/data/documentation/haishinkit/rtmpstream/code/recordnoaccess.json deleted file mode 100644 index 7e8b28422..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/recordnoaccess.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordNoAccess"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/recordnoaccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordNoAccess","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordNoAccess"}],"title":"RTMPStream.Code.recordNoAccess","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO14recordNoAccessyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordNoAccess":{"role":"symbol","title":"RTMPStream.Code.recordNoAccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordNoAccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordNoAccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordnoaccess"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/recordstart.json b/docs/data/documentation/haishinkit/rtmpstream/code/recordstart.json deleted file mode 100644 index d513dd2ed..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/recordstart.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/recordstart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStart","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStart"}],"title":"RTMPStream.Code.recordStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO11recordStartyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordStart":{"role":"symbol","title":"RTMPStream.Code.recordStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordstart"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/recordstop.json b/docs/data/documentation/haishinkit/rtmpstream/code/recordstop.json deleted file mode 100644 index a65524c24..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/recordstop.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/recordstop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStop","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStop"}],"title":"RTMPStream.Code.recordStop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO10recordStopyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/recordStop":{"role":"symbol","title":"RTMPStream.Code.recordStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"recordStop"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/recordStop","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/recordstop"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/secondscreenstart.json b/docs/data/documentation/haishinkit/rtmpstream/code/secondscreenstart.json deleted file mode 100644 index 754aaf379..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/secondscreenstart.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStart"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStart","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStart"}],"title":"RTMPStream.Code.secondScreenStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO17secondScreenStartyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/secondScreenStart":{"role":"symbol","title":"RTMPStream.Code.secondScreenStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStart"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStart","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstart"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/secondscreenstop.json b/docs/data/documentation/haishinkit/rtmpstream/code/secondscreenstop.json deleted file mode 100644 index 88b5dda20..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/secondscreenstop.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStop"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStop","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStop"}],"title":"RTMPStream.Code.secondScreenStop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO16secondScreenStopyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/secondScreenStop":{"role":"symbol","title":"RTMPStream.Code.secondScreenStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"secondScreenStop"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/secondScreenStop","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstop"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/seekfailed.json b/docs/data/documentation/haishinkit/rtmpstream/code/seekfailed.json deleted file mode 100644 index 3803b6850..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/seekfailed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekFailed"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/seekfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekFailed","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekFailed"}],"title":"RTMPStream.Code.seekFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO10seekFailedyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/seekFailed":{"role":"symbol","title":"RTMPStream.Code.seekFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekFailed"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekFailed","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/seekfailed"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/seekinvalidtime.json b/docs/data/documentation/haishinkit/rtmpstream/code/seekinvalidtime.json deleted file mode 100644 index 3b284dfeb..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/seekinvalidtime.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekInvalidTime"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/seekinvalidtime"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekInvalidTime","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekInvalidTime"}],"title":"RTMPStream.Code.seekInvalidTime","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO15seekInvalidTimeyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/seekInvalidTime":{"role":"symbol","title":"RTMPStream.Code.seekInvalidTime","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekInvalidTime"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekInvalidTime","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/seekinvalidtime"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/seeknotify.json b/docs/data/documentation/haishinkit/rtmpstream/code/seeknotify.json deleted file mode 100644 index 5e4d19c7f..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/seeknotify.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekNotify"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/seeknotify"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekNotify","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekNotify"}],"title":"RTMPStream.Code.seekNotify","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO10seekNotifyyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/seekNotify":{"role":"symbol","title":"RTMPStream.Code.seekNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"seekNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/seekNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/seeknotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/stepnotify.json b/docs/data/documentation/haishinkit/rtmpstream/code/stepnotify.json deleted file mode 100644 index fc7e33fca..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/stepnotify.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stepNotify"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/stepnotify"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/stepNotify","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stepNotify"}],"title":"RTMPStream.Code.stepNotify","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO10stepNotifyyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/stepNotify":{"role":"symbol","title":"RTMPStream.Code.stepNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"stepNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/stepNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/stepnotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/unpausenotify.json b/docs/data/documentation/haishinkit/rtmpstream/code/unpausenotify.json deleted file mode 100644 index c9ecf160a..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/unpausenotify.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpauseNotify"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/unpausenotify"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpauseNotify","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpauseNotify"}],"title":"RTMPStream.Code.unpauseNotify","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO13unpauseNotifyyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/unpauseNotify":{"role":"symbol","title":"RTMPStream.Code.unpauseNotify","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpauseNotify"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpauseNotify","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/unpausenotify"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/unpublishsuccess.json b/docs/data/documentation/haishinkit/rtmpstream/code/unpublishsuccess.json deleted file mode 100644 index 8c7b52ae7..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/unpublishsuccess.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpublishSuccess"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/unpublishsuccess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpublishSuccess","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpublishSuccess"}],"title":"RTMPStream.Code.unpublishSuccess","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO16unpublishSuccessyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/unpublishSuccess":{"role":"symbol","title":"RTMPStream.Code.unpublishSuccess","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unpublishSuccess"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/unpublishSuccess","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/unpublishsuccess"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/code/videodimensionchange.json b/docs/data/documentation/haishinkit/rtmpstream/code/videodimensionchange.json deleted file mode 100644 index dc1088b71..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/code/videodimensionchange.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDimensionChange"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/code\/videodimensionchange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/videoDimensionChange","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDimensionChange"}],"title":"RTMPStream.Code.videoDimensionChange","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC4CodeO20videoDimensionChangeyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code/videoDimensionChange":{"role":"symbol","title":"RTMPStream.Code.videoDimensionChange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoDimensionChange"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code\/videoDimensionChange","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/code\/videodimensionchange"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/Code":{"role":"symbol","title":"RTMPStream.Code","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Code"}],"abstract":[{"type":"text","text":"NetStatusEvent#info.code for NetStream"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/Code","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Code"}],"url":"\/documentation\/haishinkit\/rtmpstream\/code"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/currentfps.json b/docs/data/documentation/haishinkit/rtmpstream/currentfps.json deleted file mode 100644 index f459deea5..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/currentfps.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"dynamic"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentFPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/currentfps"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/currentFPS","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The number of frames per second being displayed."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentFPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"title":"currentFPS","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"c:@M@HaishinKit@objc(cs)RTMPStream(py)currentFPS","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/currentFPS":{"role":"symbol","title":"currentFPS","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentFPS"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[{"type":"text","text":"The number of frames per second being displayed."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/currentFPS","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/currentfps"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/dispatch(_:bubbles:data:).json b/docs/data/documentation/haishinkit/rtmpstream/dispatch(_:bubbles:data:).json deleted file mode 100644 index 9817a892b..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/dispatch(_:bubbles:data:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/dispatch(_:bubbles:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(_:bubbles:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"EventDispatcherConvertible.dispatch(_:bubbles:data:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"dispatch(_:bubbles:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC8dispatch_7bubbles4datayAA5EventC4NameV_SbypSgtF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/EventDispatcherConvertible-Implementations":{"role":"collectionGroup","title":"EventDispatcherConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/eventdispatcherconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/dispatch(_:bubbles:data:)":{"role":"symbol","title":"dispatch(_:bubbles:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(_:bubbles:data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/dispatch(_:bubbles:data:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/dispatch(event:).json b/docs/data/documentation/haishinkit/rtmpstream/dispatch(event:).json deleted file mode 100644 index 3eb0f6f57..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/dispatch(event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/dispatch(event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"EventDispatcherConvertible.dispatch(event:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"dispatch(event:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC8dispatch5eventyAA5EventC_tF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/dispatch(event:)":{"role":"symbol","title":"dispatch(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(event:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/dispatch(event:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/EventDispatcherConvertible-Implementations":{"role":"collectionGroup","title":"EventDispatcherConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/eventdispatcherconvertible-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/eventdispatcherconvertible-implementations.json b/docs/data/documentation/haishinkit/rtmpstream/eventdispatcherconvertible-implementations.json deleted file mode 100644 index 8e4be58e9..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/eventdispatcherconvertible-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/eventdispatcherconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/addEventListener(_:selector:observer:useCapture:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(_:bubbles:data:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(event:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/removeEventListener(_:selector:observer:useCapture:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"EventDispatcherConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/addEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"addEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/addEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/addeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/removeEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/removeEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/removeeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/dispatch(event:)":{"role":"symbol","title":"dispatch(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(event:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/dispatch(event:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/dispatch(_:bubbles:data:)":{"role":"symbol","title":"dispatch(_:bubbles:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dispatch"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bubbles"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/dispatch(_:bubbles:data:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/dispatch(_:bubbles:data:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish.json deleted file mode 100644 index 8d5d4d772..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type of publish options."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"title":"RTMPStream.HowToPublish","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit10RTMPStreamC12HowToPublishO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/append","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/appendWithGap","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/live","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/record"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/init(rawvalue:)"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/record":{"role":"symbol","title":"RTMPStream.HowToPublish.record","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"record"}],"abstract":[{"type":"text","text":"Publish with server-side recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/record","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/record"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/rawrepresentable-implementations"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/append":{"role":"symbol","title":"RTMPStream.HowToPublish.append","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"append"}],"abstract":[{"type":"text","text":"Publish with server-side recording which is to append file if exists."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/append","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/append"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/live":{"role":"symbol","title":"RTMPStream.HowToPublish.live","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"live"}],"abstract":[{"type":"text","text":"Publish."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/live","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/live"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/appendWithGap":{"role":"symbol","title":"RTMPStream.HowToPublish.appendWithGap","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendWithGap"}],"abstract":[{"type":"text","text":"Publish with server-side recording which is to append and ajust time file if exists."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/appendWithGap","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/appendwithgap"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/!=(_:_:).json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/!=(_:_:).json deleted file mode 100644 index c98c28850..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit10RTMPStreamC12HowToPublishO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/append.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/append.json deleted file mode 100644 index 48cf9199f..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/append.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"append"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/append"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/append","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Publish with server-side recording which is to append file if exists."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"append"}],"title":"RTMPStream.HowToPublish.append","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC12HowToPublishO6appendyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/append":{"role":"symbol","title":"RTMPStream.HowToPublish.append","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"append"}],"abstract":[{"type":"text","text":"Publish with server-side recording which is to append file if exists."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/append","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/append"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/appendwithgap.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/appendwithgap.json deleted file mode 100644 index 85c059d50..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/appendwithgap.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendWithGap"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/appendwithgap"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/appendWithGap","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Publish with server-side recording which is to append and ajust time file if exists."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendWithGap"}],"title":"RTMPStream.HowToPublish.appendWithGap","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC12HowToPublishO13appendWithGapyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/appendWithGap":{"role":"symbol","title":"RTMPStream.HowToPublish.appendWithGap","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"appendWithGap"}],"abstract":[{"type":"text","text":"Publish with server-side recording which is to append and ajust time file if exists."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/appendWithGap","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/appendwithgap"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/equatable-implementations.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/equatable-implementations.json deleted file mode 100644 index a68a2b783..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/hash(into:).json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/hash(into:).json deleted file mode 100644 index d50ea5cf9..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit10RTMPStreamC12HowToPublishO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/hashvalue.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/hashvalue.json deleted file mode 100644 index a2ba45d92..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit10RTMPStreamC12HowToPublishO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/init(rawvalue:).json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/init(rawvalue:).json deleted file mode 100644 index 0fc3cbfc6..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit10RTMPStreamC12HowToPublishO8rawValueAESgSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/live.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/live.json deleted file mode 100644 index 2d8725961..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/live.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"live"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/live"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/live","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Publish."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"live"}],"title":"RTMPStream.HowToPublish.live","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC12HowToPublishO4liveyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/live":{"role":"symbol","title":"RTMPStream.HowToPublish.live","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"live"}],"abstract":[{"type":"text","text":"Publish."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/live","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/live"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/rawrepresentable-implementations.json deleted file mode 100644 index cf70bb819..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/record.json b/docs/data/documentation/haishinkit/rtmpstream/howtopublish/record.json deleted file mode 100644 index 40d2d5326..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/howtopublish/record.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"record"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/howtopublish\/record"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/record","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Publish with server-side recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"record"}],"title":"RTMPStream.HowToPublish.record","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10RTMPStreamC12HowToPublishO6recordyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish/record":{"role":"symbol","title":"RTMPStream.HowToPublish.record","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"record"}],"abstract":[{"type":"text","text":"Publish with server-side recording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish\/record","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/record"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/info.json b/docs/data/documentation/haishinkit/rtmpstream/info.json deleted file mode 100644 index b2b498098..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/info.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","preciseIdentifier":"s:10HaishinKit14RTMPStreamInfoV","text":"RTMPStreamInfo"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/info"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/info","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The NetStreamInfo object whose properties contain data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStreamInfo","preciseIdentifier":"s:10HaishinKit14RTMPStreamInfoV"}],"title":"info","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10RTMPStreamC4infoAA0C4InfoVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/info":{"role":"symbol","title":"info","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStreamInfo","preciseIdentifier":"s:10HaishinKit14RTMPStreamInfoV"}],"abstract":[{"type":"text","text":"The NetStreamInfo object whose properties contain data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/info","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/info"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/init(connection:).json b/docs/data/documentation/haishinkit/rtmpstream/init(connection:).json deleted file mode 100644 index ab264506f..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/init(connection:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"connection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC","text":"RTMPConnection"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/init(connection:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/init(connection:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"connection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":")"}],"title":"init(connection:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit10RTMPStreamC10connectionAcA14RTMPConnectionC_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPConnection":{"role":"symbol","title":"RTMPConnection","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPConnection"}],"abstract":[{"type":"text","text":"The RTMPConneciton class create a two-way RTMP connection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPConnection","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPConnection"}],"url":"\/documentation\/haishinkit\/rtmpconnection"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/init(connection:)":{"role":"symbol","title":"init(connection:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"connection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPConnection","preciseIdentifier":"s:10HaishinKit14RTMPConnectionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/init(connection:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/init(connection:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/makemetadata().json b/docs/data/documentation/haishinkit/rtmpstream/makemetadata().json deleted file mode 100644 index 0c700296e..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/makemetadata().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeMetaData"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","preciseIdentifier":"s:10HaishinKit8ASObjecta","text":"ASObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/makemetadata()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/makeMetaData()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates flv metadata for a stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeMetaData"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"ASObject","preciseIdentifier":"s:10HaishinKit8ASObjecta"}],"title":"makeMetaData()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC12makeMetaDataSDySSypSgGyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/makeMetaData()":{"role":"symbol","title":"makeMetaData()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeMetaData"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"ASObject","preciseIdentifier":"s:10HaishinKit8ASObjecta"}],"abstract":[{"type":"text","text":"Creates flv metadata for a stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/makeMetaData()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/makemetadata()"},"doc://HaishinKit/documentation/HaishinKit/ASObject":{"role":"symbol","title":"ASObject","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"ASObject"}],"abstract":[{"type":"text","text":"The ASObject class represents an object for AcrionScript."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/ASObject","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ASObject"}],"url":"\/documentation\/haishinkit\/asobject"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/objectencoding.json b/docs/data/documentation/haishinkit/rtmpstream/objectencoding.json deleted file mode 100644 index a33beb65f..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/objectencoding.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO","text":"RTMPObjectEncoding"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/objectencoding"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/objectEncoding","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The object encoding (AMF). Framework supports AMF0 only."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"title":"objectEncoding","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10RTMPStreamC14objectEncodingAA010RTMPObjectE0Ovp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/objectEncoding":{"role":"symbol","title":"objectEncoding","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectEncoding"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPObjectEncoding","preciseIdentifier":"s:10HaishinKit18RTMPObjectEncodingO"}],"abstract":[{"type":"text","text":"The object encoding (AMF). Framework supports AMF0 only."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/objectEncoding","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/objectencoding"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPObjectEncoding":{"role":"symbol","title":"RTMPObjectEncoding","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPObjectEncoding"}],"abstract":[{"type":"text","text":"Constans that defines the RTMPObject encoding type."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPObjectEncoding","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPObjectEncoding"}],"url":"\/documentation\/haishinkit\/rtmpobjectencoding"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/paused.json b/docs/data/documentation/haishinkit/rtmpstream/paused.json deleted file mode 100644 index 433f45432..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/paused.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/paused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/paused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Pauses playback or publish of a video stream or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"paused","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10RTMPStreamC6pausedSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/paused":{"role":"symbol","title":"paused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"paused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Pauses playback or publish of a video stream or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/paused","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/paused"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/play(_:).json b/docs/data/documentation/haishinkit/rtmpstream/play(_:).json deleted file mode 100644 index d3f3e73ea..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/play(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/play(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/play(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Plays a live stream from RTMPServer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"title":"play(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC4playyyypSgd_tF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/play(_:)":{"role":"symbol","title":"play(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Plays a live stream from RTMPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/play(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/play(_:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/publish(_:type:).json b/docs/data/documentation/haishinkit/rtmpstream/publish(_:type:).json deleted file mode 100644 index 62df031e9..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/publish(_:type:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream","text":"RTMPStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","preciseIdentifier":"s:10HaishinKit10RTMPStreamC12HowToPublishO","text":"HowToPublish"},{"kind":"text","text":" = .live)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/publish(_:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/publish(_:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sends streaming audio, vidoe and data message from client."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"HowToPublish","preciseIdentifier":"s:10HaishinKit10RTMPStreamC12HowToPublishO"},{"kind":"text","text":")"}],"title":"publish(_:type:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC7publish_4typeySSSg_AC12HowToPublishOtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/publish(_:type:)":{"role":"symbol","title":"publish(_:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"publish"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RTMPStream","preciseIdentifier":"c:@M@HaishinKit@objc(cs)RTMPStream"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"HowToPublish","preciseIdentifier":"s:10HaishinKit10RTMPStreamC12HowToPublishO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sends streaming audio, vidoe and data message from client."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/publish(_:type:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/publish(_:type:)"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/HowToPublish":{"role":"symbol","title":"RTMPStream.HowToPublish","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"HowToPublish"}],"abstract":[{"type":"text","text":"The type of publish options."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/HowToPublish","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HowToPublish"}],"url":"\/documentation\/haishinkit\/rtmpstream\/howtopublish"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/receiveaudio.json b/docs/data/documentation/haishinkit/rtmpstream/receiveaudio.json deleted file mode 100644 index 5e9c4d671..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/receiveaudio.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/receiveaudio"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveAudio","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Incoming audio plays on the stream or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"receiveAudio","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10RTMPStreamC12receiveAudioSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/receiveAudio":{"role":"symbol","title":"receiveAudio","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveAudio"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Incoming audio plays on the stream or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveAudio","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/receiveaudio"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/receivevideo.json b/docs/data/documentation/haishinkit/rtmpstream/receivevideo.json deleted file mode 100644 index d8c50dda5..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/receivevideo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/receivevideo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveVideo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Incoming video plays on the stream or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"receiveVideo","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10RTMPStreamC12receiveVideoSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/receiveVideo":{"role":"symbol","title":"receiveVideo","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"receiveVideo"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Incoming video plays on the stream or not."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/receiveVideo","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/receivevideo"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/removeeventlistener(_:selector:observer:usecapture:).json b/docs/data/documentation/haishinkit/rtmpstream/removeeventlistener(_:selector:observer:usecapture:).json deleted file mode 100644 index fdf329fc1..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/removeeventlistener(_:selector:observer:usecapture:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","preciseIdentifier":"s:10HaishinKit5EventC","text":"Event"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV","text":"Name"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/removeeventlistener(_:selector:observer:usecapture:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/removeEventListener(_:selector:observer:useCapture:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"EventDispatcherConvertible.removeEventListener(_:selector:observer:useCapture:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC19removeEventListener_8selector8observer10useCaptureyAA0E0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/EventDispatcherConvertible-Implementations":{"role":"collectionGroup","title":"EventDispatcherConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/EventDispatcherConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/eventdispatcherconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/Event/Name":{"role":"symbol","title":"Event.Name","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Name"}],"abstract":[{"type":"text","text":"A structure that defines the name of an event."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event\/Name","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Name"}],"url":"\/documentation\/haishinkit\/event\/name"},"doc://HaishinKit/documentation/HaishinKit/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"The Event interface is used to provide information."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/haishinkit\/event"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/removeEventListener(_:selector:observer:useCapture:)":{"role":"symbol","title":"removeEventListener(_:selector:observer:useCapture:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeEventListener"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:10HaishinKit5EventC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Name","preciseIdentifier":"s:10HaishinKit5EventC4NameV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"selector"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Selector","preciseIdentifier":"s:10ObjectiveC8SelectorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"observer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"useCapture"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/removeEventListener(_:selector:observer:useCapture:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/removeeventlistener(_:selector:observer:usecapture:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/seek(_:).json b/docs/data/documentation/haishinkit/rtmpstream/seek(_:).json deleted file mode 100644 index ea69490f2..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/seek(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"offset"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/seek(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/seek(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Seeks the keyframe."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"title":"seek(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC4seekyySdF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/seek(_:)":{"role":"symbol","title":"seek(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"seek"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Seeks the keyframe."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/seek(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/seek(_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/send(handlername:arguments:).json b/docs/data/documentation/haishinkit/rtmpstream/send(handlername:arguments:).json deleted file mode 100644 index af750c85b..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/send(handlername:arguments:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"externalParam","text":"handlerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/send(handlername:arguments:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/send(handlerName:arguments:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sends a message on a published stream to all subscribing clients."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"externalParam","text":"handlerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"title":"send(handlerName:arguments:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit10RTMPStreamC4send11handlerName9argumentsySS_ypSgdtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream/send(handlerName:arguments:)":{"role":"symbol","title":"send(handlerName:arguments:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"send"},{"kind":"text","text":"("},{"kind":"externalParam","text":"handlerName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arguments"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?...)"}],"abstract":[{"type":"text","text":"Sends a message on a published stream to all subscribing clients."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/send(handlerName:arguments:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/send(handlername:arguments:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstream/soundtransform.json b/docs/data/documentation/haishinkit/rtmpstream/soundtransform.json deleted file mode 100644 index 4d6c89803..000000000 --- a/docs/data/documentation/haishinkit/rtmpstream/soundtransform.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundTransform"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","preciseIdentifier":"s:10HaishinKit14SoundTransformV","text":"SoundTransform"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstream\/soundtransform"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/soundTransform","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the controls sound."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundTransform"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SoundTransform","preciseIdentifier":"s:10HaishinKit14SoundTransformV"}],"title":"soundTransform","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10RTMPStreamC14soundTransformAA05SoundE0Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStream":{"role":"symbol","title":"RTMPStream","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStream"}],"abstract":[{"type":"text","text":"An object that provides the interface to control a one-way channel over a RtmpConnection."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStream"}],"url":"\/documentation\/haishinkit\/rtmpstream"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStream/soundTransform":{"role":"symbol","title":"soundTransform","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"soundTransform"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SoundTransform","preciseIdentifier":"s:10HaishinKit14SoundTransformV"}],"abstract":[{"type":"text","text":"Specifies the controls sound."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStream\/soundTransform","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstream\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstreaminfo.json b/docs/data/documentation/haishinkit/rtmpstreaminfo.json deleted file mode 100644 index e57ce9083..000000000 --- a/docs/data/documentation/haishinkit/rtmpstreaminfo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstreaminfo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"title":"RTMPStreamInfo","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit14RTMPStreamInfoV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/byteCount","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/currentBytesPerSecond","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/resourceName"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/CustomDebugStringConvertible-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/currentBytesPerSecond":{"role":"symbol","title":"currentBytesPerSecond","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/currentBytesPerSecond","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/currentbytespersecond"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/resourceName":{"role":"symbol","title":"resourceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"resourceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/resourceName","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/resourcename"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/byteCount":{"role":"symbol","title":"byteCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"byteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/byteCount","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/bytecount"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstreaminfo/bytecount.json b/docs/data/documentation/haishinkit/rtmpstreaminfo/bytecount.json deleted file mode 100644 index a27a3f53d..000000000 --- a/docs/data/documentation/haishinkit/rtmpstreaminfo/bytecount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"byteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstreaminfo\/bytecount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/byteCount","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"byteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"title":"byteCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPStreamInfoV9byteCountAA6AtomicVys5Int64VGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/byteCount":{"role":"symbol","title":"byteCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"byteCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/byteCount","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/bytecount"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstreaminfo/currentbytespersecond.json b/docs/data/documentation/haishinkit/rtmpstreaminfo/currentbytespersecond.json deleted file mode 100644 index bc5f37406..000000000 --- a/docs/data/documentation/haishinkit/rtmpstreaminfo/currentbytespersecond.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstreaminfo\/currentbytespersecond"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/currentBytesPerSecond","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"currentBytesPerSecond","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPStreamInfoV21currentBytesPerSeconds5Int32Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/currentBytesPerSecond":{"role":"symbol","title":"currentBytesPerSecond","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentBytesPerSecond"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/currentBytesPerSecond","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/currentbytespersecond"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstreaminfo/customdebugstringconvertible-implementations.json b/docs/data/documentation/haishinkit/rtmpstreaminfo/customdebugstringconvertible-implementations.json deleted file mode 100644 index 6e7358e66..000000000 --- a/docs/data/documentation/haishinkit/rtmpstreaminfo/customdebugstringconvertible-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstreaminfo\/customdebugstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/CustomDebugStringConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/debugDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstreaminfo/debugdescription.json b/docs/data/documentation/haishinkit/rtmpstreaminfo/debugdescription.json deleted file mode 100644 index ee650f012..000000000 --- a/docs/data/documentation/haishinkit/rtmpstreaminfo/debugdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstreaminfo\/debugdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/debugDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomDebugStringConvertible.debugDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"debugDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:10HaishinKit14RTMPStreamInfoV16debugDescriptionSSvp","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/CustomDebugStringConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/rtmpstreaminfo/resourcename.json b/docs/data/documentation/haishinkit/rtmpstreaminfo/resourcename.json deleted file mode 100644 index 018db2a95..000000000 --- a/docs/data/documentation/haishinkit/rtmpstreaminfo/resourcename.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"resourceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/rtmpstreaminfo\/resourcename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/resourceName","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"resourceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"resourceName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14RTMPStreamInfoV12resourceNameSSSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo":{"role":"symbol","title":"RTMPStreamInfo","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"RTMPStreamInfo"}],"abstract":[{"type":"text","text":"flash.net.NetStreamInfo for Swift"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"RTMPStreamInfo"}],"url":"\/documentation\/haishinkit\/rtmpstreaminfo"},"doc://HaishinKit/documentation/HaishinKit/RTMPStreamInfo/resourceName":{"role":"symbol","title":"resourceName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"resourceName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/RTMPStreamInfo\/resourceName","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/rtmpstreaminfo\/resourcename"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/running.json b/docs/data/documentation/haishinkit/running.json deleted file mode 100644 index ae4840d05..000000000 --- a/docs/data/documentation/haishinkit/running.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/running"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A type that methods for running."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"title":"Running","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit7RunningP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Running"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/isRunning"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/startRunning()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/stopRunning()"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit/IOMixer":{"role":"symbol","title":"IOMixer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOMixer"}],"abstract":[{"type":"text","text":"An object that mixies audio and video for streaming."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOMixer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOMixer"}],"url":"\/documentation\/haishinkit\/iomixer"},"doc://HaishinKit/documentation/HaishinKit/Running/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Indicates whether the receiver is running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/isRunning","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/running\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/IOScreenCaptureUnit":{"role":"symbol","title":"IOScreenCaptureUnit","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"IOScreenCaptureUnit"}],"abstract":[{"type":"text","text":"The interface that provides methods to screen capture."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IOScreenCaptureUnit","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IOScreenCaptureUnit"}],"url":"\/documentation\/haishinkit\/ioscreencaptureunit"},"doc://HaishinKit/documentation/HaishinKit/Running/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Tells the receiver to stop running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/stopRunning()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/running\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/IORecorder":{"role":"symbol","title":"IORecorder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"IORecorder"}],"abstract":[{"type":"text","text":"The IORecorder class represents video and audio recorder."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/IORecorder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"IORecorder"}],"url":"\/documentation\/haishinkit\/iorecorder"},"doc://HaishinKit/documentation/HaishinKit/Running/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Tells the receiver to start running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/startRunning()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/running\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/HLSService":{"role":"symbol","title":"HLSService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HLSService"}],"abstract":[{"type":"text","text":"The HLSService class provide a simple HTTP Live Streaming service."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HLSService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HLSService"}],"url":"\/documentation\/haishinkit\/hlsservice"},"doc://HaishinKit/documentation/HaishinKit/NetService":{"role":"symbol","title":"NetService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"NetService"}],"abstract":[{"type":"text","text":"The NetService class creates a two-way connection between a client and a server as a server."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/NetService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"NetService"}],"url":"\/documentation\/haishinkit\/netservice"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/HTTPService":{"role":"symbol","title":"HTTPService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"HTTPService"}],"abstract":[{"type":"text","text":"The HTTPService class provide a lightweight HTTPServer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/HTTPService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"HTTPService"}],"url":"\/documentation\/haishinkit\/httpservice"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/running/isrunning.json b/docs/data/documentation/haishinkit/running/isrunning.json deleted file mode 100644 index aea7164fd..000000000 --- a/docs/data/documentation/haishinkit/running/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/running\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Indicates whether the receiver is running."}],"kind":"symbol","metadata":{"role":"symbol","title":"isRunning","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"symbolKind":"property","externalID":"s:10HaishinKit7RunningP02isC0AA6AtomicVySbGvp","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit/Running/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"Indicates whether the receiver is running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/isRunning","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/running\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/running/startrunning().json b/docs/data/documentation/haishinkit/running/startrunning().json deleted file mode 100644 index 2fbc10aa0..000000000 --- a/docs/data/documentation/haishinkit/running/startrunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/running\/startrunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/startRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to start running."}],"kind":"symbol","metadata":{"role":"symbol","title":"startRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit7RunningP05startC0yyF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Running/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Tells the receiver to start running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/startRunning()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/running\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/running/stoprunning().json b/docs/data/documentation/haishinkit/running/stoprunning().json deleted file mode 100644 index 5110b0734..000000000 --- a/docs/data/documentation/haishinkit/running/stoprunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/running\/stoprunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/stopRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to stop running."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit7RunningP04stopC0yyF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/Running/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Tells the receiver to stop running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running\/stopRunning()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/running\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/soundtransform.json b/docs/data/documentation/haishinkit/soundtransform.json deleted file mode 100644 index 32a7ce3a4..000000000 --- a/docs/data/documentation/haishinkit/soundtransform.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/soundtransform"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The SoundTransform class"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"title":"SoundTransform","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit14SoundTransformV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/pan","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/volume"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultPan","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultVolume"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/CustomDebugStringConvertible-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/volume":{"role":"symbol","title":"volume","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[{"type":"text","text":"The volume, ranging from 0 (silent) to 1 (full volume)"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/volume","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/volume"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/defaultVolume":{"role":"symbol","title":"defaultVolume","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVolume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultVolume","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/defaultvolume"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/pan":{"role":"symbol","title":"pan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[{"type":"text","text":"The panning of the sound"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/pan","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/pan"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/defaultPan":{"role":"symbol","title":"defaultPan","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultPan","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/defaultpan"},"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/soundtransform/customdebugstringconvertible-implementations.json b/docs/data/documentation/haishinkit/soundtransform/customdebugstringconvertible-implementations.json deleted file mode 100644 index be1ad3e97..000000000 --- a/docs/data/documentation/haishinkit/soundtransform/customdebugstringconvertible-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/soundtransform\/customdebugstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/CustomDebugStringConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/debugDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/soundtransform/debugdescription.json b/docs/data/documentation/haishinkit/soundtransform/debugdescription.json deleted file mode 100644 index 7bcc1ca2e..000000000 --- a/docs/data/documentation/haishinkit/soundtransform/debugdescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/soundtransform\/debugdescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/debugDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CustomDebugStringConvertible.debugDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"debugDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:10HaishinKit14SoundTransformV16debugDescriptionSSvp","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/CustomDebugStringConvertible-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/debugDescription":{"role":"symbol","title":"debugDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"debugDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/debugDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/debugdescription"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/CustomDebugStringConvertible-Implementations":{"role":"collectionGroup","title":"CustomDebugStringConvertible Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/CustomDebugStringConvertible-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/customdebugstringconvertible-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/soundtransform/defaultpan.json b/docs/data/documentation/haishinkit/soundtransform/defaultpan.json deleted file mode 100644 index 105656249..000000000 --- a/docs/data/documentation/haishinkit/soundtransform/defaultpan.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/soundtransform\/defaultpan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultPan","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"title":"defaultPan","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14SoundTransformV10defaultPanSfvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/defaultPan":{"role":"symbol","title":"defaultPan","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultPan","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/defaultpan"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/soundtransform/defaultvolume.json b/docs/data/documentation/haishinkit/soundtransform/defaultvolume.json deleted file mode 100644 index 27c8bde78..000000000 --- a/docs/data/documentation/haishinkit/soundtransform/defaultvolume.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVolume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/soundtransform\/defaultvolume"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultVolume","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVolume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"title":"defaultVolume","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14SoundTransformV13defaultVolumeSfvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/defaultVolume":{"role":"symbol","title":"defaultVolume","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVolume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/defaultVolume","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/defaultvolume"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/soundtransform/pan.json b/docs/data/documentation/haishinkit/soundtransform/pan.json deleted file mode 100644 index 8d9109b16..000000000 --- a/docs/data/documentation/haishinkit/soundtransform/pan.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/soundtransform\/pan"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/pan","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The panning of the sound"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"title":"pan","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14SoundTransformV3panSfvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/pan":{"role":"symbol","title":"pan","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"pan"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[{"type":"text","text":"The panning of the sound"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/pan","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/pan"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/soundtransform/volume.json b/docs/data/documentation/haishinkit/soundtransform/volume.json deleted file mode 100644 index 1e23e9fa2..000000000 --- a/docs/data/documentation/haishinkit/soundtransform/volume.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/soundtransform\/volume"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/volume","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The volume, ranging from 0 (silent) to 1 (full volume)"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"title":"volume","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit14SoundTransformV6volumeSfvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform":{"role":"symbol","title":"SoundTransform","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SoundTransform"}],"abstract":[{"type":"text","text":"The SoundTransform class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SoundTransform"}],"url":"\/documentation\/haishinkit\/soundtransform"},"doc://HaishinKit/documentation/HaishinKit/SoundTransform/volume":{"role":"symbol","title":"volume","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"volume"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Float","preciseIdentifier":"s:Sf"}],"abstract":[{"type":"text","text":"The volume, ranging from 0 (silent) to 1 (full volume)"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/SoundTransform\/volume","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/soundtransform\/volume"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreader.json b/docs/data/documentation/haishinkit/tsreader.json deleted file mode 100644 index 013b02422..000000000 --- a/docs/data/documentation/haishinkit/tsreader.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreader"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"title":"TSReader","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit8TSReaderC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"TSReader"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/init()"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/delegate"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/clear()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/read(_:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/TSReader/clear()":{"role":"symbol","title":"clear()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Clears the reader object for new transport stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/clear()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/clear()"},"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"},"doc://HaishinKit/documentation/HaishinKit/TSReader/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Create a new TSReader instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/init()"},"doc://HaishinKit/documentation/HaishinKit/TSReader/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"TSReaderDelegate","preciseIdentifier":"s:10HaishinKit16TSReaderDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/delegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSReader/read(_:)":{"role":"symbol","title":"read(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"read"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Reads transport-stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/read(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/read(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreader/clear().json b/docs/data/documentation/haishinkit/tsreader/clear().json deleted file mode 100644 index f5d43d295..000000000 --- a/docs/data/documentation/haishinkit/tsreader/clear().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreader\/clear()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/clear()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Clears the reader object for new transport stream."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"title":"clear()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit8TSReaderC5clearyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSReader/clear()":{"role":"symbol","title":"clear()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clear"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Clears the reader object for new transport stream."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/clear()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/clear()"},"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreader/delegate.json b/docs/data/documentation/haishinkit/tsreader/delegate.json deleted file mode 100644 index e278fe392..000000000 --- a/docs/data/documentation/haishinkit/tsreader/delegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","preciseIdentifier":"s:10HaishinKit16TSReaderDelegateP","text":"TSReaderDelegate"},{"kind":"text","text":")?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreader\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the delegate object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"TSReaderDelegate","preciseIdentifier":"s:10HaishinKit16TSReaderDelegateP"},{"kind":"text","text":")?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSReaderC8delegateAA0C8Delegate_pSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate":{"role":"symbol","title":"TSReaderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReaderDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReaderDelegate"}],"url":"\/documentation\/haishinkit\/tsreaderdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"},"doc://HaishinKit/documentation/HaishinKit/TSReader/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"TSReaderDelegate","preciseIdentifier":"s:10HaishinKit16TSReaderDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"Specifies the delegate object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/delegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreader/init().json b/docs/data/documentation/haishinkit/tsreader/init().json deleted file mode 100644 index d9a3ce8d3..000000000 --- a/docs/data/documentation/haishinkit/tsreader/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreader\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Create a new TSReader instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit8TSReaderCACycfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSReader/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Create a new TSReader instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/init()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/init()"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreader/read(_:).json b/docs/data/documentation/haishinkit/tsreader/read(_:).json deleted file mode 100644 index b4ae95100..000000000 --- a/docs/data/documentation/haishinkit/tsreader/read(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"read"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreader\/read(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/read(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Reads transport-stream data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"read"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"read(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit8TSReaderC4readySi10Foundation4DataVF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSReader/read(_:)":{"role":"symbol","title":"read(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"read"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Reads transport-stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader\/read(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tsreader\/read(_:)"},"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreaderdelegate.json b/docs/data/documentation/haishinkit/tsreaderdelegate.json deleted file mode 100644 index 8dbd77648..000000000 --- a/docs/data/documentation/haishinkit/tsreaderdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReaderDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreaderdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReaderDelegate"}],"title":"TSReaderDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit16TSReaderDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"TSReaderDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-37ztb","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-5kxz9"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate/reader(_:id:didRead:)-37ztb":{"role":"symbol","title":"reader(_:id:didRead:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-37ztb","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-37ztb"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate":{"role":"symbol","title":"TSReaderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReaderDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReaderDelegate"}],"url":"\/documentation\/haishinkit\/tsreaderdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate/reader(_:id:didRead:)-5kxz9":{"role":"symbol","title":"reader(_:id:didRead:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-5kxz9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-5kxz9"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-37ztb.json b/docs/data/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-37ztb.json deleted file mode 100644 index c66599b01..000000000 --- a/docs/data/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-37ztb.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"reader"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC","text":"TSReader"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":" "},{"kind":"internalParam","text":"formatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-37ztb"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-37ztb","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"reader(_:id:didRead:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit16TSReaderDelegateP6reader_2id7didReadyAA0C0C_s6UInt16VSo22CMFormatDescriptionRefatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate/reader(_:id:didRead:)-37ztb":{"role":"symbol","title":"reader(_:id:didRead:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-37ztb","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-37ztb"},"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"},"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate":{"role":"symbol","title":"TSReaderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReaderDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReaderDelegate"}],"url":"\/documentation\/haishinkit\/tsreaderdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-5kxz9.json b/docs/data/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-5kxz9.json deleted file mode 100644 index eb82a0f79..000000000 --- a/docs/data/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-5kxz9.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"reader"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC","text":"TSReader"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-5kxz9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-5kxz9","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"reader(_:id:didRead:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit16TSReaderDelegateP6reader_2id7didReadyAA0C0C_s6UInt16VSo17CMSampleBufferRefatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSReader":{"role":"symbol","title":"TSReader","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReader"}],"abstract":[{"type":"text","text":"The TSReader class represents read MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReader","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReader"}],"url":"\/documentation\/haishinkit\/tsreader"},"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate":{"role":"symbol","title":"TSReaderDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSReaderDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSReaderDelegate"}],"url":"\/documentation\/haishinkit\/tsreaderdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSReaderDelegate/reader(_:id:didRead:)-5kxz9":{"role":"symbol","title":"reader(_:id:didRead:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reader"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSReader","preciseIdentifier":"s:10HaishinKit8TSReaderC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRead"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSReaderDelegate\/reader(_:id:didRead:)-5kxz9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-5kxz9"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter.json b/docs/data/documentation/haishinkit/tswriter.json deleted file mode 100644 index 109b8bbd4..000000000 --- a/docs/data/documentation/haishinkit/tswriter.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"title":"TSWriter","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit8TSWriterC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"TSWriter"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/init(segmentDuration:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/delegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/expectedMedias","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/isRunning"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/startRunning()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/stopRunning()"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultAudioPID","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPATPID","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPMTPID","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultSegmentDuration","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultVideoPID"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"TSWriterDelegate","preciseIdentifier":"s:10HaishinKit16TSWriterDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"The delegate instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/delegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultSegmentDuration":{"role":"symbol","title":"defaultSegmentDuration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSegmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultSegmentDuration","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultsegmentduration"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This instance is running to process(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/VideoCodecDelegate-Implementations":{"role":"collectionGroup","title":"VideoCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodecdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultPATPID":{"role":"symbol","title":"defaultPATPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPATPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPATPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultpatpid"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultAudioPID":{"role":"symbol","title":"defaultAudioPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultAudioPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultaudiopid"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/AudioCodecDelegate-Implementations":{"role":"collectionGroup","title":"AudioCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodecdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultPMTPID":{"role":"symbol","title":"defaultPMTPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPMTPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPMTPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultpmtpid"},"doc://HaishinKit/documentation/HaishinKit/AudioCodecDelegate":{"role":"symbol","title":"AudioCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a AudioCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodecDelegate"}],"url":"\/documentation\/haishinkit\/audiocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/init(segmentDuration:)":{"role":"symbol","title":"init(segmentDuration:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"segmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/init(segmentDuration:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/init(segmentduration:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultVideoPID":{"role":"symbol","title":"defaultVideoPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultVideoPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultvideopid"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/expectedMedias":{"role":"symbol","title":"expectedMedias","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The exptected medias = [.video, .audio]."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/expectedMedias","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/expectedmedias"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/audiocodec(_:didoutput:).json b/docs/data/documentation/haishinkit/tswriter/audiocodec(_:didoutput:).json deleted file mode 100644 index e1a2bc0cb..000000000 --- a/docs/data/documentation/haishinkit/tswriter/audiocodec(_:didoutput:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"outputFormat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AudioCodecDelegate.audioCodec(_:didOutput:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"audioCodec(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC10audioCodec_9didOutputyAA05AudioE0C_So13AVAudioFormatCtF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/audioCodec(_:didOutput:)":{"role":"symbol","title":"audioCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/AudioCodecDelegate-Implementations":{"role":"collectionGroup","title":"AudioCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodecdelegate-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/audiocodec(_:didoutput:presentationtimestamp:).json b/docs/data/documentation/haishinkit/tswriter/audiocodec(_:didoutput:presentationtimestamp:).json deleted file mode 100644 index 212c1ff3f..000000000 --- a/docs/data/documentation/haishinkit/tswriter/audiocodec(_:didoutput:presentationtimestamp:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"audioBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:presentationtimestamp:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:presentationTimeStamp:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AudioCodecDelegate.audioCodec(_:didOutput:presentationTimeStamp:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"audioCodec(_:didOutput:presentationTimeStamp:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC10audioCodec_9didOutput21presentationTimeStampyAA05AudioE0C_So13AVAudioBufferCSo6CMTimeatF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/audioCodec(_:didOutput:presentationTimeStamp:)":{"role":"symbol","title":"audioCodec(_:didOutput:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:presentationTimeStamp:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:presentationtimestamp:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/AudioCodecDelegate-Implementations":{"role":"collectionGroup","title":"AudioCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodecdelegate-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/audiocodec(_:erroroccurred:).json b/docs/data/documentation/haishinkit/tswriter/audiocodec(_:erroroccurred:).json deleted file mode 100644 index 26576690d..000000000 --- a/docs/data/documentation/haishinkit/tswriter/audiocodec(_:erroroccurred:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC","text":"AudioCodec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO","text":"Error"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/audiocodec(_:erroroccurred:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:errorOccurred:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AudioCodecDelegate.audioCodec(_:errorOccurred:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"audioCodec(_:errorOccurred:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC10audioCodec_13errorOccurredyAA05AudioE0C_AG5ErrorOtF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec/Error":{"role":"symbol","title":"AudioCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The AudioCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/audiocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/AudioCodecDelegate-Implementations":{"role":"collectionGroup","title":"AudioCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodecdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/AudioCodec":{"role":"symbol","title":"AudioCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AudioCodec"}],"abstract":[{"type":"text","text":"The AudioCodec translate audio data to another format."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/AudioCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AudioCodec"}],"url":"\/documentation\/haishinkit\/audiocodec"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/audioCodec(_:errorOccurred:)":{"role":"symbol","title":"audioCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:errorOccurred:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/audiocodecdelegate-implementations.json b/docs/data/documentation/haishinkit/tswriter/audiocodecdelegate-implementations.json deleted file mode 100644 index 2833c62ba..000000000 --- a/docs/data/documentation/haishinkit/tswriter/audiocodecdelegate-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/audiocodecdelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/AudioCodecDelegate-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:presentationTimeStamp:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:errorOccurred:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"AudioCodecDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter/audioCodec(_:errorOccurred:)":{"role":"symbol","title":"audioCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10AudioCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:errorOccurred:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/audioCodec(_:didOutput:)":{"role":"symbol","title":"audioCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioFormat","preciseIdentifier":"c:objc(cs)AVAudioFormat"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/audioCodec(_:didOutput:presentationTimeStamp:)":{"role":"symbol","title":"audioCodec(_:didOutput:presentationTimeStamp:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"audioCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AudioCodec","preciseIdentifier":"s:10HaishinKit10AudioCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AVAudioBuffer","preciseIdentifier":"c:objc(cs)AVAudioBuffer"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presentationTimeStamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/audioCodec(_:didOutput:presentationTimeStamp:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:presentationtimestamp:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/defaultaudiopid.json b/docs/data/documentation/haishinkit/tswriter/defaultaudiopid.json deleted file mode 100644 index 4ff61915b..000000000 --- a/docs/data/documentation/haishinkit/tswriter/defaultaudiopid.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/defaultaudiopid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultAudioPID","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"title":"defaultAudioPID","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC15defaultAudioPIDs6UInt16VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultAudioPID":{"role":"symbol","title":"defaultAudioPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAudioPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultAudioPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultaudiopid"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/defaultpatpid.json b/docs/data/documentation/haishinkit/tswriter/defaultpatpid.json deleted file mode 100644 index b2ef3156c..000000000 --- a/docs/data/documentation/haishinkit/tswriter/defaultpatpid.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPATPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/defaultpatpid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPATPID","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPATPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"title":"defaultPATPID","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC13defaultPATPIDs6UInt16VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultPATPID":{"role":"symbol","title":"defaultPATPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPATPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPATPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultpatpid"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/defaultpmtpid.json b/docs/data/documentation/haishinkit/tswriter/defaultpmtpid.json deleted file mode 100644 index 70cb9a239..000000000 --- a/docs/data/documentation/haishinkit/tswriter/defaultpmtpid.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPMTPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/defaultpmtpid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPMTPID","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPMTPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"title":"defaultPMTPID","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC13defaultPMTPIDs6UInt16VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultPMTPID":{"role":"symbol","title":"defaultPMTPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultPMTPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultPMTPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultpmtpid"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/defaultsegmentduration.json b/docs/data/documentation/haishinkit/tswriter/defaultsegmentduration.json deleted file mode 100644 index a0ff8f562..000000000 --- a/docs/data/documentation/haishinkit/tswriter/defaultsegmentduration.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSegmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/defaultsegmentduration"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultSegmentDuration","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSegmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"defaultSegmentDuration","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC22defaultSegmentDurationSdvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultSegmentDuration":{"role":"symbol","title":"defaultSegmentDuration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultSegmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultSegmentDuration","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultsegmentduration"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/defaultvideopid.json b/docs/data/documentation/haishinkit/tswriter/defaultvideopid.json deleted file mode 100644 index f79e1cb7c..000000000 --- a/docs/data/documentation/haishinkit/tswriter/defaultvideopid.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/defaultvideopid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultVideoPID","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"title":"defaultVideoPID","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC15defaultVideoPIDs6UInt16VvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter/defaultVideoPID":{"role":"symbol","title":"defaultVideoPID","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultVideoPID"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt16","preciseIdentifier":"s:s6UInt16V"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/defaultVideoPID","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/defaultvideopid"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/delegate.json b/docs/data/documentation/haishinkit/tswriter/delegate.json deleted file mode 100644 index 68a51d43b..000000000 --- a/docs/data/documentation/haishinkit/tswriter/delegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","preciseIdentifier":"s:10HaishinKit16TSWriterDelegateP","text":"TSWriterDelegate"},{"kind":"text","text":")?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The delegate instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"TSWriterDelegate","preciseIdentifier":"s:10HaishinKit16TSWriterDelegateP"},{"kind":"text","text":")?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC8delegateAA0C8Delegate_pSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate":{"role":"symbol","title":"TSWriterDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriterDelegate"}],"url":"\/documentation\/haishinkit\/tswriterdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"TSWriterDelegate","preciseIdentifier":"s:10HaishinKit16TSWriterDelegateP"},{"kind":"text","text":")?"}],"abstract":[{"type":"text","text":"The delegate instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/delegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/expectedmedias.json b/docs/data/documentation/haishinkit/tswriter/expectedmedias.json deleted file mode 100644 index f82377c08..000000000 --- a/docs/data/documentation/haishinkit/tswriter/expectedmedias.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/expectedmedias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/expectedMedias","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The exptected medias = [.video, .audio]."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":">"}],"title":"expectedMedias","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC14expectedMediasShySo11AVMediaTypeaGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/expectedMedias":{"role":"symbol","title":"expectedMedias","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"expectedMedias"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"AVMediaType","preciseIdentifier":"c:@T@AVMediaType"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The exptected medias = [.video, .audio]."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/expectedMedias","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/expectedmedias"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/init(segmentduration:).json b/docs/data/documentation/haishinkit/tswriter/init(segmentduration:).json deleted file mode 100644 index fc2485356..000000000 --- a/docs/data/documentation/haishinkit/tswriter/init(segmentduration:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"segmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" = TSWriter.defaultSegmentDuration)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/init(segmentduration:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/init(segmentDuration:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"segmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"title":"init(segmentDuration:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit8TSWriterC15segmentDurationACSd_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/init(segmentDuration:)":{"role":"symbol","title":"init(segmentDuration:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"segmentDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/init(segmentDuration:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/init(segmentduration:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/isrunning.json b/docs/data/documentation/haishinkit/tswriter/isrunning.json deleted file mode 100644 index 214311993..000000000 --- a/docs/data/documentation/haishinkit/tswriter/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This instance is running to process(true) or not(false)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"title":"isRunning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit8TSWriterC9isRunningAA6AtomicVySbGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This instance is running to process(true) or not(false)."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/startrunning().json b/docs/data/documentation/haishinkit/tswriter/startrunning().json deleted file mode 100644 index 34394de43..000000000 --- a/docs/data/documentation/haishinkit/tswriter/startrunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/startrunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/startRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.startRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"title":"startRunning()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC12startRunningyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/stoprunning().json b/docs/data/documentation/haishinkit/tswriter/stoprunning().json deleted file mode 100644 index 0724358a5..000000000 --- a/docs/data/documentation/haishinkit/tswriter/stoprunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/stoprunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/stopRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.stopRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"title":"stopRunning()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC11stopRunningyyF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-4cwlf.json b/docs/data/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-4cwlf.json deleted file mode 100644 index 42577b750..000000000 --- a/docs/data/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-4cwlf.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"formatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-4cwlf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-4cwlf","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"VideoCodecDelegate.videoCodec(_:didOutput:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodec(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC10videoCodec_9didOutputyAA05VideoE0C_So22CMFormatDescriptionRefaSgtF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodec(_:didOutput:)-4cwlf":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-4cwlf","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-4cwlf"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/VideoCodecDelegate-Implementations":{"role":"collectionGroup","title":"VideoCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodecdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-7embq.json b/docs/data/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-7embq.json deleted file mode 100644 index 09cacabc9..000000000 --- a/docs/data/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-7embq.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-7embq"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-7embq","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"VideoCodecDelegate.videoCodec(_:didOutput:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodec(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC10videoCodec_9didOutputyAA05VideoE0C_So17CMSampleBufferRefatF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/VideoCodecDelegate-Implementations":{"role":"collectionGroup","title":"VideoCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodecdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodec(_:didOutput:)-7embq":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-7embq","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-7embq"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/videocodec(_:erroroccurred:).json b/docs/data/documentation/haishinkit/tswriter/videocodec(_:erroroccurred:).json deleted file mode 100644 index c080e31f4..000000000 --- a/docs/data/documentation/haishinkit/tswriter/videocodec(_:erroroccurred:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO","text":"Error"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/videocodec(_:erroroccurred:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:errorOccurred:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"VideoCodecDelegate.videoCodec(_:errorOccurred:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodec(_:errorOccurred:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC10videoCodec_13errorOccurredyAA05VideoE0C_AG5ErrorOtF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodec(_:errorOccurred:)":{"role":"symbol","title":"videoCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:errorOccurred:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/VideoCodecDelegate-Implementations":{"role":"collectionGroup","title":"VideoCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodecdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/videocodecdelegate-implementations.json b/docs/data/documentation/haishinkit/tswriter/videocodecdelegate-implementations.json deleted file mode 100644 index bdeca688d..000000000 --- a/docs/data/documentation/haishinkit/tswriter/videocodecdelegate-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/videocodecdelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-4cwlf","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-7embq","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:errorOccurred:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodecWillDropFame(_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"VideoCodecDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodec(_:didOutput:)-4cwlf":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-4cwlf","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-4cwlf"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodec(_:errorOccurred:)":{"role":"symbol","title":"videoCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:errorOccurred:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodec(_:didOutput:)-7embq":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodec(_:didOutput:)-7embq","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-7embq"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodecWillDropFame(_:)":{"role":"symbol","title":"videoCodecWillDropFame(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodecWillDropFame(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodecwilldropfame(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriter/videocodecwilldropfame(_:).json b/docs/data/documentation/haishinkit/tswriter/videocodecwilldropfame(_:).json deleted file mode 100644 index b87d11ec2..000000000 --- a/docs/data/documentation/haishinkit/tswriter/videocodecwilldropfame(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriter\/videocodecwilldropfame(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodecWillDropFame(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"VideoCodecDelegate.videoCodecWillDropFame(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodecWillDropFame(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","externalID":"s:10HaishinKit8TSWriterC22videoCodecWillDropFameySbAA05VideoE0CF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/VideoCodecDelegate-Implementations":{"role":"collectionGroup","title":"VideoCodecDelegate Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/VideoCodecDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodecdelegate-implementations"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/TSWriter/videoCodecWillDropFame(_:)":{"role":"symbol","title":"videoCodecWillDropFame(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter\/videoCodecWillDropFame(_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriter\/videocodecwilldropfame(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriterdelegate.json b/docs/data/documentation/haishinkit/tswriterdelegate.json deleted file mode 100644 index 5eddc0fb0..000000000 --- a/docs/data/documentation/haishinkit/tswriterdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriterdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"}],"title":"TSWriterDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit16TSWriterDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"TSWriterDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didOutput:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-7ieyz"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate/writer(_:didOutput:)":{"role":"symbol","title":"writer(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didOutput:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didoutput:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate":{"role":"symbol","title":"TSWriterDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriterDelegate"}],"url":"\/documentation\/haishinkit\/tswriterdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate/writer(_:didRotateFileHandle:)-7ieyz":{"defaultImplementations":1,"role":"symbol","title":"writer(_:didRotateFileHandle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-7ieyz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-7ieyz"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didoutput:).json b/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didoutput:).json deleted file mode 100644 index a180761c5..000000000 --- a/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didoutput:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"writer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC","text":"TSWriter"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didoutput:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didOutput:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"writer(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit16TSWriterDelegateP6writer_9didOutputyAA0C0C_10Foundation4DataVtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate":{"role":"symbol","title":"TSWriterDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriterDelegate"}],"url":"\/documentation\/haishinkit\/tswriterdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate/writer(_:didOutput:)":{"role":"symbol","title":"writer(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didOutput:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didoutput:)"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-17rsg.json b/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-17rsg.json deleted file mode 100644 index da6ff0281..000000000 --- a/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-17rsg.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"writer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC","text":"TSWriter"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":" "},{"kind":"internalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-17rsg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-17rsg","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"writer(_:didRotateFileHandle:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit16TSWriterDelegatePAAE6writer_19didRotateFileHandleyAA0C0C_So6CMTimeatF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-7ieyz"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate/writer(_:didRotateFileHandle:)-7ieyz":{"defaultImplementations":1,"role":"symbol","title":"writer(_:didRotateFileHandle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-7ieyz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-7ieyz"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate":{"role":"symbol","title":"TSWriterDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriterDelegate"}],"url":"\/documentation\/haishinkit\/tswriterdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate/writer(_:didRotateFileHandle:)-17rsg":{"role":"symbol","title":"writer(_:didRotateFileHandle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-17rsg","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-17rsg"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-7ieyz.json b/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-7ieyz.json deleted file mode 100644 index ceb2f09c0..000000000 --- a/docs/data/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-7ieyz.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"writer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC","text":"TSWriter"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":" "},{"kind":"internalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-7ieyz"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"TSWriterDelegate Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-17rsg"]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-7ieyz","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"writer(_:didRotateFileHandle:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit16TSWriterDelegateP6writer_19didRotateFileHandleyAA0C0C_So6CMTimeatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate":{"role":"symbol","title":"TSWriterDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriterDelegate"}],"abstract":[{"type":"text","text":"The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriterDelegate"}],"url":"\/documentation\/haishinkit\/tswriterdelegate"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate/writer(_:didRotateFileHandle:)-7ieyz":{"defaultImplementations":1,"role":"symbol","title":"writer(_:didRotateFileHandle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-7ieyz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-7ieyz"},"doc://HaishinKit/documentation/HaishinKit/TSWriterDelegate/writer(_:didRotateFileHandle:)-17rsg":{"role":"symbol","title":"writer(_:didRotateFileHandle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writer"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TSWriter","preciseIdentifier":"s:10HaishinKit8TSWriterC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didRotateFileHandle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMTime","preciseIdentifier":"c:@SA@CMTime"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriterDelegate\/writer(_:didRotateFileHandle:)-17rsg","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-17rsg"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec.json b/docs/data/documentation/haishinkit/videocodec.json deleted file mode 100644 index b13e35bfd..000000000 --- a/docs/data/documentation/haishinkit/videocodec.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"title":"VideoCodec","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:10HaishinKit10VideoCodecC","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/isRunning","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/settings"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/defaultAttributes"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Running-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec/settings":{"role":"symbol","title":"settings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the settings for a VideoCodec."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/settings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/settings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The running value indicating whether the VideoCodec is running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/defaultAttributes":{"role":"symbol","title":"defaultAttributes","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"The videoCodec’s attributes value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/defaultAttributes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/defaultattributes"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/Running":{"role":"symbol","title":"Running","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Running"}],"abstract":[{"type":"text","text":"A type that methods for running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Running","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Running"}],"url":"\/documentation\/haishinkit\/running"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/defaultattributes.json b/docs/data/documentation/haishinkit/videocodec/defaultattributes.json deleted file mode 100644 index 19b595139..000000000 --- a/docs/data/documentation/haishinkit/videocodec/defaultattributes.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/defaultattributes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/defaultAttributes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The videoCodec’s attributes value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]?"}],"title":"defaultAttributes","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10VideoCodecC17defaultAttributesSDySo8NSStringCyXlGSgvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/defaultAttributes":{"role":"symbol","title":"defaultAttributes","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"defaultAttributes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"NSString","preciseIdentifier":"c:objc(cs)NSString"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"AnyObject","preciseIdentifier":"s:s9AnyObjecta"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"The videoCodec’s attributes value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/defaultAttributes","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/defaultattributes"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/error.json b/docs/data/documentation/haishinkit/videocodec/error.json deleted file mode 100644 index 726dd72a4..000000000 --- a/docs/data/documentation/haishinkit/videocodec/error.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/s5ErrorP","doc:\/\/HaishinKit\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"title":"VideoCodec.Error","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit10VideoCodecC5ErrorO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"Error"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToCreate(status:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToFlame(status:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToPrepare(status:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToSetOption(status:option:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/Error-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToSetOption(status:option:)":{"role":"symbol","title":"VideoCodec.Error.failedToSetOption(status:option:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToSetOption"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":", "},{"kind":"externalParam","text":"option"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to set an option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToSetOption(status:option:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtosetoption(status:option:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToPrepare(status:)":{"role":"symbol","title":"VideoCodec.Error.failedToPrepare(status:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToPrepare"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to prepare the VTSession."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToPrepare(status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtoprepare(status:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToCreate(status:)":{"role":"symbol","title":"VideoCodec.Error.failedToCreate(status:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to create the VTSession."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToCreate(status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtocreate(status:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToFlame(status:)":{"role":"symbol","title":"VideoCodec.Error.failedToFlame(status:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFlame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to encode or decode a flame."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToFlame(status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtoflame(status:)"},"doc://HaishinKit/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/HaishinKit\/s5ErrorP"},"doc://HaishinKit/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/HaishinKit\/s8SendableP"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/error-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/error/error-implementations.json b/docs/data/documentation/haishinkit/videocodec/error/error-implementations.json deleted file mode 100644 index 09c7458f1..000000000 --- a/docs/data/documentation/haishinkit/videocodec/error/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/error\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/localizeddescription"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/error/failedtocreate(status:).json b/docs/data/documentation/haishinkit/videocodec/error/failedtocreate(status:).json deleted file mode 100644 index 6d14a6e2a..000000000 --- a/docs/data/documentation/haishinkit/videocodec/error/failedtocreate(status:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/error\/failedtocreate(status:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToCreate(status:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The VideoCodec failed to create the VTSession."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"title":"VideoCodec.Error.failedToCreate(status:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10VideoCodecC5ErrorO14failedToCreateyAEs5Int32V_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToCreate(status:)":{"role":"symbol","title":"VideoCodec.Error.failedToCreate(status:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToCreate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to create the VTSession."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToCreate(status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtocreate(status:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/error/failedtoflame(status:).json b/docs/data/documentation/haishinkit/videocodec/error/failedtoflame(status:).json deleted file mode 100644 index 853860f10..000000000 --- a/docs/data/documentation/haishinkit/videocodec/error/failedtoflame(status:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFlame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/error\/failedtoflame(status:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToFlame(status:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The VideoCodec failed to encode or decode a flame."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFlame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"title":"VideoCodec.Error.failedToFlame(status:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10VideoCodecC5ErrorO13failedToFlameyAEs5Int32V_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToFlame(status:)":{"role":"symbol","title":"VideoCodec.Error.failedToFlame(status:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToFlame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to encode or decode a flame."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToFlame(status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtoflame(status:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/error/failedtoprepare(status:).json b/docs/data/documentation/haishinkit/videocodec/error/failedtoprepare(status:).json deleted file mode 100644 index d772e5596..000000000 --- a/docs/data/documentation/haishinkit/videocodec/error/failedtoprepare(status:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToPrepare"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/error\/failedtoprepare(status:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToPrepare(status:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The VideoCodec failed to prepare the VTSession."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToPrepare"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"title":"VideoCodec.Error.failedToPrepare(status:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10VideoCodecC5ErrorO15failedToPrepareyAEs5Int32V_tcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToPrepare(status:)":{"role":"symbol","title":"VideoCodec.Error.failedToPrepare(status:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToPrepare"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to prepare the VTSession."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToPrepare(status:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtoprepare(status:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/error/failedtosetoption(status:option:).json b/docs/data/documentation/haishinkit/videocodec/error/failedtosetoption(status:option:).json deleted file mode 100644 index 7f2d28e8f..000000000 --- a/docs/data/documentation/haishinkit/videocodec/error/failedtosetoption(status:option:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToSetOption"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":", "},{"kind":"externalParam","text":"option"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV","text":"VTSessionOption"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/error\/failedtosetoption(status:option:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToSetOption(status:option:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The VideoCodec failed to set an option."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToSetOption"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":", "},{"kind":"externalParam","text":"option"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":")"}],"title":"VideoCodec.Error.failedToSetOption(status:option:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit10VideoCodecC5ErrorO17failedToSetOptionyAEs5Int32V_AA09VTSessionI0VtcAEmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/failedToSetOption(status:option:)":{"role":"symbol","title":"VideoCodec.Error.failedToSetOption(status:option:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToSetOption"},{"kind":"text","text":"("},{"kind":"externalParam","text":"status"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OSStatus","preciseIdentifier":"c:@T@OSStatus"},{"kind":"text","text":", "},{"kind":"externalParam","text":"option"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The VideoCodec failed to set an option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/failedToSetOption(status:option:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/failedtosetoption(status:option:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/error/localizeddescription.json b/docs/data/documentation/haishinkit/videocodec/error/localizeddescription.json deleted file mode 100644 index 9da9af376..000000000 --- a/docs/data/documentation/haishinkit/videocodec/error/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/error\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"HaishinKit","relatedModules":["Swift"]}],"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:10HaishinKit10VideoCodecC5ErrorO","extendedModule":"Swift","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"8.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.10","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"9.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"2.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/Error-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/localizeddescription"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/error\/error-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/isrunning.json b/docs/data/documentation/haishinkit/videocodec/isrunning.json deleted file mode 100644 index 69d241676..000000000 --- a/docs/data/documentation/haishinkit/videocodec/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV","text":"Atomic"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"> { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The running value indicating whether the VideoCodec is running."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"title":"isRunning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10VideoCodecC9isRunningAA6AtomicVySbGvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Atomic","preciseIdentifier":"s:10HaishinKit6AtomicV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"The running value indicating whether the VideoCodec is running."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/isrunning"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/Atomic":{"role":"symbol","title":"Atomic","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Atomic"}],"abstract":[{"type":"text","text":"Atomic"},{"type":"text","text":" class"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/Atomic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Atomic"}],"url":"\/documentation\/haishinkit\/atomic"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/running-implementations.json b/docs/data/documentation/haishinkit/videocodec/running-implementations.json deleted file mode 100644 index 9f3386f07..000000000 --- a/docs/data/documentation/haishinkit/videocodec/running-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/running-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Running-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/startRunning()","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/stopRunning()"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Running Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/startrunning()"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/stoprunning()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/settings.json b/docs/data/documentation/haishinkit/videocodec/settings.json deleted file mode 100644 index 9c707566a..000000000 --- a/docs/data/documentation/haishinkit/videocodec/settings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV","text":"VideoCodecSettings"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/settings"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/settings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the settings for a VideoCodec."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"title":"settings","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit10VideoCodecC8settingsAA0cD8SettingsVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/settings":{"role":"symbol","title":"settings","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"settings"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"abstract":[{"type":"text","text":"Specifies the settings for a VideoCodec."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/settings","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/settings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/startrunning().json b/docs/data/documentation/haishinkit/videocodec/startrunning().json deleted file mode 100644 index 19859b951..000000000 --- a/docs/data/documentation/haishinkit/videocodec/startrunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/startrunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/startRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.startRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"startRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10VideoCodecC12startRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/running-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/startRunning()":{"role":"symbol","title":"startRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"startRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/startRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/startrunning()"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodec/stoprunning().json b/docs/data/documentation/haishinkit/videocodec/stoprunning().json deleted file mode 100644 index 312b3c4a2..000000000 --- a/docs/data/documentation/haishinkit/videocodec/stoprunning().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodec\/stoprunning()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/stopRunning()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Running.stopRunning()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"stopRunning()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:10HaishinKit10VideoCodecC11stopRunningyyF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Running-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/stopRunning()":{"role":"symbol","title":"stopRunning()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopRunning"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/stopRunning()","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/stoprunning()"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Running-Implementations":{"role":"collectionGroup","title":"Running Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Running-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodec\/running-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecdelegate.json b/docs/data/documentation/haishinkit/videocodecdelegate.json deleted file mode 100644 index 994b6cbdc..000000000 --- a/docs/data/documentation/haishinkit/videocodecdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"title":"VideoCodecDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:10HaishinKit18VideoCodecDelegateP","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-7sbpr","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-879c7","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:errorOccurred:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodecWillDropFame(_:)"]}],"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodecWillDropFame(_:)":{"role":"symbol","title":"videoCodecWillDropFame(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Tells the receiver to drop frame."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodecWillDropFame(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodecwilldropfame(_:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodec(_:errorOccurred:)":{"role":"symbol","title":"videoCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to occured an error."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:errorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodec(_:didOutput:)-7sbpr":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output an encoded or decoded sampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-7sbpr","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-7sbpr"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodec(_:didOutput:)-879c7":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Tells the receiver to set a formatDescription."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-879c7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-879c7"},"doc://HaishinKit/documentation/HaishinKit/TSWriter":{"role":"symbol","title":"TSWriter","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TSWriter"}],"abstract":[{"type":"text","text":"The TSWriter class represents writes MPEG-2 transport stream data."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/TSWriter","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TSWriter"}],"url":"\/documentation\/haishinkit\/tswriter"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-7sbpr.json b/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-7sbpr.json deleted file mode 100644 index 319e75560..000000000 --- a/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-7sbpr.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"sampleBuffer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-7sbpr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-7sbpr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to output an encoded or decoded sampleBuffer."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodec(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit18VideoCodecDelegateP05videoD0_9didOutputyAA0cD0C_So17CMSampleBufferRefatF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodec(_:didOutput:)-7sbpr":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to output an encoded or decoded sampleBuffer."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-7sbpr","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-7sbpr"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-879c7.json b/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-879c7.json deleted file mode 100644 index cd56eaed1..000000000 --- a/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-879c7.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":" "},{"kind":"internalParam","text":"formatDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-879c7"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-879c7","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to set a formatDescription."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodec(_:didOutput:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:10HaishinKit18VideoCodecDelegateP05videoD0_9didOutputyAA0cD0C_So22CMFormatDescriptionRefaSgtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodec(_:didOutput:)-879c7":{"role":"symbol","title":"videoCodec(_:didOutput:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOutput"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMFormatDescription","preciseIdentifier":"c:@T@CMFormatDescriptionRef"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"Tells the receiver to set a formatDescription."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:didOutput:)-879c7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-879c7"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:erroroccurred:).json b/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:erroroccurred:).json deleted file mode 100644 index 882c1004c..000000000 --- a/docs/data/documentation/haishinkit/videocodecdelegate/videocodec(_:erroroccurred:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO","text":"Error"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:erroroccurred:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:errorOccurred:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to occured an error."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodec(_:errorOccurred:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit18VideoCodecDelegateP05videoD0_13errorOccurredyAA0cD0C_AG5ErrorOtF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec/Error":{"role":"symbol","title":"VideoCodec.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"text","text":"The VideoCodec error domain codes."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/haishinkit\/videocodec\/error"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodec(_:errorOccurred:)":{"role":"symbol","title":"videoCodec(_:errorOccurred:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodec"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"errorOccurred"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:10HaishinKit10VideoCodecC5ErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Tells the receiver to occured an error."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodec(_:errorOccurred:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:erroroccurred:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecdelegate/videocodecwilldropfame(_:).json b/docs/data/documentation/haishinkit/videocodecdelegate/videocodecwilldropfame(_:).json deleted file mode 100644 index 1f854f8f2..000000000 --- a/docs/data/documentation/haishinkit/videocodecdelegate/videocodecwilldropfame(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"codec"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC","text":"VideoCodec"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecdelegate\/videocodecwilldropfame(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodecWillDropFame(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tells the receiver to drop frame."}],"kind":"symbol","metadata":{"role":"symbol","title":"videoCodecWillDropFame(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","externalID":"s:10HaishinKit18VideoCodecDelegateP05videoD12WillDropFameySbAA0cD0CF","required":true,"modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodec":{"role":"symbol","title":"VideoCodec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodec"}],"abstract":[{"type":"text","text":"The VideoCodec class provides methods for encode or decode for video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodec"}],"url":"\/documentation\/haishinkit\/videocodec"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate":{"role":"symbol","title":"VideoCodecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecDelegate"}],"abstract":[{"type":"text","text":"The interface a VideoCodec uses to inform its delegate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecDelegate"}],"url":"\/documentation\/haishinkit\/videocodecdelegate"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecDelegate/videoCodecWillDropFame(_:)":{"role":"symbol","title":"videoCodecWillDropFame(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoCodecWillDropFame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VideoCodec","preciseIdentifier":"s:10HaishinKit10VideoCodecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Tells the receiver to drop frame."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecDelegate\/videoCodecWillDropFame(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/haishinkit\/videocodecdelegate\/videocodecwilldropfame(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings.json b/docs/data/documentation/haishinkit/videocodecsettings.json deleted file mode 100644 index 1e7ed96d3..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/Se","doc:\/\/HaishinKit\/SE"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"title":"VideoCodecSettings","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit18VideoCodecSettingsV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(from:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/allowFrameReordering","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRate","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRateMode-swift.property","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/isHardwareEncoderEnabled","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/maxKeyFrameIntervalDuration","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/profileLevel","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/scalingMode-swift.property","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/videoSize"]},{"title":"Type Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/default"]},{"title":"Enumerations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]}],"references":{"doc://HaishinKit/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/HaishinKit\/SE"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/videoSize":{"role":"symbol","title":"videoSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"}],"abstract":[{"type":"text","text":"Specifies the video size of encoding video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/videoSize","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/videosize"},"doc://HaishinKit/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/HaishinKit\/Se"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/maxKeyFrameIntervalDuration":{"role":"symbol","title":"maxKeyFrameIntervalDuration","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"Specifies the keyframeInterval."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/maxKeyFrameIntervalDuration","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/maxkeyframeintervalduration"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/bitRate":{"role":"symbol","title":"bitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Specifies the bitrate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitrate"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/scalingMode-swift.property":{"role":"symbol","title":"scalingMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ScalingMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO"}],"abstract":[{"type":"text","text":"Specifies the scalingMode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/scalingMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.property"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/allowFrameReordering":{"role":"symbol","title":"allowFrameReordering","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the allowFrameRecording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/allowFrameReordering","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/allowframereordering"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/bitRateMode-swift.property":{"role":"symbol","title":"bitRateMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BitRateMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO"}],"abstract":[{"type":"text","text":"Specifies the bitRateMode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRateMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.property"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/default":{"role":"symbol","title":"default","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"abstract":[{"type":"text","text":"The defulat value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/default","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/default"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/profileLevel":{"role":"symbol","title":"profileLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the H264 profileLevel."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/profileLevel","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/profilelevel"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)":{"role":"symbol","title":"init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"kind":"externalParam","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ScalingMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BitRateMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new VideoCodecSettings instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/isHardwareEncoderEnabled":{"role":"symbol","title":"isHardwareEncoderEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the HardwareEncoder is enabled(TRUE), or not(FALSE) for macOS."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/isHardwareEncoderEnabled","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/ishardwareencoderenabled"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/allowframereordering.json b/docs/data/documentation/haishinkit/videocodecsettings/allowframereordering.json deleted file mode 100644 index 4060535db..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/allowframereordering.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/allowframereordering"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/allowFrameReordering","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the allowFrameRecording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"title":"allowFrameReordering","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV20allowFrameReorderingSbSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/allowFrameReordering":{"role":"symbol","title":"allowFrameReordering","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the allowFrameRecording."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/allowFrameReordering","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/allowframereordering"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitrate.json b/docs/data/documentation/haishinkit/videocodecsettings/bitrate.json deleted file mode 100644 index 13ccb3d7c..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitrate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitrate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the bitrate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"title":"bitRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV7bitRates6UInt32Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/bitRate":{"role":"symbol","title":"bitRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"}],"abstract":[{"type":"text","text":"Specifies the bitrate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRate","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitrate"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum.json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum.json deleted file mode 100644 index f8be5d0e1..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/Se","doc:\/\/HaishinKit\/SE","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"title":"VideoCodecSettings.BitRateMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/average","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/constant"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/HaishinKit\/Se"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/average":{"role":"symbol","title":"VideoCodecSettings.BitRateMode.average","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"average"}],"abstract":[{"type":"text","text":"The average bit rate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/average","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/average"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/constant":{"role":"symbol","title":"VideoCodecSettings.BitRateMode.constant","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"constant"}],"abstract":[{"type":"text","text":"The constant bit rate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/constant","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/constant"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/HaishinKit\/SE"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(rawvalue:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/!=(_:_:).json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/!=(_:_:).json deleted file mode 100644 index d5d087d84..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/average.json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/average.json deleted file mode 100644 index c72908326..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/average.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"average"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/average"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/average","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The average bit rate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"average"}],"title":"VideoCodecSettings.BitRateMode.average","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO7averageyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/average":{"role":"symbol","title":"VideoCodecSettings.BitRateMode.average","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"average"}],"abstract":[{"type":"text","text":"The average bit rate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/average","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/average"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/constant.json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/constant.json deleted file mode 100644 index d5e76e67d..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/constant.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"constant"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/constant"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/constant","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The constant bit rate."}],"kind":"symbol","metadata":{"role":"symbol","title":"VideoCodecSettings.BitRateMode.constant","roleHeading":"Case","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"constant"}],"symbolKind":"case","externalID":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO8constantyA2EmF","modules":[{"name":"HaishinKit"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"16.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"16.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/constant":{"role":"symbol","title":"VideoCodecSettings.BitRateMode.constant","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"constant"}],"abstract":[{"type":"text","text":"The constant bit rate."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/constant","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/constant"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/encode(to:).json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/encode(to:).json deleted file mode 100644 index 530559775..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/encode(to:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/equatable-implementations.json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/equatable-implementations.json deleted file mode 100644 index 1cb6a695b..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hash(into:).json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hash(into:).json deleted file mode 100644 index 090d4a2ec..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hash(into:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hashvalue.json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hashvalue.json deleted file mode 100644 index 16ecff366..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(from:).json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(from:).json deleted file mode 100644 index 01a00ea68..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(from:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(rawvalue:).json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(rawvalue:).json deleted file mode 100644 index 0866ff621..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO8rawValueAESgSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/rawrepresentable-implementations.json deleted file mode 100644 index 42d792d50..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/encode(to:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.property.json b/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.property.json deleted file mode 100644 index fa5930f8a..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/bitratemode-swift.property.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV","text":"VideoCodecSettings"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","text":"BitRateMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRateMode-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the bitRateMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BitRateMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO"}],"title":"bitRateMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV11bitRateModeAC03BitgH0Ovp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/bitRateMode-swift.property":{"role":"symbol","title":"bitRateMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BitRateMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO"}],"abstract":[{"type":"text","text":"Specifies the bitRateMode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/bitRateMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.property"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/default.json b/docs/data/documentation/haishinkit/videocodecsettings/default.json deleted file mode 100644 index 4dfa40bc8..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/default.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV","text":"VideoCodecSettings"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/default"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/default","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The defulat value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"title":"default","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV7defaultACvpZ","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/default":{"role":"symbol","title":"default","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"`default`"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"}],"abstract":[{"type":"text","text":"The defulat value."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/default","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/default"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/init(from:).json b/docs/data/documentation/haishinkit/videocodecsettings/init(from:).json deleted file mode 100644 index 9874257c6..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/init(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(from:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit18VideoCodecSettingsV4fromACs7Decoder_p_tKcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/init(from:)":{"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:).json b/docs/data/documentation/haishinkit/videocodecsettings/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:).json deleted file mode 100644 index 47980fc87..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":" = .init(width: 854, height: 480), "},{"kind":"externalParam","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = kVTProfileLevel_H264_Baseline_3_1 as String, "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":" = 640 * 1000, "},{"kind":"externalParam","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" = 2, "},{"kind":"externalParam","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV","text":"VideoCodecSettings"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","text":"ScalingMode"},{"kind":"text","text":" = .trim, "},{"kind":"externalParam","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV","text":"VideoCodecSettings"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO","text":"BitRateMode"},{"kind":"text","text":" = .average, "},{"kind":"externalParam","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new VideoCodecSettings instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"kind":"externalParam","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ScalingMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BitRateMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"title":"init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit18VideoCodecSettingsV9videoSize12profileLevel7bitRate27maxKeyFrameIntervalDuration11scalingMode0jkR005allowN10Reordering24isHardwareEncoderEnabledACSo6CGSizeV_SSs6UInt32Vs5Int32VAC07ScalingR0OAC03BitkR0OSbSgSbtcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)":{"role":"symbol","title":"init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"kind":"externalParam","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bitRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt32","preciseIdentifier":"s:s6UInt32V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ScalingMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bitRateMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"BitRateMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11BitRateModeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"allowFrameReordering"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new VideoCodecSettings instance."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/init(videoSize:profileLevel:bitRate:maxKeyFrameIntervalDuration:scalingMode:bitRateMode:allowFrameReordering:isHardwareEncoderEnabled:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/BitRateMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.BitRateMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitRateMode"}],"abstract":[{"type":"text","text":"A bitRate mode that affectes how to encode the video source."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/BitRateMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitRateMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/ishardwareencoderenabled.json b/docs/data/documentation/haishinkit/videocodecsettings/ishardwareencoderenabled.json deleted file mode 100644 index 240e0848a..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/ishardwareencoderenabled.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/ishardwareencoderenabled"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/isHardwareEncoderEnabled","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the HardwareEncoder is enabled(TRUE), or not(FALSE) for macOS."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isHardwareEncoderEnabled","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV24isHardwareEncoderEnabledSbvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/isHardwareEncoderEnabled":{"role":"symbol","title":"isHardwareEncoderEnabled","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isHardwareEncoderEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Specifies the HardwareEncoder is enabled(TRUE), or not(FALSE) for macOS."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/isHardwareEncoderEnabled","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/ishardwareencoderenabled"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/maxkeyframeintervalduration.json b/docs/data/documentation/haishinkit/videocodecsettings/maxkeyframeintervalduration.json deleted file mode 100644 index 019fed278..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/maxkeyframeintervalduration.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/maxkeyframeintervalduration"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/maxKeyFrameIntervalDuration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the keyframeInterval."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"maxKeyFrameIntervalDuration","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV27maxKeyFrameIntervalDurations5Int32Vvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/maxKeyFrameIntervalDuration":{"role":"symbol","title":"maxKeyFrameIntervalDuration","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maxKeyFrameIntervalDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"Specifies the keyframeInterval."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/maxKeyFrameIntervalDuration","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/maxkeyframeintervalduration"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/profilelevel.json b/docs/data/documentation/haishinkit/videocodecsettings/profilelevel.json deleted file mode 100644 index 9c988cd74..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/profilelevel.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/profilelevel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/profileLevel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the H264 profileLevel."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"profileLevel","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV12profileLevelSSvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/profileLevel":{"role":"symbol","title":"profileLevel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"profileLevel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"Specifies the H264 profileLevel."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/profileLevel","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/profilelevel"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum.json deleted file mode 100644 index 843b5b455..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"https:\/\/developer.apple.com\/documentation\/videotoolbox\/kvtpixeltransferpropertykey_scalingmode"}]}],"type":"aside","name":"See Also"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"https:\/\/developer.apple.com\/documentation\/videotoolbox\/vtpixeltransfersession\/pixel_transfer_properties\/scaling_mode_constants"}]}],"type":"aside","name":"See Also"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/Se","doc:\/\/HaishinKit\/SE","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH","doc:\/\/HaishinKit\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The scaling mode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"title":"VideoCodecSettings.ScalingMode","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/cropSourceToCleanAperture","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/letterbox","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/normal","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/trim"]},{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/SE":{"type":"unresolvable","title":"Swift.Encodable","identifier":"doc:\/\/HaishinKit\/SE"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/trim":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.trim","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trim"}],"abstract":[{"type":"text","text":"kVTScalingMode_Trim"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/trim","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/trim"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/letterbox":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.letterbox","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"letterbox"}],"abstract":[{"type":"text","text":"kVTScalingMode_Letterbox"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/letterbox","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/letterbox"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/cropSourceToCleanAperture":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.cropSourceToCleanAperture","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cropSourceToCleanAperture"}],"abstract":[{"type":"text","text":"kVTScalingMode_CropSourceToCleanAperture"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/cropSourceToCleanAperture","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/cropsourcetocleanaperture"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/normal":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.normal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"abstract":[{"type":"text","text":"kVTScalingMode_Normal"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/normal","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/normal"},"doc://HaishinKit/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/HaishinKit\/SY"},"doc://HaishinKit/Se":{"type":"unresolvable","title":"Swift.Decodable","identifier":"doc:\/\/HaishinKit\/Se"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/!=(_:_:).json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/!=(_:_:).json deleted file mode 100644 index a3ef268ac..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/cropsourcetocleanaperture.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/cropsourcetocleanaperture.json deleted file mode 100644 index e24f589e2..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/cropsourcetocleanaperture.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cropSourceToCleanAperture"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/cropsourcetocleanaperture"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/cropSourceToCleanAperture","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"kVTScalingMode_CropSourceToCleanAperture"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cropSourceToCleanAperture"}],"title":"VideoCodecSettings.ScalingMode.cropSourceToCleanAperture","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO25cropSourceToCleanApertureyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/cropSourceToCleanAperture":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.cropSourceToCleanAperture","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cropSourceToCleanAperture"}],"abstract":[{"type":"text","text":"kVTScalingMode_CropSourceToCleanAperture"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/cropSourceToCleanAperture","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/cropsourcetocleanaperture"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/encode(to:).json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/encode(to:).json deleted file mode 100644 index ef932c7d7..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/encode(to:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.encode(to:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:SYsSERzSS8RawValueSYRtzrlE6encode2toys7Encoder_p_tKF::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/equatable-implementations.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/equatable-implementations.json deleted file mode 100644 index 8fec45b47..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hash(into:).json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hash(into:).json deleted file mode 100644 index 4e83a2368..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hashvalue.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hashvalue.json deleted file mode 100644 index f3106ab7b..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/rawrepresentable-implementations"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(from:).json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(from:).json deleted file mode 100644 index 810742298..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(from:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","externalID":"s:SYsSeRzSS8RawValueSYRtzrlE4fromxs7Decoder_p_tKcfc::SYNTHESIZED::s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(from:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/rawrepresentable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(rawvalue:).json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(rawvalue:).json deleted file mode 100644 index 11cacc3ce..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO8rawValueAESgSS_tcfc","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(rawvalue:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/letterbox.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/letterbox.json deleted file mode 100644 index 7672f4435..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/letterbox.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"letterbox"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/letterbox"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/letterbox","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"kVTScalingMode_Letterbox"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"letterbox"}],"title":"VideoCodecSettings.ScalingMode.letterbox","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO9letterboxyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/letterbox":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.letterbox","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"letterbox"}],"abstract":[{"type":"text","text":"kVTScalingMode_Letterbox"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/letterbox","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/letterbox"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/normal.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/normal.json deleted file mode 100644 index 901e36162..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/normal.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/normal"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/normal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"kVTScalingMode_Normal"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"title":"VideoCodecSettings.ScalingMode.normal","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO6normalyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/normal":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.normal","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"normal"}],"abstract":[{"type":"text","text":"kVTScalingMode_Normal"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/normal","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/normal"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/rawrepresentable-implementations.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/rawrepresentable-implementations.json deleted file mode 100644 index 1c217ce64..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(from:)"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/encode(to:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hashvalue"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/encode(to:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Encodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/encode(to:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/encode(to:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/init(from:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Decodable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"init(from:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/init(from:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(from:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/trim.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/trim.json deleted file mode 100644 index e612c7926..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/trim.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trim"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/trim"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/trim","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"kVTScalingMode_Trim"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trim"}],"title":"VideoCodecSettings.ScalingMode.trim","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO4trimyA2EmF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum/trim":{"role":"symbol","title":"VideoCodecSettings.ScalingMode.trim","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trim"}],"abstract":[{"type":"text","text":"kVTScalingMode_Trim"}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum\/trim","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/trim"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.property.json b/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.property.json deleted file mode 100644 index ea34c2f25..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/scalingmode-swift.property.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV","text":"VideoCodecSettings"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO","text":"ScalingMode"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/scalingMode-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the scalingMode."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ScalingMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO"}],"title":"scalingMode","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV11scalingModeAC07ScalingG0Ovp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/scalingMode-swift.property":{"role":"symbol","title":"scalingMode","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"scalingMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VideoCodecSettings","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ScalingMode","preciseIdentifier":"s:10HaishinKit18VideoCodecSettingsV11ScalingModeO"}],"abstract":[{"type":"text","text":"Specifies the scalingMode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/scalingMode-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.property"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/ScalingMode-swift.enum":{"role":"symbol","title":"VideoCodecSettings.ScalingMode","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ScalingMode"}],"abstract":[{"type":"text","text":"The scaling mode."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/ScalingMode-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ScalingMode"}],"url":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videocodecsettings/videosize.json b/docs/data/documentation/haishinkit/videocodecsettings/videosize.json deleted file mode 100644 index 010818b21..000000000 --- a/docs/data/documentation/haishinkit/videocodecsettings/videosize.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videocodecsettings\/videosize"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/videoSize","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the video size of encoding video."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"}],"title":"videoSize","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit18VideoCodecSettingsV9videoSizeSo6CGSizeVvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings/videoSize":{"role":"symbol","title":"videoSize","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"videoSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"}],"abstract":[{"type":"text","text":"Specifies the video size of encoding video."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings\/videoSize","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videocodecsettings\/videosize"},"doc://HaishinKit/documentation/HaishinKit/VideoCodecSettings":{"role":"symbol","title":"VideoCodecSettings","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoCodecSettings"}],"abstract":[{"type":"text","text":"The VideoCodecSettings class specifying video compression settings."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoCodecSettings","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoCodecSettings"}],"url":"\/documentation\/haishinkit\/videocodecsettings"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videoeffect.json b/docs/data/documentation/haishinkit/videoeffect.json deleted file mode 100644 index df4b0f873..000000000 --- a/docs/data/documentation/haishinkit/videoeffect.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"https:\/\/developer.apple.com\/documentation\/coreimage\/processing_an_image_using_built-in_filters"}]}],"type":"aside","name":"See Also"},{"anchor":"Example-code","level":2,"type":"heading","text":"Example code:"},{"type":"codeListing","syntax":null,"code":["final class MonochromeEffect: VideoEffect {"," let filter: CIFilter? = CIFilter(name: \"CIColorMonochrome\")",""," override func execute(_ image: CIImage, info: CMSampleBuffer?) -> CIImage {"," guard let filter: CIFilter = filter else {"," return image"," }"," filter.setValue(image, forKey: \"inputImage\")"," filter.setValue(CIColor(red: 0.75, green: 0.75, blue: 0.75), forKey: \"inputColor\")"," filter.setValue(1.0, forKey: \"inputIntensity\")"," return filter.outputImage ?? image"," }","}"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videoeffect"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/HaishinKit\/objc(pl)NSObject","doc:\/\/HaishinKit\/s7CVarArgP","doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP","doc:\/\/HaishinKit\/s23CustomStringConvertibleP","doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An object that apply a video effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"title":"VideoEffect","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@HaishinKit@objc(cs)VideoEffect","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"VideoEffect"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/ciContext"]},{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/execute(_:info:)"]}],"references":{"doc://HaishinKit/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/HaishinKit\/s28CustomDebugStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/HaishinKit\/s7CVarArgP"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect":{"role":"symbol","title":"VideoEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"abstract":[{"type":"text","text":"An object that apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoEffect"}],"url":"\/documentation\/haishinkit\/videoeffect"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect/ciContext":{"role":"symbol","title":"ciContext","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ciContext"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the ciContext object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/ciContext","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videoeffect\/cicontext"},"doc://HaishinKit/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/HaishinKit\/s23CustomStringConvertibleP"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect/execute(_:info:)":{"role":"symbol","title":"execute(_:info:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"},{"kind":"text","text":", "},{"kind":"externalParam","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"}],"abstract":[{"type":"text","text":"Executes to apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/execute(_:info:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videoeffect\/execute(_:info:)"},"doc://HaishinKit/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/HaishinKit\/objc(pl)NSObject"},"doc://HaishinKit/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/HaishinKit\/objc(cs)NSObject"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videoeffect/cicontext.json b/docs/data/documentation/haishinkit/videoeffect/cicontext.json deleted file mode 100644 index 9a126da1e..000000000 --- a/docs/data/documentation/haishinkit/videoeffect/cicontext.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ciContext"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videoeffect\/cicontext"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/ciContext","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specifies the ciContext object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ciContext"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"},{"kind":"text","text":"?"}],"title":"ciContext","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:10HaishinKit11VideoEffectC9ciContextSo9CIContextCSgvp","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect":{"role":"symbol","title":"VideoEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"abstract":[{"type":"text","text":"An object that apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoEffect"}],"url":"\/documentation\/haishinkit\/videoeffect"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect/ciContext":{"role":"symbol","title":"ciContext","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ciContext"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIContext","preciseIdentifier":"c:objc(cs)CIContext"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Specifies the ciContext object."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/ciContext","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videoeffect\/cicontext"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/videoeffect/execute(_:info:).json b/docs/data/documentation/haishinkit/videoeffect/execute(_:info:).json deleted file mode 100644 index c500cea92..000000000 --- a/docs/data/documentation/haishinkit/videoeffect/execute(_:info:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"image"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"},{"kind":"text","text":", "},{"kind":"externalParam","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/videoeffect\/execute(_:info:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/execute(_:info:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Executes to apply a video effect."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"},{"kind":"text","text":", "},{"kind":"externalParam","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"}],"title":"execute(_:info:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:10HaishinKit11VideoEffectC7execute_4infoSo7CIImageCAG_So17CMSampleBufferRefaSgtF","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect/execute(_:info:)":{"role":"symbol","title":"execute(_:info:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"execute"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"},{"kind":"text","text":", "},{"kind":"externalParam","text":"info"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMSampleBuffer","preciseIdentifier":"c:@T@CMSampleBufferRef"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"CIImage","preciseIdentifier":"c:objc(cs)CIImage"}],"abstract":[{"type":"text","text":"Executes to apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect\/execute(_:info:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/videoeffect\/execute(_:info:)"},"doc://HaishinKit/documentation/HaishinKit/VideoEffect":{"role":"symbol","title":"VideoEffect","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"VideoEffect"}],"abstract":[{"type":"text","text":"An object that apply a video effect."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VideoEffect","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VideoEffect"}],"url":"\/documentation\/haishinkit\/videoeffect"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/vtsessionoption.json b/docs/data/documentation/haishinkit/vtsessionoption.json deleted file mode 100644 index f18a0e3b3..000000000 --- a/docs/data/documentation/haishinkit/vtsessionoption.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/vtsessionoption"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/HaishinKit\/SQ","doc:\/\/HaishinKit\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"title":"VTSessionOption","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:10HaishinKit15VTSessionOptionV","modules":[{"name":"HaishinKit"}],"navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit"]]},"topicSections":[{"title":"Default Implementations","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Equatable-Implementations","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Hashable-Implementations"],"generated":true}],"references":{"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/Hashable-Implementations":{"role":"collectionGroup","title":"Hashable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Hashable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/hashable-implementations"},"doc://HaishinKit/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/HaishinKit\/SH"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/equatable-implementations"},"doc://HaishinKit/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/HaishinKit\/SQ"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/vtsessionoption/!=(_:_:).json b/docs/data/documentation/haishinkit/vtsessionoption/!=(_:_:).json deleted file mode 100644 index bc96dc3e8..000000000 --- a/docs/data/documentation/haishinkit/vtsessionoption/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/vtsessionoption\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:10HaishinKit15VTSessionOptionV","extendedModule":"Swift","modules":[{"name":"HaishinKit","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/!=(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/equatable-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/vtsessionoption/==(_:_:).json b/docs/data/documentation/haishinkit/vtsessionoption/==(_:_:).json deleted file mode 100644 index 43a83ed60..000000000 --- a/docs/data/documentation/haishinkit/vtsessionoption/==(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV","text":"VTSessionOption"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV","text":"VTSessionOption"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/vtsessionoption\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"==(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:10HaishinKit15VTSessionOptionV2eeoiySbAC_ACtFZ","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Equatable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/equatable-implementations"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/vtsessionoption/equatable-implementations.json b/docs/data/documentation/haishinkit/vtsessionoption/equatable-implementations.json deleted file mode 100644 index e6ebd7472..000000000 --- a/docs/data/documentation/haishinkit/vtsessionoption/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/vtsessionoption\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/!=(_:_:)","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/==(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"VTSessionOption","preciseIdentifier":"s:10HaishinKit15VTSessionOptionV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/==(_:_:)"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/vtsessionoption/hash(into:).json b/docs/data/documentation/haishinkit/vtsessionoption/hash(into:).json deleted file mode 100644 index 444edab8d..000000000 --- a/docs/data/documentation/haishinkit/vtsessionoption/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/haishinkit\/vtsessionoption\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Hashable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:10HaishinKit15VTSessionOptionV4hash4intoys6HasherVz_tF","extendedModule":"HaishinKit","modules":[{"name":"HaishinKit"}]},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Hashable-Implementations"]]},"references":{"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/Hashable-Implementations":{"role":"collectionGroup","title":"Hashable Implementations","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Hashable-Implementations","kind":"article","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/hashable-implementations"},"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/hash(into:)":{"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"}}} \ No newline at end of file diff --git a/docs/data/documentation/haishinkit/vtsessionoption/hashable-implementations.json b/docs/data/documentation/haishinkit/vtsessionoption/hashable-implementations.json deleted file mode 100644 index 126fb0db6..000000000 --- a/docs/data/documentation/haishinkit/vtsessionoption/hashable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/haishinkit\/vtsessionoption\/hashable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/Hashable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"HaishinKit"}],"role":"collectionGroup","title":"Hashable Implementations"},"hierarchy":{"paths":[["doc:\/\/HaishinKit\/documentation\/HaishinKit","doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption"]]},"references":{"doc://HaishinKit/documentation/HaishinKit":{"role":"collection","title":"HaishinKit","abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption/hash(into:)":{"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/haishinkit\/vtsessionoption\/hash(into:)"},"doc://HaishinKit/documentation/HaishinKit/VTSessionOption":{"role":"symbol","title":"VTSessionOption","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"VTSessionOption"}],"abstract":[{"type":"text","text":"A structure that represents Key-Value-Object for the VideoToolbox option."}],"identifier":"doc:\/\/HaishinKit\/documentation\/HaishinKit\/VTSessionOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"VTSessionOption"}],"url":"\/documentation\/haishinkit\/vtsessionoption"}}} \ No newline at end of file diff --git a/docs/developer-og-twitter.jpg b/docs/developer-og-twitter.jpg deleted file mode 100644 index 63c48359d..000000000 Binary files a/docs/developer-og-twitter.jpg and /dev/null differ diff --git a/docs/developer-og.jpg b/docs/developer-og.jpg deleted file mode 100644 index 4db840833..000000000 Binary files a/docs/developer-og.jpg and /dev/null differ diff --git a/docs/docsets/HaishinKit.docset/Contents/Info.plist b/docs/docsets/HaishinKit.docset/Contents/Info.plist new file mode 100644 index 000000000..73c9a4f91 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleIdentifier + com.jazzy.haishinkit + CFBundleName + HaishinKit + DocSetPlatformFamily + haishinkit + isDashDocset + + dashIndexFilePath + index.html + isJavaScriptEnabled + + DashDocSetFamily + dashtoc + + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes.html new file mode 100644 index 000000000..1dac239b0 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes.html @@ -0,0 +1,1097 @@ + + + + Classes Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Classes

+

The following classes are available globally.

+ +
+
+
+
    +
  • +
    + + + + TSReader + +
    +
    +
    +
    +
    +
    +

    The TSReader class represents read MPEG-2 transport stream data.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class TSReader
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + TSWriter + +
    +
    +
    +
    +
    +
    +

    The TSWriter class represents writes MPEG-2 transport stream data.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class TSWriter
    +
    extension TSWriter: IOMuxer
    +
    extension TSWriter: Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IORecorder + +
    +
    +
    +
    +
    +
    +

    The IORecorder class represents video and audio recorder.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class IORecorder
    +
    extension IORecorder: Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOUIScreenCaptureUnit + +
    +
    +
    +
    +
    +
    +

    The IOUIScreenCaptureUnit class captures the UIView.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOVideoCaptureUnit + +
    +
    +
    +
    +
    +
    +

    An object that provides the interface to control the AVCaptureDevice’s transport behavior.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public class IOVideoCaptureUnit : IOCaptureUnit
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + MTHKView + +
    +
    +
    +
    +
    +
    +

    A view that displays a video content of a NetStream object which uses Metal api.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class MTHKView : MTKView
    +
    extension MTHKView: NetStreamDrawable
    +
    extension MTHKView: MTKViewDelegate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + PiPHKView + +
    +
    +
    +
    +
    +
    +

    A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    + +
    +
    +
    +
    +
  • +
  • +
    + + + + PiPHKView + +
    +
    +
    +
    +
    +
    +

    A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class PiPHKView : NSView
    +
    extension PiPHKView: NetStreamDrawable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + VideoEffect + +
    +
    +
    +
    +
    +
    +

    An object that apply a video effect.

    + +

    Example code:

    +
    final class MonochromeEffect: VideoEffect {
    +    let filter: CIFilter? = CIFilter(name: "CIColorMonochrome")
    +
    +    override func execute(_ image: CIImage, info: CMSampleBuffer?) -> CIImage {
    +        guard let filter: CIFilter = filter else {
    +            return image
    +        }
    +        filter.setValue(image, forKey: "inputImage")
    +        filter.setValue(CIColor(red: 0.75, green: 0.75, blue: 0.75), forKey: "inputColor")
    +        filter.setValue(1.0, forKey: "inputIntensity")
    +        return filter.outputImage ?? image
    +    }
    +}
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class VideoEffect : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetBitRateStrategy + +
    +
    +
    +
    +
    +
    +

    The NetBitRateStrategy class provides a no operative bitrate storategy.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class NetBitRateStrategy : NetBitRateStrategyConvertible
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The VideoAdaptiveNetBitRateStrategy class provides an algorithm that focuses on video bitrate control.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class VideoAdaptiveNetBitRateStrategy : NetBitRateStrategyConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetClient + +
    +
    +
    +
    +
    +
    +

    The NetClient class creates a two-way connection between a NetService.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class NetClient : NetSocket
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetService + +
    +
    +
    +
    +
    +
    +

    The NetService class creates a two-way connection between a client and a server as a server.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class NetService : NSObject
    +
    extension NetService: NetServiceDelegate
    +
    extension NetService: Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetSocket + +
    +
    +
    +
    +
    +
    +

    The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class NetSocket : NSObject
    +
    extension NetSocket: StreamDelegate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetStream + +
    +
    +
    +
    +
    +
    +

    The NetStream class is the foundation of a RTMPStream.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class NetStream : NSObject
    +
    extension NetStream: IOScreenCaptureUnitDelegate
    +
    extension NetStream: SCStreamOutput
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Event + +
    +
    +
    +
    +
    +
    +

    The Event interface is used to provide information.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class Event
    +
    extension Event: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + EventDispatcher + +
    +
    +
    +
    +
    +
    +

    The EventDispatcher interface is in implementation which supports the DOM Event Model.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class EventDispatcher : EventDispatcherConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPResponder + +
    +
    +
    +
    +
    +
    +

    The RTMPResponder class provides to use handle RTMPConnection’s callback.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class RTMPResponder
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPConnection + +
    +
    +
    +
    +
    +
    +

    The RTMPConneciton class create a two-way RTMP connection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class RTMPConnection : EventDispatcher
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPSharedObject + +
    +
    +
    +
    +
    +
    +

    The RTMPSharedObject class is used to read and write data on a server.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class RTMPSharedObject : EventDispatcher
    +
    extension RTMPSharedObject: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPStream + +
    +
    +
    +
    +
    +
    +

    An object that provides the interface to control a one-way channel over a RtmpConnection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open class RTMPStream : NetStream
    +
    extension RTMPStream: EventDispatcherConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ByteArray + +
    +
    +
    +
    +
    +
    +

    The ByteArray class provides methods and properties the reading or writing with binary data.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class ByteArray : ByteArrayConvertible
    +
    extension ByteArray: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + InstanceHolder + +
    +
    +
    +
    +
    +
    +

    The InstanceHolder class provides a shared instance memory management.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class InstanceHolder<T> where T : Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTConnection + +
    +
    +
    +
    +
    +
    +

    The SRTConnection class create a two-way SRT connection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class SRTConnection : NSObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTLogger + +
    +
    +
    +
    +
    +
    +

    An object for writing interpolated string messages to srt logging system.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public class SRTLogger
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTStream + +
    +
    +
    +
    +
    +
    +

    An object that provides the interface to control a one-way channel over a SRTConnection.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public final class SRTStream : NetStream
    +
    extension SRTStream: TSWriterDelegate
    +
    extension SRTStream: TSReaderDelegate
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/ByteArray.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/ByteArray.html new file mode 100644 index 000000000..92b814580 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/ByteArray.html @@ -0,0 +1,1257 @@ + + + + ByteArray Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ByteArray

+
+
+ +
public class ByteArray : ByteArrayConvertible
+
extension ByteArray: CustomDebugStringConvertible
+ +
+
+

The ByteArray class provides methods and properties the reading or writing with binary data.

+ +
+
+
+
    +
  • +
    + + + + Error + +
    +
    +
    +
    +
    +
    +

    The ByteArray error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Error : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates an empty ByteArray.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a ByteArray with data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: Data)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + length + +
    +
    +
    +
    +
    +
    +

    Specifies the length of buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var length: Int { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + position + +
    +
    +
    +
    +
    +
    +

    Specifies the position of buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var position: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bytesAvailable + +
    +
    +
    +
    +
    +
    +

    The bytesAvalibale or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bytesAvailable: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + subscript(_:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public subscript(i: Int) -> UInt8 { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt8() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt8() throws -> UInt8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt8(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt8(_ value: UInt8) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt8() + +
    +
    +
    +
    +
    +
    +

    Readning an Int8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt8() throws -> Int8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt8(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an Int8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeInt8(_ value: Int8) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt16() + +
    +
    +
    +
    +
    +
    +

    Readning an UInt16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt16() throws -> UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt16(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt16(_ value: UInt16) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt16() + +
    +
    +
    +
    +
    +
    +

    Reading an Int16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt16() throws -> Int16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt16(_:) + +
    +
    +
    +
    +
    +
    +

    Reading an Int16 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeInt16(_ value: Int16) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt24() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt24 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt24() throws -> UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt24(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt24 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt24(_ value: UInt32) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt32() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt32() throws -> UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt32(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt32(_ value: UInt32) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt32() + +
    +
    +
    +
    +
    +
    +

    Reading an Int32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt32() throws -> Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt32(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an Int32 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeInt32(_ value: Int32) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUInt64(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an UInt64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUInt64(_ value: UInt64) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUInt64() + +
    +
    +
    +
    +
    +
    +

    Reading an UInt64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUInt64() throws -> UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeInt64(_:) + +
    +
    +
    +
    +
    +
    +

    Writing an Int64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func writeInt64(_ value: Int64) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readInt64() + +
    +
    +
    +
    +
    +
    +

    Reading an Int64 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readInt64() throws -> Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readDouble() + +
    +
    +
    +
    +
    +
    +

    Reading a Double value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readDouble() throws -> Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeDouble(_:) + +
    +
    +
    +
    +
    +
    +

    Writing a Double value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeDouble(_ value: Double) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readFloat() + +
    +
    +
    +
    +
    +
    +

    Reading a Float value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readFloat() throws -> Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeFloat(_:) + +
    +
    +
    +
    +
    +
    +

    Writeing a Float value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeFloat(_ value: Float) -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readUTF8() + +
    +
    +
    +
    +
    +
    +

    Reading a string as UTF8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func readUTF8() throws -> String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writeUTF8(_:) + +
    +
    +
    +
    +
    +
    +

    Writing a string as UTF8 value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func writeUTF8(_ value: String) throws -> Self
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clear() + +
    +
    +
    +
    +
    +
    +

    Clear the buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func clear() -> Self
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/ByteArray/Error.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/ByteArray/Error.html new file mode 100644 index 000000000..6a58ac958 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/ByteArray/Error.html @@ -0,0 +1,394 @@ + + + + Error Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Error

+
+
+ +
public enum Error : Swift.Error
+ +
+
+

The ByteArray error domain codes.

+ +
+
+
+
    +
  • +
    + + + + eof + +
    +
    +
    +
    +
    +
    +

    Error cause end of data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case eof
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + parse + +
    +
    +
    +
    +
    +
    +

    Failed to parse

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case parse
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/Event.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/Event.html new file mode 100644 index 000000000..a6ed36149 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/Event.html @@ -0,0 +1,570 @@ + + + + Event Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Event

+
+
+ +
public final class Event
+
extension Event: CustomDebugStringConvertible
+ +
+
+

The Event interface is used to provide information.

+ +
+
+
+
    +
  • +
    + + + + Name + +
    +
    +
    +
    +
    +
    +

    A structure that defines the name of an event.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct Name : RawRepresentable, ExpressibleByStringLiteral
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + from(_:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func from(_ notification: Notification) -> Event
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + type + +
    +
    +
    +
    +
    +
    +

    The type represents the event name.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var type: Name { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bubbles + +
    +
    +
    +
    +
    +
    +

    The isBubbles indicates whether ot not an event is a bubbling event.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var bubbles: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The data indicates the to provide information.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var data: Any? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + target + +
    +
    +
    +
    +
    +
    +

    The target indicates the [IEventDispatcher].

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public fileprivate(set) var target: AnyObject? { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Creates a new event.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(type: Name, bubbles: Bool = false, data: Any? = nil)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/Event/Name.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/Event/Name.html new file mode 100644 index 000000000..8a26aebdb --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/Event/Name.html @@ -0,0 +1,578 @@ + + + + Name Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Name

+
+
+ +
public struct Name : RawRepresentable, ExpressibleByStringLiteral
+ +
+
+

A structure that defines the name of an event.

+ +
+
+
+
    +
  • +
    + + + + RawValue + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias RawValue = String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + StringLiteralType + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias StringLiteralType = String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sync + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let sync: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + event + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let event: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ioError + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let ioError: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rtmpStatus + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let rtmpStatus: Name
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rawValue + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let rawValue: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(rawValue:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(rawValue: String)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(stringLiteral:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(stringLiteral value: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/EventDispatcher.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/EventDispatcher.html new file mode 100644 index 000000000..b7f2ff2cb --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/EventDispatcher.html @@ -0,0 +1,502 @@ + + + + EventDispatcher Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

EventDispatcher

+
+
+ +
public class EventDispatcher : EventDispatcherConvertible
+ +
+
+

The EventDispatcher interface is in implementation which supports the DOM Event Model.

+ +
+
+
+
    +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a new event dispatcher.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(target:) + +
    +
    +
    +
    +
    +
    +

    Creates a new event dispatcher to proxy target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(target: AnyObject)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Registers the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func addEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject? = nil, useCapture: Bool = false)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Unregister the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func removeEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject? = nil, useCapture: Bool = false)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + dispatch(event:) + +
    +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func dispatch(event: Event)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func dispatch(_ type: Event.Name, bubbles: Bool, data: Any?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IORecorder.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IORecorder.html new file mode 100644 index 000000000..7dc6fc7a8 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IORecorder.html @@ -0,0 +1,596 @@ + + + + IORecorder Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IORecorder

+
+
+ +
public final class IORecorder
+
extension IORecorder: Running
+ +
+
+

The IORecorder class represents video and audio recorder.

+ +
+
+
+
    +
  • +
    + + + + Error + +
    +
    +
    +
    +
    +
    +

    The IORecorder error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Error : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultOutputSettings + +
    +
    +
    +
    +
    +
    +

    The default output settings for an IORecorder.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultOutputSettings: [AVMediaType : [String : Any]]
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any IORecorderDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + outputSettings + +
    +
    +
    +
    +
    +
    +

    Specifies the recorder settings.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var outputSettings: [AVMediaType : [String : Any]]
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    The running indicies whether recording or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    +

    Append a sample buffer for recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Append a pixel buffer for recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ pixelBuffer: CVPixelBuffer, withPresentationTime: CMTime)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Running +

+
+
+
    +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IORecorder/Error.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IORecorder/Error.html new file mode 100644 index 000000000..e8a04d6f6 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IORecorder/Error.html @@ -0,0 +1,448 @@ + + + + Error Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Error

+
+
+ +
public enum Error : Swift.Error
+ +
+
+

The IORecorder error domain codes.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Failed to create the AVAssetWriter.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreateAssetWriter(error: any Swift.Error)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Failed to create the AVAssetWriterInput.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreateAssetWriterInput(error: NSException)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Failed to append the PixelBuffer or SampleBuffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToAppend(error: (any Swift.Error)?)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Failed to finish writing the AVAssetWriter.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToFinishWriting(error: (any Swift.Error)?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IOUIScreenCaptureUnit.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IOUIScreenCaptureUnit.html new file mode 100644 index 000000000..782049a04 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IOUIScreenCaptureUnit.html @@ -0,0 +1,556 @@ + + + + IOUIScreenCaptureUnit Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOUIScreenCaptureUnit

+
+
+ + +
+
+

The IOUIScreenCaptureUnit class captures the UIView.

+ +
+
+
+
    +
  • +
    + + + + enabledScale + +
    +
    +
    +
    +
    +
    +

    Specifies the boolean value that indicates whether the snapshot image downsize or not.

    + +
    +
    +
    +
  • +
  • +
    + + + + afterScreenUpdates + +
    +
    +
    +
    +
    +
    +

    Specifies the boolean value that indicates whether the snapshot should be rendered after recent changes have been incorporated.

    + +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the number of shaphot that must pass before the display link notifies the target again.

    + +
    +
    +
    +
  • +
  • +
    + + + + attributes + +
    +
    +
    +
    +
    +
    +

    Specifies the CVPixelBufferPool’s attrivutes.

    + +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
  • +
    + + + + init(shared:) + +
    +
    +
    +
    +
    +
    +

    Creates an IOUIScreenCaptureUnit object to capture UIApplication.

    + +
    +
    +
    +
  • +
  • +
    + + + + init(viewToCapture:) + +
    +
    +
    +
    +
    +
    +

    Create an IOUIScreenCaptureUnit object to capture UIView.

    + +
    +
    +
    +
  • +
  • +
    + + + + onScreen(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Running +

+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IOVideoCaptureUnit.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IOVideoCaptureUnit.html new file mode 100644 index 000000000..968ede752 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/IOVideoCaptureUnit.html @@ -0,0 +1,468 @@ + + + + IOVideoCaptureUnit Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOVideoCaptureUnit

+
+
+ +
@available(tvOS 17.0, *)
+public class IOVideoCaptureUnit : IOCaptureUnit
+ +
+
+

An object that provides the interface to control the AVCaptureDevice’s transport behavior.

+ +
+
+
+
    +
  • +
    + + + + defaultVideoSettings + +
    +
    +
    +
    +
    +
    +

    The default videoSettings for a device.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultVideoSettings: [NSString : AnyObject]
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + device + +
    +
    +
    +
    +
    +
    +

    The current video device object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var device: AVCaptureDevice? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the videoOrientation indicates whether to rotate the video flowing through the connection to a given orientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isVideoMirrored + +
    +
    +
    +
    +
    +
    +

    Spcifies the video mirroed indicates whether the video flowing through the connection should be mirrored about its vertical axis.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isVideoMirrored: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the preferredVideoStabilizationMode most appropriate for use with the connection.

    + +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/InstanceHolder.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/InstanceHolder.html new file mode 100644 index 000000000..1db7d17b6 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/InstanceHolder.html @@ -0,0 +1,421 @@ + + + + InstanceHolder Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

InstanceHolder

+
+
+ +
public class InstanceHolder<T> where T : Equatable
+ +
+
+

The InstanceHolder class provides a shared instance memory management.

+ +
+
+
+
    +
  • +
    + + + + init(factory:) + +
    +
    +
    +
    +
    +
    +

    Creates a new InstanceHolder.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(factory: @escaping () -> T)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + retain() + +
    +
    +
    +
    +
    +
    +

    Retains an instance object if needed.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func retain() -> T?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + release(_:) + +
    +
    +
    +
    +
    +
    +

    Releases an instance object if needed.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func release(_ instance: T?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/MTHKView.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/MTHKView.html new file mode 100644 index 000000000..59e23ada5 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/MTHKView.html @@ -0,0 +1,637 @@ + + + + MTHKView Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

MTHKView

+
+
+ +
public class MTHKView : MTKView
+
extension MTHKView: NetStreamDrawable
+
extension MTHKView: MTKViewDelegate
+ +
+
+

A view that displays a video content of a NetStream object which uses Metal api.

+ +
+
+
+
    +
  • +
    + + + + videoGravity + +
    +
    +
    +
    +
    +
    +

    Specifies how the video is displayed within a player layer’s bounds.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoGravity: AVLayerVideoGravity
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the orientation of AVCaptureVideoOrientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the capture video preview enabled or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public var isCaptureVideoPreviewEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(frame:) + +
    +
    +
    +
    +
    +
    +

    Initializes and returns a newly allocated view object with the specified frame rectangle.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(frame: CGRect)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(coder:) + +
    +
    +
    +
    +
    +
    +

    Returns an object initialized from data in a given unarchiver.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public required init(coder aDecoder: NSCoder)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + awakeFromNib() + +
    +
    +
    +
    +
    +
    +

    Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override open func awakeFromNib()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

NetStreamDrawable +

+
+
+
    +
  • +
    + + + + attachStream(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func attachStream(_ stream: NetStream?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + enqueue(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func enqueue(_ sampleBuffer: CMSampleBuffer?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

MTKViewDelegate +

+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func mtkView(_ view: MTKView, drawableSizeWillChange size: CGSize)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + draw(in:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func draw(in view: MTKView)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetBitRateStrategy.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetBitRateStrategy.html new file mode 100644 index 000000000..1c2e5f513 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetBitRateStrategy.html @@ -0,0 +1,523 @@ + + + + NetBitRateStrategy Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetBitRateStrategy

+
+
+ +
public final class NetBitRateStrategy : NetBitRateStrategyConvertible
+ +
+
+

The NetBitRateStrategy class provides a no operative bitrate storategy.

+ +
+
+
+
    +
  • +
    + + + + shared + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let shared: NetBitRateStrategy
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stream + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var stream: NetStream?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumVideoBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumVideoBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumAudioBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumAudioBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setUp() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func setUp()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func sufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func insufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetClient.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetClient.html new file mode 100644 index 000000000..82618a8f7 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetClient.html @@ -0,0 +1,366 @@ + + + + NetClient Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetClient

+
+
+ +
public final class NetClient : NetSocket
+ +
+
+

The NetClient class creates a two-way connection between a NetService.

+ +
+
+
+
    +
  • +
    + + + + listen() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func listen()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetService.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetService.html new file mode 100644 index 000000000..013edcca4 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetService.html @@ -0,0 +1,663 @@ + + + + NetService Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetService

+
+
+ +
open class NetService : NSObject
+
extension NetService: NetServiceDelegate
+
extension NetService: Running
+ +
+
+

The NetService class creates a two-way connection between a client and a server as a server.

+ +
+
+
+
    +
  • +
    + + + + txtData + +
    +
    +
    +
    +
    +
    +

    The TXT record for the receiver.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open var txtData: Data? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + domain + +
    +
    +
    +
    +
    +
    +

    The domain for the service.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let domain: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + type + +
    +
    +
    +
    +
    +
    +

    The network service type.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let type: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + name + +
    +
    +
    +
    +
    +
    +

    The name of service.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let name: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + port + +
    +
    +
    +
    +
    +
    +

    The port.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let port: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    The service is running or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clients + +
    +
    +
    +
    +
    +
    +

    The current connected client objects.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var clients: [NetClient] { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new NetService object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(domain: String, type: String, name: String, port: Int32)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

NSNetServiceDelegate +

+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func netService(_ sender: Foundation.NetService, didAcceptConnectionWith inputStream: InputStream, outputStream: OutputStream)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Runnbale +

+
+
+
    +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetSocket.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetSocket.html new file mode 100644 index 000000000..cb05e26ca --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetSocket.html @@ -0,0 +1,814 @@ + + + + NetSocket Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetSocket

+
+
+ +
open class NetSocket : NSObject
+
extension NetSocket: StreamDelegate
+ +
+
+

The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream.

+ +
+
+
+
    +
  • +
    + + + + defaultTimeout + +
    +
    +
    +
    +
    +
    +

    The default time to wait for TCP/IP Handshake done.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultTimeout: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultWindowSizeC + +
    +
    +
    +
    +
    +
    +

    The defulat stream’s TCP window size.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultWindowSizeC: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + inputBuffer + +
    +
    +
    +
    +
    +
    +

    The current incoming data buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var inputBuffer: Data
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + timeout + +
    +
    +
    +
    +
    +
    +

    Specifies time to wait for TCP/IP Handshake done.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var timeout: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connected + +
    +
    +
    +
    +
    +
    +

    Specifies instance connected to server(true) or not(false).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var connected: Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + windowSizeC + +
    +
    +
    +
    +
    +
    +

    Specifies the output buffer size in bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var windowSizeC: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesIn + +
    +
    +
    +
    +
    +
    +

    Specifies statistics of total incoming bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalBytesIn: Atomic<Int64>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + qualityOfService + +
    +
    +
    +
    +
    +
    +

    Specifies instance’s quality of service for a Socket IO.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var qualityOfService: DispatchQoS
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + securityLevel + +
    +
    +
    +
    +
    +
    +

    Specifies instance determine to use the secure-socket layer (SSL) security level.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var securityLevel: StreamSocketSecurityLevel
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + outputBufferSize + +
    +
    +
    +
    +
    +
    +

    Specifies the output buffer size in bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var outputBufferSize: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesOut + +
    +
    +
    +
    +
    +
    +

    Specifies statistics of total outgoing bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var totalBytesOut: Atomic<Int64> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queueBytesOut + +
    +
    +
    +
    +
    +
    +

    Specifies statistics of total outgoing queued bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var queueBytesOut: Atomic<Int64> { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Creates a two-way connection to a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func connect(withName: String, port: Int)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Does output data buffer to the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @discardableResult
    +public func doOutput(data: Data, locked: UnsafeMutablePointer<UInt32>? = nil) -> Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func close()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + listen() + +
    +
    +
    +
    +
    +
    +

    Listen incoming data buffer from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func listen()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

StreamDelegate +

+
+
+
    +
  • +
    + + + + stream(_:handle:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stream(_ aStream: Stream, handle eventCode: Stream.Event)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetStream.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetStream.html new file mode 100644 index 000000000..732725a79 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetStream.html @@ -0,0 +1,1368 @@ + + + + NetStream Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetStream

+
+
+ +
open class NetStream : NSObject
+
extension NetStream: IOScreenCaptureUnitDelegate
+
extension NetStream: SCStreamOutput
+ +
+
+

The NetStream class is the foundation of a RTMPStream.

+ +
+
+
+
    +
  • +
    + + + + ReadyState + +
    +
    +
    +
    +
    +
    +

    The enumeration defines the state a ReadyState NetStream is in.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum ReadyState : Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lockQueue + +
    +
    +
    +
    +
    +
    +

    The lockQueue.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let lockQueue: DispatchQueue
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitrateStrategy + +
    +
    +
    +
    +
    +
    +

    Specifies the adaptibe bitrate strategy.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitrateStrategy: any NetBitRateStrategyConvertible { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isMonitoringEnabled + +
    +
    +
    +
    +
    +
    +

    Specifies the audio monitoring enabled or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isMonitoringEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + context + +
    +
    +
    +
    +
    +
    +

    Specifies the context object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var context: CIContext { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + torch + +
    +
    +
    +
    +
    +
    +

    Specifiet the device torch indicating wheter the turn on(TRUE) or not(FALSE).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var torch: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameRate + +
    +
    +
    +
    +
    +
    +

    Specifies the frame rate of a device capture.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var frameRate: Float64 { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sessionPreset + +
    +
    +
    +
    +
    +
    +

    Specifies the sessionPreset for the AVCaptureSession.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public var sessionPreset: AVCaptureSession.Preset { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the video orientation for stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the multi camera capture properties.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var multiCamCaptureSettings: MultiCamCaptureSettings { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hasAudio + +
    +
    +
    +
    +
    +
    +

    Specifies the hasAudio indicies whether no signal audio or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var hasAudio: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hasVideo + +
    +
    +
    +
    +
    +
    +

    Specifies the hasVideo indicies whether freeze video signal or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var hasVideo: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + audioSettings + +
    +
    +
    +
    +
    +
    +

    Specifies the audio compression properties.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var audioSettings: AudioCodecSettings { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoSettings + +
    +
    +
    +
    +
    +
    +

    Specifies the video compression properties.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoSettings: VideoCodecSettings { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoInputFormat + +
    +
    +
    +
    +
    +
    +

    The video input format.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoInputFormat: CMVideoFormatDescription? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + audioInputFormat + +
    +
    +
    +
    +
    +
    +

    The audio input format.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var audioInputFormat: AVAudioFormat? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + soundTransform + +
    +
    +
    +
    +
    +
    +

    Specifies the controls sound.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var soundTransform: SoundTransform { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + currentFPS + +
    +
    +
    +
    +
    +
    +

    The number of frames per second being displayed.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +public internal(set) dynamic var currentFPS: UInt16 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate..

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any NetStreamDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + readyState + +
    +
    +
    +
    +
    +
    +

    The current state of the stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var readyState: ReadyState { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a NetStream object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Attaches the primary camera object.

    +
    +

    Warning

    + This method can’t use appendSampleBuffer at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public func attachCamera(_ device: AVCaptureDevice?, onError: ((_ error: any Error) -> Void)? = nil)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Attaches the 2ndary camera object for picture in picture.

    +
    +

    Warning

    + This method can’t use appendSampleBuffer at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(iOS 13.0, tvOS 17.0, *)
    +public func attachMultiCamera(_ device: AVCaptureDevice?, onError: ((_ error: any Error) -> Void)? = nil)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Attaches the audio capture object.

    +
    +

    Warning

    + This method can’t use appendSampleBuffer at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public func attachAudio(_ device: AVCaptureDevice?, automaticallyConfiguresApplicationAudioSession: Bool = false, onError: ((_ error: any Error) -> Void)? = nil)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoCapture(for:) + +
    +
    +
    +
    +
    +
    +

    Returns the IOVideoCaptureUnit by index.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +public func videoCapture(for index: Int) -> IOVideoCaptureUnit?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + attachScreen(_:) + +
    +
    +
    +
    +
    +
    +

    Attaches the screen input object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func attachScreen(_ input: AVCaptureScreenInput?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    +

    Append a CMSampleBuffer.

    +
    +

    Warning

    + This method can’t use attachCamera or attachAudio method at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:when:) + +
    +
    +
    +
    +
    +
    +

    Append an AVAudioBuffer.

    +
    +

    Warning

    + This method can’t use attachAudio method at the same time. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ audioBuffer: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Register a video effect.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func registerVideoEffect(_ effect: VideoEffect) -> Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Unregister a video effect.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func unregisterVideoEffect(_ effect: VideoEffect) -> Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Starts recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRecording(_ delegate: any IORecorderDelegate, settings: [AVMediaType : [String : Any]] = IORecorder.defaultOutputSettings)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRecording() + +
    +
    +
    +
    +
    +
    +

    Stop recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRecording()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A handler that receives stream readyState will update.

    +
    +

    Warning

    + Please do not call this method yourself. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func readyStateWillChange(to readyState: ReadyState)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A handler that receives stream readyState updated.

    +
    +

    Warning

    + Please do not call this method yourself. + +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func readyStateDidChange(to readyState: ReadyState)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

IOScreenCaptureUnitDelegate +

+
+
+
    +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func session(_ session: any IOScreenCaptureUnit, didOutput pixelBuffer: CVPixelBuffer, presentationTime: CMTime)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stream(_ stream: SCStream, didOutputSampleBuffer sampleBuffer: CMSampleBuffer, of type: SCStreamOutputType)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetStream/ReadyState.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetStream/ReadyState.html new file mode 100644 index 000000000..aac2f56b9 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/NetStream/ReadyState.html @@ -0,0 +1,555 @@ + + + + ReadyState Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ReadyState

+
+
+ +
public enum ReadyState : Equatable
+ +
+
+

The enumeration defines the state a ReadyState NetStream is in.

+ +
+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: NetStream.ReadyState, rhs: NetStream.ReadyState) -> Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + initialized + +
    +
    +
    +
    +
    +
    +

    NetStream has been created.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case initialized
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + open + +
    +
    +
    +
    +
    +
    +

    NetStream waiting for new method.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case open
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + play + +
    +
    +
    +
    +
    +
    +

    NetStream play() has been called.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case play
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playing + +
    +
    +
    +
    +
    +
    +

    NetStream play and server was accepted as playing

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playing
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publish + +
    +
    +
    +
    +
    +
    +

    NetStream publish() has been called

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publish
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishing(muxer:) + +
    +
    +
    +
    +
    +
    +

    NetStream publish and server accpted as publising.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishing(muxer: any IOMuxer)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + closed + +
    +
    +
    +
    +
    +
    +

    NetStream close() has been called.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case closed
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/PiPHKView.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/PiPHKView.html new file mode 100644 index 000000000..3dd08ed69 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/PiPHKView.html @@ -0,0 +1,595 @@ + + + + PiPHKView Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

PiPHKView

+
+
+ +
public class PiPHKView : NSView
+
extension PiPHKView: NetStreamDrawable
+ +
+
+

A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The view’s background color.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static var defaultBackgroundColor: NSColor
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoGravity + +
    +
    +
    +
    +
    +
    +

    A value that specifies how the video is displayed within a player layer’s bounds.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoGravity: AVLayerVideoGravity { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the orientation of AVCaptureVideoOrientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the capture video preview enabled or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isCaptureVideoPreviewEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(frame:) + +
    +
    +
    +
    +
    +
    +

    Initializes and returns a newly allocated view object with the specified frame rectangle.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init(frame: CGRect)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(coder:) + +
    +
    +
    +
    +
    +
    +

    Returns an object initialized from data in a given unarchiver.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public required init?(coder aDecoder: NSCoder)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + awakeFromNib() + +
    +
    +
    +
    +
    +
    +

    Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func awakeFromNib()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

NetStreamDrawable +

+
+
+
    +
  • +
    + + + + attachStream(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func attachStream(_ stream: NetStream?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + enqueue(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func enqueue(_ sampleBuffer: CMSampleBuffer?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPConnection.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPConnection.html new file mode 100644 index 000000000..93c477eea --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPConnection.html @@ -0,0 +1,1188 @@ + + + + RTMPConnection Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPConnection

+
+
+ +
public class RTMPConnection : EventDispatcher
+ +
+
+

The RTMPConneciton class create a two-way RTMP connection.

+ +
+
+
+
    +
  • +
    + + + + defaultWindowSizeS + +
    +
    +
    +
    +
    +
    +

    The default network’s window size for RTMPConnection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultWindowSizeS: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + supportedProtocols + +
    +
    +
    +
    +
    +
    +

    The supported protocols are rtmp, rtmps, rtmpt and rtmps.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let supportedProtocols: Set<String>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultPort + +
    +
    +
    +
    +
    +
    +

    The default RTMP port is 1935.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPort: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultSecurePort + +
    +
    +
    +
    +
    +
    +

    The default RTMPS port is 443.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultSecurePort: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultFlashVer + +
    +
    +
    +
    +
    +
    +

    The default flashVer is FMLE/3.0 (compatible; FMSc/1.0).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultFlashVer: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultChunkSizeS + +
    +
    +
    +
    +
    +
    +

    The default chunk size for RTMPConnection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultChunkSizeS: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultCapabilities + +
    +
    +
    +
    +
    +
    +

    The default capabilities for RTMPConneciton.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultCapabilities: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultObjectEncoding + +
    +
    +
    +
    +
    +
    +

    The default object encoding for RTMPConnection class.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultObjectEncoding: RTMPObjectEncoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Code + +
    +
    +
    +
    +
    +
    + +
      +
    • NetStatusEvent#info.code for NetConnection
    • +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Code : String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + swfUrl + +
    +
    +
    +
    +
    +
    +

    Specifies the URL of .swf.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var swfUrl: String?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pageUrl + +
    +
    +
    +
    +
    +
    +

    Specifies the URL of an HTTP referer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var pageUrl: String?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + timeout + +
    +
    +
    +
    +
    +
    +

    Specifies the time to wait for TCP/IP Handshake done.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var timeout: Int { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + qualityOfService + +
    +
    +
    +
    +
    +
    +

    Specifies the dispatchQos for socket.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var qualityOfService: DispatchQoS { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + flashVer + +
    +
    +
    +
    +
    +
    +

    Specifies the name of application.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var flashVer: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chunkSize + +
    +
    +
    +
    +
    +
    +

    Specifies theoutgoing RTMPChunkSize.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var chunkSize: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + uri + +
    +
    +
    +
    +
    +
    +

    Specifies the URI passed to the Self.connect() method.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var uri: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connected + +
    +
    +
    +
    +
    +
    +

    Specifies the instance connected to server(true) or not(false).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var connected: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the instance requires Network.framework if possible.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var requireNetworkFramework: Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + parameters + +
    +
    +
    +
    +
    +
    +

    Specifies the socket optional parameters.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var parameters: Any?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + objectEncoding + +
    +
    +
    +
    +
    +
    +

    Specifies the object encoding for this RTMPConnection instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var objectEncoding: RTMPObjectEncoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesIn + +
    +
    +
    +
    +
    +
    +

    The statistics of total incoming bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalBytesIn: Int64 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalBytesOut + +
    +
    +
    +
    +
    +
    +

    The statistics of total outgoing bytes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalBytesOut: Int64 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + totalStreamsCount + +
    +
    +
    +
    +
    +
    +

    The statistics of total RTMPStream counts.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var totalStreamsCount: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate of the NetStream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any RTMPConnectionDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + previousQueueBytesOut + +
    +
    +
    +
    +
    +
    +

    The statistics of outgoing queue bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +open private(set) dynamic var previousQueueBytesOut: [Int64] { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of incoming bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +open private(set) dynamic var currentBytesInPerSecond: Int32 { get }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of outgoing bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +open private(set) dynamic var currentBytesOutPerSecond: Int32 { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a new connection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Calls a command or method on RTMP Server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func call(_ commandName: String, responder: RTMPResponder?, arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connect(_:arguments:) + +
    +
    +
    +
    +
    +
    +

    Creates a two-way connection to an application on RTMP Server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func connect(_ command: String, arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPConnection/Code.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPConnection/Code.html new file mode 100644 index 000000000..7e2423d0d --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPConnection/Code.html @@ -0,0 +1,671 @@ + + + + Code Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Code

+
+
+ +
public enum Code : String
+ +
+
+ +
    +
  • NetStatusEvent#info.code for NetConnection
  • +
+ +
+
+
+
    +
  • +
    + + + + callBadVersion + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case callBadVersion = "NetConnection.Call.BadVersion"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + callFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case callFailed = "NetConnection.Call.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + callProhibited + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case callProhibited = "NetConnection.Call.Prohibited"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectAppshutdown + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectAppshutdown = "NetConnection.Connect.AppShutdown"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectClosed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectClosed = "NetConnection.Connect.Closed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectFailed = "NetConnection.Connect.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectIdleTimeOut + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectIdleTimeOut = "NetConnection.Connect.IdleTimeOut"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectInvalidApp + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectInvalidApp = "NetConnection.Connect.InvalidApp"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectNetworkChange + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectNetworkChange = "NetConnection.Connect.NetworkChange"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectRejected + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectRejected = "NetConnection.Connect.Rejected"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectSuccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectSuccess = "NetConnection.Connect.Success"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + level + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var level: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPResponder.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPResponder.html new file mode 100644 index 000000000..a16fd28ab --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPResponder.html @@ -0,0 +1,394 @@ + + + + RTMPResponder Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPResponder

+
+
+ +
open class RTMPResponder
+ +
+
+

The RTMPResponder class provides to use handle RTMPConnection’s callback.

+ +
+
+
+
    +
  • +
    + + + + Handler + +
    +
    +
    +
    +
    +
    +

    A Handler represents RTMPResponder’s callback function.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias Handler = (_ data: [Any?]) -> Void
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(result:status:) + +
    +
    +
    +
    +
    +
    +

    Creates a new RTMPResponder object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(result: @escaping Handler, status: Handler? = nil)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPSharedObject.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPSharedObject.html new file mode 100644 index 000000000..a9d4a901f --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPSharedObject.html @@ -0,0 +1,569 @@ + + + + RTMPSharedObject Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPSharedObject

+
+
+ +
public final class RTMPSharedObject : EventDispatcher
+
extension RTMPSharedObject: CustomDebugStringConvertible
+ +
+
+

The RTMPSharedObject class is used to read and write data on a server.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Returns a reference to a shared object on a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func getRemote(withName: String, remotePath: String, persistence: Bool) -> RTMPSharedObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + objectEncoding + +
    +
    +
    +
    +
    +
    +

    The AMF object encoding type.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let objectEncoding: RTMPObjectEncoding
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The current data storage.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var data: [String : Any?] { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setProperty(_:_:) + +
    +
    +
    +
    +
    +
    +

    Updates the value of a property in shared object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func setProperty(_ name: String, _ value: Any?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connect(_:) + +
    +
    +
    +
    +
    +
    +

    Connects to a remove shared object on a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func connect(_ rtmpConnection: RTMPConnection)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clear() + +
    +
    +
    +
    +
    +
    +

    Purges all of the data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func clear()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection a server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream.html new file mode 100644 index 000000000..e69ead1f0 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream.html @@ -0,0 +1,895 @@ + + + + RTMPStream Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPStream

+
+
+ +
open class RTMPStream : NetStream
+
extension RTMPStream: EventDispatcherConvertible
+ +
+
+

An object that provides the interface to control a one-way channel over a RtmpConnection.

+ +
+
+
+
    +
  • +
    + + + + Code + +
    +
    +
    +
    +
    +
    +

    NetStatusEvent#info.code for NetStream

    + + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Code : String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + HowToPublish + +
    +
    +
    +
    +
    +
    +

    The type of publish options.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum HowToPublish : String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + info + +
    +
    +
    +
    +
    +
    +

    The NetStreamInfo object whose properties contain data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var info: RTMPStreamInfo { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + objectEncoding + +
    +
    +
    +
    +
    +
    +

    The object encoding (AMF). Framework supports AMF0 only.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var objectEncoding: RTMPObjectEncoding { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + receiveAudio + +
    +
    +
    +
    +
    +
    +

    Incoming audio plays on the stream or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var receiveAudio: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + receiveVideo + +
    +
    +
    +
    +
    +
    +

    Incoming video plays on the stream or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var receiveVideo: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + paused + +
    +
    +
    +
    +
    +
    +

    Pauses playback or publish of a video stream or not.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var paused: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(connection:) + +
    +
    +
    +
    +
    +
    +

    Creates a new stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(connection: RTMPConnection)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + play(_:) + +
    +
    +
    +
    +
    +
    +

    Plays a live stream from RTMPServer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func play(_ arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seek(_:) + +
    +
    +
    +
    +
    +
    +

    Seeks the keyframe.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func seek(_ offset: Double)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publish(_:type:) + +
    +
    +
    +
    +
    +
    +

    Sends streaming audio, vidoe and data message from client.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func publish(_ name: String?, type: RTMPStream.HowToPublish = .live)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Stops playing or publishing and makes available other uses.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Sends a message on a published stream to all subscribing clients.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func send(handlerName: String, arguments: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + makeMetaData() + +
    +
    +
    +
    +
    +
    +

    Creates flv metadata for a stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func makeMetaData() -> ASObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func readyStateWillChange(to readyState: NetStream.ReadyState)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func readyStateDidChange(to readyState: NetStream.ReadyState)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

IEventDispatcher +

+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream/Code.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream/Code.html new file mode 100644 index 000000000..0738f7ec6 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream/Code.html @@ -0,0 +1,1425 @@ + + + + Code Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Code

+
+
+ +
public enum Code : String
+ +
+
+

NetStatusEvent#info.code for NetStream

+ + +
+
+
+
    +
  • +
    + + + + bufferEmpty + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufferEmpty = "NetStream.Buffer.Empty"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufferFlush + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufferFlush = "NetStream.Buffer.Flush"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufferFull + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufferFull = "NetStream.Buffer.Full"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectClosed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectClosed = "NetStream.Connect.Closed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectFailed = "NetStream.Connect.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectRejected + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectRejected = "NetStream.Connect.Rejected"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connectSuccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case connectSuccess = "NetStream.Connect.Success"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + drmUpdateNeeded + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case drmUpdateNeeded = "NetStream.DRM.UpdateNeeded"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + failed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failed = "NetStream.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + multicastStreamReset + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case multicastStreamReset = "NetStream.MulticastStream.Reset"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pauseNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pauseNotify = "NetStream.Pause.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playFailed = "NetStream.Play.Failed"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playFileStructureInvalid = "NetStream.Play.FileStructureInvalid"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playInsufficientBW + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playInsufficientBW = "NetStream.Play.InsufficientBW"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playNoSupportedTrackFound = "NetStream.Play.NoSupportedTrackFound"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playReset + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playReset = "NetStream.Play.Reset"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playStart = "NetStream.Play.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playStop + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playStop = "NetStream.Play.Stop"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playStreamNotFound + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playStreamNotFound = "NetStream.Play.StreamNotFound"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playTransition + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playTransition = "NetStream.Play.Transition"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + playUnpublishNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case playUnpublishNotify = "NetStream.Play.UnpublishNotify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishBadName + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishBadName = "NetStream.Publish.BadName"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishIdle + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishIdle = "NetStream.Publish.Idle"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publishStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case publishStart = "NetStream.Publish.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordAlreadyExists + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordAlreadyExists = "NetStream.Record.AlreadyExists"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordFailed = "NetStream.Record.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordNoAccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordNoAccess = "NetStream.Record.NoAccess"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordStart = "NetStream.Record.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + recordStop + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordStop = "NetStream.Record.Stop"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case recordDiskQuotaExceeded = "NetStream.Record.DiskQuotaExceeded"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + secondScreenStart + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case secondScreenStart = "NetStream.SecondScreen.Start"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + secondScreenStop + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case secondScreenStop = "NetStream.SecondScreen.Stop"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seekFailed + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case seekFailed = "NetStream.Seek.Failed"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seekInvalidTime + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case seekInvalidTime = "NetStream.Seek.InvalidTime"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + seekNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case seekNotify = "NetStream.Seek.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stepNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case stepNotify = "NetStream.Step.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + unpauseNotify + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case unpauseNotify = "NetStream.Unpause.Notify"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + unpublishSuccess + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case unpublishSuccess = "NetStream.Unpublish.Success"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoDimensionChange + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case videoDimensionChange = "NetStream.Video.DimensionChange"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + level + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var level: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream/HowToPublish.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream/HowToPublish.html new file mode 100644 index 000000000..57d13c775 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/RTMPStream/HowToPublish.html @@ -0,0 +1,448 @@ + + + + HowToPublish Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

HowToPublish

+
+
+ +
public enum HowToPublish : String
+ +
+
+

The type of publish options.

+ +
+
+
+
    +
  • +
    + + + + record + +
    +
    +
    +
    +
    +
    +

    Publish with server-side recording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case record
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append + +
    +
    +
    +
    +
    +
    +

    Publish with server-side recording which is to append file if exists.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case append
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + appendWithGap + +
    +
    +
    +
    +
    +
    +

    Publish with server-side recording which is to append and ajust time file if exists.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case appendWithGap
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + live + +
    +
    +
    +
    +
    +
    +

    Publish.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case live
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTConnection.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTConnection.html new file mode 100644 index 000000000..36152d379 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTConnection.html @@ -0,0 +1,530 @@ + + + + SRTConnection Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTConnection

+
+
+ +
public final class SRTConnection : NSObject
+ +
+
+

The SRTConnection class create a two-way SRT connection.

+ +
+
+
+
    +
  • +
    + + + + version + +
    +
    +
    +
    +
    +
    +

    SRT Library version

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let version: String
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + uri + +
    +
    +
    +
    +
    +
    +

    The URI passed to the SRTConnection.connect() method.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public private(set) var uri: URL? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + connected + +
    +
    +
    +
    +
    +
    +

    This instance connect to server(true) or not(false)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @objc
    +public private(set) dynamic var connected: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + performanceData + +
    +
    +
    +
    +
    +
    +

    The SRT’s performance data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var performanceData: SRTPerformanceData { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Creates a new SRTConnection.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + open(_:mode:) + +
    +
    +
    +
    +
    +
    +

    Open a two-way connection to an application on SRT Server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func open(_ uri: URL?, mode: SRTMode = .caller)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Closes the connection from the server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTLogger.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTLogger.html new file mode 100644 index 000000000..962fce117 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTLogger.html @@ -0,0 +1,420 @@ + + + + SRTLogger Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTLogger

+
+
+ +
public class SRTLogger
+ +
+
+

An object for writing interpolated string messages to srt logging system.

+ +
+
+
+
    +
  • +
    + + + + shared + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let shared: SRTLogger
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + level + +
    +
    +
    +
    +
    +
    +

    Specifies the current logging level.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var level: SRTLogLevel { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + functionalAreas + +
    +
    +
    +
    +
    +
    +

    Specifies the current logging functional areas.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var functionalAreas: Set<SRTLogFunctionalArea> { get set }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTStream.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTStream.html new file mode 100644 index 000000000..b2d5629d4 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/SRTStream.html @@ -0,0 +1,606 @@ + + + + SRTStream Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTStream

+
+
+ +
public final class SRTStream : NetStream
+
extension SRTStream: TSWriterDelegate
+
extension SRTStream: TSReaderDelegate
+ +
+
+

An object that provides the interface to control a one-way channel over a SRTConnection.

+ +
+
+
+
    +
  • +
    + + + + init(connection:) + +
    +
    +
    +
    +
    +
    +

    Creates a new SRTStream object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(connection: SRTConnection)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + publish(_:) + +
    +
    +
    +
    +
    +
    +

    Sends streaming audio, vidoe and data message from client.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func publish(_ name: String? = "")
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + play(_:) + +
    +
    +
    +
    +
    +
    +

    Playback streaming audio and video message from server.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func play(_ name: String? = "")
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + close() + +
    +
    +
    +
    +
    +
    +

    Stops playing or publishing and makes available other uses.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func close()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    override public func readyStateDidChange(to readyState: NetStream.ReadyState)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

TSWriterDelegate +

+
+
+
    +
  • +
    + + + + writer(_:didOutput:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func writer(_ writer: TSWriter, didOutput data: Data)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func writer(_ writer: TSWriter, didRotateFileHandle timestamp: CMTime)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

TSReaderDelegate +

+
+
+
    +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func reader(_ reader: TSReader, id: UInt16, didRead formatDescription: CMFormatDescription)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func reader(_ reader: TSReader, id: UInt16, didRead sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/TSReader.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/TSReader.html new file mode 100644 index 000000000..be13568d4 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/TSReader.html @@ -0,0 +1,448 @@ + + + + TSReader Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSReader

+
+
+ +
public class TSReader
+ +
+
+

The TSReader class represents read MPEG-2 transport stream data.

+ +
+
+
+
    +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any TSReaderDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init() + +
    +
    +
    +
    +
    +
    +

    Create a new TSReader instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + read(_:) + +
    +
    +
    +
    +
    +
    +

    Reads transport-stream data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func read(_ data: Data) -> Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + clear() + +
    +
    +
    +
    +
    +
    +

    Clears the reader object for new transport stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func clear()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/TSWriter.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/TSWriter.html new file mode 100644 index 000000000..12e53dd6d --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/TSWriter.html @@ -0,0 +1,741 @@ + + + + TSWriter Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSWriter

+
+
+ +
public final class TSWriter
+
extension TSWriter: IOMuxer
+
extension TSWriter: Running
+ +
+
+

The TSWriter class represents writes MPEG-2 transport stream data.

+ +
+
+
+
    +
  • +
    + + + + defaultPATPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPATPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultPMTPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPMTPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultVideoPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultVideoPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultAudioPID + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultAudioPID: UInt16
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultSegmentDuration: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    The delegate instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var delegate: (any TSWriterDelegate)?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    This instance is running to process(true) or not(false).

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + expectedMedias + +
    +
    +
    +
    +
    +
    +

    The exptected medias = [.video, .audio].

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var expectedMedias: Set<AVMediaType>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + audioFormat + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var audioFormat: AVAudioFormat? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoFormat + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoFormat: CMFormatDescription? { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(segmentDuration: Double = TSWriter.defaultSegmentDuration)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:when:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ audioBuffer: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/VideoAdaptiveNetBitRateStrategy.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/VideoAdaptiveNetBitRateStrategy.html new file mode 100644 index 000000000..a6f808f27 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/VideoAdaptiveNetBitRateStrategy.html @@ -0,0 +1,550 @@ + + + + VideoAdaptiveNetBitRateStrategy Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VideoAdaptiveNetBitRateStrategy

+
+
+ +
public final class VideoAdaptiveNetBitRateStrategy : NetBitRateStrategyConvertible
+ +
+
+

The VideoAdaptiveNetBitRateStrategy class provides an algorithm that focuses on video bitrate control.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let sufficientBWCountsThreshold: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stream + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public weak var stream: NetStream?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumVideoBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumVideoBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumAudioBitRate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mamimumAudioBitRate: Int
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(mamimumVideoBitrate: Int)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setUp() + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func setUp()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func sufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func insufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/VideoEffect.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/VideoEffect.html new file mode 100644 index 000000000..5ca53167b --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Classes/VideoEffect.html @@ -0,0 +1,414 @@ + + + + VideoEffect Class Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VideoEffect

+
+
+ +
open class VideoEffect : NSObject
+ +
+
+

An object that apply a video effect.

+ +

Example code:

+
final class MonochromeEffect: VideoEffect {
+    let filter: CIFilter? = CIFilter(name: "CIColorMonochrome")
+
+    override func execute(_ image: CIImage, info: CMSampleBuffer?) -> CIImage {
+        guard let filter: CIFilter = filter else {
+            return image
+        }
+        filter.setValue(image, forKey: "inputImage")
+        filter.setValue(CIColor(red: 0.75, green: 0.75, blue: 0.75), forKey: "inputColor")
+        filter.setValue(1.0, forKey: "inputIntensity")
+        return filter.outputImage ?? image
+    }
+}
+
+ +
+
+
+
    +
  • +
    + + + + ciContext + +
    +
    +
    +
    +
    +
    +

    Specifies the ciContext object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var ciContext: CIContext?
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + execute(_:info:) + +
    +
    +
    +
    +
    +
    +

    Executes to apply a video effect.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    open func execute(_ image: CIImage, info: CMSampleBuffer?) -> CIImage
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums.html new file mode 100644 index 000000000..9d886089d --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums.html @@ -0,0 +1,602 @@ + + + + Enumerations Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Enumerations

+

The following enumerations are available globally.

+ +
+
+
+
    +
  • +
    + + + + IOAudioUnitError + +
    +
    +
    +
    +
    +
    +

    The IO audio unit error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum IOAudioUnitError : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOVideoUnitError + +
    +
    +
    +
    +
    +
    +

    The IO video unit error domain codes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum IOVideoUnitError : Swift.Error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ImageTransform + +
    +
    +
    +
    +
    +
    +

    The type of image transform direction.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum ImageTransform : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPObjectEncoding + +
    +
    +
    +
    +
    +
    +

    Constans that defines the RTMPObject encoding type.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum RTMPObjectEncoding : UInt8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + DeviceUtil + +
    +
    +
    +
    +
    +
    +

    The namespace of DeviceUtil.

    + + See more +
    +
    +
    +
  • +
  • +
    + + + + DeviceUtil + +
    +
    +
    +
    +
    +
    +

    The namespace of DeviceUtil.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum DeviceUtil
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTLogLevel + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTLogLevel
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTLogFunctionalArea + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTLogFunctionalArea : Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTMode + +
    +
    +
    +
    +
    +
    +

    The type of SRTHaishinKit supports srt modes.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTMode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTSocketOption + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum SRTSocketOption : String
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/DeviceUtil.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/DeviceUtil.html new file mode 100644 index 000000000..476c55a1e --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/DeviceUtil.html @@ -0,0 +1,367 @@ + + + + DeviceUtil Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

DeviceUtil

+
+
+ +
public enum DeviceUtil
+ +
+
+

The namespace of DeviceUtil.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Lookup device by localizedName and mediaType.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func device(withLocalizedName: String, mediaType: AVMediaType) -> AVCaptureDevice?
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/IOAudioUnitError.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/IOAudioUnitError.html new file mode 100644 index 000000000..fca473b86 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/IOAudioUnitError.html @@ -0,0 +1,394 @@ + + + + IOAudioUnitError Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOAudioUnitError

+
+
+ +
public enum IOAudioUnitError : Swift.Error
+ +
+
+

The IO audio unit error domain codes.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The IO audio unit failed to create the AVAudioConverter..

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreate(from: AVAudioFormat?, to: AVAudioFormat?)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO audio unit faild to convert the an audio buffer.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToConvert(error: NSError)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/IOVideoUnitError.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/IOVideoUnitError.html new file mode 100644 index 000000000..6b0e80d7b --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/IOVideoUnitError.html @@ -0,0 +1,448 @@ + + + + IOVideoUnitError Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOVideoUnitError

+
+
+ +
public enum IOVideoUnitError : Swift.Error
+ +
+
+

The IO video unit error domain codes.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to create the VTSession.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToCreate(status: OSStatus)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to prepare the VTSession.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToPrepare(status: OSStatus)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to encode or decode a flame.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToFlame(status: OSStatus)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The IO video unit failed to set an option.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case failedToSetOption(status: OSStatus, option: VTSessionOption)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/ImageTransform.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/ImageTransform.html new file mode 100644 index 000000000..33efebc66 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/ImageTransform.html @@ -0,0 +1,448 @@ + + + + ImageTransform Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ImageTransform

+
+
+ +
public enum ImageTransform : String, Codable
+ +
+
+

The type of image transform direction.

+ +
+
+
+
    +
  • +
    + + + + north + +
    +
    +
    +
    +
    +
    +

    The north direction.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case north
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + south + +
    +
    +
    +
    +
    +
    +

    The south direction.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case south
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + east + +
    +
    +
    +
    +
    +
    +

    The east direciton.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case east
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + west + +
    +
    +
    +
    +
    +
    +

    The west direction.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case west
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/RTMPObjectEncoding.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/RTMPObjectEncoding.html new file mode 100644 index 000000000..b85b56491 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/RTMPObjectEncoding.html @@ -0,0 +1,394 @@ + + + + RTMPObjectEncoding Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPObjectEncoding

+
+
+ +
public enum RTMPObjectEncoding : UInt8
+ +
+
+

Constans that defines the RTMPObject encoding type.

+ +
+
+
+
    +
  • +
    + + + + amf0 + +
    +
    +
    +
    +
    +
    +

    The AMF0 Encoding.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case amf0 = 0x00
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + amf3 + +
    +
    +
    +
    +
    +
    +

    The AMF3 Encoding.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case amf3 = 0x03
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTLogFunctionalArea.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTLogFunctionalArea.html new file mode 100644 index 000000000..e8e1f1995 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTLogFunctionalArea.html @@ -0,0 +1,1095 @@ + + + + SRTLogFunctionalArea Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTLogFunctionalArea

+
+
+ +
public enum SRTLogFunctionalArea : Int32
+ +
+
+ +
+
+
+
    +
  • +
    + + + + general + +
    +
    +
    +
    +
    +
    +

    General uncategorized log, for serious issues only

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case general = 0
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bstats + +
    +
    +
    +
    +
    +
    +

    Socket create/open/close/configure activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bstats = 1
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + control + +
    +
    +
    +
    +
    +
    +

    Connection establishment and handshake

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case control = 2
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + data + +
    +
    +
    +
    +
    +
    +

    The checkTimer and around activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case data = 3
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + tsbpd + +
    +
    +
    +
    +
    +
    +

    The TsBPD thread

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case tsbpd = 4
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rsrc + +
    +
    +
    +
    +
    +
    +

    System resource allocation and management

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rsrc = 5
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + haicrypt + +
    +
    +
    +
    +
    +
    +

    Haicrypt module area

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case haicrypt = 6
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + congest + +
    +
    +
    +
    +
    +
    +

    Congestion control module

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case congest = 7
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pfilter + +
    +
    +
    +
    +
    +
    +

    Packet filter module

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pfilter = 8
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + applog + +
    +
    +
    +
    +
    +
    +

    Applications

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case applog
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + apiCtrl + +
    +
    +
    +
    +
    +
    +

    API part for socket and library managmenet

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case apiCtrl = 11
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queCtrl + +
    +
    +
    +
    +
    +
    +

    Queue control activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queCtrl = 13
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + epollUpd + +
    +
    +
    +
    +
    +
    +

    EPoll, internal update activities

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case epollUpd = 16
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + apiRecv + +
    +
    +
    +
    +
    +
    +

    API part for receiving

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case apiRecv = 21
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufRecv + +
    +
    +
    +
    +
    +
    +

    Buffer, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufRecv = 22
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queRecv + +
    +
    +
    +
    +
    +
    +

    Queue, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queRecv = 23
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chanRecv + +
    +
    +
    +
    +
    +
    +

    CChannel, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case chanRecv = 24
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + grpRecv + +
    +
    +
    +
    +
    +
    +

    Group, receiving side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case grpRecv = 25
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + apiSend + +
    +
    +
    +
    +
    +
    +

    API part for sending

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case apiSend = 31
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bufSend + +
    +
    +
    +
    +
    +
    +

    Buffer, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case bufSend = 32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queSend + +
    +
    +
    +
    +
    +
    +

    Queue, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queSend = 33
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chnSend + +
    +
    +
    +
    +
    +
    +

    CChannel, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case chnSend = 34
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + grpSend + +
    +
    +
    +
    +
    +
    +

    Group, sending side

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case grpSend = 35
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + internal + +
    +
    +
    +
    +
    +
    +

    Internal activities not connected directly to a socket

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case `internal` = 41
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + queMgmt + +
    +
    +
    +
    +
    +
    +

    Queue, management part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case queMgmt = 43
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + chnMgmt + +
    +
    +
    +
    +
    +
    +

    CChannel, management part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case chnMgmt = 44
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + grpMgmt + +
    +
    +
    +
    +
    +
    +

    Group, management part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case grpMgmt = 45
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + epollApi + +
    +
    +
    +
    +
    +
    +

    EPoll, API part

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case epollApi = 46
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTLogLevel.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTLogLevel.html new file mode 100644 index 000000000..f22fd8b7d --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTLogLevel.html @@ -0,0 +1,474 @@ + + + + SRTLogLevel Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTLogLevel

+
+
+ +
public enum SRTLogLevel
+ +
+
+ +
+
+
+
    +
  • +
    + + + + debug + +
    +
    +
    +
    +
    +
    +

    Highly detailed and very frequent messages.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case debug
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + notice + +
    +
    +
    +
    +
    +
    +

    Occasionally displayed information.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case notice
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + warning + +
    +
    +
    +
    +
    +
    +

    Unusual behavior.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case warning
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + error + +
    +
    +
    +
    +
    +
    +

    Abnormal behavior

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case error
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + crit + +
    +
    +
    +
    +
    +
    +

    Error that makes the current socket unusabl

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case crit
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTMode.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTMode.html new file mode 100644 index 000000000..428be4591 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTMode.html @@ -0,0 +1,394 @@ + + + + SRTMode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTMode

+
+
+ +
public enum SRTMode
+ +
+
+

The type of SRTHaishinKit supports srt modes.

+ +
+
+
+
    +
  • +
    + + + + caller + +
    +
    +
    +
    +
    +
    +

    The caller mode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case caller
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + listener + +
    +
    +
    +
    +
    +
    +

    The listener mode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case listener
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTSocketOption.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTSocketOption.html new file mode 100644 index 000000000..ad25932b5 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Enums/SRTSocketOption.html @@ -0,0 +1,1509 @@ + + + + SRTSocketOption Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTSocketOption

+
+
+ +
public enum SRTSocketOption : String
+ +
+
+ +
+
+
+
    +
  • +
    + + + + mss + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case mss
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndsyn + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndsyn
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvsyn + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvsyn
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isn + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case isn
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + fc + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case fc
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + linger + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case linger
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + udpsndbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case udpsndbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + udprcvbuf + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case udprcvbuf
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rendezvous + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rendezvous
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndtimeo + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndtimeo
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvtimeo + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvtimeo
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + reuseaddr + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case reuseaddr
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + maxbw + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case maxbw
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + state + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case state
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + event + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case event
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + snddata + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case snddata
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvdata + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvdata
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sender + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sender
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + tsbdmode + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case tsbdmode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + latency + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case latency
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + inputbw + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case inputbw
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + oheadbw + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case oheadbw
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + passphrase + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case passphrase
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pbkeylen + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pbkeylen
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + kmstate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case kmstate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ipttl + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case ipttl
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + iptos + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case iptos
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + tlpktdrop + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case tlpktdrop
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + snddropdelay + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case snddropdelay
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + nakreport + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case nakreport
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + conntimeo + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case conntimeo
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sndkmstate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case sndkmstate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + lossmaxttl + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case lossmaxttl
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + rcvlatency + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case rcvlatency
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + peerlatency + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case peerlatency
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + minversion + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case minversion
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + streamid + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case streamid
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + messageapi + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case messageapi
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + payloadsize + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case payloadsize
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + transtype + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case transtype
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + kmrefreshrate + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case kmrefreshrate
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + kmpreannounce + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case kmpreannounce
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + symbol + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var symbol: SRT_SOCKOPT { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions.html new file mode 100644 index 000000000..7ffe7b407 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions.html @@ -0,0 +1,458 @@ + + + + Extensions Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Extensions

+

The following extensions are available globally.

+ +
+
+
+
    +
  • +
    + + + + AVAudioCommonFormat + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension AVAudioCommonFormat: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + AudioFormatID + +
    +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension AudioFormatID: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension AudioStreamBasicDescription: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOMixer + +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
  • +
  • +
    + + + + SRTSocket + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    extension SRTSocket: Running
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AVAudioCommonFormat.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AVAudioCommonFormat.html new file mode 100644 index 000000000..7cddbdd33 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AVAudioCommonFormat.html @@ -0,0 +1,365 @@ + + + + AVAudioCommonFormat Extension Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AVAudioCommonFormat

+
+
+ +
extension AVAudioCommonFormat: CustomDebugStringConvertible
+ +
+
+ +
+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AudioFormatID.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AudioFormatID.html new file mode 100644 index 000000000..2a50fc32b --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AudioFormatID.html @@ -0,0 +1,365 @@ + + + + AudioFormatID Extension Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AudioFormatID

+
+
+ +
extension AudioFormatID: CustomDebugStringConvertible
+ +
+
+ +
+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AudioStreamBasicDescription.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AudioStreamBasicDescription.html new file mode 100644 index 000000000..5e6324d67 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Extensions/AudioStreamBasicDescription.html @@ -0,0 +1,365 @@ + + + + AudioStreamBasicDescription Extension Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AudioStreamBasicDescription

+
+
+ +
extension AudioStreamBasicDescription: Equatable
+ +
+
+ +
+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: AudioStreamBasicDescription, rhs: AudioStreamBasicDescription) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Global Variables.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Global Variables.html new file mode 100644 index 000000000..b57f83be4 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Global Variables.html @@ -0,0 +1,360 @@ + + + + Global Variables Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Global Variables

+

The following global variables are available globally.

+ +
+
+
+
    +
  • +
    + + + + kASUndefined + +
    +
    +
    +
    +
    +
    +

    The singleton ASUndefined object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let kASUndefined: ASUndefined
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols.html new file mode 100644 index 000000000..f7d551b7a --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols.html @@ -0,0 +1,669 @@ + + + + Protocols Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Protocols

+

The following protocols are available globally.

+ +
+
+
+
    +
  • +
    + + + + TSReaderDelegate + +
    +
    +
    +
    +
    +
    +

    The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol TSReaderDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + TSWriterDelegate + +
    +
    +
    +
    +
    +
    +

    The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol TSWriterDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOMuxer + +
    +
    +
    +
    +
    +
    +

    A type that multiplexer for streaming.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IOMuxer : Running
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IORecorderDelegate + +
    +
    +
    +
    +
    +
    +

    The interface an IORecorder uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IORecorderDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The interface a capture session uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IOScreenCaptureUnitDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + IOScreenCaptureUnit + +
    +
    +
    +
    +
    +
    +

    The interface that provides methods to screen capture.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol IOScreenCaptureUnit : Running
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    A type with a NetStream’s bitrate strategy representation.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol NetBitRateStrategyConvertible : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetStreamDelegate + +
    +
    +
    +
    +
    +
    +

    The interface a NetStream uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol NetStreamDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetStreamDrawable + +
    +
    +
    +
    +
    +
    +

    An interface that manages the NetStream content on the screen.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol NetStreamDrawable : AnyObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol EventDispatcherConvertible : AnyObject
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The interface a RTMPConnectionDelegate uses to inform its delegate.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol RTMPConnectionDelegate : AnyObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Running + +
    +
    +
    +
    +
    +
    +

    A type that methods for running.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public protocol Running : AnyObject
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/EventDispatcherConvertible.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/EventDispatcherConvertible.html new file mode 100644 index 000000000..86dcf1596 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/EventDispatcherConvertible.html @@ -0,0 +1,448 @@ + + + + EventDispatcherConvertible Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

EventDispatcherConvertible

+
+
+ +
public protocol EventDispatcherConvertible : AnyObject
+ +
+
+

The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Registers the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func addEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Unregister the event listeners on the event target.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func removeEventListener(_ type: Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + dispatch(event:) + +
    +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func dispatch(event: Event)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Dispatches the events into the implementations event model.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func dispatch(_ type: Event.Name, bubbles: Bool, data: Any?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOMuxer.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOMuxer.html new file mode 100644 index 000000000..03ac97b9d --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOMuxer.html @@ -0,0 +1,448 @@ + + + + IOMuxer Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOMuxer

+
+
+ +
public protocol IOMuxer : Running
+ +
+
+

A type that multiplexer for streaming.

+ +
+
+
+
    +
  • +
    + + + + audioFormat + +
    +
    +
    +
    +
    +
    +

    Specifies the audioFormat.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var audioFormat: AVAudioFormat? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoFormat + +
    +
    +
    +
    +
    +
    +

    Specifies the videoFormat.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var videoFormat: CMFormatDescription? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:when:) + +
    +
    +
    +
    +
    +
    +

    Appends an audio.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func append(_ audioBuffer: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + append(_:) + +
    +
    +
    +
    +
    +
    +

    Appends a video or an audio.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func append(_ sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IORecorderDelegate.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IORecorderDelegate.html new file mode 100644 index 000000000..edc8713a3 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IORecorderDelegate.html @@ -0,0 +1,394 @@ + + + + IORecorderDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IORecorderDelegate

+
+
+ +
public protocol IORecorderDelegate : AnyObject
+ +
+
+

The interface an IORecorder uses to inform its delegate.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to recorder error occured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func recorder(_ recorder: IORecorder, errorOccured error: IORecorder.Error)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to finish writing.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func recorder(_ recorder: IORecorder, finishWriting writer: AVAssetWriter)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOScreenCaptureUnit.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOScreenCaptureUnit.html new file mode 100644 index 000000000..ade26d46f --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOScreenCaptureUnit.html @@ -0,0 +1,394 @@ + + + + IOScreenCaptureUnit Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOScreenCaptureUnit

+
+
+ +
public protocol IOScreenCaptureUnit : Running
+ +
+
+

The interface that provides methods to screen capture.

+ +
+
+
+
    +
  • +
    + + + + attributes + +
    +
    +
    +
    +
    +
    +

    Specifies the CVPixelBufferPool’s attributes.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var attributes: [NSString : NSObject] { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + delegate + +
    +
    +
    +
    +
    +
    +

    Specifies the delegate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var delegate: (any IOScreenCaptureUnitDelegate)? { get set }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOScreenCaptureUnitDelegate.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOScreenCaptureUnitDelegate.html new file mode 100644 index 000000000..3b1c0e9df --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/IOScreenCaptureUnitDelegate.html @@ -0,0 +1,367 @@ + + + + IOScreenCaptureUnitDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

IOScreenCaptureUnitDelegate

+
+
+ +
public protocol IOScreenCaptureUnitDelegate : AnyObject
+ +
+
+

The interface a capture session uses to inform its delegate.

+ +
+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetBitRateStrategyConvertible.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetBitRateStrategyConvertible.html new file mode 100644 index 000000000..26eb9dcef --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetBitRateStrategyConvertible.html @@ -0,0 +1,502 @@ + + + + NetBitRateStrategyConvertible Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetBitRateStrategyConvertible

+
+
+ +
public protocol NetBitRateStrategyConvertible : AnyObject
+ +
+
+

A type with a NetStream’s bitrate strategy representation.

+ +
+
+
+
    +
  • +
    + + + + stream + +
    +
    +
    +
    +
    +
    +

    Specifies the stream instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var stream: NetStream? { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumVideoBitRate + +
    +
    +
    +
    +
    +
    +

    The mamimum video bitRate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var mamimumVideoBitRate: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumAudioBitRate + +
    +
    +
    +
    +
    +
    +

    The mamimum audio bitRate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var mamimumAudioBitRate: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + setUp() + +
    +
    +
    +
    +
    +
    +

    SetUps the NetBitRateStrategy instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func setUp()
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Invoke sufficientBWOccured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func sufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Invoke insufficientBWOccured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func insufficientBWOccured(_ stats: NetBitRateStats)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetStreamDelegate.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetStreamDelegate.html new file mode 100644 index 000000000..298ec95ab --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetStreamDelegate.html @@ -0,0 +1,475 @@ + + + + NetStreamDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetStreamDelegate

+
+
+ +
public protocol NetStreamDelegate : AnyObject
+ +
+
+

The interface a NetStream uses to inform its delegate.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver an audio packet incoming.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, didOutput audio: AVAudioBuffer, when: AVAudioTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stream(_:didOutput:) + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to playback a video incoming.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, didOutput video: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to video error occured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, videoErrorOccurred error: IOVideoUnitError)
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Tells the receiver to audio error occured.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stream(_ stream: NetStream, audioErrorOccurred error: IOAudioUnitError)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + streamDidOpen(_:) + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to the stream opened.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func streamDidOpen(_ stream: NetStream)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetStreamDrawable.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetStreamDrawable.html new file mode 100644 index 000000000..75e9c6615 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/NetStreamDrawable.html @@ -0,0 +1,451 @@ + + + + NetStreamDrawable Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetStreamDrawable

+
+
+ +
public protocol NetStreamDrawable : AnyObject
+ +
+
+

An interface that manages the NetStream content on the screen.

+ +
+
+
+
    +
  • +
    + + + + videoOrientation + +
    +
    +
    +
    +
    +
    +

    Specifies the orientation of AVCaptureVideoOrientation.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var videoOrientation: AVCaptureVideoOrientation { get set }
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the capture video preview enabled or not.

    + +

    Use AVCaptureVideoPreviewLayer as an internal implementation. You can verify that there is no delay in cinema mode. However, you cannot confirm the filter state.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    @available(tvOS 17.0, *)
    +var isCaptureVideoPreviewEnabled: Bool { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + attachStream(_:) + +
    +
    +
    +
    +
    +
    +

    Attaches a drawable to a new NetStream object.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func attachStream(_ stream: NetStream?)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + enqueue(_:) + +
    +
    +
    +
    +
    +
    +

    Enqueue a CMSampleBuffer? to draw.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func enqueue(_ sampleBuffer: CMSampleBuffer?)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/RTMPConnectionDelegate.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/RTMPConnectionDelegate.html new file mode 100644 index 000000000..602e33cea --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/RTMPConnectionDelegate.html @@ -0,0 +1,421 @@ + + + + RTMPConnectionDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPConnectionDelegate

+
+
+ +
public protocol RTMPConnectionDelegate : AnyObject
+ +
+
+

The interface a RTMPConnectionDelegate uses to inform its delegate.

+ +
+
+
+ +
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/Running.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/Running.html new file mode 100644 index 000000000..90d2c0619 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/Running.html @@ -0,0 +1,421 @@ + + + + Running Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Running

+
+
+ +
public protocol Running : AnyObject
+ +
+
+

A type that methods for running.

+ +
+
+
+
    +
  • +
    + + + + isRunning + +
    +
    +
    +
    +
    +
    +

    Indicates whether the receiver is running.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var isRunning: Atomic<Bool> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + startRunning() + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to start running.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func startRunning()
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + stopRunning() + +
    +
    +
    +
    +
    +
    +

    Tells the receiver to stop running.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func stopRunning()
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/TSReaderDelegate.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/TSReaderDelegate.html new file mode 100644 index 000000000..86e9e0633 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/TSReaderDelegate.html @@ -0,0 +1,394 @@ + + + + TSReaderDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSReaderDelegate

+
+
+ +
public protocol TSReaderDelegate : AnyObject
+ +
+
+

The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates.

+ +
+
+
+
    +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func reader(_ reader: TSReader, id: UInt16, didRead formatDescription: CMFormatDescription)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + reader(_:id:didRead:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func reader(_ reader: TSReader, id: UInt16, didRead sampleBuffer: CMSampleBuffer)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/TSWriterDelegate.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/TSWriterDelegate.html new file mode 100644 index 000000000..46bc83cbc --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Protocols/TSWriterDelegate.html @@ -0,0 +1,394 @@ + + + + TSWriterDelegate Protocol Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

TSWriterDelegate

+
+
+ +
public protocol TSWriterDelegate : AnyObject
+ +
+
+

The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates.

+ +
+
+
+
    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func writer(_ writer: TSWriter, didRotateFileHandle timestamp: CMTime)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + writer(_:didOutput:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    func writer(_ writer: TSWriter, didOutput data: Data)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs.html new file mode 100644 index 000000000..6802975e1 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs.html @@ -0,0 +1,757 @@ + + + + Structures Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Structures

+

The following structures are available globally.

+ +
+
+
+
    +
  • +
    + + + + AudioCodecSettings + +
    +
    +
    +
    +
    +
    +

    The AudioCodecSettings class specifying audio compression settings.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct AudioCodecSettings : Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + VTSessionOption + +
    +
    +
    +
    +
    +
    +

    A structure that represents Key-Value-Object for the VideoToolbox option.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct VTSessionOption
    +
    extension VTSessionOption: Hashable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + VideoCodecSettings + +
    +
    +
    +
    +
    +
    +

    The VideoCodecSettings class specifying video compression settings.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct VideoCodecSettings : Codable
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The MultiCamCaptureSetting represents the pip capture settings for the video capture.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct MultiCamCaptureSettings : Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SoundTransform + +
    +
    +
    +
    +
    +
    +

    The SoundTransform class

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct SoundTransform
    +
    extension SoundTransform: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + NetBitRateStats + +
    +
    +
    +
    +
    +
    +

    A structure that represents a NetStream’s bitRate statics.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct NetBitRateStats
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASUndefined + +
    +
    +
    +
    +
    +
    +

    The ASUndefined structure represents an undefined for ActionScript.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASUndefined : CustomStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASTypedObject + +
    +
    +
    +
    +
    +
    +

    The ASTypedObject structure represents a typed object for ActionScript.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASTypedObject
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASArray + +
    +
    +
    +
    +
    +
    +

    The ASArray structure represents an array value for ActionScript.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASArray
    +
    extension ASArray: ExpressibleByArrayLiteral
    +
    extension ASArray: CustomDebugStringConvertible
    +
    extension ASArray: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASXMLDocument + +
    +
    +
    +
    +
    +
    +

    ActionScript 1.0 and 2.0 and flash.xml.XMLDocument in ActionScript 3.0

    +
    +

    Seealso

    + 2.17 XML Document Type (amf0-file-format-specification.pdf) + +
    +

    Seealso

    + 3.9 XMLDocument type (amf-file-format-spec.pdf) + +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASXMLDocument : CustomStringConvertible
    +
    extension ASXMLDocument: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ASXML + +
    +
    +
    +
    +
    +
    +

    ActionScript 3.0 introduces a new XML type.

    +
    +

    Seealso

    + 3.13 XML type (amf-file-format-spec.pdf) + +
    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct ASXML : CustomStringConvertible
    +
    extension ASXML: Equatable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + RTMPStreamInfo + +
    +
    +
    +
    +
    +
    +

    flash.net.NetStreamInfo for Swift

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct RTMPStreamInfo
    +
    extension RTMPStreamInfo: CustomDebugStringConvertible
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + Atomic + +
    +
    +
    +
    +
    +
    +

    Atomic class

    + + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct Atomic<A>
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + SRTPerformanceData + +
    +
    +
    +
    +
    +
    +

    The SRTPerformanceData represents the SRT’s performance statistics. This struct is wrapper for an CBytePerfMon.

    + + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public struct SRTPerformanceData
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASArray.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASArray.html new file mode 100644 index 000000000..c1ea257ef --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASArray.html @@ -0,0 +1,568 @@ + + + + ASArray Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASArray

+
+
+ +
public struct ASArray
+
extension ASArray: ExpressibleByArrayLiteral
+
extension ASArray: CustomDebugStringConvertible
+
extension ASArray: Equatable
+ +
+
+

The ASArray structure represents an array value for ActionScript.

+ +
+
+
+
    +
  • +
    + + + + length + +
    +
    +
    +
    +
    +
    +

    The length of an array.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var length: Int { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(count:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance containing the specified number of a single.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(count: Int)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance of data.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: [Any?])
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

ExpressibleByArrayLiteral +

+
+
+
    +
  • +
    + + + + init(arrayLiteral:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(arrayLiteral elements: Any?...)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + subscript(_:) + +
    +
    +
    +
    +
    +
    +

    Accesses the element at the specified position.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public subscript(i: Any) -> Any? { get set }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Equatable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: ASArray, rhs: ASArray) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASTypedObject.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASTypedObject.html new file mode 100644 index 000000000..cbc7cf7da --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASTypedObject.html @@ -0,0 +1,448 @@ + + + + ASTypedObject Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASTypedObject

+
+
+ +
public struct ASTypedObject
+ +
+
+

The ASTypedObject structure represents a typed object for ActionScript.

+ +
+
+
+
    +
  • +
    + + + + TypedObjectDecoder + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias TypedObjectDecoder = (_ type: String, _ data: ASObject) throws -> Any
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func register(typeNamed name: String, decoder: @escaping TypedObjectDecoder)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + register(type:named:) + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func register<T>(type: T.Type, named name: String) where T : Decodable
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func unregister(typeNamed name: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASUndefined.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASUndefined.html new file mode 100644 index 000000000..604b74060 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASUndefined.html @@ -0,0 +1,366 @@ + + + + ASUndefined Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASUndefined

+
+
+ +
public struct ASUndefined : CustomStringConvertible
+ +
+
+

The ASUndefined structure represents an undefined for ActionScript.

+ +
+
+
+
    +
  • +
    + + + + description + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var description: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASXML.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASXML.html new file mode 100644 index 000000000..493a82872 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASXML.html @@ -0,0 +1,438 @@ + + + + ASXML Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASXML

+
+
+ +
public struct ASXML : CustomStringConvertible
+
extension ASXML: Equatable
+ +
+
+

ActionScript 3.0 introduces a new XML type.

+
+

Seealso

+ 3.13 XML type (amf-file-format-spec.pdf) + +
+ +
+
+
+
    +
  • +
    + + + + description + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var description: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance of string.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Equatable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: ASXML, rhs: ASXML) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASXMLDocument.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASXMLDocument.html new file mode 100644 index 000000000..2f4e5527f --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/ASXMLDocument.html @@ -0,0 +1,442 @@ + + + + ASXMLDocument Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ASXMLDocument

+
+
+ +
public struct ASXMLDocument : CustomStringConvertible
+
extension ASXMLDocument: Equatable
+ +
+
+

ActionScript 1.0 and 2.0 and flash.xml.XMLDocument in ActionScript 3.0

+
+

Seealso

+ 2.17 XML Document Type (amf0-file-format-specification.pdf) + +
+

Seealso

+ 3.9 XMLDocument type (amf-file-format-spec.pdf) + +
+ +
+
+
+
    +
  • +
    + + + + description + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var description: String { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(data:) + +
    +
    +
    +
    +
    +
    +

    Creates a new instance of string.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(data: String)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

Equatable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: ASXMLDocument, rhs: ASXMLDocument) -> Bool
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/Atomic.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/Atomic.html new file mode 100644 index 000000000..46e96d397 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/Atomic.html @@ -0,0 +1,426 @@ + + + + Atomic Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Atomic

+
+
+ +
public struct Atomic<A>
+ +
+
+

Atomic class

+ + +
+
+
+
    +
  • +
    + + + + value + +
    +
    +
    +
    +
    +
    +

    Getter for the value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var value: A { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + init(_:) + +
    +
    +
    +
    +
    +
    +

    Creates an instance of value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(_ value: A)
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mutate(_:) + +
    +
    +
    +
    +
    +
    +

    Setter for the value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public mutating func mutate(_ transform: (inout A) -> Void)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/AudioCodecSettings.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/AudioCodecSettings.html new file mode 100644 index 000000000..7148935b4 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/AudioCodecSettings.html @@ -0,0 +1,593 @@ + + + + AudioCodecSettings Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

AudioCodecSettings

+
+
+ +
public struct AudioCodecSettings : Codable
+ +
+
+

The AudioCodecSettings class specifying audio compression settings.

+ +
+
+
+
    +
  • +
    + + + + default + +
    +
    +
    +
    +
    +
    +

    The default value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let `default`: AudioCodecSettings
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Maximum number of channels supported by the system

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let maximumNumberOfChannels: UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mamimumSampleRate + +
    +
    +
    +
    +
    +
    +

    Maximum sampleRate supported by the system

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let mamimumSampleRate: Float64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitRate + +
    +
    +
    +
    +
    +
    +

    Specifies the bitRate of audio output.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + sampleRate + +
    +
    +
    +
    +
    +
    +

    Specifies the sampleRate of audio output.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var sampleRate: Float64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + channels + +
    +
    +
    +
    +
    +
    +

    Specifies the channels of audio output.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var channels: UInt32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + downmix + +
    +
    +
    +
    +
    +
    +

    Specifies the mixes the channels or not. Currently, it supports input sources with 4, 5, 6, and 8 channels.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var downmix: Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + channelMap + +
    +
    +
    +
    +
    +
    +

    Specifies the map of the output to input channels.

    +

    Example code:

    +
    // If you want to use the 3rd and 4th channels from a 4-channel input source for a 2-channel output, you would specify it like this.
    +channelMap = [2, 3]
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var channelMap: [Int]?
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create an new AudioCodecSettings instance. A value of 0 will use the same value as the input source.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(
    +    bitRate: Int = 64 * 1000,
    +    sampleRate: Float64 = 0,
    +    channels: UInt32 = 0,
    +    downmix: Bool = false,
    +    channelMap: [Int]? = nil
    +)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/MultiCamCaptureSettings.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/MultiCamCaptureSettings.html new file mode 100644 index 000000000..0deceb391 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/MultiCamCaptureSettings.html @@ -0,0 +1,530 @@ + + + + MultiCamCaptureSettings Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

MultiCamCaptureSettings

+
+
+ +
public struct MultiCamCaptureSettings : Codable
+ +
+
+

The MultiCamCaptureSetting represents the pip capture settings for the video capture.

+ +
+
+
+
    +
  • +
    + + + + Mode + +
    +
    +
    +
    +
    +
    +

    The type of image display mode.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum Mode : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + default + +
    +
    +
    +
    +
    +
    +

    The default setting for the stream.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let `default`: MultiCamCaptureSettings
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mode + +
    +
    +
    +
    +
    +
    +

    The image display mode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mode: Mode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + cornerRadius + +
    +
    +
    +
    +
    +
    +

    The cornerRadius of the picture in picture image.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let cornerRadius: CGFloat
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + regionOfInterest + +
    +
    +
    +
    +
    +
    +

    The region of the picture in picture image.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let regionOfInterest: CGRect
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + direction + +
    +
    +
    +
    +
    +
    +

    The direction of the splitView position.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let direction: ImageTransform
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Create a new MultiCamCaptureSetting.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(mode: Mode, cornerRadius: CGFloat, regionOfInterest: CGRect, direction: ImageTransform)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/MultiCamCaptureSettings/Mode.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/MultiCamCaptureSettings/Mode.html new file mode 100644 index 000000000..c2809a394 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/MultiCamCaptureSettings/Mode.html @@ -0,0 +1,394 @@ + + + + Mode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Mode

+
+
+ +
public enum Mode : String, Codable
+ +
+
+

The type of image display mode.

+ +
+
+
+
    +
  • +
    + + + + pip + +
    +
    +
    +
    +
    +
    +

    The picture in picture mode means video stream playing within an inset window, freeing the rest of the screen for other tasks.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case pip
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + splitView + +
    +
    +
    +
    +
    +
    +

    The split view means video stream playing within two individual windows.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case splitView
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/NetBitRateStats.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/NetBitRateStats.html new file mode 100644 index 000000000..122086a7d --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/NetBitRateStats.html @@ -0,0 +1,421 @@ + + + + NetBitRateStats Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

NetBitRateStats

+
+
+ +
public struct NetBitRateStats
+ +
+
+

A structure that represents a NetStream’s bitRate statics.

+ +
+
+
+
    +
  • +
    + + + + currentQueueBytesOut + +
    +
    +
    +
    +
    +
    +

    The statistics of outgoing queue bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let currentQueueBytesOut: Int64
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of incoming bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let currentBytesInPerSecond: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The statistics of outgoing bytes per second.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let currentBytesOutPerSecond: Int32
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/RTMPStreamInfo.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/RTMPStreamInfo.html new file mode 100644 index 000000000..910ee1d29 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/RTMPStreamInfo.html @@ -0,0 +1,461 @@ + + + + RTMPStreamInfo Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

RTMPStreamInfo

+
+
+ +
public struct RTMPStreamInfo
+
extension RTMPStreamInfo: CustomDebugStringConvertible
+ +
+
+

flash.net.NetStreamInfo for Swift

+ +
+
+
+
    +
  • +
    + + + + byteCount + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var byteCount: Atomic<Int64> { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + resourceName + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var resourceName: String? { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + currentBytesPerSecond + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public internal(set) var currentBytesPerSecond: Int32 { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/SRTPerformanceData.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/SRTPerformanceData.html new file mode 100644 index 000000000..4e90bf6b9 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/SRTPerformanceData.html @@ -0,0 +1,2343 @@ + + + + SRTPerformanceData Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SRTPerformanceData

+
+
+ +
public struct SRTPerformanceData
+ +
+
+

The SRTPerformanceData represents the SRT’s performance statistics. This struct is wrapper for an CBytePerfMon.

+ + +
+
+
+
    +
  • +
    + + + + msTimeStamp + +
    +
    +
    +
    +
    +
    +

    The time since the UDT entity is started, in milliseconds.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msTimeStamp: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent data packets, including retransmissions.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentTotal: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received packets.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvTotal: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndLossTotal + +
    +
    +
    +
    +
    +
    +

    The total number of lost packets (sender side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndLossTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvLossTotal + +
    +
    +
    +
    +
    +
    +

    The total number of lost packets (receiver side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvLossTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRetransTotal + +
    +
    +
    +
    +
    +
    +

    The total number of retransmitted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRetransTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentACKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentACKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvACKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvACKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentNAKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentNAKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvNAKTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvNAKTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + usSndDurationTotal + +
    +
    +
    +
    +
    +
    +

    The total time duration when UDT is sending data (idle time exclusive)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let usSndDurationTotal: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndDropTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvDropTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvUndecryptTotal + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvUndecryptTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSentTotal + +
    +
    +
    +
    +
    +
    +

    The total number of sent data bytes, including retransmissions

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSentTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRecvTotal + +
    +
    +
    +
    +
    +
    +

    The total number of received bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRecvTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvLossTotal + +
    +
    +
    +
    +
    +
    +

    The total number of lost bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvLossTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRetransTotal + +
    +
    +
    +
    +
    +
    +

    The total number of retransmitted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRetransTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSndDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSndDropTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvDropTotal + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing bytes (estimate based on average packet size)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvDropTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvUndecryptTotal + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvUndecryptTotal: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSent + +
    +
    +
    +
    +
    +
    +

    The number of sent data packets, including retransmissions

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSent: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecv + +
    +
    +
    +
    +
    +
    +

    The number of received packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecv: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndLoss + +
    +
    +
    +
    +
    +
    +

    The number of lost packets (sender side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndLoss: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvLoss + +
    +
    +
    +
    +
    +
    +

    The number of lost packets (receiver side)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvLoss: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRetrans + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRetrans: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvRetrans + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted packets received

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvRetrans: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentACK + +
    +
    +
    +
    +
    +
    +

    The number of sent ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentACK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvACK + +
    +
    +
    +
    +
    +
    +

    The number of received ACK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvACK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSentNAK + +
    +
    +
    +
    +
    +
    +

    The number of sent NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSentNAK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRecvNAK + +
    +
    +
    +
    +
    +
    +

    The number of received NAK packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRecvNAK: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsSendRate + +
    +
    +
    +
    +
    +
    +

    The sending rate in Mb/s

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsSendRate: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsRecvRate + +
    +
    +
    +
    +
    +
    +

    The receiving rate in Mb/s

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsRecvRate: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + usSndDuration + +
    +
    +
    +
    +
    +
    +

    The busy sending time (i.e., idle time exclusive)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let usSndDuration: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktReorderDistance + +
    +
    +
    +
    +
    +
    +

    The size of order discrepancy in received sequences

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktReorderDistance: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvAvgBelatedTime + +
    +
    +
    +
    +
    +
    +

    The average time of packet delay for belated packets (packets with sequence past the ACK)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvAvgBelatedTime: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvBelated + +
    +
    +
    +
    +
    +
    +

    The number of received AND IGNORED packets due to having come too late

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvBelated: Int64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndDrop: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvDrop: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvUndecrypt + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvUndecrypt: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSent + +
    +
    +
    +
    +
    +
    +

    The number of sent data bytes, including retransmissions

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSent: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRecv + +
    +
    +
    +
    +
    +
    +

    The number of received bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRecv: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvLoss + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvLoss: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRetrans + +
    +
    +
    +
    +
    +
    +

    The number of retransmitted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRetrans: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSndDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to-send dropped bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSndDrop: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvDrop + +
    +
    +
    +
    +
    +
    +

    The number of too-late-to play missing bytes (estimate based on average packet size)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvDrop: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvUndecrypt + +
    +
    +
    +
    +
    +
    +

    The number of undecrypted bytes

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvUndecrypt: UInt64
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + usPktSndPeriod + +
    +
    +
    +
    +
    +
    +

    The packet sending period, in microseconds

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let usPktSndPeriod: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktFlowWindow + +
    +
    +
    +
    +
    +
    +

    The flow window size, in number of packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktFlowWindow: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktCongestionWindow + +
    +
    +
    +
    +
    +
    +

    The congestion window size, in number of packets

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktCongestionWindow: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktFlightSize + +
    +
    +
    +
    +
    +
    +

    The number of packets on flight

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktFlightSize: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msRTT + +
    +
    +
    +
    +
    +
    +

    The RTT, in milliseconds

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msRTT: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsBandwidth + +
    +
    +
    +
    +
    +
    +

    The estimated bandwidth, in Mb/s

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsBandwidth: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteAvailSndBuf + +
    +
    +
    +
    +
    +
    +

    The available UDT sender buffer size

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteAvailSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteAvailRcvBuf + +
    +
    +
    +
    +
    +
    +

    The available UDT receiver buffer size

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteAvailRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + mbpsMaxBW + +
    +
    +
    +
    +
    +
    +

    The transmit Bandwidth ceiling (Mbps)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let mbpsMaxBW: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteMSS + +
    +
    +
    +
    +
    +
    +

    The MTU

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteMSS: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndBuf + +
    +
    +
    +
    +
    +
    +

    The UnACKed packets in UDT sender

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteSndBuf + +
    +
    +
    +
    +
    +
    +

    The UnACKed bytes in UDT sender

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msSndBuf + +
    +
    +
    +
    +
    +
    +

    The UnACKed timespan (msec) of UDT sender

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msSndBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msSndTsbPdDelay + +
    +
    +
    +
    +
    +
    +

    Timestamp-based Packet Delivery Delay

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msSndTsbPdDelay: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvBuf + +
    +
    +
    +
    +
    +
    +

    Undelivered packets in UDT receiver

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + byteRcvBuf + +
    +
    +
    +
    +
    +
    +

    The undelivered bytes of UDT receiver

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let byteRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msRcvBuf + +
    +
    +
    +
    +
    +
    +

    The undelivered timespan (msec) of UDT receiver

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msRcvBuf: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + msRcvTsbPdDelay + +
    +
    +
    +
    +
    +
    +

    The Timestamp-based Packet Delivery Delay

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let msRcvTsbPdDelay: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The number of control packets supplied by packet filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndFilterExtraTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The number of control packets received and not supplied back

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterExtraTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    The number of packets that the filter supplied extra (e.g. FEC rebuilt)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterSupplyTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterLossTotal + +
    +
    +
    +
    +
    +
    +

    The number of packet loss not coverable by filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterLossTotal: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktSndFilterExtra + +
    +
    +
    +
    +
    +
    +

    The number of control packets supplied by packet filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktSndFilterExtra: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterExtra + +
    +
    +
    +
    +
    +
    +

    The number of control packets received and not supplied back

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterExtra: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterSupply + +
    +
    +
    +
    +
    +
    +

    The number of packets that the filter supplied extra (e.g. FEC rebuilt)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterSupply: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktRcvFilterLoss + +
    +
    +
    +
    +
    +
    +

    The number of packet loss not coverable by filter

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktRcvFilterLoss: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pktReorderTolerance + +
    +
    +
    +
    +
    +
    +

    The packet reorder tolerance value

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public let pktReorderTolerance: Int32
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/SoundTransform.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/SoundTransform.html new file mode 100644 index 000000000..ed1fc6783 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/SoundTransform.html @@ -0,0 +1,488 @@ + + + + SoundTransform Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

SoundTransform

+
+
+ +
public struct SoundTransform
+
extension SoundTransform: CustomDebugStringConvertible
+ +
+
+

The SoundTransform class

+ +
+
+
+
    +
  • +
    + + + + defaultVolume + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultVolume: Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + defaultPan + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let defaultPan: Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + volume + +
    +
    +
    +
    +
    +
    +

    The volume, ranging from 0 (silent) to 1 (full volume)

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var volume: Float
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + pan + +
    +
    +
    +
    +
    +
    +

    The panning of the sound

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var pan: Float
    + +
    +
    +
    +
    +
  • +
+
+
+
+ + +
+ +

CustomDebugStringConvertible +

+
+
+
    +
  • +
    + + + + debugDescription + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var debugDescription: String { get }
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VTSessionOption.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VTSessionOption.html new file mode 100644 index 000000000..5b03791f5 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VTSessionOption.html @@ -0,0 +1,402 @@ + + + + VTSessionOption Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VTSessionOption

+
+
+ +
public struct VTSessionOption
+
extension VTSessionOption: Hashable
+ +
+
+

A structure that represents Key-Value-Object for the VideoToolbox option.

+ +
+
+
+
+ + +
+ +

Hashable +

+
+
+
    +
  • +
    + + + + ==(_:_:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static func == (lhs: VTSessionOption, rhs: VTSessionOption) -> Bool
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + hash(into:) + +
    +
    +
    +
    +
    +
    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public func hash(into hasher: inout Hasher)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings.html new file mode 100644 index 000000000..36712dbc1 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings.html @@ -0,0 +1,820 @@ + + + + VideoCodecSettings Structure Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

VideoCodecSettings

+
+
+ +
public struct VideoCodecSettings : Codable
+ +
+
+

The VideoCodecSettings class specifying video compression settings.

+ +
+
+
+
    +
  • +
    + + + + frameInterval30 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval30: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval10 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval10: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval05 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval05: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval01 + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let frameInterval01: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + default + +
    +
    +
    +
    +
    +
    +

    The defulat value.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public static let `default`: VideoCodecSettings
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + BitRateMode + +
    +
    +
    +
    +
    +
    +

    A bitRate mode that affectes how to encode the video source.

    + + See more +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public enum BitRateMode : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + ScalingMode + +
    +
    +
    +
    +
    + +
    +

    Declaration

    +
    +

    Swift

    +
    public enum ScalingMode : String, Codable
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + videoSize + +
    +
    +
    +
    +
    +
    +

    Specifies the video size of encoding video.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var videoSize: CGSize
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitRate + +
    +
    +
    +
    +
    +
    +

    Specifies the bitrate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitRate: Int
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + frameInterval + +
    +
    +
    +
    +
    +
    +

    Specifies the video frame interval.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var frameInterval: Double
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + profileLevel + +
    +
    +
    +
    +
    +
    +

    Specifies the H264 profileLevel.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var profileLevel: String { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + scalingMode + +
    +
    +
    +
    +
    +
    +

    Specifies the scalingMode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var scalingMode: ScalingMode
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + bitRateMode + +
    +
    +
    +
    +
    +
    +

    Specifies the bitRateMode.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var bitRateMode: BitRateMode
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the keyframeInterval.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var maxKeyFrameIntervalDuration: Int32
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + allowFrameReordering + +
    +
    +
    +
    +
    +
    +

    Specifies the allowFrameRecording.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var allowFrameReordering: Bool?
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Specifies the HardwareEncoder is enabled(TRUE), or not(FALSE) for macOS.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isHardwareEncoderEnabled: Bool
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    Creates a new VideoCodecSettings instance.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public init(
    +    videoSize: CGSize = .init(width: 854, height: 480),
    +    bitRate: Int = 640 * 1000,
    +    frameInterval: Double = 0.0,
    +    profileLevel: String = kVTProfileLevel_H264_Baseline_3_1 as String,
    +    scalingMode: ScalingMode = .trim,
    +    bitRateMode: BitRateMode = .average,
    +    maxKeyFrameIntervalDuration: Int32 = 2,
    +    allowFrameReordering: Bool? = nil, // swiftlint:disable:this discouraged_optional_boolean,
    +    isHardwareEncoderEnabled: Bool = true
    +)
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings/BitRateMode.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings/BitRateMode.html new file mode 100644 index 000000000..0b2a3d632 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings/BitRateMode.html @@ -0,0 +1,394 @@ + + + + BitRateMode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

BitRateMode

+
+
+ +
public enum BitRateMode : String, Codable
+ +
+
+

A bitRate mode that affectes how to encode the video source.

+ +
+
+
+
    +
  • +
    + + + + average + +
    +
    +
    +
    +
    +
    +

    The average bit rate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case average
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + constant + +
    +
    +
    +
    +
    +
    +

    The constant bit rate.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case constant
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings/ScalingMode.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings/ScalingMode.html new file mode 100644 index 000000000..0484d62fe --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Structs/VideoCodecSettings/ScalingMode.html @@ -0,0 +1,457 @@ + + + + ScalingMode Enumeration Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

ScalingMode

+
+
+ +
public enum ScalingMode : String, Codable
+ +
+
+

The scaling mode.

+ + +
+
+
+
    +
  • +
    + + + + normal + +
    +
    +
    +
    +
    +
    +

    kVTScalingMode_Normal

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case normal = "Normal"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + letterbox + +
    +
    +
    +
    +
    +
    +

    kVTScalingMode_Letterbox

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case letterbox = "Letterbox"
    + +
    +
    +
    +
    +
  • +
  • + +
    +
    +
    +
    +
    +

    kVTScalingMode_CropSourceToCleanAperture

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case cropSourceToCleanAperture = "CropSourceToCleanAperture"
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + trim + +
    +
    +
    +
    +
    +
    +

    kVTScalingMode_Trim

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case trim = "Trim"
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Typealiases.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Typealiases.html new file mode 100644 index 000000000..c348880e6 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/Typealiases.html @@ -0,0 +1,360 @@ + + + + Type Aliases Reference + + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+

Type Aliases

+

The following type aliases are available globally.

+ +
+
+
+
    +
  • +
    + + + + ASObject + +
    +
    +
    +
    +
    +
    +

    The ASObject typealias represents an object for AcrionScript.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public typealias ASObject = [String : Any?]
    + +
    +
    +
    +
    +
  • +
+
+
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/css/highlight.css b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/css/highlight.css new file mode 100644 index 000000000..c170357ce --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/css/highlight.css @@ -0,0 +1,202 @@ +/*! Jazzy - https://github.com/realm/jazzy + * Copyright Realm Inc. + * SPDX-License-Identifier: MIT + */ +/* Credit to https://gist.github.com/wataru420/2048287 */ +.highlight .c { + color: #999988; + font-style: italic; } + +.highlight .err { + color: #a61717; + background-color: #e3d2d2; } + +.highlight .k { + color: #000000; + font-weight: bold; } + +.highlight .o { + color: #000000; + font-weight: bold; } + +.highlight .cm { + color: #999988; + font-style: italic; } + +.highlight .cp { + color: #999999; + font-weight: bold; } + +.highlight .c1 { + color: #999988; + font-style: italic; } + +.highlight .cs { + color: #999999; + font-weight: bold; + font-style: italic; } + +.highlight .gd { + color: #000000; + background-color: #ffdddd; } + +.highlight .gd .x { + color: #000000; + background-color: #ffaaaa; } + +.highlight .ge { + color: #000000; + font-style: italic; } + +.highlight .gr { + color: #aa0000; } + +.highlight .gh { + color: #999999; } + +.highlight .gi { + color: #000000; + background-color: #ddffdd; } + +.highlight .gi .x { + color: #000000; + background-color: #aaffaa; } + +.highlight .go { + color: #888888; } + +.highlight .gp { + color: #555555; } + +.highlight .gs { + font-weight: bold; } + +.highlight .gu { + color: #aaaaaa; } + +.highlight .gt { + color: #aa0000; } + +.highlight .kc { + color: #000000; + font-weight: bold; } + +.highlight .kd { + color: #000000; + font-weight: bold; } + +.highlight .kp { + color: #000000; + font-weight: bold; } + +.highlight .kr { + color: #000000; + font-weight: bold; } + +.highlight .kt { + color: #445588; } + +.highlight .m { + color: #009999; } + +.highlight .s { + color: #d14; } + +.highlight .na { + color: #008080; } + +.highlight .nb { + color: #0086B3; } + +.highlight .nc { + color: #445588; + font-weight: bold; } + +.highlight .no { + color: #008080; } + +.highlight .ni { + color: #800080; } + +.highlight .ne { + color: #990000; + font-weight: bold; } + +.highlight .nf { + color: #990000; } + +.highlight .nn { + color: #555555; } + +.highlight .nt { + color: #000080; } + +.highlight .nv { + color: #008080; } + +.highlight .ow { + color: #000000; + font-weight: bold; } + +.highlight .w { + color: #bbbbbb; } + +.highlight .mf { + color: #009999; } + +.highlight .mh { + color: #009999; } + +.highlight .mi { + color: #009999; } + +.highlight .mo { + color: #009999; } + +.highlight .sb { + color: #d14; } + +.highlight .sc { + color: #d14; } + +.highlight .sd { + color: #d14; } + +.highlight .s2 { + color: #d14; } + +.highlight .se { + color: #d14; } + +.highlight .sh { + color: #d14; } + +.highlight .si { + color: #d14; } + +.highlight .sx { + color: #d14; } + +.highlight .sr { + color: #009926; } + +.highlight .s1 { + color: #d14; } + +.highlight .ss { + color: #990073; } + +.highlight .bp { + color: #999999; } + +.highlight .vc { + color: #008080; } + +.highlight .vg { + color: #008080; } + +.highlight .vi { + color: #008080; } + +.highlight .il { + color: #009999; } diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/css/jazzy.css b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/css/jazzy.css new file mode 100644 index 000000000..2e3871391 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/css/jazzy.css @@ -0,0 +1,439 @@ +/*! Jazzy - https://github.com/realm/jazzy + * Copyright Realm Inc. + * SPDX-License-Identifier: MIT + */ +html, body, div, span, h1, h3, h4, p, a, code, em, img, ul, li, table, tbody, tr, td { + background: transparent; + border: 0; + margin: 0; + outline: 0; + padding: 0; + vertical-align: baseline; } + +body { + background-color: #f2f2f2; + font-family: Helvetica, freesans, Arial, sans-serif; + font-size: 14px; + -webkit-font-smoothing: subpixel-antialiased; + word-wrap: break-word; } + +h1, h2, h3 { + margin-top: 0.8em; + margin-bottom: 0.3em; + font-weight: 100; + color: black; } + +h1 { + font-size: 2.5em; } + +h2 { + font-size: 2em; + border-bottom: 1px solid #e2e2e2; } + +h4 { + font-size: 13px; + line-height: 1.5; + margin-top: 21px; } + +h5 { + font-size: 1.1em; } + +h6 { + font-size: 1.1em; + color: #777; } + +.section-name { + color: gray; + display: block; + font-family: Helvetica; + font-size: 22px; + font-weight: 100; + margin-bottom: 15px; } + +pre, code { + font: 0.95em Menlo, monospace; + color: #777; + word-wrap: normal; } + +p code, li code { + background-color: #eee; + padding: 2px 4px; + border-radius: 4px; } + +pre > code { + padding: 0; } + +a { + color: #0088cc; + text-decoration: none; } + a code { + color: inherit; } + +ul { + padding-left: 15px; } + +li { + line-height: 1.8em; } + +img { + max-width: 100%; } + +blockquote { + margin-left: 0; + padding: 0 10px; + border-left: 4px solid #ccc; } + +hr { + height: 1px; + border: none; + background-color: #e2e2e2; } + +.footnote-ref { + display: inline-block; + scroll-margin-top: 70px; } + +.footnote-def { + scroll-margin-top: 70px; } + +.content-wrapper { + margin: 0 auto; + width: 980px; } + +header { + font-size: 0.85em; + line-height: 32px; + background-color: #414141; + position: fixed; + width: 100%; + z-index: 3; } + header img { + padding-right: 6px; + vertical-align: -3px; + height: 16px; } + header a { + color: #fff; } + header p { + float: left; + color: #999; } + header .header-right { + float: right; + margin-left: 16px; } + +#breadcrumbs { + background-color: #f2f2f2; + height: 21px; + padding-top: 17px; + position: fixed; + width: 100%; + z-index: 2; + margin-top: 32px; } + #breadcrumbs #carat { + height: 10px; + margin: 0 5px; } + +.sidebar { + background-color: #f9f9f9; + border: 1px solid #e2e2e2; + overflow-y: auto; + overflow-x: hidden; + position: fixed; + top: 70px; + bottom: 0; + width: 230px; + word-wrap: normal; } + +.nav-groups { + list-style-type: none; + background: #fff; + padding-left: 0; } + +.nav-group-name { + border-bottom: 1px solid #e2e2e2; + font-size: 1.1em; + font-weight: 100; + padding: 15px 0 15px 20px; } + .nav-group-name > a { + color: #333; } + +.nav-group-tasks { + margin-top: 5px; } + +.nav-group-task { + font-size: 0.9em; + list-style-type: none; + white-space: nowrap; } + .nav-group-task a { + color: #888; } + +.main-content { + background-color: #fff; + border: 1px solid #e2e2e2; + margin-left: 246px; + position: absolute; + overflow: hidden; + padding-bottom: 20px; + top: 70px; + width: 734px; } + .main-content p, .main-content a, .main-content code, .main-content em, .main-content ul, .main-content table, .main-content blockquote { + margin-bottom: 1em; } + .main-content p { + line-height: 1.8em; } + .main-content section .section:first-child { + margin-top: 0; + padding-top: 0; } + .main-content section .task-group-section .task-group:first-of-type { + padding-top: 10px; } + .main-content section .task-group-section .task-group:first-of-type .section-name { + padding-top: 15px; } + .main-content section .heading:before { + content: ""; + display: block; + padding-top: 70px; + margin: -70px 0 0; } + .main-content .section-name p { + margin-bottom: inherit; + line-height: inherit; } + .main-content .section-name code { + background-color: inherit; + padding: inherit; + color: inherit; } + +.section { + padding: 0 25px; } + +.highlight { + background-color: #eee; + padding: 10px 12px; + border: 1px solid #e2e2e2; + border-radius: 4px; + overflow-x: auto; } + +.declaration .highlight { + overflow-x: initial; + padding: 0 40px 40px 0; + margin-bottom: -25px; + background-color: transparent; + border: none; } + +.section-name { + margin: 0; + margin-left: 18px; } + +.task-group-section { + margin-top: 10px; + padding-left: 6px; + border-top: 1px solid #e2e2e2; } + +.task-group { + padding-top: 0px; } + +.task-name-container a[name]:before { + content: ""; + display: block; + padding-top: 70px; + margin: -70px 0 0; } + +.section-name-container { + position: relative; + display: inline-block; } + .section-name-container .section-name-link { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + margin-bottom: 0; } + .section-name-container .section-name { + position: relative; + pointer-events: none; + z-index: 1; } + .section-name-container .section-name a { + pointer-events: auto; } + +.item { + padding-top: 8px; + width: 100%; + list-style-type: none; } + .item a[name]:before { + content: ""; + display: block; + padding-top: 70px; + margin: -70px 0 0; } + .item code { + background-color: transparent; + padding: 0; } + .item .token, .item .direct-link { + display: inline-block; + text-indent: -20px; + padding-left: 3px; + margin-left: 35px; + font-size: 11.9px; + transition: all 300ms; } + .item .token-open { + margin-left: 20px; } + .item .discouraged { + text-decoration: line-through; } + .item .declaration-note { + font-size: .85em; + color: gray; + font-style: italic; } + +.pointer-container { + border-bottom: 1px solid #e2e2e2; + left: -23px; + padding-bottom: 13px; + position: relative; + width: 110%; } + +.pointer { + background: #f9f9f9; + border-left: 1px solid #e2e2e2; + border-top: 1px solid #e2e2e2; + height: 12px; + left: 21px; + top: -7px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; + width: 12px; } + +.height-container { + display: none; + left: -25px; + padding: 0 25px; + position: relative; + width: 100%; + overflow: hidden; } + .height-container .section { + background: #f9f9f9; + border-bottom: 1px solid #e2e2e2; + left: -25px; + position: relative; + width: 100%; + padding-top: 10px; + padding-bottom: 5px; } + +.aside, .language { + padding: 6px 12px; + margin: 12px 0; + border-left: 5px solid #dddddd; + overflow-y: hidden; } + .aside .aside-title, .language .aside-title { + font-size: 9px; + letter-spacing: 2px; + text-transform: uppercase; + padding-bottom: 0; + margin: 0; + color: #aaa; + -webkit-user-select: none; } + .aside p:last-child, .language p:last-child { + margin-bottom: 0; } + +.language { + border-left: 5px solid #cde9f4; } + .language .aside-title { + color: #4b8afb; } + +.aside-warning, .aside-deprecated, .aside-unavailable { + border-left: 5px solid #ff6666; } + .aside-warning .aside-title, .aside-deprecated .aside-title, .aside-unavailable .aside-title { + color: #ff0000; } + +.graybox { + border-collapse: collapse; + width: 100%; } + .graybox p { + margin: 0; + word-break: break-word; + min-width: 50px; } + .graybox td { + border: 1px solid #e2e2e2; + padding: 5px 25px 5px 10px; + vertical-align: middle; } + .graybox tr td:first-of-type { + text-align: right; + padding: 7px; + vertical-align: top; + word-break: normal; + width: 40px; } + +.slightly-smaller { + font-size: 0.9em; } + +#footer { + position: relative; + top: 10px; + bottom: 0px; + margin-left: 25px; } + #footer p { + margin: 0; + color: #aaa; + font-size: 0.8em; } + +html.dash header, html.dash #breadcrumbs, html.dash .sidebar { + display: none; } + +html.dash .main-content { + width: 980px; + margin-left: 0; + border: none; + width: 100%; + top: 0; + padding-bottom: 0; } + +html.dash .height-container { + display: block; } + +html.dash .item .token { + margin-left: 0; } + +html.dash .content-wrapper { + width: auto; } + +html.dash #footer { + position: static; } + +form[role=search] { + float: right; } + form[role=search] input { + font: Helvetica, freesans, Arial, sans-serif; + margin-top: 6px; + font-size: 13px; + line-height: 20px; + padding: 0px 10px; + border: none; + border-radius: 1em; } + .loading form[role=search] input { + background: white url(../img/spinner.gif) center right 4px no-repeat; } + form[role=search] .tt-menu { + margin: 0; + min-width: 300px; + background: #fff; + color: #333; + border: 1px solid #e2e2e2; + z-index: 4; } + form[role=search] .tt-highlight { + font-weight: bold; } + form[role=search] .tt-suggestion { + font: Helvetica, freesans, Arial, sans-serif; + font-size: 14px; + padding: 0 8px; } + form[role=search] .tt-suggestion span { + display: table-cell; + white-space: nowrap; } + form[role=search] .tt-suggestion .doc-parent-name { + width: 100%; + text-align: right; + font-weight: normal; + font-size: 0.9em; + padding-left: 16px; } + form[role=search] .tt-suggestion:hover, + form[role=search] .tt-suggestion.tt-cursor { + cursor: pointer; + background-color: #4183c4; + color: #fff; } + form[role=search] .tt-suggestion:hover .doc-parent-name, + form[role=search] .tt-suggestion.tt-cursor .doc-parent-name { + color: #fff; } diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/carat.png b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/carat.png new file mode 100755 index 000000000..29d2f7fd4 Binary files /dev/null and b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/carat.png differ diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/dash.png b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/dash.png new file mode 100755 index 000000000..6f694c7a0 Binary files /dev/null and b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/dash.png differ diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/spinner.gif b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/spinner.gif new file mode 100644 index 000000000..e3038d0a4 Binary files /dev/null and b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/img/spinner.gif differ diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/index.html b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/index.html new file mode 100644 index 000000000..68de918ff --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/index.html @@ -0,0 +1,834 @@ + + + + HaishinKit Reference + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+ +

HaishinKit for iOS, macOS, tvOS, visionOS and Android.

+ +

GitHub Stars +Release +Platform Compatibility +Swift Compatibility +GitHub license

+ +
    +
  • Camera and Microphone streaming library via RTMP and SRT for iOS, macOS, tvOS and visionOS.
  • +
  • README.md contains unreleased content, which can be tested on the main branch.
  • +
  • API Documentation
  • +
+ +

+Sponsored with 💖 by
+ +Stream Chat + +
+Enterprise Grade APIs for Feeds & Chat. Try the iOS Chat tutorial 💬 +

+

💬 Communication

+ +
    +
  • If you need help with making LiveStreaming requests using HaishinKit, use a GitHub Discussions with Q&A.
  • +
  • If you’d like to discuss a feature request, use a GitHub Discussions with Idea
  • +
  • If you met a HaishinKit’s bug🐛, use a GitHub Issue with Bug report template + +
      +
    • The trace level log is very useful. Please set LBLogger.with(HaishinKitIdentifier).level = .trace.
    • +
    • If you don’t use an issue template. I will immediately close the your issue without a comment.
    • +
  • +
  • If you want to contribute, submit a pull request with a pr template.
  • +
  • If you want to support e-mail based communication without GitHub. + +
      +
    • Consulting fee is $50/1 incident. I’m able to response a few days.
    • +
  • +
  • Discord chatroom.
  • +
  • 日本語が分かる方は、日本語でのコミニケーションをお願いします!
  • +
+

💖 Sponsors

+ +

+Streamlabs +

+ + + + + + + + + + + + + + + + + + + +
Project nameNotesLicense
HaishinKit for Android.Camera and Microphone streaming library via RTMP for Android.BSD 3-Clause “New” or “Revised” License
HaishinKit for Flutter.Camera and Microphone streaming library via RTMP for Flutter.BSD 3-Clause “New” or “Revised” License
+

🎨 Features

+

RTMP

+ +
    +
  • [x] Authentication
  • +
  • [x] Publish and Recording
  • +
  • [x] Playback (Beta)
  • +
  • [x] Adaptive bitrate streaming)
  • +
  • [ ] Action Message Format + +
      +
    • [x] AMF0
    • +
    • [ ] AMF3
    • +
  • +
  • [x] SharedObject
  • +
  • [x] RTMPS + +
      +
    • [x] Native (RTMP over SSL/TLS)
    • +
    • [x] Tunneled (RTMPT over SSL/TLS) (Technical Preview)
    • +
  • +
  • [x] RTMPT (Technical Preview)
  • +
  • [x] ReplayKit Live as a Broadcast Upload Extension
  • +
  • [x] Enhanced RTMP
  • +
+

SRT(beta)

+ +
    +
  • [x] Publish and Recording (H264/AAC)
  • +
  • [x] Playback(beta)
  • +
  • [ ] mode + +
      +
    • [x] caller
    • +
    • [x] listener
    • +
    • [ ] rendezvous
    • +
  • +
+

Multi Camera

+ +

Supports two camera video sources. A picture-in-picture display that shows the image of the secondary camera of the primary camera. Supports camera split display that displays horizontally and vertically.

+ + + + + + + + + + + +
Picture-In-PictureSplit
+
// If you're using multi-camera functionality, please make sure to call the attachMultiCamera method first. This is required for iOS 14 and 15, among others.
+if #available(iOS 13.0, *) {
+  let front = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .front)
+  stream.attachMultiCamera(front)
+}
+let back = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back)
+stream.attachCamera(back)
+rtmpStream.attachAudio(AVCaptureDevice.default(for: .audio))
+
+

Rendering

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeaturesPiPHKViewMTHKView
EngineAVSampleBufferDisplayLayerMetal
Publish
Playback
VisualEffect
MultiCamera
PictureInPicture
+

Others

+ + +

🐾 Examples

+ +

Examples project are available for iOS with UIKit, iOS with SwiftUI, macOS and tvOS. Example macOS requires Apple Silicon mac.

+ +
    +
  • [x] Camera and microphone publish.
  • +
  • [x] Playback +sh +git clone https://github.com/shogo4405/HaishinKit.swift.git +cd HaishinKit.swift +carthage bootstrap --platform iOS,macOS,tvOS --use-xcframeworks +open HaishinKit.xcodeproj +
  • +
+

🌏 Requirements

+

Development

+ + + + + + + + + + + + + + + + + + + + + + + +
VersionXcodeSwift
1.7.0+15.0+5.9+
1.6.0+15.0+5.8+
1.5.0+14.0+5.7+
+

OS

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
-iOStvOSmacOSvisionOSwatchOS
HaishinKit12.0+12.0+10.13+1.0+-
SRTHaishinKit12.0+-13.0+--
+

Cocoa Keys

+ +

Please contains Info.plist.

+ +

iOS 10.0+

+ +
    +
  • NSMicrophoneUsageDescription
  • +
  • NSCameraUsageDescription
  • +
+ +

macOS 10.14+

+ +
    +
  • NSMicrophoneUsageDescription
  • +
  • NSCameraUsageDescription
  • +
+ +

tvOS 17.0+

+ +
    +
  • NSMicrophoneUsageDescription
  • +
  • NSCameraUsageDescription
  • +
+

🔧 Installation

+ +

HaishinKit has a multi-module configuration. If you want to use the SRT protocol, please use SRTHaishinKit. SRTHaishinKit supports SPM only. +| | HaishinKit | SRTHaishinKit | +| - | :- | :- | +| SPM | https://github.com/shogo4405/HaishinKit.swift | https://github.com/shogo4405/HaishinKit.swift | +| CocoaPods | source ‘https://github.com/CocoaPods/Specs.git
use_frameworks!

def import_pods
pod 'HaishinKit’, ‘~> 1.6.0
end

target 'Your Target’ do
platform :ios, ‘12.0’
import_pods
end
| Not supported. | +| Carthage | github “shogo4405/HaishinKit.swift” ~> 1.6.0 | Not supported. |

+

🔧 Prerequisites

+ +

Make sure you setup and activate your AVAudioSession iOS.

+
import AVFoundation
+let session = AVAudioSession.sharedInstance()
+do {
+    try session.setCategory(.playAndRecord, mode: .default, options: [.defaultToSpeaker, .allowBluetooth])
+    try session.setActive(true)
+} catch {
+    print(error)
+}
+
+

📓 RTMP Usage

+

Ingest

+
let connection = RTMPConnection()
+let stream = RTMPStream(connection: rtmpConnection)
+
+stream.attachAudio(AVCaptureDevice.default(for: .audio)) { error in
+    // print(error)
+}
+
+stream.attachCamera(AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back)) { error in
+    // print(error)
+}
+
+let hkView = MTHKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(stream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("rtmp://localhost/appName/instanceName")
+stream.publish("streamName")
+
+

Playback

+
let connection = RTMPConnection()
+let stream = RTMPStream(connection: rtmpConnection)
+
+let hkView = MTHKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(stream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("rtmp://localhost/appName/instanceName")
+stream.play("streamName")
+
+

Authentication

+
var connection = RTMPConnection()
+connection.connect("rtmp://username:password@localhost/appName/instanceName")
+
+

📓 SRT Usage

+

Ingest

+
let connection = SRTConnection()
+let stream = SRTStream(connection: connection)
+stream.attachAudio(AVCaptureDevice.default(for: .audio)) { error in
+    // print(error)
+}
+stream.attachCamera(AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back)) { error in
+    // print(error)
+}
+
+let hkView = HKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(rtmpStream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("srt://host:port?option=foo")
+stream.publish()
+
+

Playback

+
let connection = SRTConnection()
+let stream = SRTStream(connection: connection)
+
+let hkView = MTHKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(rtmpStream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("srt://host:port?option=foo")
+stream.play()
+
+

📓 Settings

+
stream.frameRate = 30
+stream.sessionPreset = AVCaptureSession.Preset.medium
+
+/// Specifies the video capture settings.
+stream.videoCapture(for: 0).isVideoMirrored = false
+stream.videoCapture(for: 0).preferredVideoStabilizationMode = .auto
+// stream.videoCapture(for: 1).isVideoMirrored = false
+
+// Specifies the audio codec settings.
+stream.audioSettings = AudioCodecSettings(
+  bitRate: 64 * 1000
+)
+
+// Specifies the video codec settings.
+stream.videoSettings = VideoCodecSettings(
+  videoSize: .init(width: 854, height: 480),
+  profileLevel: kVTProfileLevel_H264_Baseline_3_1 as String,
+  bitRate: 640 * 1000,
+  maxKeyFrameIntervalDuration: 2,
+  scalingMode: .trim,
+  bitRateMode: .average,
+  allowFrameReordering: nil,
+  isHardwareEncoderEnabled: true
+)
+
+// Specifies the recording settings. 0" means the same of input.
+stream.startRecording([
+  AVMediaType.audio: [
+    AVFormatIDKey: Int(kAudioFormatMPEG4AAC),
+    AVSampleRateKey: 0,
+    AVNumberOfChannelsKey: 0,
+    // AVEncoderBitRateKey: 128000,
+  ],
+  AVMediaType.video: [
+    AVVideoCodecKey: AVVideoCodecH264,
+    AVVideoHeightKey: 0,
+    AVVideoWidthKey: 0,
+    /*
+    AVVideoCompressionPropertiesKey: [
+      AVVideoMaxKeyFrameIntervalDurationKey: 2,
+      AVVideoProfileLevelKey: AVVideoProfileLevelH264Baseline30,
+      AVVideoAverageBitRateKey: 512000
+    ]
+    */
+  ]
+])
+
+stream.attachAudio(AVCaptureDevice.default(for: .audio))
+
+
// picrure in picrure settings.
+stream.multiCamCaptureSettings = MultiCamCaptureSetting(
+  mode: .pip,
+  cornerRadius: 16.0,
+  regionOfInterest: .init(
+    origin: CGPoint(x: 16, y: 16),
+    size: .init(width: 160, height: 160)
+  )
+)
+
+
// split settings.
+stream.multiCamCaptureSettings = MultiCamCaptureSetting(
+  mode: .split(direction: .east),
+  cornerRadius: 0.0,
+  regionOfInterest: .init(
+    origin: .zero,
+    size: .zero
+  )
+)
+
+

Screen Capture

+
// iOS
+let screen = IOUIScreenCaptureUnit(shared: UIApplication.shared)
+screen.delegate = stream
+screen.startRunning()
+
+// macOS
+stream.attachScreen(AVCaptureScreenInput(displayID: CGMainDisplayID()))
+
+

💠 Sponsorship

+ +

Looking for sponsors. Sponsoring I will enable us to:

+ +
    +
  • Purchase smartphones or peripheral devices for testing purposes.
  • +
  • Pay for testing on a specific streaming service or for testing on mobile lines.
  • +
  • Potentially private use to continue the OSS development
  • +
+ +

If you use any of our libraries for work, see if your employers would be interested in sponsorship. I have some special offers. I would greatly appreciate. Thank you.

+ +
    +
  • If you request I will note your name product our README.
  • +
  • If you mention on a discussion, an issue or pull request that you are sponsoring us I will prioritise helping you even higher.
  • +
+ +

スポンサーを募集しています。利用用途としては、

+ +
    +
  • テスト目的で、スマートフォンの購入や周辺機器の購入を行います。
  • +
  • 特定のストリーミングサービスへのテストの支払いや、モバイル回線でのテストの支払いに利用します。
  • +
  • 著書のOSS開発を継続的に行う為に私的に利用する可能性もあります。
  • +
+ +

このライブラリーを仕事で継続的に利用している場合は、ぜひ。雇用主に、スポンサーに興味がないか確認いただけると幸いです。いくつか特典を用意しています。

+ +
    +
  • README.mdへの企業ロゴの掲載
  • +
  • IssueやPull Requestの優先的な対応
  • +
+ +

Sponsorship

+

📖 Reference

+ + +

📜 License

+ +

BSD-3-Clause

+ +
+
+ +
+
+ + diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jazzy.js b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jazzy.js new file mode 100755 index 000000000..198441660 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jazzy.js @@ -0,0 +1,74 @@ +// Jazzy - https://github.com/realm/jazzy +// Copyright Realm Inc. +// SPDX-License-Identifier: MIT + +window.jazzy = {'docset': false} +if (typeof window.dash != 'undefined') { + document.documentElement.className += ' dash' + window.jazzy.docset = true +} +if (navigator.userAgent.match(/xcode/i)) { + document.documentElement.className += ' xcode' + window.jazzy.docset = true +} + +function toggleItem($link, $content) { + var animationDuration = 300; + $link.toggleClass('token-open'); + $content.slideToggle(animationDuration); +} + +function itemLinkToContent($link) { + return $link.parent().parent().next(); +} + +// On doc load + hash-change, open any targetted item +function openCurrentItemIfClosed() { + if (window.jazzy.docset) { + return; + } + var $link = $(`a[name="${location.hash.substring(1)}"]`).nextAll('.token'); + $content = itemLinkToContent($link); + if ($content.is(':hidden')) { + toggleItem($link, $content); + } +} + +$(openCurrentItemIfClosed); +$(window).on('hashchange', openCurrentItemIfClosed); + +// On item link ('token') click, toggle its discussion +$('.token').on('click', function(event) { + if (window.jazzy.docset) { + return; + } + var $link = $(this); + toggleItem($link, itemLinkToContent($link)); + + // Keeps the document from jumping to the hash. + var href = $link.attr('href'); + if (history.pushState) { + history.pushState({}, '', href); + } else { + location.hash = href; + } + event.preventDefault(); +}); + +// Clicks on links to the current, closed, item need to open the item +$("a:not('.token')").on('click', function() { + if (location == this.href) { + openCurrentItemIfClosed(); + } +}); + +// KaTeX rendering +if ("katex" in window) { + $($('.math').each( (_, element) => { + katex.render(element.textContent, element, { + displayMode: $(element).hasClass('m-block'), + throwOnError: false, + trust: true + }); + })) +} diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jazzy.search.js b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jazzy.search.js new file mode 100644 index 000000000..359cdbb8b --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jazzy.search.js @@ -0,0 +1,74 @@ +// Jazzy - https://github.com/realm/jazzy +// Copyright Realm Inc. +// SPDX-License-Identifier: MIT + +$(function(){ + var $typeahead = $('[data-typeahead]'); + var $form = $typeahead.parents('form'); + var searchURL = $form.attr('action'); + + function displayTemplate(result) { + return result.name; + } + + function suggestionTemplate(result) { + var t = '
'; + t += '' + result.name + ''; + if (result.parent_name) { + t += '' + result.parent_name + ''; + } + t += '
'; + return t; + } + + $typeahead.one('focus', function() { + $form.addClass('loading'); + + $.getJSON(searchURL).then(function(searchData) { + const searchIndex = lunr(function() { + this.ref('url'); + this.field('name'); + this.field('abstract'); + for (const [url, doc] of Object.entries(searchData)) { + this.add({url: url, name: doc.name, abstract: doc.abstract}); + } + }); + + $typeahead.typeahead( + { + highlight: true, + minLength: 3, + autoselect: true + }, + { + limit: 10, + display: displayTemplate, + templates: { suggestion: suggestionTemplate }, + source: function(query, sync) { + const lcSearch = query.toLowerCase(); + const results = searchIndex.query(function(q) { + q.term(lcSearch, { boost: 100 }); + q.term(lcSearch, { + boost: 10, + wildcard: lunr.Query.wildcard.TRAILING + }); + }).map(function(result) { + var doc = searchData[result.ref]; + doc.url = result.ref; + return doc; + }); + sync(results); + } + } + ); + $form.removeClass('loading'); + $typeahead.trigger('focus'); + }); + }); + + var baseURL = searchURL.slice(0, -"search.json".length); + + $typeahead.on('typeahead:select', function(e, result) { + window.location = baseURL + result.url; + }); +}); diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jquery.min.js b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jquery.min.js new file mode 100644 index 000000000..7f37b5d99 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/jquery.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 00){var c=e.utils.clone(r)||{};c.position=[a,l],c.index=s.length,s.push(new e.Token(i.slice(a,o),c))}a=o+1}}return s},e.tokenizer.separator=/[\s\-]+/,e.Pipeline=function(){this._stack=[]},e.Pipeline.registeredFunctions=Object.create(null),e.Pipeline.registerFunction=function(t,r){r in this.registeredFunctions&&e.utils.warn("Overwriting existing registered function: "+r),t.label=r,e.Pipeline.registeredFunctions[t.label]=t},e.Pipeline.warnIfFunctionNotRegistered=function(t){var r=t.label&&t.label in this.registeredFunctions;r||e.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",t)},e.Pipeline.load=function(t){var r=new e.Pipeline;return t.forEach(function(t){var i=e.Pipeline.registeredFunctions[t];if(!i)throw new Error("Cannot load unregistered function: "+t);r.add(i)}),r},e.Pipeline.prototype.add=function(){var t=Array.prototype.slice.call(arguments);t.forEach(function(t){e.Pipeline.warnIfFunctionNotRegistered(t),this._stack.push(t)},this)},e.Pipeline.prototype.after=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");i+=1,this._stack.splice(i,0,r)},e.Pipeline.prototype.before=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");this._stack.splice(i,0,r)},e.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);t!=-1&&this._stack.splice(t,1)},e.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=n),s!=e);)i=r-t,n=t+Math.floor(i/2),s=this.elements[2*n];return s==e?2*n:s>e?2*n:sa?l+=2:o==a&&(t+=r[u+1]*i[l+1],u+=2,l+=2);return t},e.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},e.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var o,a=s.str.charAt(0);a in s.node.edges?o=s.node.edges[a]:(o=new e.TokenSet,s.node.edges[a]=o),1==s.str.length&&(o["final"]=!0),n.push({node:o,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(0!=s.editsRemaining){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new e.TokenSet;s.node.edges["*"]=u}if(0==s.str.length&&(u["final"]=!0),n.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&n.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),1==s.str.length&&(s.node["final"]=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new e.TokenSet;s.node.edges["*"]=l}1==s.str.length&&(l["final"]=!0),n.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var c,h=s.str.charAt(0),d=s.str.charAt(1);d in s.node.edges?c=s.node.edges[d]:(c=new e.TokenSet,s.node.edges[d]=c),1==s.str.length&&(c["final"]=!0),n.push({node:c,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return i},e.TokenSet.fromString=function(t){for(var r=new e.TokenSet,i=r,n=0,s=t.length;n=e;t--){var r=this.uncheckedNodes[t],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r["char"]]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}},e.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},e.Index.prototype.search=function(t){return this.query(function(r){var i=new e.QueryParser(t,r);i.parse()})},e.Index.prototype.query=function(t){for(var r=new e.Query(this.fields),i=Object.create(null),n=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},e.Builder.prototype.k1=function(e){this._k1=e},e.Builder.prototype.add=function(t,r){var i=t[this._ref],n=Object.keys(this._fields);this._documents[i]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return e.QueryLexer.EOS;var t=this.str.charAt(this.pos);return this.pos+=1,t},e.QueryLexer.prototype.width=function(){return this.pos-this.start},e.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},e.QueryLexer.prototype.backup=function(){this.pos-=1},e.QueryLexer.prototype.acceptDigitRun=function(){var t,r;do t=this.next(),r=t.charCodeAt(0);while(r>47&&r<58);t!=e.QueryLexer.EOS&&this.backup()},e.QueryLexer.prototype.more=function(){return this.pos1&&(t.backup(),t.emit(e.QueryLexer.TERM)),t.ignore(),t.more())return e.QueryLexer.lexText},e.QueryLexer.lexEditDistance=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.EDIT_DISTANCE),e.QueryLexer.lexText},e.QueryLexer.lexBoost=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.BOOST),e.QueryLexer.lexText},e.QueryLexer.lexEOS=function(t){t.width()>0&&t.emit(e.QueryLexer.TERM)},e.QueryLexer.termSeparator=e.tokenizer.separator,e.QueryLexer.lexText=function(t){for(;;){var r=t.next();if(r==e.QueryLexer.EOS)return e.QueryLexer.lexEOS;if(92!=r.charCodeAt(0)){if(":"==r)return e.QueryLexer.lexField;if("~"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexEditDistance;if("^"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexBoost;if("+"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if("-"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if(r.match(e.QueryLexer.termSeparator))return e.QueryLexer.lexTerm}else t.escapeCharacter()}},e.QueryParser=function(t,r){this.lexer=new e.QueryLexer(t),this.query=r,this.currentClause={},this.lexemeIdx=0},e.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var t=e.QueryParser.parseClause;t;)t=t(this);return this.query},e.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},e.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},e.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},e.QueryParser.parseClause=function(t){var r=t.peekLexeme();if(void 0!=r)switch(r.type){case e.QueryLexer.PRESENCE:return e.QueryParser.parsePresence;case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(i+=" with value '"+r.str+"'"),new e.QueryParseError(i,r.start,r.end)}},e.QueryParser.parsePresence=function(t){var r=t.consumeLexeme();if(void 0!=r){switch(r.str){case"-":t.currentClause.presence=e.Query.presence.PROHIBITED;break;case"+":t.currentClause.presence=e.Query.presence.REQUIRED;break;default:var i="unrecognised presence operator'"+r.str+"'";throw new e.QueryParseError(i,r.start,r.end)}var n=t.peekLexeme();if(void 0==n){var i="expecting term or field, found nothing";throw new e.QueryParseError(i,r.start,r.end)}switch(n.type){case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expecting term or field, found '"+n.type+"'";throw new e.QueryParseError(i,n.start,n.end)}}},e.QueryParser.parseField=function(t){var r=t.consumeLexeme();if(void 0!=r){if(t.query.allFields.indexOf(r.str)==-1){var i=t.query.allFields.map(function(e){return"'"+e+"'"}).join(", "),n="unrecognised field '"+r.str+"', possible fields: "+i;throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.fields=[r.str];var s=t.peekLexeme();if(void 0==s){var n="expecting term, found nothing";throw new e.QueryParseError(n,r.start,r.end)}switch(s.type){case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var n="expecting term, found '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseTerm=function(t){var r=t.consumeLexeme();if(void 0!=r){t.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(t.currentClause.usePipeline=!1);var i=t.peekLexeme();if(void 0==i)return void t.nextClause();switch(i.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+i.type+"'";throw new e.QueryParseError(n,i.start,i.end)}}},e.QueryParser.parseEditDistance=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="edit distance must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.editDistance=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseBoost=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="boost must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.boost=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.lunr=t()}(this,function(){return e})}(); diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/typeahead.jquery.js b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/typeahead.jquery.js new file mode 100644 index 000000000..3a2d2ab03 --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/js/typeahead.jquery.js @@ -0,0 +1,1694 @@ +/*! + * typeahead.js 1.3.1 + * https://github.com/corejavascript/typeahead.js + * Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT + */ + + +(function(root, factory) { + if (typeof define === "function" && define.amd) { + define([ "jquery" ], function(a0) { + return factory(a0); + }); + } else if (typeof module === "object" && module.exports) { + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +})(this, function($) { + var _ = function() { + "use strict"; + return { + isMsie: function() { + return /(msie|trident)/i.test(navigator.userAgent) ? navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2] : false; + }, + isBlankString: function(str) { + return !str || /^\s*$/.test(str); + }, + escapeRegExChars: function(str) { + return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); + }, + isString: function(obj) { + return typeof obj === "string"; + }, + isNumber: function(obj) { + return typeof obj === "number"; + }, + isArray: $.isArray, + isFunction: $.isFunction, + isObject: $.isPlainObject, + isUndefined: function(obj) { + return typeof obj === "undefined"; + }, + isElement: function(obj) { + return !!(obj && obj.nodeType === 1); + }, + isJQuery: function(obj) { + return obj instanceof $; + }, + toStr: function toStr(s) { + return _.isUndefined(s) || s === null ? "" : s + ""; + }, + bind: $.proxy, + each: function(collection, cb) { + $.each(collection, reverseArgs); + function reverseArgs(index, value) { + return cb(value, index); + } + }, + map: $.map, + filter: $.grep, + every: function(obj, test) { + var result = true; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (!(result = test.call(null, val, key, obj))) { + return false; + } + }); + return !!result; + }, + some: function(obj, test) { + var result = false; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (result = test.call(null, val, key, obj)) { + return false; + } + }); + return !!result; + }, + mixin: $.extend, + identity: function(x) { + return x; + }, + clone: function(obj) { + return $.extend(true, {}, obj); + }, + getIdGenerator: function() { + var counter = 0; + return function() { + return counter++; + }; + }, + templatify: function templatify(obj) { + return $.isFunction(obj) ? obj : template; + function template() { + return String(obj); + } + }, + defer: function(fn) { + setTimeout(fn, 0); + }, + debounce: function(func, wait, immediate) { + var timeout, result; + return function() { + var context = this, args = arguments, later, callNow; + later = function() { + timeout = null; + if (!immediate) { + result = func.apply(context, args); + } + }; + callNow = immediate && !timeout; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + if (callNow) { + result = func.apply(context, args); + } + return result; + }; + }, + throttle: function(func, wait) { + var context, args, timeout, result, previous, later; + previous = 0; + later = function() { + previous = new Date(); + timeout = null; + result = func.apply(context, args); + }; + return function() { + var now = new Date(), remaining = wait - (now - previous); + context = this; + args = arguments; + if (remaining <= 0) { + clearTimeout(timeout); + timeout = null; + previous = now; + result = func.apply(context, args); + } else if (!timeout) { + timeout = setTimeout(later, remaining); + } + return result; + }; + }, + stringify: function(val) { + return _.isString(val) ? val : JSON.stringify(val); + }, + guid: function() { + function _p8(s) { + var p = (Math.random().toString(16) + "000000000").substr(2, 8); + return s ? "-" + p.substr(0, 4) + "-" + p.substr(4, 4) : p; + } + return "tt-" + _p8() + _p8(true) + _p8(true) + _p8(); + }, + noop: function() {} + }; + }(); + var WWW = function() { + "use strict"; + var defaultClassNames = { + wrapper: "twitter-typeahead", + input: "tt-input", + hint: "tt-hint", + menu: "tt-menu", + dataset: "tt-dataset", + suggestion: "tt-suggestion", + selectable: "tt-selectable", + empty: "tt-empty", + open: "tt-open", + cursor: "tt-cursor", + highlight: "tt-highlight" + }; + return build; + function build(o) { + var www, classes; + classes = _.mixin({}, defaultClassNames, o); + www = { + css: buildCss(), + classes: classes, + html: buildHtml(classes), + selectors: buildSelectors(classes) + }; + return { + css: www.css, + html: www.html, + classes: www.classes, + selectors: www.selectors, + mixin: function(o) { + _.mixin(o, www); + } + }; + } + function buildHtml(c) { + return { + wrapper: '', + menu: '
' + }; + } + function buildSelectors(classes) { + var selectors = {}; + _.each(classes, function(v, k) { + selectors[k] = "." + v; + }); + return selectors; + } + function buildCss() { + var css = { + wrapper: { + position: "relative", + display: "inline-block" + }, + hint: { + position: "absolute", + top: "0", + left: "0", + borderColor: "transparent", + boxShadow: "none", + opacity: "1" + }, + input: { + position: "relative", + verticalAlign: "top", + backgroundColor: "transparent" + }, + inputWithNoHint: { + position: "relative", + verticalAlign: "top" + }, + menu: { + position: "absolute", + top: "100%", + left: "0", + zIndex: "100", + display: "none" + }, + ltr: { + left: "0", + right: "auto" + }, + rtl: { + left: "auto", + right: " 0" + } + }; + if (_.isMsie()) { + _.mixin(css.input, { + backgroundImage: "url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)" + }); + } + return css; + } + }(); + var EventBus = function() { + "use strict"; + var namespace, deprecationMap; + namespace = "typeahead:"; + deprecationMap = { + render: "rendered", + cursorchange: "cursorchanged", + select: "selected", + autocomplete: "autocompleted" + }; + function EventBus(o) { + if (!o || !o.el) { + $.error("EventBus initialized without el"); + } + this.$el = $(o.el); + } + _.mixin(EventBus.prototype, { + _trigger: function(type, args) { + var $e = $.Event(namespace + type); + this.$el.trigger.call(this.$el, $e, args || []); + return $e; + }, + before: function(type) { + var args, $e; + args = [].slice.call(arguments, 1); + $e = this._trigger("before" + type, args); + return $e.isDefaultPrevented(); + }, + trigger: function(type) { + var deprecatedType; + this._trigger(type, [].slice.call(arguments, 1)); + if (deprecatedType = deprecationMap[type]) { + this._trigger(deprecatedType, [].slice.call(arguments, 1)); + } + } + }); + return EventBus; + }(); + var EventEmitter = function() { + "use strict"; + var splitter = /\s+/, nextTick = getNextTick(); + return { + onSync: onSync, + onAsync: onAsync, + off: off, + trigger: trigger + }; + function on(method, types, cb, context) { + var type; + if (!cb) { + return this; + } + types = types.split(splitter); + cb = context ? bindContext(cb, context) : cb; + this._callbacks = this._callbacks || {}; + while (type = types.shift()) { + this._callbacks[type] = this._callbacks[type] || { + sync: [], + async: [] + }; + this._callbacks[type][method].push(cb); + } + return this; + } + function onAsync(types, cb, context) { + return on.call(this, "async", types, cb, context); + } + function onSync(types, cb, context) { + return on.call(this, "sync", types, cb, context); + } + function off(types) { + var type; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + while (type = types.shift()) { + delete this._callbacks[type]; + } + return this; + } + function trigger(types) { + var type, callbacks, args, syncFlush, asyncFlush; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + args = [].slice.call(arguments, 1); + while ((type = types.shift()) && (callbacks = this._callbacks[type])) { + syncFlush = getFlush(callbacks.sync, this, [ type ].concat(args)); + asyncFlush = getFlush(callbacks.async, this, [ type ].concat(args)); + syncFlush() && nextTick(asyncFlush); + } + return this; + } + function getFlush(callbacks, context, args) { + return flush; + function flush() { + var cancelled; + for (var i = 0, len = callbacks.length; !cancelled && i < len; i += 1) { + cancelled = callbacks[i].apply(context, args) === false; + } + return !cancelled; + } + } + function getNextTick() { + var nextTickFn; + if (window.setImmediate) { + nextTickFn = function nextTickSetImmediate(fn) { + setImmediate(function() { + fn(); + }); + }; + } else { + nextTickFn = function nextTickSetTimeout(fn) { + setTimeout(function() { + fn(); + }, 0); + }; + } + return nextTickFn; + } + function bindContext(fn, context) { + return fn.bind ? fn.bind(context) : function() { + fn.apply(context, [].slice.call(arguments, 0)); + }; + } + }(); + var highlight = function(doc) { + "use strict"; + var defaults = { + node: null, + pattern: null, + tagName: "strong", + className: null, + wordsOnly: false, + caseSensitive: false, + diacriticInsensitive: false + }; + var accented = { + A: "[AaªÀ-Åà-åĀ-ąǍǎȀ-ȃȦȧᴬᵃḀḁẚẠ-ảₐ℀℁℻⒜Ⓐⓐ㍱-㍴㎀-㎄㎈㎉㎩-㎯㏂㏊㏟㏿Aa]", + B: "[BbᴮᵇḂ-ḇℬ⒝Ⓑⓑ㍴㎅-㎇㏃㏈㏔㏝Bb]", + C: "[CcÇçĆ-čᶜ℀ℂ℃℅℆ℭⅭⅽ⒞Ⓒⓒ㍶㎈㎉㎝㎠㎤㏄-㏇Cc]", + D: "[DdĎďDŽ-džDZ-dzᴰᵈḊ-ḓⅅⅆⅮⅾ⒟Ⓓⓓ㋏㍲㍷-㍹㎗㎭-㎯㏅㏈Dd]", + E: "[EeÈ-Ëè-ëĒ-ěȄ-ȇȨȩᴱᵉḘ-ḛẸ-ẽₑ℡ℯℰⅇ⒠Ⓔⓔ㉐㋍㋎Ee]", + F: "[FfᶠḞḟ℉ℱ℻⒡Ⓕⓕ㎊-㎌㎙ff-fflFf]", + G: "[GgĜ-ģǦǧǴǵᴳᵍḠḡℊ⒢Ⓖⓖ㋌㋍㎇㎍-㎏㎓㎬㏆㏉㏒㏿Gg]", + H: "[HhĤĥȞȟʰᴴḢ-ḫẖℋ-ℎ⒣Ⓗⓗ㋌㍱㎐-㎔㏊㏋㏗Hh]", + I: "[IiÌ-Ïì-ïĨ-İIJijǏǐȈ-ȋᴵᵢḬḭỈ-ịⁱℐℑℹⅈⅠ-ⅣⅥ-ⅨⅪⅫⅰ-ⅳⅵ-ⅸⅺⅻ⒤Ⓘⓘ㍺㏌㏕fiffiIi]", + J: "[JjIJ-ĵLJ-njǰʲᴶⅉ⒥ⒿⓙⱼJj]", + K: "[KkĶķǨǩᴷᵏḰ-ḵK⒦Ⓚⓚ㎄㎅㎉㎏㎑㎘㎞㎢㎦㎪㎸㎾㏀㏆㏍-㏏Kk]", + L: "[LlĹ-ŀLJ-ljˡᴸḶḷḺ-ḽℒℓ℡Ⅼⅼ⒧Ⓛⓛ㋏㎈㎉㏐-㏓㏕㏖㏿flfflLl]", + M: "[MmᴹᵐḾ-ṃ℠™ℳⅯⅿ⒨Ⓜⓜ㍷-㍹㎃㎆㎎㎒㎖㎙-㎨㎫㎳㎷㎹㎽㎿㏁㏂㏎㏐㏔-㏖㏘㏙㏞㏟Mm]", + N: "[NnÑñŃ-ʼnNJ-njǸǹᴺṄ-ṋⁿℕ№⒩Ⓝⓝ㎁㎋㎚㎱㎵㎻㏌㏑Nn]", + O: "[OoºÒ-Öò-öŌ-őƠơǑǒǪǫȌ-ȏȮȯᴼᵒỌ-ỏₒ℅№ℴ⒪Ⓞⓞ㍵㏇㏒㏖Oo]", + P: "[PpᴾᵖṔ-ṗℙ⒫Ⓟⓟ㉐㍱㍶㎀㎊㎩-㎬㎰㎴㎺㏋㏗-㏚Pp]", + Q: "[Qqℚ⒬Ⓠⓠ㏃Qq]", + R: "[RrŔ-řȐ-ȓʳᴿᵣṘ-ṛṞṟ₨ℛ-ℝ⒭Ⓡⓡ㋍㍴㎭-㎯㏚㏛Rr]", + S: "[SsŚ-šſȘșˢṠ-ṣ₨℁℠⒮Ⓢⓢ㎧㎨㎮-㎳㏛㏜stSs]", + T: "[TtŢ-ťȚțᵀᵗṪ-ṱẗ℡™⒯Ⓣⓣ㉐㋏㎔㏏ſtstTt]", + U: "[UuÙ-Üù-üŨ-ųƯưǓǔȔ-ȗᵁᵘᵤṲ-ṷỤ-ủ℆⒰Ⓤⓤ㍳㍺Uu]", + V: "[VvᵛᵥṼ-ṿⅣ-Ⅷⅳ-ⅷ⒱Ⓥⓥⱽ㋎㍵㎴-㎹㏜㏞Vv]", + W: "[WwŴŵʷᵂẀ-ẉẘ⒲Ⓦⓦ㎺-㎿㏝Ww]", + X: "[XxˣẊ-ẍₓ℻Ⅸ-Ⅻⅸ-ⅻ⒳Ⓧⓧ㏓Xx]", + Y: "[YyÝýÿŶ-ŸȲȳʸẎẏẙỲ-ỹ⒴Ⓨⓨ㏉Yy]", + Z: "[ZzŹ-žDZ-dzᶻẐ-ẕℤℨ⒵Ⓩⓩ㎐-㎔Zz]" + }; + return function hightlight(o) { + var regex; + o = _.mixin({}, defaults, o); + if (!o.node || !o.pattern) { + return; + } + o.pattern = _.isArray(o.pattern) ? o.pattern : [ o.pattern ]; + regex = getRegex(o.pattern, o.caseSensitive, o.wordsOnly, o.diacriticInsensitive); + traverse(o.node, hightlightTextNode); + function hightlightTextNode(textNode) { + var match, patternNode, wrapperNode; + if (match = regex.exec(textNode.data)) { + wrapperNode = doc.createElement(o.tagName); + o.className && (wrapperNode.className = o.className); + patternNode = textNode.splitText(match.index); + patternNode.splitText(match[0].length); + wrapperNode.appendChild(patternNode.cloneNode(true)); + textNode.parentNode.replaceChild(wrapperNode, patternNode); + } + return !!match; + } + function traverse(el, hightlightTextNode) { + var childNode, TEXT_NODE_TYPE = 3; + for (var i = 0; i < el.childNodes.length; i++) { + childNode = el.childNodes[i]; + if (childNode.nodeType === TEXT_NODE_TYPE) { + i += hightlightTextNode(childNode) ? 1 : 0; + } else { + traverse(childNode, hightlightTextNode); + } + } + } + }; + function accent_replacer(chr) { + return accented[chr.toUpperCase()] || chr; + } + function getRegex(patterns, caseSensitive, wordsOnly, diacriticInsensitive) { + var escapedPatterns = [], regexStr; + for (var i = 0, len = patterns.length; i < len; i++) { + var escapedWord = _.escapeRegExChars(patterns[i]); + if (diacriticInsensitive) { + escapedWord = escapedWord.replace(/\S/g, accent_replacer); + } + escapedPatterns.push(escapedWord); + } + regexStr = wordsOnly ? "\\b(" + escapedPatterns.join("|") + ")\\b" : "(" + escapedPatterns.join("|") + ")"; + return caseSensitive ? new RegExp(regexStr) : new RegExp(regexStr, "i"); + } + }(window.document); + var Input = function() { + "use strict"; + var specialKeyCodeMap; + specialKeyCodeMap = { + 9: "tab", + 27: "esc", + 37: "left", + 39: "right", + 13: "enter", + 38: "up", + 40: "down" + }; + function Input(o, www) { + var id; + o = o || {}; + if (!o.input) { + $.error("input is missing"); + } + www.mixin(this); + this.$hint = $(o.hint); + this.$input = $(o.input); + this.$menu = $(o.menu); + id = this.$input.attr("id") || _.guid(); + this.$menu.attr("id", id + "_listbox"); + this.$hint.attr({ + "aria-hidden": true + }); + this.$input.attr({ + "aria-owns": id + "_listbox", + role: "combobox", + "aria-autocomplete": "list", + "aria-expanded": false + }); + this.query = this.$input.val(); + this.queryWhenFocused = this.hasFocus() ? this.query : null; + this.$overflowHelper = buildOverflowHelper(this.$input); + this._checkLanguageDirection(); + if (this.$hint.length === 0) { + this.setHint = this.getHint = this.clearHint = this.clearHintIfInvalid = _.noop; + } + this.onSync("cursorchange", this._updateDescendent); + } + Input.normalizeQuery = function(str) { + return _.toStr(str).replace(/^\s*/g, "").replace(/\s{2,}/g, " "); + }; + _.mixin(Input.prototype, EventEmitter, { + _onBlur: function onBlur() { + this.resetInputValue(); + this.trigger("blurred"); + }, + _onFocus: function onFocus() { + this.queryWhenFocused = this.query; + this.trigger("focused"); + }, + _onKeydown: function onKeydown($e) { + var keyName = specialKeyCodeMap[$e.which || $e.keyCode]; + this._managePreventDefault(keyName, $e); + if (keyName && this._shouldTrigger(keyName, $e)) { + this.trigger(keyName + "Keyed", $e); + } + }, + _onInput: function onInput() { + this._setQuery(this.getInputValue()); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + _managePreventDefault: function managePreventDefault(keyName, $e) { + var preventDefault; + switch (keyName) { + case "up": + case "down": + preventDefault = !withModifier($e); + break; + + default: + preventDefault = false; + } + preventDefault && $e.preventDefault(); + }, + _shouldTrigger: function shouldTrigger(keyName, $e) { + var trigger; + switch (keyName) { + case "tab": + trigger = !withModifier($e); + break; + + default: + trigger = true; + } + return trigger; + }, + _checkLanguageDirection: function checkLanguageDirection() { + var dir = (this.$input.css("direction") || "ltr").toLowerCase(); + if (this.dir !== dir) { + this.dir = dir; + this.$hint.attr("dir", dir); + this.trigger("langDirChanged", dir); + } + }, + _setQuery: function setQuery(val, silent) { + var areEquivalent, hasDifferentWhitespace; + areEquivalent = areQueriesEquivalent(val, this.query); + hasDifferentWhitespace = areEquivalent ? this.query.length !== val.length : false; + this.query = val; + if (!silent && !areEquivalent) { + this.trigger("queryChanged", this.query); + } else if (!silent && hasDifferentWhitespace) { + this.trigger("whitespaceChanged", this.query); + } + }, + _updateDescendent: function updateDescendent(event, id) { + this.$input.attr("aria-activedescendant", id); + }, + bind: function() { + var that = this, onBlur, onFocus, onKeydown, onInput; + onBlur = _.bind(this._onBlur, this); + onFocus = _.bind(this._onFocus, this); + onKeydown = _.bind(this._onKeydown, this); + onInput = _.bind(this._onInput, this); + this.$input.on("blur.tt", onBlur).on("focus.tt", onFocus).on("keydown.tt", onKeydown); + if (!_.isMsie() || _.isMsie() > 9) { + this.$input.on("input.tt", onInput); + } else { + this.$input.on("keydown.tt keypress.tt cut.tt paste.tt", function($e) { + if (specialKeyCodeMap[$e.which || $e.keyCode]) { + return; + } + _.defer(_.bind(that._onInput, that, $e)); + }); + } + return this; + }, + focus: function focus() { + this.$input.focus(); + }, + blur: function blur() { + this.$input.blur(); + }, + getLangDir: function getLangDir() { + return this.dir; + }, + getQuery: function getQuery() { + return this.query || ""; + }, + setQuery: function setQuery(val, silent) { + this.setInputValue(val); + this._setQuery(val, silent); + }, + hasQueryChangedSinceLastFocus: function hasQueryChangedSinceLastFocus() { + return this.query !== this.queryWhenFocused; + }, + getInputValue: function getInputValue() { + return this.$input.val(); + }, + setInputValue: function setInputValue(value) { + this.$input.val(value); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + resetInputValue: function resetInputValue() { + this.setInputValue(this.query); + }, + getHint: function getHint() { + return this.$hint.val(); + }, + setHint: function setHint(value) { + this.$hint.val(value); + }, + clearHint: function clearHint() { + this.setHint(""); + }, + clearHintIfInvalid: function clearHintIfInvalid() { + var val, hint, valIsPrefixOfHint, isValid; + val = this.getInputValue(); + hint = this.getHint(); + valIsPrefixOfHint = val !== hint && hint.indexOf(val) === 0; + isValid = val !== "" && valIsPrefixOfHint && !this.hasOverflow(); + !isValid && this.clearHint(); + }, + hasFocus: function hasFocus() { + return this.$input.is(":focus"); + }, + hasOverflow: function hasOverflow() { + var constraint = this.$input.width() - 2; + this.$overflowHelper.text(this.getInputValue()); + return this.$overflowHelper.width() >= constraint; + }, + isCursorAtEnd: function() { + var valueLength, selectionStart, range; + valueLength = this.$input.val().length; + selectionStart = this.$input[0].selectionStart; + if (_.isNumber(selectionStart)) { + return selectionStart === valueLength; + } else if (document.selection) { + range = document.selection.createRange(); + range.moveStart("character", -valueLength); + return valueLength === range.text.length; + } + return true; + }, + destroy: function destroy() { + this.$hint.off(".tt"); + this.$input.off(".tt"); + this.$overflowHelper.remove(); + this.$hint = this.$input = this.$overflowHelper = $("
"); + }, + setAriaExpanded: function setAriaExpanded(value) { + this.$input.attr("aria-expanded", value); + } + }); + return Input; + function buildOverflowHelper($input) { + return $('').css({ + position: "absolute", + visibility: "hidden", + whiteSpace: "pre", + fontFamily: $input.css("font-family"), + fontSize: $input.css("font-size"), + fontStyle: $input.css("font-style"), + fontVariant: $input.css("font-variant"), + fontWeight: $input.css("font-weight"), + wordSpacing: $input.css("word-spacing"), + letterSpacing: $input.css("letter-spacing"), + textIndent: $input.css("text-indent"), + textRendering: $input.css("text-rendering"), + textTransform: $input.css("text-transform") + }).insertAfter($input); + } + function areQueriesEquivalent(a, b) { + return Input.normalizeQuery(a) === Input.normalizeQuery(b); + } + function withModifier($e) { + return $e.altKey || $e.ctrlKey || $e.metaKey || $e.shiftKey; + } + }(); + var Dataset = function() { + "use strict"; + var keys, nameGenerator; + keys = { + dataset: "tt-selectable-dataset", + val: "tt-selectable-display", + obj: "tt-selectable-object" + }; + nameGenerator = _.getIdGenerator(); + function Dataset(o, www) { + o = o || {}; + o.templates = o.templates || {}; + o.templates.notFound = o.templates.notFound || o.templates.empty; + if (!o.source) { + $.error("missing source"); + } + if (!o.node) { + $.error("missing node"); + } + if (o.name && !isValidName(o.name)) { + $.error("invalid dataset name: " + o.name); + } + www.mixin(this); + this.highlight = !!o.highlight; + this.name = _.toStr(o.name || nameGenerator()); + this.limit = o.limit || 5; + this.displayFn = getDisplayFn(o.display || o.displayKey); + this.templates = getTemplates(o.templates, this.displayFn); + this.source = o.source.__ttAdapter ? o.source.__ttAdapter() : o.source; + this.async = _.isUndefined(o.async) ? this.source.length > 2 : !!o.async; + this._resetLastSuggestion(); + this.$el = $(o.node).attr("role", "presentation").addClass(this.classes.dataset).addClass(this.classes.dataset + "-" + this.name); + } + Dataset.extractData = function extractData(el) { + var $el = $(el); + if ($el.data(keys.obj)) { + return { + dataset: $el.data(keys.dataset) || "", + val: $el.data(keys.val) || "", + obj: $el.data(keys.obj) || null + }; + } + return null; + }; + _.mixin(Dataset.prototype, EventEmitter, { + _overwrite: function overwrite(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (this.async && this.templates.pending) { + this._renderPending(query); + } else if (!this.async && this.templates.notFound) { + this._renderNotFound(query); + } else { + this._empty(); + } + this.trigger("rendered", suggestions, false, this.name); + }, + _append: function append(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length && this.$lastSuggestion.length) { + this._appendSuggestions(query, suggestions); + } else if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (!this.$lastSuggestion.length && this.templates.notFound) { + this._renderNotFound(query); + } + this.trigger("rendered", suggestions, true, this.name); + }, + _renderSuggestions: function renderSuggestions(query, suggestions) { + var $fragment; + $fragment = this._getSuggestionsFragment(query, suggestions); + this.$lastSuggestion = $fragment.children().last(); + this.$el.html($fragment).prepend(this._getHeader(query, suggestions)).append(this._getFooter(query, suggestions)); + }, + _appendSuggestions: function appendSuggestions(query, suggestions) { + var $fragment, $lastSuggestion; + $fragment = this._getSuggestionsFragment(query, suggestions); + $lastSuggestion = $fragment.children().last(); + this.$lastSuggestion.after($fragment); + this.$lastSuggestion = $lastSuggestion; + }, + _renderPending: function renderPending(query) { + var template = this.templates.pending; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _renderNotFound: function renderNotFound(query) { + var template = this.templates.notFound; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _empty: function empty() { + this.$el.empty(); + this._resetLastSuggestion(); + }, + _getSuggestionsFragment: function getSuggestionsFragment(query, suggestions) { + var that = this, fragment; + fragment = document.createDocumentFragment(); + _.each(suggestions, function getSuggestionNode(suggestion) { + var $el, context; + context = that._injectQuery(query, suggestion); + $el = $(that.templates.suggestion(context)).data(keys.dataset, that.name).data(keys.obj, suggestion).data(keys.val, that.displayFn(suggestion)).addClass(that.classes.suggestion + " " + that.classes.selectable); + fragment.appendChild($el[0]); + }); + this.highlight && highlight({ + className: this.classes.highlight, + node: fragment, + pattern: query + }); + return $(fragment); + }, + _getFooter: function getFooter(query, suggestions) { + return this.templates.footer ? this.templates.footer({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _getHeader: function getHeader(query, suggestions) { + return this.templates.header ? this.templates.header({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _resetLastSuggestion: function resetLastSuggestion() { + this.$lastSuggestion = $(); + }, + _injectQuery: function injectQuery(query, obj) { + return _.isObject(obj) ? _.mixin({ + _query: query + }, obj) : obj; + }, + update: function update(query) { + var that = this, canceled = false, syncCalled = false, rendered = 0; + this.cancel(); + this.cancel = function cancel() { + canceled = true; + that.cancel = $.noop; + that.async && that.trigger("asyncCanceled", query, that.name); + }; + this.source(query, sync, async); + !syncCalled && sync([]); + function sync(suggestions) { + if (syncCalled) { + return; + } + syncCalled = true; + suggestions = (suggestions || []).slice(0, that.limit); + rendered = suggestions.length; + that._overwrite(query, suggestions); + if (rendered < that.limit && that.async) { + that.trigger("asyncRequested", query, that.name); + } + } + function async(suggestions) { + suggestions = suggestions || []; + if (!canceled && rendered < that.limit) { + that.cancel = $.noop; + var idx = Math.abs(rendered - that.limit); + rendered += idx; + that._append(query, suggestions.slice(0, idx)); + that.async && that.trigger("asyncReceived", query, that.name); + } + } + }, + cancel: $.noop, + clear: function clear() { + this._empty(); + this.cancel(); + this.trigger("cleared"); + }, + isEmpty: function isEmpty() { + return this.$el.is(":empty"); + }, + destroy: function destroy() { + this.$el = $("
"); + } + }); + return Dataset; + function getDisplayFn(display) { + display = display || _.stringify; + return _.isFunction(display) ? display : displayFn; + function displayFn(obj) { + return obj[display]; + } + } + function getTemplates(templates, displayFn) { + return { + notFound: templates.notFound && _.templatify(templates.notFound), + pending: templates.pending && _.templatify(templates.pending), + header: templates.header && _.templatify(templates.header), + footer: templates.footer && _.templatify(templates.footer), + suggestion: templates.suggestion ? userSuggestionTemplate : suggestionTemplate + }; + function userSuggestionTemplate(context) { + var template = templates.suggestion; + return $(template(context)).attr("id", _.guid()); + } + function suggestionTemplate(context) { + return $('
').attr("id", _.guid()).text(displayFn(context)); + } + } + function isValidName(str) { + return /^[_a-zA-Z0-9-]+$/.test(str); + } + }(); + var Menu = function() { + "use strict"; + function Menu(o, www) { + var that = this; + o = o || {}; + if (!o.node) { + $.error("node is required"); + } + www.mixin(this); + this.$node = $(o.node); + this.query = null; + this.datasets = _.map(o.datasets, initializeDataset); + function initializeDataset(oDataset) { + var node = that.$node.find(oDataset.node).first(); + oDataset.node = node.length ? node : $("
").appendTo(that.$node); + return new Dataset(oDataset, www); + } + } + _.mixin(Menu.prototype, EventEmitter, { + _onSelectableClick: function onSelectableClick($e) { + this.trigger("selectableClicked", $($e.currentTarget)); + }, + _onRendered: function onRendered(type, dataset, suggestions, async) { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetRendered", dataset, suggestions, async); + }, + _onCleared: function onCleared() { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetCleared"); + }, + _propagate: function propagate() { + this.trigger.apply(this, arguments); + }, + _allDatasetsEmpty: function allDatasetsEmpty() { + return _.every(this.datasets, _.bind(function isDatasetEmpty(dataset) { + var isEmpty = dataset.isEmpty(); + this.$node.attr("aria-expanded", !isEmpty); + return isEmpty; + }, this)); + }, + _getSelectables: function getSelectables() { + return this.$node.find(this.selectors.selectable); + }, + _removeCursor: function _removeCursor() { + var $selectable = this.getActiveSelectable(); + $selectable && $selectable.removeClass(this.classes.cursor); + }, + _ensureVisible: function ensureVisible($el) { + var elTop, elBottom, nodeScrollTop, nodeHeight; + elTop = $el.position().top; + elBottom = elTop + $el.outerHeight(true); + nodeScrollTop = this.$node.scrollTop(); + nodeHeight = this.$node.height() + parseInt(this.$node.css("paddingTop"), 10) + parseInt(this.$node.css("paddingBottom"), 10); + if (elTop < 0) { + this.$node.scrollTop(nodeScrollTop + elTop); + } else if (nodeHeight < elBottom) { + this.$node.scrollTop(nodeScrollTop + (elBottom - nodeHeight)); + } + }, + bind: function() { + var that = this, onSelectableClick; + onSelectableClick = _.bind(this._onSelectableClick, this); + this.$node.on("click.tt", this.selectors.selectable, onSelectableClick); + this.$node.on("mouseover", this.selectors.selectable, function() { + that.setCursor($(this)); + }); + this.$node.on("mouseleave", function() { + that._removeCursor(); + }); + _.each(this.datasets, function(dataset) { + dataset.onSync("asyncRequested", that._propagate, that).onSync("asyncCanceled", that._propagate, that).onSync("asyncReceived", that._propagate, that).onSync("rendered", that._onRendered, that).onSync("cleared", that._onCleared, that); + }); + return this; + }, + isOpen: function isOpen() { + return this.$node.hasClass(this.classes.open); + }, + open: function open() { + this.$node.scrollTop(0); + this.$node.addClass(this.classes.open); + }, + close: function close() { + this.$node.attr("aria-expanded", false); + this.$node.removeClass(this.classes.open); + this._removeCursor(); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.attr("dir", dir); + }, + selectableRelativeToCursor: function selectableRelativeToCursor(delta) { + var $selectables, $oldCursor, oldIndex, newIndex; + $oldCursor = this.getActiveSelectable(); + $selectables = this._getSelectables(); + oldIndex = $oldCursor ? $selectables.index($oldCursor) : -1; + newIndex = oldIndex + delta; + newIndex = (newIndex + 1) % ($selectables.length + 1) - 1; + newIndex = newIndex < -1 ? $selectables.length - 1 : newIndex; + return newIndex === -1 ? null : $selectables.eq(newIndex); + }, + setCursor: function setCursor($selectable) { + this._removeCursor(); + if ($selectable = $selectable && $selectable.first()) { + $selectable.addClass(this.classes.cursor); + this._ensureVisible($selectable); + } + }, + getSelectableData: function getSelectableData($el) { + return $el && $el.length ? Dataset.extractData($el) : null; + }, + getActiveSelectable: function getActiveSelectable() { + var $selectable = this._getSelectables().filter(this.selectors.cursor).first(); + return $selectable.length ? $selectable : null; + }, + getTopSelectable: function getTopSelectable() { + var $selectable = this._getSelectables().first(); + return $selectable.length ? $selectable : null; + }, + update: function update(query) { + var isValidUpdate = query !== this.query; + if (isValidUpdate) { + this.query = query; + _.each(this.datasets, updateDataset); + } + return isValidUpdate; + function updateDataset(dataset) { + dataset.update(query); + } + }, + empty: function empty() { + _.each(this.datasets, clearDataset); + this.query = null; + this.$node.addClass(this.classes.empty); + function clearDataset(dataset) { + dataset.clear(); + } + }, + destroy: function destroy() { + this.$node.off(".tt"); + this.$node = $("
"); + _.each(this.datasets, destroyDataset); + function destroyDataset(dataset) { + dataset.destroy(); + } + } + }); + return Menu; + }(); + var Status = function() { + "use strict"; + function Status(options) { + this.$el = $("", { + role: "status", + "aria-live": "polite" + }).css({ + position: "absolute", + padding: "0", + border: "0", + height: "1px", + width: "1px", + "margin-bottom": "-1px", + "margin-right": "-1px", + overflow: "hidden", + clip: "rect(0 0 0 0)", + "white-space": "nowrap" + }); + options.$input.after(this.$el); + _.each(options.menu.datasets, _.bind(function(dataset) { + if (dataset.onSync) { + dataset.onSync("rendered", _.bind(this.update, this)); + dataset.onSync("cleared", _.bind(this.cleared, this)); + } + }, this)); + } + _.mixin(Status.prototype, { + update: function update(event, suggestions) { + var length = suggestions.length; + var words; + if (length === 1) { + words = { + result: "result", + is: "is" + }; + } else { + words = { + result: "results", + is: "are" + }; + } + this.$el.text(length + " " + words.result + " " + words.is + " available, use up and down arrow keys to navigate."); + }, + cleared: function() { + this.$el.text(""); + } + }); + return Status; + }(); + var DefaultMenu = function() { + "use strict"; + var s = Menu.prototype; + function DefaultMenu() { + Menu.apply(this, [].slice.call(arguments, 0)); + } + _.mixin(DefaultMenu.prototype, Menu.prototype, { + open: function open() { + !this._allDatasetsEmpty() && this._show(); + return s.open.apply(this, [].slice.call(arguments, 0)); + }, + close: function close() { + this._hide(); + return s.close.apply(this, [].slice.call(arguments, 0)); + }, + _onRendered: function onRendered() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onRendered.apply(this, [].slice.call(arguments, 0)); + }, + _onCleared: function onCleared() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onCleared.apply(this, [].slice.call(arguments, 0)); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.css(dir === "ltr" ? this.css.ltr : this.css.rtl); + return s.setLanguageDirection.apply(this, [].slice.call(arguments, 0)); + }, + _hide: function hide() { + this.$node.hide(); + }, + _show: function show() { + this.$node.css("display", "block"); + } + }); + return DefaultMenu; + }(); + var Typeahead = function() { + "use strict"; + function Typeahead(o, www) { + var onFocused, onBlurred, onEnterKeyed, onTabKeyed, onEscKeyed, onUpKeyed, onDownKeyed, onLeftKeyed, onRightKeyed, onQueryChanged, onWhitespaceChanged; + o = o || {}; + if (!o.input) { + $.error("missing input"); + } + if (!o.menu) { + $.error("missing menu"); + } + if (!o.eventBus) { + $.error("missing event bus"); + } + www.mixin(this); + this.eventBus = o.eventBus; + this.minLength = _.isNumber(o.minLength) ? o.minLength : 1; + this.input = o.input; + this.menu = o.menu; + this.enabled = true; + this.autoselect = !!o.autoselect; + this.active = false; + this.input.hasFocus() && this.activate(); + this.dir = this.input.getLangDir(); + this._hacks(); + this.menu.bind().onSync("selectableClicked", this._onSelectableClicked, this).onSync("asyncRequested", this._onAsyncRequested, this).onSync("asyncCanceled", this._onAsyncCanceled, this).onSync("asyncReceived", this._onAsyncReceived, this).onSync("datasetRendered", this._onDatasetRendered, this).onSync("datasetCleared", this._onDatasetCleared, this); + onFocused = c(this, "activate", "open", "_onFocused"); + onBlurred = c(this, "deactivate", "_onBlurred"); + onEnterKeyed = c(this, "isActive", "isOpen", "_onEnterKeyed"); + onTabKeyed = c(this, "isActive", "isOpen", "_onTabKeyed"); + onEscKeyed = c(this, "isActive", "_onEscKeyed"); + onUpKeyed = c(this, "isActive", "open", "_onUpKeyed"); + onDownKeyed = c(this, "isActive", "open", "_onDownKeyed"); + onLeftKeyed = c(this, "isActive", "isOpen", "_onLeftKeyed"); + onRightKeyed = c(this, "isActive", "isOpen", "_onRightKeyed"); + onQueryChanged = c(this, "_openIfActive", "_onQueryChanged"); + onWhitespaceChanged = c(this, "_openIfActive", "_onWhitespaceChanged"); + this.input.bind().onSync("focused", onFocused, this).onSync("blurred", onBlurred, this).onSync("enterKeyed", onEnterKeyed, this).onSync("tabKeyed", onTabKeyed, this).onSync("escKeyed", onEscKeyed, this).onSync("upKeyed", onUpKeyed, this).onSync("downKeyed", onDownKeyed, this).onSync("leftKeyed", onLeftKeyed, this).onSync("rightKeyed", onRightKeyed, this).onSync("queryChanged", onQueryChanged, this).onSync("whitespaceChanged", onWhitespaceChanged, this).onSync("langDirChanged", this._onLangDirChanged, this); + } + _.mixin(Typeahead.prototype, { + _hacks: function hacks() { + var $input, $menu; + $input = this.input.$input || $("
"); + $menu = this.menu.$node || $("
"); + $input.on("blur.tt", function($e) { + var active, isActive, hasActive; + active = document.activeElement; + isActive = $menu.is(active); + hasActive = $menu.has(active).length > 0; + if (_.isMsie() && (isActive || hasActive)) { + $e.preventDefault(); + $e.stopImmediatePropagation(); + _.defer(function() { + $input.focus(); + }); + } + }); + $menu.on("mousedown.tt", function($e) { + $e.preventDefault(); + }); + }, + _onSelectableClicked: function onSelectableClicked(type, $el) { + this.select($el); + }, + _onDatasetCleared: function onDatasetCleared() { + this._updateHint(); + }, + _onDatasetRendered: function onDatasetRendered(type, suggestions, async, dataset) { + this._updateHint(); + if (this.autoselect) { + var cursorClass = this.selectors.cursor.substr(1); + this.menu.$node.find(this.selectors.suggestion).first().addClass(cursorClass); + } + this.eventBus.trigger("render", suggestions, async, dataset); + }, + _onAsyncRequested: function onAsyncRequested(type, dataset, query) { + this.eventBus.trigger("asyncrequest", query, dataset); + }, + _onAsyncCanceled: function onAsyncCanceled(type, dataset, query) { + this.eventBus.trigger("asynccancel", query, dataset); + }, + _onAsyncReceived: function onAsyncReceived(type, dataset, query) { + this.eventBus.trigger("asyncreceive", query, dataset); + }, + _onFocused: function onFocused() { + this._minLengthMet() && this.menu.update(this.input.getQuery()); + }, + _onBlurred: function onBlurred() { + if (this.input.hasQueryChangedSinceLastFocus()) { + this.eventBus.trigger("change", this.input.getQuery()); + } + }, + _onEnterKeyed: function onEnterKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + if (this.select($selectable)) { + $e.preventDefault(); + $e.stopPropagation(); + } + } else if (this.autoselect) { + if (this.select(this.menu.getTopSelectable())) { + $e.preventDefault(); + $e.stopPropagation(); + } + } + }, + _onTabKeyed: function onTabKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + this.select($selectable) && $e.preventDefault(); + } else if (this.autoselect) { + if ($selectable = this.menu.getTopSelectable()) { + this.autocomplete($selectable) && $e.preventDefault(); + } + } + }, + _onEscKeyed: function onEscKeyed() { + this.close(); + }, + _onUpKeyed: function onUpKeyed() { + this.moveCursor(-1); + }, + _onDownKeyed: function onDownKeyed() { + this.moveCursor(+1); + }, + _onLeftKeyed: function onLeftKeyed() { + if (this.dir === "rtl" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onRightKeyed: function onRightKeyed() { + if (this.dir === "ltr" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onQueryChanged: function onQueryChanged(e, query) { + this._minLengthMet(query) ? this.menu.update(query) : this.menu.empty(); + }, + _onWhitespaceChanged: function onWhitespaceChanged() { + this._updateHint(); + }, + _onLangDirChanged: function onLangDirChanged(e, dir) { + if (this.dir !== dir) { + this.dir = dir; + this.menu.setLanguageDirection(dir); + } + }, + _openIfActive: function openIfActive() { + this.isActive() && this.open(); + }, + _minLengthMet: function minLengthMet(query) { + query = _.isString(query) ? query : this.input.getQuery() || ""; + return query.length >= this.minLength; + }, + _updateHint: function updateHint() { + var $selectable, data, val, query, escapedQuery, frontMatchRegEx, match; + $selectable = this.menu.getTopSelectable(); + data = this.menu.getSelectableData($selectable); + val = this.input.getInputValue(); + if (data && !_.isBlankString(val) && !this.input.hasOverflow()) { + query = Input.normalizeQuery(val); + escapedQuery = _.escapeRegExChars(query); + frontMatchRegEx = new RegExp("^(?:" + escapedQuery + ")(.+$)", "i"); + match = frontMatchRegEx.exec(data.val); + match && this.input.setHint(val + match[1]); + } else { + this.input.clearHint(); + } + }, + isEnabled: function isEnabled() { + return this.enabled; + }, + enable: function enable() { + this.enabled = true; + }, + disable: function disable() { + this.enabled = false; + }, + isActive: function isActive() { + return this.active; + }, + activate: function activate() { + if (this.isActive()) { + return true; + } else if (!this.isEnabled() || this.eventBus.before("active")) { + return false; + } else { + this.active = true; + this.eventBus.trigger("active"); + return true; + } + }, + deactivate: function deactivate() { + if (!this.isActive()) { + return true; + } else if (this.eventBus.before("idle")) { + return false; + } else { + this.active = false; + this.close(); + this.eventBus.trigger("idle"); + return true; + } + }, + isOpen: function isOpen() { + return this.menu.isOpen(); + }, + open: function open() { + if (!this.isOpen() && !this.eventBus.before("open")) { + this.input.setAriaExpanded(true); + this.menu.open(); + this._updateHint(); + this.eventBus.trigger("open"); + } + return this.isOpen(); + }, + close: function close() { + if (this.isOpen() && !this.eventBus.before("close")) { + this.input.setAriaExpanded(false); + this.menu.close(); + this.input.clearHint(); + this.input.resetInputValue(); + this.eventBus.trigger("close"); + } + return !this.isOpen(); + }, + setVal: function setVal(val) { + this.input.setQuery(_.toStr(val)); + }, + getVal: function getVal() { + return this.input.getQuery(); + }, + select: function select($selectable) { + var data = this.menu.getSelectableData($selectable); + if (data && !this.eventBus.before("select", data.obj, data.dataset)) { + this.input.setQuery(data.val, true); + this.eventBus.trigger("select", data.obj, data.dataset); + this.close(); + return true; + } + return false; + }, + autocomplete: function autocomplete($selectable) { + var query, data, isValid; + query = this.input.getQuery(); + data = this.menu.getSelectableData($selectable); + isValid = data && query !== data.val; + if (isValid && !this.eventBus.before("autocomplete", data.obj, data.dataset)) { + this.input.setQuery(data.val); + this.eventBus.trigger("autocomplete", data.obj, data.dataset); + return true; + } + return false; + }, + moveCursor: function moveCursor(delta) { + var query, $candidate, data, suggestion, datasetName, cancelMove, id; + query = this.input.getQuery(); + $candidate = this.menu.selectableRelativeToCursor(delta); + data = this.menu.getSelectableData($candidate); + suggestion = data ? data.obj : null; + datasetName = data ? data.dataset : null; + id = $candidate ? $candidate.attr("id") : null; + this.input.trigger("cursorchange", id); + cancelMove = this._minLengthMet() && this.menu.update(query); + if (!cancelMove && !this.eventBus.before("cursorchange", suggestion, datasetName)) { + this.menu.setCursor($candidate); + if (data) { + if (typeof data.val === "string") { + this.input.setInputValue(data.val); + } + } else { + this.input.resetInputValue(); + this._updateHint(); + } + this.eventBus.trigger("cursorchange", suggestion, datasetName); + return true; + } + return false; + }, + destroy: function destroy() { + this.input.destroy(); + this.menu.destroy(); + } + }); + return Typeahead; + function c(ctx) { + var methods = [].slice.call(arguments, 1); + return function() { + var args = [].slice.call(arguments); + _.each(methods, function(method) { + return ctx[method].apply(ctx, args); + }); + }; + } + }(); + (function() { + "use strict"; + var old, keys, methods; + old = $.fn.typeahead; + keys = { + www: "tt-www", + attrs: "tt-attrs", + typeahead: "tt-typeahead" + }; + methods = { + initialize: function initialize(o, datasets) { + var www; + datasets = _.isArray(datasets) ? datasets : [].slice.call(arguments, 1); + o = o || {}; + www = WWW(o.classNames); + return this.each(attach); + function attach() { + var $input, $wrapper, $hint, $menu, defaultHint, defaultMenu, eventBus, input, menu, status, typeahead, MenuConstructor; + _.each(datasets, function(d) { + d.highlight = !!o.highlight; + }); + $input = $(this); + $wrapper = $(www.html.wrapper); + $hint = $elOrNull(o.hint); + $menu = $elOrNull(o.menu); + defaultHint = o.hint !== false && !$hint; + defaultMenu = o.menu !== false && !$menu; + defaultHint && ($hint = buildHintFromInput($input, www)); + defaultMenu && ($menu = $(www.html.menu).css(www.css.menu)); + $hint && $hint.val(""); + $input = prepInput($input, www); + if (defaultHint || defaultMenu) { + $wrapper.css(www.css.wrapper); + $input.css(defaultHint ? www.css.input : www.css.inputWithNoHint); + $input.wrap($wrapper).parent().prepend(defaultHint ? $hint : null).append(defaultMenu ? $menu : null); + } + MenuConstructor = defaultMenu ? DefaultMenu : Menu; + eventBus = new EventBus({ + el: $input + }); + input = new Input({ + hint: $hint, + input: $input, + menu: $menu + }, www); + menu = new MenuConstructor({ + node: $menu, + datasets: datasets + }, www); + status = new Status({ + $input: $input, + menu: menu + }); + typeahead = new Typeahead({ + input: input, + menu: menu, + eventBus: eventBus, + minLength: o.minLength, + autoselect: o.autoselect + }, www); + $input.data(keys.www, www); + $input.data(keys.typeahead, typeahead); + } + }, + isEnabled: function isEnabled() { + var enabled; + ttEach(this.first(), function(t) { + enabled = t.isEnabled(); + }); + return enabled; + }, + enable: function enable() { + ttEach(this, function(t) { + t.enable(); + }); + return this; + }, + disable: function disable() { + ttEach(this, function(t) { + t.disable(); + }); + return this; + }, + isActive: function isActive() { + var active; + ttEach(this.first(), function(t) { + active = t.isActive(); + }); + return active; + }, + activate: function activate() { + ttEach(this, function(t) { + t.activate(); + }); + return this; + }, + deactivate: function deactivate() { + ttEach(this, function(t) { + t.deactivate(); + }); + return this; + }, + isOpen: function isOpen() { + var open; + ttEach(this.first(), function(t) { + open = t.isOpen(); + }); + return open; + }, + open: function open() { + ttEach(this, function(t) { + t.open(); + }); + return this; + }, + close: function close() { + ttEach(this, function(t) { + t.close(); + }); + return this; + }, + select: function select(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.select($el); + }); + return success; + }, + autocomplete: function autocomplete(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.autocomplete($el); + }); + return success; + }, + moveCursor: function moveCursoe(delta) { + var success = false; + ttEach(this.first(), function(t) { + success = t.moveCursor(delta); + }); + return success; + }, + val: function val(newVal) { + var query; + if (!arguments.length) { + ttEach(this.first(), function(t) { + query = t.getVal(); + }); + return query; + } else { + ttEach(this, function(t) { + t.setVal(_.toStr(newVal)); + }); + return this; + } + }, + destroy: function destroy() { + ttEach(this, function(typeahead, $input) { + revert($input); + typeahead.destroy(); + }); + return this; + } + }; + $.fn.typeahead = function(method) { + if (methods[method]) { + return methods[method].apply(this, [].slice.call(arguments, 1)); + } else { + return methods.initialize.apply(this, arguments); + } + }; + $.fn.typeahead.noConflict = function noConflict() { + $.fn.typeahead = old; + return this; + }; + function ttEach($els, fn) { + $els.each(function() { + var $input = $(this), typeahead; + (typeahead = $input.data(keys.typeahead)) && fn(typeahead, $input); + }); + } + function buildHintFromInput($input, www) { + return $input.clone().addClass(www.classes.hint).removeData().css(www.css.hint).css(getBackgroundStyles($input)).prop({ + readonly: true, + required: false + }).removeAttr("id name placeholder").removeClass("required").attr({ + spellcheck: "false", + tabindex: -1 + }); + } + function prepInput($input, www) { + $input.data(keys.attrs, { + dir: $input.attr("dir"), + autocomplete: $input.attr("autocomplete"), + spellcheck: $input.attr("spellcheck"), + style: $input.attr("style") + }); + $input.addClass(www.classes.input).attr({ + spellcheck: false + }); + try { + !$input.attr("dir") && $input.attr("dir", "auto"); + } catch (e) {} + return $input; + } + function getBackgroundStyles($el) { + return { + backgroundAttachment: $el.css("background-attachment"), + backgroundClip: $el.css("background-clip"), + backgroundColor: $el.css("background-color"), + backgroundImage: $el.css("background-image"), + backgroundOrigin: $el.css("background-origin"), + backgroundPosition: $el.css("background-position"), + backgroundRepeat: $el.css("background-repeat"), + backgroundSize: $el.css("background-size") + }; + } + function revert($input) { + var www, $wrapper; + www = $input.data(keys.www); + $wrapper = $input.parent().filter(www.selectors.wrapper); + _.each($input.data(keys.attrs), function(val, key) { + _.isUndefined(val) ? $input.removeAttr(key) : $input.attr(key, val); + }); + $input.removeData(keys.typeahead).removeData(keys.www).removeData(keys.attr).removeClass(www.classes.input); + if ($wrapper.length) { + $input.detach().insertAfter($wrapper); + $wrapper.remove(); + } + } + function $elOrNull(obj) { + var isValid, $el; + isValid = _.isJQuery(obj) || _.isElement(obj); + $el = isValid ? $(obj).first() : []; + return $el.length ? $el : null; + } + })(); +}); \ No newline at end of file diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/search.json b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/search.json new file mode 100644 index 000000000..884ac867a --- /dev/null +++ b/docs/docsets/HaishinKit.docset/Contents/Resources/Documents/search.json @@ -0,0 +1 @@ +{"Typealiases.html#/s:10HaishinKit8ASObjecta":{"name":"ASObject","abstract":"

The ASObject typealias represents an object for AcrionScript.

"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11msTimeStamps5Int64Vvp":{"name":"msTimeStamp","abstract":"

The time since the UDT entity is started, in milliseconds.

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12pktSentTotals5Int64Vvp":{"name":"pktSentTotal","abstract":"

The total number of sent data packets, including retransmissions.

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12pktRecvTotals5Int64Vvp":{"name":"pktRecvTotal","abstract":"

The total number of received packets.

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSndLossTotals5Int32Vvp":{"name":"pktSndLossTotal","abstract":"

The total number of lost packets (sender side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRcvLossTotals5Int32Vvp":{"name":"pktRcvLossTotal","abstract":"

The total number of lost packets (receiver side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRetransTotals5Int32Vvp":{"name":"pktRetransTotal","abstract":"

The total number of retransmitted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSentACKTotals5Int32Vvp":{"name":"pktSentACKTotal","abstract":"

The total number of sent ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRecvACKTotals5Int32Vvp":{"name":"pktRecvACKTotal","abstract":"

The total number of received ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSentNAKTotals5Int32Vvp":{"name":"pktSentNAKTotal","abstract":"

The total number of sent NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRecvNAKTotals5Int32Vvp":{"name":"pktRecvNAKTotal","abstract":"

The total number of received NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV18usSndDurationTotals5Int64Vvp":{"name":"usSndDurationTotal","abstract":"

The total time duration when UDT is sending data (idle time exclusive)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSndDropTotals5Int32Vvp":{"name":"pktSndDropTotal","abstract":"

The number of too-late-to-send dropped packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRcvDropTotals5Int32Vvp":{"name":"pktRcvDropTotal","abstract":"

The number of too-late-to play missing packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV20pktRcvUndecryptTotals5Int32Vvp":{"name":"pktRcvUndecryptTotal","abstract":"

The number of undecrypted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13byteSentTotals6UInt64Vvp":{"name":"byteSentTotal","abstract":"

The total number of sent data bytes, including retransmissions

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13byteRecvTotals6UInt64Vvp":{"name":"byteRecvTotal","abstract":"

The total number of received bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRcvLossTotals6UInt64Vvp":{"name":"byteRcvLossTotal","abstract":"

The total number of lost bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRetransTotals6UInt64Vvp":{"name":"byteRetransTotal","abstract":"

The total number of retransmitted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteSndDropTotals6UInt64Vvp":{"name":"byteSndDropTotal","abstract":"

The number of too-late-to-send dropped bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRcvDropTotals6UInt64Vvp":{"name":"byteRcvDropTotal","abstract":"

The number of too-late-to play missing bytes (estimate based on average packet size)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV21byteRcvUndecryptTotals6UInt64Vvp":{"name":"byteRcvUndecryptTotal","abstract":"

The number of undecrypted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV7pktSents5Int64Vvp":{"name":"pktSent","abstract":"

The number of sent data packets, including retransmissions

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV7pktRecvs5Int64Vvp":{"name":"pktRecv","abstract":"

The number of received packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSndLosss5Int32Vvp":{"name":"pktSndLoss","abstract":"

The number of lost packets (sender side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRcvLosss5Int32Vvp":{"name":"pktRcvLoss","abstract":"

The number of lost packets (receiver side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRetranss5Int32Vvp":{"name":"pktRetrans","abstract":"

The number of retransmitted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktRcvRetranss5Int32Vvp":{"name":"pktRcvRetrans","abstract":"

The number of retransmitted packets received

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSentACKs5Int32Vvp":{"name":"pktSentACK","abstract":"

The number of sent ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRecvACKs5Int32Vvp":{"name":"pktRecvACK","abstract":"

The number of received ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSentNAKs5Int32Vvp":{"name":"pktSentNAK","abstract":"

The number of sent NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRecvNAKs5Int32Vvp":{"name":"pktRecvNAK","abstract":"

The number of received NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12mbpsSendRateSdvp":{"name":"mbpsSendRate","abstract":"

The sending rate in Mb/s

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12mbpsRecvRateSdvp":{"name":"mbpsRecvRate","abstract":"

The receiving rate in Mb/s

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13usSndDurations5Int64Vvp":{"name":"usSndDuration","abstract":"

The busy sending time (i.e., idle time exclusive)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV18pktReorderDistances5Int32Vvp":{"name":"pktReorderDistance","abstract":"

The size of order discrepancy in received sequences

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV20pktRcvAvgBelatedTimeSdvp":{"name":"pktRcvAvgBelatedTime","abstract":"

The average time of packet delay for belated packets (packets with sequence past the ACK)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktRcvBelateds5Int64Vvp":{"name":"pktRcvBelated","abstract":"

The number of received AND IGNORED packets due to having come too late

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSndDrops5Int32Vvp":{"name":"pktSndDrop","abstract":"

The number of too-late-to-send dropped packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRcvDrops5Int32Vvp":{"name":"pktRcvDrop","abstract":"

The number of too-late-to play missing packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRcvUndecrypts5Int32Vvp":{"name":"pktRcvUndecrypt","abstract":"

The number of undecrypted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8byteSents6UInt64Vvp":{"name":"byteSent","abstract":"

The number of sent data bytes, including retransmissions

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8byteRecvs6UInt64Vvp":{"name":"byteRecv","abstract":"

The number of received bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteRcvLosss6UInt64Vvp":{"name":"byteRcvLoss","abstract":"

The number of retransmitted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteRetranss6UInt64Vvp":{"name":"byteRetrans","abstract":"

The number of retransmitted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteSndDrops6UInt64Vvp":{"name":"byteSndDrop","abstract":"

The number of too-late-to-send dropped bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteRcvDrops6UInt64Vvp":{"name":"byteRcvDrop","abstract":"

The number of too-late-to play missing bytes (estimate based on average packet size)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRcvUndecrypts6UInt64Vvp":{"name":"byteRcvUndecrypt","abstract":"

The number of undecrypted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV14usPktSndPeriodSdvp":{"name":"usPktSndPeriod","abstract":"

The packet sending period, in microseconds

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktFlowWindows5Int32Vvp":{"name":"pktFlowWindow","abstract":"

The flow window size, in number of packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV19pktCongestionWindows5Int32Vvp":{"name":"pktCongestionWindow","abstract":"

The congestion window size, in number of packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktFlightSizes5Int32Vvp":{"name":"pktFlightSize","abstract":"

The number of packets on flight

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV5msRTTSdvp":{"name":"msRTT","abstract":"

The RTT, in milliseconds

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13mbpsBandwidthSdvp":{"name":"mbpsBandwidth","abstract":"

The estimated bandwidth, in Mb/s

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15byteAvailSndBufs5Int32Vvp":{"name":"byteAvailSndBuf","abstract":"

The available UDT sender buffer size

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15byteAvailRcvBufs5Int32Vvp":{"name":"byteAvailRcvBuf","abstract":"

The available UDT receiver buffer size

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV9mbpsMaxBWSdvp":{"name":"mbpsMaxBW","abstract":"

The transmit Bandwidth ceiling (Mbps)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV7byteMSSs5Int32Vvp":{"name":"byteMSS","abstract":"

The MTU

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV9pktSndBufs5Int32Vvp":{"name":"pktSndBuf","abstract":"

The UnACKed packets in UDT sender

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10byteSndBufs5Int32Vvp":{"name":"byteSndBuf","abstract":"

The UnACKed bytes in UDT sender

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8msSndBufs5Int32Vvp":{"name":"msSndBuf","abstract":"

The UnACKed timespan (msec) of UDT sender

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15msSndTsbPdDelays5Int32Vvp":{"name":"msSndTsbPdDelay","abstract":"

Timestamp-based Packet Delivery Delay

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV9pktRcvBufs5Int32Vvp":{"name":"pktRcvBuf","abstract":"

Undelivered packets in UDT receiver

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10byteRcvBufs5Int32Vvp":{"name":"byteRcvBuf","abstract":"

The undelivered bytes of UDT receiver

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8msRcvBufs5Int32Vvp":{"name":"msRcvBuf","abstract":"

The undelivered timespan (msec) of UDT receiver

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15msRcvTsbPdDelays5Int32Vvp":{"name":"msRcvTsbPdDelay","abstract":"

The Timestamp-based Packet Delivery Delay

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV22pktSndFilterExtraTotals5Int32Vvp":{"name":"pktSndFilterExtraTotal","abstract":"

The number of control packets supplied by packet filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV22pktRcvFilterExtraTotals5Int32Vvp":{"name":"pktRcvFilterExtraTotal","abstract":"

The number of control packets received and not supplied back

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV23pktRcvFilterSupplyTotals5Int32Vvp":{"name":"pktRcvFilterSupplyTotal","abstract":"

The number of packets that the filter supplied extra (e.g. FEC rebuilt)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV21pktRcvFilterLossTotals5Int32Vvp":{"name":"pktRcvFilterLossTotal","abstract":"

The number of packet loss not coverable by filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV17pktSndFilterExtras5Int32Vvp":{"name":"pktSndFilterExtra","abstract":"

The number of control packets supplied by packet filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV17pktRcvFilterExtras5Int32Vvp":{"name":"pktRcvFilterExtra","abstract":"

The number of control packets received and not supplied back

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV18pktRcvFilterSupplys5Int32Vvp":{"name":"pktRcvFilterSupply","abstract":"

The number of packets that the filter supplied extra (e.g. FEC rebuilt)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16pktRcvFilterLosss5Int32Vvp":{"name":"pktRcvFilterLoss","abstract":"

The number of packet loss not coverable by filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV19pktReorderTolerances5Int32Vvp":{"name":"pktReorderTolerance","abstract":"

The packet reorder tolerance value

","parent_name":"SRTPerformanceData"},"Structs/Atomic.html#/s:10HaishinKit6AtomicV5valuexvp":{"name":"value","abstract":"

Getter for the value.

","parent_name":"Atomic"},"Structs/Atomic.html#/s:10HaishinKit6AtomicVyACyxGxcfc":{"name":"init(_:)","abstract":"

Creates an instance of value.

","parent_name":"Atomic"},"Structs/Atomic.html#/s:10HaishinKit6AtomicV6mutateyyyxzXEF":{"name":"mutate(_:)","abstract":"

Setter for the value.

","parent_name":"Atomic"},"Structs/RTMPStreamInfo.html#/s:10HaishinKit14RTMPStreamInfoV9byteCountAA6AtomicVys5Int64VGvp":{"name":"byteCount","abstract":"

Undocumented

","parent_name":"RTMPStreamInfo"},"Structs/RTMPStreamInfo.html#/s:10HaishinKit14RTMPStreamInfoV12resourceNameSSSgvp":{"name":"resourceName","abstract":"

Undocumented

","parent_name":"RTMPStreamInfo"},"Structs/RTMPStreamInfo.html#/s:10HaishinKit14RTMPStreamInfoV21currentBytesPerSeconds5Int32Vvp":{"name":"currentBytesPerSecond","abstract":"

Undocumented

","parent_name":"RTMPStreamInfo"},"Structs/RTMPStreamInfo.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"RTMPStreamInfo"},"Structs/ASXML.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ASXML"},"Structs/ASXML.html#/s:10HaishinKit5ASXMLV4dataACSS_tcfc":{"name":"init(data:)","abstract":"

Creates a new instance of string.

","parent_name":"ASXML"},"Structs/ASXML.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ASXML"},"Structs/ASXMLDocument.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ASXMLDocument"},"Structs/ASXMLDocument.html#/s:10HaishinKit13ASXMLDocumentV4dataACSS_tcfc":{"name":"init(data:)","abstract":"

Creates a new instance of string.

","parent_name":"ASXMLDocument"},"Structs/ASXMLDocument.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ASXMLDocument"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayV6lengthSivp":{"name":"length","abstract":"

The length of an array.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayV5countACSi_tcfc":{"name":"init(count:)","abstract":"

Creates a new instance containing the specified number of a single.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayV4dataACSayypSgG_tcfc":{"name":"init(data:)","abstract":"

Creates a new instance of data.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:s25ExpressibleByArrayLiteralP05arrayD0x0cD7ElementQzd_tcfc":{"name":"init(arrayLiteral:)","parent_name":"ASArray"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayVyypSgypcip":{"name":"subscript(_:)","abstract":"

Accesses the element at the specified position.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"ASArray"},"Structs/ASArray.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ASArray"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV05TypedD7Decodera":{"name":"TypedObjectDecoder","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV8register9typeNamed7decoderySS_ypSS_SDySSypSgGtKctFZ":{"name":"register(typeNamed:decoder:)","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV8register4type5namedyxm_SStSeRzlFZ":{"name":"register(type:named:)","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV10unregister9typeNamedySS_tFZ":{"name":"unregister(typeNamed:)","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASUndefined.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ASUndefined"},"Structs/NetBitRateStats.html#/s:10HaishinKit15NetBitRateStatsV20currentQueueBytesOuts5Int64Vvp":{"name":"currentQueueBytesOut","abstract":"

The statistics of outgoing queue bytes per second.

","parent_name":"NetBitRateStats"},"Structs/NetBitRateStats.html#/s:10HaishinKit15NetBitRateStatsV23currentBytesInPerSeconds5Int32Vvp":{"name":"currentBytesInPerSecond","abstract":"

The statistics of incoming bytes per second.

","parent_name":"NetBitRateStats"},"Structs/NetBitRateStats.html#/s:10HaishinKit15NetBitRateStatsV24currentBytesOutPerSeconds5Int32Vvp":{"name":"currentBytesOutPerSecond","abstract":"

The statistics of outgoing bytes per second.

","parent_name":"NetBitRateStats"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV13defaultVolumeSfvpZ":{"name":"defaultVolume","abstract":"

Undocumented

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV10defaultPanSfvpZ":{"name":"defaultPan","abstract":"

Undocumented

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV6volumeSfvp":{"name":"volume","abstract":"

The volume, ranging from 0 (silent) to 1 (full volume)

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV3panSfvp":{"name":"pan","abstract":"

The panning of the sound

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"SoundTransform"},"Structs/MultiCamCaptureSettings/Mode.html#/s:10HaishinKit23MultiCamCaptureSettingsV4ModeO3pipyA2EmF":{"name":"pip","abstract":"

The picture in picture mode means video stream playing within an inset window, freeing the rest of the screen for other tasks.

","parent_name":"Mode"},"Structs/MultiCamCaptureSettings/Mode.html#/s:10HaishinKit23MultiCamCaptureSettingsV4ModeO9splitViewyA2EmF":{"name":"splitView","abstract":"

The split view means video stream playing within two individual windows.

","parent_name":"Mode"},"Structs/MultiCamCaptureSettings/Mode.html":{"name":"Mode","abstract":"

The type of image display mode.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV7defaultACvpZ":{"name":"default","abstract":"

The default setting for the stream.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV4modeAC4ModeOvp":{"name":"mode","abstract":"

The image display mode.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV12cornerRadius14CoreFoundation7CGFloatVvp":{"name":"cornerRadius","abstract":"

The cornerRadius of the picture in picture image.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV16regionOfInterestSo6CGRectVvp":{"name":"regionOfInterest","abstract":"

The region of the picture in picture image.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV9directionAA14ImageTransformOvp":{"name":"direction","abstract":"

The direction of the splitView position.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV4mode12cornerRadius16regionOfInterest9directionA2C4ModeO_14CoreFoundation7CGFloatVSo6CGRectVAA14ImageTransformOtcfc":{"name":"init(mode:cornerRadius:regionOfInterest:direction:)","abstract":"

Create a new MultiCamCaptureSetting.

","parent_name":"MultiCamCaptureSettings"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO6normalyA2EmF":{"name":"normal","abstract":"

kVTScalingMode_Normal

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO9letterboxyA2EmF":{"name":"letterbox","abstract":"

kVTScalingMode_Letterbox

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO25cropSourceToCleanApertureyA2EmF":{"name":"cropSourceToCleanAperture","abstract":"

kVTScalingMode_CropSourceToCleanAperture

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO4trimyA2EmF":{"name":"trim","abstract":"

kVTScalingMode_Trim

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/BitRateMode.html#/s:10HaishinKit18VideoCodecSettingsV11BitRateModeO7averageyA2EmF":{"name":"average","abstract":"

The average bit rate.

","parent_name":"BitRateMode"},"Structs/VideoCodecSettings/BitRateMode.html#/s:10HaishinKit18VideoCodecSettingsV11BitRateModeO8constantyA2EmF":{"name":"constant","abstract":"

The constant bit rate.

","parent_name":"BitRateMode"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval30SdvpZ":{"name":"frameInterval30","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval10SdvpZ":{"name":"frameInterval10","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval05SdvpZ":{"name":"frameInterval05","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval01SdvpZ":{"name":"frameInterval01","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV7defaultACvpZ":{"name":"default","abstract":"

The defulat value.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings/BitRateMode.html":{"name":"BitRateMode","abstract":"

A bitRate mode that affectes how to encode the video source.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings/ScalingMode.html":{"name":"ScalingMode","abstract":"

The scaling mode.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV9videoSizeSo6CGSizeVvp":{"name":"videoSize","abstract":"

Specifies the video size of encoding video.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV7bitRateSivp":{"name":"bitRate","abstract":"

Specifies the bitrate.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV13frameIntervalSdvp":{"name":"frameInterval","abstract":"

Specifies the video frame interval.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV12profileLevelSSvp":{"name":"profileLevel","abstract":"

Specifies the H264 profileLevel.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV11scalingModeAC07ScalingG0Ovp":{"name":"scalingMode","abstract":"

Specifies the scalingMode.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV11bitRateModeAC03BitgH0Ovp":{"name":"bitRateMode","abstract":"

Specifies the bitRateMode.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV27maxKeyFrameIntervalDurations5Int32Vvp":{"name":"maxKeyFrameIntervalDuration","abstract":"

Specifies the keyframeInterval.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV20allowFrameReorderingSbSgvp":{"name":"allowFrameReordering","abstract":"

Specifies the allowFrameRecording.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV24isHardwareEncoderEnabledSbvp":{"name":"isHardwareEncoderEnabled","abstract":"

Specifies the HardwareEncoder is enabled(TRUE), or not(FALSE) for macOS.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV9videoSize7bitRate13frameInterval12profileLevel11scalingMode0hiO0011maxKeyFrameK8Duration05allowR10Reordering24isHardwareEncoderEnabledACSo6CGSizeV_SiSdSSAC07ScalingO0OAC03BitiO0Os5Int32VSbSgSbtcfc":{"name":"init(videoSize:bitRate:frameInterval:profileLevel:scalingMode:bitRateMode:maxKeyFrameIntervalDuration:allowFrameReordering:isHardwareEncoderEnabled:)","abstract":"

Creates a new VideoCodecSettings instance.

","parent_name":"VideoCodecSettings"},"Structs/VTSessionOption.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"VTSessionOption"},"Structs/VTSessionOption.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"VTSessionOption"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7defaultACvpZ":{"name":"default","abstract":"

The default value.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV23maximumNumberOfChannelss6UInt32VvpZ":{"name":"maximumNumberOfChannels","abstract":"

Maximum number of channels supported by the system

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV17mamimumSampleRateSdvpZ":{"name":"mamimumSampleRate","abstract":"

Maximum sampleRate supported by the system

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7bitRateSivp":{"name":"bitRate","abstract":"

Specifies the bitRate of audio output.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV10sampleRateSdvp":{"name":"sampleRate","abstract":"

Specifies the sampleRate of audio output.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV8channelss6UInt32Vvp":{"name":"channels","abstract":"

Specifies the channels of audio output.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7downmixSbvp":{"name":"downmix","abstract":"

Specifies the mixes the channels or not. Currently, it supports input sources with 4, 5, 6, and 8 channels.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV10channelMapSaySiGSgvp":{"name":"channelMap","abstract":"

Specifies the map of the output to input channels.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7bitRate06sampleG08channels7downmix10channelMapACSi_Sds6UInt32VSbSaySiGSgtcfc":{"name":"init(bitRate:sampleRate:channels:downmix:channelMap:)","abstract":"

Create an new AudioCodecSettings instance. A value of 0 will use the same value as the input source.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html":{"name":"AudioCodecSettings","abstract":"

The AudioCodecSettings class specifying audio compression settings.

"},"Structs/VTSessionOption.html":{"name":"VTSessionOption","abstract":"

A structure that represents Key-Value-Object for the VideoToolbox option.

"},"Structs/VideoCodecSettings.html":{"name":"VideoCodecSettings","abstract":"

The VideoCodecSettings class specifying video compression settings.

"},"Structs/MultiCamCaptureSettings.html":{"name":"MultiCamCaptureSettings","abstract":"

The MultiCamCaptureSetting represents the pip capture settings for the video capture.

"},"Structs/SoundTransform.html":{"name":"SoundTransform","abstract":"

The SoundTransform class

"},"Structs/NetBitRateStats.html":{"name":"NetBitRateStats","abstract":"

A structure that represents a NetStream’s bitRate statics.

"},"Structs/ASUndefined.html":{"name":"ASUndefined","abstract":"

The ASUndefined structure represents an undefined for ActionScript.

"},"Structs/ASTypedObject.html":{"name":"ASTypedObject","abstract":"

The ASTypedObject structure represents a typed object for ActionScript.

"},"Structs/ASArray.html":{"name":"ASArray","abstract":"

The ASArray structure represents an array value for ActionScript.

"},"Structs/ASXMLDocument.html":{"name":"ASXMLDocument","abstract":"

ActionScript 1.0 and 2.0 and flash.xml.XMLDocument in ActionScript 3.0

"},"Structs/ASXML.html":{"name":"ASXML","abstract":"

ActionScript 3.0 introduces a new XML type.

"},"Structs/RTMPStreamInfo.html":{"name":"RTMPStreamInfo","abstract":"

flash.net.NetStreamInfo for Swift

"},"Structs/Atomic.html":{"name":"Atomic","abstract":"

Atomic class

"},"Structs/SRTPerformanceData.html":{"name":"SRTPerformanceData","abstract":"

The SRTPerformanceData represents the SRT’s performance statistics. This struct is wrapper for an CBytePerfMon.

"},"Protocols/Running.html#/s:10HaishinKit7RunningP02isC0AA6AtomicVySbGvp":{"name":"isRunning","abstract":"

Indicates whether the receiver is running.

","parent_name":"Running"},"Protocols/Running.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","abstract":"

Tells the receiver to start running.

","parent_name":"Running"},"Protocols/Running.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","abstract":"

Tells the receiver to stop running.

","parent_name":"Running"},"Protocols/RTMPConnectionDelegate.html#/s:10HaishinKit22RTMPConnectionDelegateP10connection_28publishInsufficientBWOccuredyAA0C0C_AA10RTMPStreamCtF":{"name":"connection(_:publishInsufficientBWOccured:)","abstract":"

Tells the receiver to publish insufficient bandwidth occured.

","parent_name":"RTMPConnectionDelegate"},"Protocols/RTMPConnectionDelegate.html#/s:10HaishinKit22RTMPConnectionDelegateP10connection_26publishSufficientBWOccuredyAA0C0C_AA10RTMPStreamCtF":{"name":"connection(_:publishSufficientBWOccured:)","abstract":"

Tells the receiver to publish sufficient bandwidth occured.

","parent_name":"RTMPConnectionDelegate"},"Protocols/RTMPConnectionDelegate.html#/s:10HaishinKit22RTMPConnectionDelegateP10connection_11updateStatsyAA0C0C_AA10RTMPStreamCtF":{"name":"connection(_:updateStats:)","abstract":"

Tells the receiver to update statistics.

","parent_name":"RTMPConnectionDelegate"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"addEventListener(_:selector:observer:useCapture:)","abstract":"

Registers the event listeners on the event target.

","parent_name":"EventDispatcherConvertible"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"removeEventListener(_:selector:observer:useCapture:)","abstract":"

Unregister the event listeners on the event target.

","parent_name":"EventDispatcherConvertible"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch5eventyAA0C0C_tF":{"name":"dispatch(event:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcherConvertible"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF":{"name":"dispatch(_:bubbles:data:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcherConvertible"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP16videoOrientationSo014AVCaptureVideoG0Vvp":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP28isCaptureVideoPreviewEnabledSbvp":{"name":"isCaptureVideoPreviewEnabled","abstract":"

Specifies the capture video preview enabled or not.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP06attachD0yyAA0cD0CSgF":{"name":"attachStream(_:)","abstract":"

Attaches a drawable to a new NetStream object.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP7enqueueyySo17CMSampleBufferRefaSgF":{"name":"enqueue(_:)","abstract":"

Enqueue a CMSampleBuffer? to draw.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_9didOutput4whenyAA0cD0C_So13AVAudioBufferCSo0J4TimeCtF":{"name":"stream(_:didOutput:when:)","abstract":"

Tells the receiver an audio packet incoming.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_9didOutputyAA0cD0C_So17CMSampleBufferRefatF":{"name":"stream(_:didOutput:)","abstract":"

Tells the receiver to playback a video incoming.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_18videoErrorOccurredyAA0cD0C_AA011IOVideoUnitH0OtF":{"name":"stream(_:videoErrorOccurred:)","abstract":"

Tells the receiver to video error occured.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_18audioErrorOccurredyAA0cD0C_AA011IOAudioUnitH0OtF":{"name":"stream(_:audioErrorOccurred:)","abstract":"

Tells the receiver to audio error occured.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP13streamDidOpenyyAA0cD0CF":{"name":"streamDidOpen(_:)","abstract":"

Tells the receiver to the stream opened.

","parent_name":"NetStreamDelegate"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP6streamAA0C6StreamCSgvp":{"name":"stream","abstract":"

Specifies the stream instance.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumVideodE0Sivp":{"name":"mamimumVideoBitRate","abstract":"

The mamimum video bitRate.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumAudiodE0Sivp":{"name":"mamimumAudioBitRate","abstract":"

The mamimum audio bitRate.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP5setUpyyF":{"name":"setUp()","abstract":"

SetUps the NetBitRateStrategy instance.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP19sufficientBWOccuredyyAA0cdE5StatsVF":{"name":"sufficientBWOccured(_:)","abstract":"

Invoke sufficientBWOccured.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP21insufficientBWOccuredyyAA0cdE5StatsVF":{"name":"insufficientBWOccured(_:)","abstract":"

Invoke insufficientBWOccured.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/IOScreenCaptureUnit.html#/s:10HaishinKit19IOScreenCaptureUnitP10attributesSDySo8NSStringCSo8NSObjectCGvp":{"name":"attributes","abstract":"

Specifies the CVPixelBufferPool’s attributes.

","parent_name":"IOScreenCaptureUnit"},"Protocols/IOScreenCaptureUnit.html#/s:10HaishinKit19IOScreenCaptureUnitP8delegateAA0cdE8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate.

","parent_name":"IOScreenCaptureUnit"},"Protocols/IOScreenCaptureUnitDelegate.html#/s:10HaishinKit27IOScreenCaptureUnitDelegateP7session_9didOutput16presentationTimeyAA0cdE0_p_So11CVBufferRefaSo6CMTimeatF":{"name":"session(_:didOutput:presentationTime:)","abstract":"

Tells the receiver to output a pixel buffer.

","parent_name":"IOScreenCaptureUnitDelegate"},"Protocols/IORecorderDelegate.html#/s:10HaishinKit18IORecorderDelegateP8recorder_12errorOccuredyAA0C0C_AG5ErrorOtF":{"name":"recorder(_:errorOccured:)","abstract":"

Tells the receiver to recorder error occured.

","parent_name":"IORecorderDelegate"},"Protocols/IORecorderDelegate.html#/s:10HaishinKit18IORecorderDelegateP8recorder_13finishWritingyAA0C0C_So13AVAssetWriterCtF":{"name":"recorder(_:finishWriting:)","abstract":"

Tells the receiver to finish writing.

","parent_name":"IORecorderDelegate"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP11audioFormatSo07AVAudioE0CSgvp":{"name":"audioFormat","abstract":"

Specifies the audioFormat.

","parent_name":"IOMuxer"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP11videoFormatSo22CMFormatDescriptionRefaSgvp":{"name":"videoFormat","abstract":"

Specifies the videoFormat.

","parent_name":"IOMuxer"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP6append_4whenySo13AVAudioBufferC_So0F4TimeCtF":{"name":"append(_:when:)","abstract":"

Appends an audio.

","parent_name":"IOMuxer"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","abstract":"

Appends a video or an audio.

","parent_name":"IOMuxer"},"Protocols/TSWriterDelegate.html#/s:10HaishinKit16TSWriterDelegateP6writer_19didRotateFileHandleyAA0C0C_So6CMTimeatF":{"name":"writer(_:didRotateFileHandle:)","abstract":"

Undocumented

","parent_name":"TSWriterDelegate"},"Protocols/TSWriterDelegate.html#/s:10HaishinKit16TSWriterDelegateP6writer_9didOutputyAA0C0C_10Foundation4DataVtF":{"name":"writer(_:didOutput:)","abstract":"

Undocumented

","parent_name":"TSWriterDelegate"},"Protocols/TSReaderDelegate.html#/s:10HaishinKit16TSReaderDelegateP6reader_2id7didReadyAA0C0C_s6UInt16VSo22CMFormatDescriptionRefatF":{"name":"reader(_:id:didRead:)","abstract":"

Undocumented

","parent_name":"TSReaderDelegate"},"Protocols/TSReaderDelegate.html#/s:10HaishinKit16TSReaderDelegateP6reader_2id7didReadyAA0C0C_s6UInt16VSo17CMSampleBufferRefatF":{"name":"reader(_:id:didRead:)","abstract":"

Undocumented

","parent_name":"TSReaderDelegate"},"Protocols/TSReaderDelegate.html":{"name":"TSReaderDelegate","abstract":"

The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates.

"},"Protocols/TSWriterDelegate.html":{"name":"TSWriterDelegate","abstract":"

The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates.

"},"Protocols/IOMuxer.html":{"name":"IOMuxer","abstract":"

A type that multiplexer for streaming.

"},"Protocols/IORecorderDelegate.html":{"name":"IORecorderDelegate","abstract":"

The interface an IORecorder uses to inform its delegate.

"},"Protocols/IOScreenCaptureUnitDelegate.html":{"name":"IOScreenCaptureUnitDelegate","abstract":"

The interface a capture session uses to inform its delegate.

"},"Protocols/IOScreenCaptureUnit.html":{"name":"IOScreenCaptureUnit","abstract":"

The interface that provides methods to screen capture.

"},"Protocols/NetBitRateStrategyConvertible.html":{"name":"NetBitRateStrategyConvertible","abstract":"

A type with a NetStream’s bitrate strategy representation.

"},"Protocols/NetStreamDelegate.html":{"name":"NetStreamDelegate","abstract":"

The interface a NetStream uses to inform its delegate.

"},"Protocols/NetStreamDrawable.html":{"name":"NetStreamDrawable","abstract":"

An interface that manages the NetStream content on the screen.

"},"Protocols/EventDispatcherConvertible.html":{"name":"EventDispatcherConvertible","abstract":"

The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model.

"},"Protocols/RTMPConnectionDelegate.html":{"name":"RTMPConnectionDelegate","abstract":"

The interface a RTMPConnectionDelegate uses to inform its delegate.

"},"Protocols/Running.html":{"name":"Running","abstract":"

A type that methods for running.

"},"Extensions/AudioStreamBasicDescription.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"AudioStreamBasicDescription"},"Extensions/AudioFormatID.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"AudioFormatID"},"Extensions/AVAudioCommonFormat.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"AVAudioCommonFormat"},"Extensions/AVAudioCommonFormat.html":{"name":"AVAudioCommonFormat"},"Extensions/AudioFormatID.html":{"name":"AudioFormatID"},"Extensions/AudioStreamBasicDescription.html":{"name":"AudioStreamBasicDescription"},"Extensions.html#/IOMixer":{"name":"IOMixer"},"Extensions.html#/s:13SRTHaishinKit9SRTSocketC":{"name":"SRTSocket"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO3mssyA2CmF":{"name":"mss","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6sndsynyA2CmF":{"name":"sndsyn","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6rcvsynyA2CmF":{"name":"rcvsyn","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO3isnyA2CmF":{"name":"isn","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO2fcyA2CmF":{"name":"fc","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6sndbufyA2CmF":{"name":"sndbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6rcvbufyA2CmF":{"name":"rcvbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6lingeryA2CmF":{"name":"linger","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9udpsndbufyA2CmF":{"name":"udpsndbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9udprcvbufyA2CmF":{"name":"udprcvbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10rendezvousyA2CmF":{"name":"rendezvous","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8sndtimeoyA2CmF":{"name":"sndtimeo","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8rcvtimeoyA2CmF":{"name":"rcvtimeo","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9reuseaddryA2CmF":{"name":"reuseaddr","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5maxbwyA2CmF":{"name":"maxbw","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5stateyA2CmF":{"name":"state","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5eventyA2CmF":{"name":"event","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7snddatayA2CmF":{"name":"snddata","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7rcvdatayA2CmF":{"name":"rcvdata","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6senderyA2CmF":{"name":"sender","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8tsbdmodeyA2CmF":{"name":"tsbdmode","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7latencyyA2CmF":{"name":"latency","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7inputbwyA2CmF":{"name":"inputbw","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7oheadbwyA2CmF":{"name":"oheadbw","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10passphraseyA2CmF":{"name":"passphrase","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8pbkeylenyA2CmF":{"name":"pbkeylen","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7kmstateyA2CmF":{"name":"kmstate","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5ipttlyA2CmF":{"name":"ipttl","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5iptosyA2CmF":{"name":"iptos","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9tlpktdropyA2CmF":{"name":"tlpktdrop","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO12snddropdelayyA2CmF":{"name":"snddropdelay","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9nakreportyA2CmF":{"name":"nakreport","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9conntimeoyA2CmF":{"name":"conntimeo","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10sndkmstateyA2CmF":{"name":"sndkmstate","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10lossmaxttlyA2CmF":{"name":"lossmaxttl","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10rcvlatencyyA2CmF":{"name":"rcvlatency","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO11peerlatencyyA2CmF":{"name":"peerlatency","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10minversionyA2CmF":{"name":"minversion","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8streamidyA2CmF":{"name":"streamid","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10messageapiyA2CmF":{"name":"messageapi","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO11payloadsizeyA2CmF":{"name":"payloadsize","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9transtypeyA2CmF":{"name":"transtype","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO13kmrefreshrateyA2CmF":{"name":"kmrefreshrate","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO13kmpreannounceyA2CmF":{"name":"kmpreannounce","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6symbolSo11SRT_SOCKOPTVvp":{"name":"symbol","parent_name":"SRTSocketOption"},"Enums/SRTMode.html#/s:13SRTHaishinKit7SRTModeO6calleryA2CmF":{"name":"caller","abstract":"

The caller mode.

","parent_name":"SRTMode"},"Enums/SRTMode.html#/s:13SRTHaishinKit7SRTModeO8listeneryA2CmF":{"name":"listener","abstract":"

The listener mode.

","parent_name":"SRTMode"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7generalyA2CmF":{"name":"general","abstract":"

General uncategorized log, for serious issues only

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO6bstatsyA2CmF":{"name":"bstats","abstract":"

Socket create/open/close/configure activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7controlyA2CmF":{"name":"control","abstract":"

Connection establishment and handshake

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO4datayA2CmF":{"name":"data","abstract":"

The checkTimer and around activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO5tsbpdyA2CmF":{"name":"tsbpd","abstract":"

The TsBPD thread

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO4rsrcyA2CmF":{"name":"rsrc","abstract":"

System resource allocation and management

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8haicryptyA2CmF":{"name":"haicrypt","abstract":"

Haicrypt module area

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7congestyA2CmF":{"name":"congest","abstract":"

Congestion control module

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7pfilteryA2CmF":{"name":"pfilter","abstract":"

Packet filter module

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO6applogyA2CmF":{"name":"applog","abstract":"

Applications

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7apiCtrlyA2CmF":{"name":"apiCtrl","abstract":"

API part for socket and library managmenet

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queCtrlyA2CmF":{"name":"queCtrl","abstract":"

Queue control activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8epollUpdyA2CmF":{"name":"epollUpd","abstract":"

EPoll, internal update activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7apiRecvyA2CmF":{"name":"apiRecv","abstract":"

API part for receiving

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7bufRecvyA2CmF":{"name":"bufRecv","abstract":"

Buffer, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queRecvyA2CmF":{"name":"queRecv","abstract":"

Queue, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8chanRecvyA2CmF":{"name":"chanRecv","abstract":"

CChannel, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7grpRecvyA2CmF":{"name":"grpRecv","abstract":"

Group, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7apiSendyA2CmF":{"name":"apiSend","abstract":"

API part for sending

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7bufSendyA2CmF":{"name":"bufSend","abstract":"

Buffer, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queSendyA2CmF":{"name":"queSend","abstract":"

Queue, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7chnSendyA2CmF":{"name":"chnSend","abstract":"

CChannel, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7grpSendyA2CmF":{"name":"grpSend","abstract":"

Group, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8internalyA2CmF":{"name":"internal","abstract":"

Internal activities not connected directly to a socket

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queMgmtyA2CmF":{"name":"queMgmt","abstract":"

Queue, management part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7chnMgmtyA2CmF":{"name":"chnMgmt","abstract":"

CChannel, management part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7grpMgmtyA2CmF":{"name":"grpMgmt","abstract":"

Group, management part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8epollApiyA2CmF":{"name":"epollApi","abstract":"

EPoll, API part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO5debugyA2CmF":{"name":"debug","abstract":"

Highly detailed and very frequent messages.

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO6noticeyA2CmF":{"name":"notice","abstract":"

Occasionally displayed information.

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO7warningyA2CmF":{"name":"warning","abstract":"

Unusual behavior.

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO5erroryA2CmF":{"name":"error","abstract":"

Abnormal behavior

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO4crityA2CmF":{"name":"crit","abstract":"

Error that makes the current socket unusabl

","parent_name":"SRTLogLevel"},"Enums/DeviceUtil.html#/s:10HaishinKit10DeviceUtilO6device17withLocalizedName9mediaTypeSo09AVCaptureC0CSgSS_So07AVMediaJ0atFZ":{"name":"device(withLocalizedName:mediaType:)","abstract":"

Lookup device by localizedName and mediaType.

","parent_name":"DeviceUtil"},"Enums/DeviceUtil.html#/videoOrientation(by:)":{"name":"videoOrientation(by:)","abstract":"

Looks up the AVCaptureVideoOrientation by a Notification.

","parent_name":"DeviceUtil"},"Enums/DeviceUtil.html#/isHeadphoneConnected(_:)":{"name":"isHeadphoneConnected(_:)","abstract":"

Device is connected a headphone or not.

","parent_name":"DeviceUtil"},"Enums/DeviceUtil.html#/isHeadphoneDisconnected(_:ports:)":{"name":"isHeadphoneDisconnected(_:ports:)","abstract":"

Device is disconnected a headphone or not.

","parent_name":"DeviceUtil"},"Enums/RTMPObjectEncoding.html#/s:10HaishinKit18RTMPObjectEncodingO4amf0yA2CmF":{"name":"amf0","abstract":"

The AMF0 Encoding.

","parent_name":"RTMPObjectEncoding"},"Enums/RTMPObjectEncoding.html#/s:10HaishinKit18RTMPObjectEncodingO4amf3yA2CmF":{"name":"amf3","abstract":"

The AMF3 Encoding.

","parent_name":"RTMPObjectEncoding"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO5northyA2CmF":{"name":"north","abstract":"

The north direction.

","parent_name":"ImageTransform"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO5southyA2CmF":{"name":"south","abstract":"

The south direction.

","parent_name":"ImageTransform"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO4eastyA2CmF":{"name":"east","abstract":"

The east direciton.

","parent_name":"ImageTransform"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO4westyA2CmF":{"name":"west","abstract":"

The west direction.

","parent_name":"ImageTransform"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO14failedToCreateyACs5Int32V_tcACmF":{"name":"failedToCreate(status:)","abstract":"

The IO video unit failed to create the VTSession.

","parent_name":"IOVideoUnitError"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO15failedToPrepareyACs5Int32V_tcACmF":{"name":"failedToPrepare(status:)","abstract":"

The IO video unit failed to prepare the VTSession.

","parent_name":"IOVideoUnitError"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO13failedToFlameyACs5Int32V_tcACmF":{"name":"failedToFlame(status:)","abstract":"

The IO video unit failed to encode or decode a flame.

","parent_name":"IOVideoUnitError"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO17failedToSetOptionyACs5Int32V_AA09VTSessionI0VtcACmF":{"name":"failedToSetOption(status:option:)","abstract":"

The IO video unit failed to set an option.

","parent_name":"IOVideoUnitError"},"Enums/IOAudioUnitError.html#/s:10HaishinKit16IOAudioUnitErrorO14failedToCreateyACSo13AVAudioFormatCSg_AGtcACmF":{"name":"failedToCreate(from:to:)","abstract":"

The IO audio unit failed to create the AVAudioConverter..

","parent_name":"IOAudioUnitError"},"Enums/IOAudioUnitError.html#/s:10HaishinKit16IOAudioUnitErrorO15failedToConvertyACSo7NSErrorC_tcACmF":{"name":"failedToConvert(error:)","abstract":"

The IO audio unit faild to convert the an audio buffer.

","parent_name":"IOAudioUnitError"},"Enums/IOAudioUnitError.html":{"name":"IOAudioUnitError","abstract":"

The IO audio unit error domain codes.

"},"Enums/IOVideoUnitError.html":{"name":"IOVideoUnitError","abstract":"

The IO video unit error domain codes.

"},"Enums/ImageTransform.html":{"name":"ImageTransform","abstract":"

The type of image transform direction.

"},"Enums/RTMPObjectEncoding.html":{"name":"RTMPObjectEncoding","abstract":"

Constans that defines the RTMPObject encoding type.

"},"Enums/DeviceUtil.html":{"name":"DeviceUtil","abstract":"

The namespace of DeviceUtil.

"},"Enums/SRTLogLevel.html":{"name":"SRTLogLevel"},"Enums/SRTLogFunctionalArea.html":{"name":"SRTLogFunctionalArea"},"Enums/SRTMode.html":{"name":"SRTMode","abstract":"

The type of SRTHaishinKit supports srt modes.

"},"Enums/SRTSocketOption.html":{"name":"SRTSocketOption"},"Global%20Variables.html#/s:10HaishinKit12kASUndefinedAA0C0Vvp":{"name":"kASUndefined","abstract":"

The singleton ASUndefined object.

"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC10connectionAcA13SRTConnectionC_tcfc":{"name":"init(connection:)","abstract":"

Creates a new SRTStream object.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC7publishyySSSgF":{"name":"publish(_:)","abstract":"

Sends streaming audio, vidoe and data message from client.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC4playyySSSgF":{"name":"play(_:)","abstract":"

Playback streaming audio and video message from server.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC5closeyyF":{"name":"close()","abstract":"

Stops playing or publishing and makes available other uses.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC19readyStateDidChange2toy07HaishinB09NetStreamC05ReadyE0O_tF":{"name":"readyStateDidChange(to:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6writer_9didOutputy07HaishinB08TSWriterC_10Foundation4DataVtF":{"name":"writer(_:didOutput:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6writer_19didRotateFileHandley07HaishinB08TSWriterC_So6CMTimeatF":{"name":"writer(_:didRotateFileHandle:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6reader_2id7didReady07HaishinB08TSReaderC_s6UInt16VSo22CMFormatDescriptionRefatF":{"name":"reader(_:id:didRead:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6reader_2id7didReady07HaishinB08TSReaderC_s6UInt16VSo17CMSampleBufferRefatF":{"name":"reader(_:id:didRead:)","parent_name":"SRTStream"},"Classes/SRTLogger.html#/s:13SRTHaishinKit9SRTLoggerC6sharedACvpZ":{"name":"shared","parent_name":"SRTLogger"},"Classes/SRTLogger.html#/s:13SRTHaishinKit9SRTLoggerC5levelAA11SRTLogLevelOvp":{"name":"level","abstract":"

Specifies the current logging level.

","parent_name":"SRTLogger"},"Classes/SRTLogger.html#/s:13SRTHaishinKit9SRTLoggerC15functionalAreasShyAA20SRTLogFunctionalAreaOGvp":{"name":"functionalAreas","abstract":"

Specifies the current logging functional areas.

","parent_name":"SRTLogger"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC7versionSSvpZ":{"name":"version","abstract":"

SRT Library version

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC3uri10Foundation3URLVSgvp":{"name":"uri","abstract":"

The URI passed to the SRTConnection.connect() method.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/c:@M@SRTHaishinKit@objc(cs)SRTConnection(py)connected":{"name":"connected","abstract":"

This instance connect to server(true) or not(false)

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC15performanceDataAA014SRTPerformanceE0Vvp":{"name":"performanceData","abstract":"

The SRT’s performance data.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/c:@M@SRTHaishinKit@objc(cs)SRTConnection(im)init":{"name":"init()","abstract":"

Creates a new SRTConnection.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC4open_4modey10Foundation3URLVSg_AA7SRTModeOtF":{"name":"open(_:mode:)","abstract":"

Open a two-way connection to an application on SRT Server.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC5closeyyF":{"name":"close()","abstract":"

Closes the connection from the server.

","parent_name":"SRTConnection"},"Classes/InstanceHolder.html#/s:10HaishinKit14InstanceHolderC7factoryACyxGxyc_tcfc":{"name":"init(factory:)","abstract":"

Creates a new InstanceHolder.

","parent_name":"InstanceHolder"},"Classes/InstanceHolder.html#/s:10HaishinKit14InstanceHolderC6retainxSgyF":{"name":"retain()","abstract":"

Retains an instance object if needed.

","parent_name":"InstanceHolder"},"Classes/InstanceHolder.html#/s:10HaishinKit14InstanceHolderC7releaseyyxSgF":{"name":"release(_:)","abstract":"

Releases an instance object if needed.

","parent_name":"InstanceHolder"},"Classes/ByteArray/Error.html#/s:10HaishinKit9ByteArrayC5ErrorO3eofyA2EmF":{"name":"eof","abstract":"

Error cause end of data.

","parent_name":"Error"},"Classes/ByteArray/Error.html#/s:10HaishinKit9ByteArrayC5ErrorO5parseyA2EmF":{"name":"parse","abstract":"

Failed to parse

","parent_name":"Error"},"Classes/ByteArray/Error.html":{"name":"Error","abstract":"

The ByteArray error domain codes.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayCACycfc":{"name":"init()","abstract":"

Creates an empty ByteArray.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC4dataAC10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"

Creates a ByteArray with data.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC6lengthSivp":{"name":"length","abstract":"

Specifies the length of buffer.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC8positionSivp":{"name":"position","abstract":"

Specifies the position of buffer.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC14bytesAvailableSivp":{"name":"bytesAvailable","abstract":"

The bytesAvalibale or not.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayCys5UInt8VSicip":{"name":"subscript(_:)","abstract":"

Undocumented

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readUInt8s0F0VyKF":{"name":"readUInt8()","abstract":"

Reading an UInt8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeUInt8yACXDs0F0VF":{"name":"writeUInt8(_:)","abstract":"

Writing an UInt8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC8readInt8s0F0VyKF":{"name":"readInt8()","abstract":"

Readning an Int8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9writeInt8yACXDs0F0VF":{"name":"writeInt8(_:)","abstract":"

Writing an Int8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt16s0F0VyKF":{"name":"readUInt16()","abstract":"

Readning an UInt16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt16yACXDs0F0VF":{"name":"writeUInt16(_:)","abstract":"

Writing an UInt16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readInt16s0F0VyKF":{"name":"readInt16()","abstract":"

Reading an Int16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeInt16yACXDs0F0VF":{"name":"writeInt16(_:)","abstract":"

Reading an Int16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt24s6UInt32VyKF":{"name":"readUInt24()","abstract":"

Reading an UInt24 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt24yACXDs6UInt32VF":{"name":"writeUInt24(_:)","abstract":"

Writing an UInt24 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt32s0F0VyKF":{"name":"readUInt32()","abstract":"

Reading an UInt32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt32yACXDs0F0VF":{"name":"writeUInt32(_:)","abstract":"

Writing an UInt32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readInt32s0F0VyKF":{"name":"readInt32()","abstract":"

Reading an Int32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeInt32yACXDs0F0VF":{"name":"writeInt32(_:)","abstract":"

Writing an Int32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt64yACXDs0F0VF":{"name":"writeUInt64(_:)","abstract":"

Writing an UInt64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt64s0F0VyKF":{"name":"readUInt64()","abstract":"

Reading an UInt64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeInt64yACXDs0F0VF":{"name":"writeInt64(_:)","abstract":"

Writing an Int64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readInt64s0F0VyKF":{"name":"readInt64()","abstract":"

Reading an Int64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readDoubleSdyKF":{"name":"readDouble()","abstract":"

Reading a Double value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeDoubleyACXDSdF":{"name":"writeDouble(_:)","abstract":"

Writing a Double value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readFloatSfyKF":{"name":"readFloat()","abstract":"

Reading a Float value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeFloatyACXDSfF":{"name":"writeFloat(_:)","abstract":"

Writeing a Float value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC8readUTF8SSyKF":{"name":"readUTF8()","abstract":"

Reading a string as UTF8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9writeUTF8yACXDSSKF":{"name":"writeUTF8(_:)","abstract":"

Writing a string as UTF8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC5clearACXDyF":{"name":"clear()","abstract":"

Clear the buffer.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"ByteArray"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO6recordyA2EmF":{"name":"record","abstract":"

Publish with server-side recording.

","parent_name":"HowToPublish"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO6appendyA2EmF":{"name":"append","abstract":"

Publish with server-side recording which is to append file if exists.

","parent_name":"HowToPublish"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO13appendWithGapyA2EmF":{"name":"appendWithGap","abstract":"

Publish with server-side recording which is to append and ajust time file if exists.

","parent_name":"HowToPublish"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO4liveyA2EmF":{"name":"live","abstract":"

Publish.

","parent_name":"HowToPublish"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11bufferEmptyyA2EmF":{"name":"bufferEmpty","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11bufferFlushyA2EmF":{"name":"bufferFlush","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10bufferFullyA2EmF":{"name":"bufferFull","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO13connectClosedyA2EmF":{"name":"connectClosed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO13connectFailedyA2EmF":{"name":"connectFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO15connectRejectedyA2EmF":{"name":"connectRejected","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14connectSuccessyA2EmF":{"name":"connectSuccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO15drmUpdateNeededyA2EmF":{"name":"drmUpdateNeeded","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO6failedyA2EmF":{"name":"failed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO20multicastStreamResetyA2EmF":{"name":"multicastStreamReset","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11pauseNotifyyA2EmF":{"name":"pauseNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10playFailedyA2EmF":{"name":"playFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO24playFileStructureInvalidyA2EmF":{"name":"playFileStructureInvalid","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO18playInsufficientBWyA2EmF":{"name":"playInsufficientBW","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO25playNoSupportedTrackFoundyA2EmF":{"name":"playNoSupportedTrackFound","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO9playResetyA2EmF":{"name":"playReset","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO9playStartyA2EmF":{"name":"playStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO8playStopyA2EmF":{"name":"playStop","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO18playStreamNotFoundyA2EmF":{"name":"playStreamNotFound","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14playTransitionyA2EmF":{"name":"playTransition","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO19playUnpublishNotifyyA2EmF":{"name":"playUnpublishNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14publishBadNameyA2EmF":{"name":"publishBadName","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11publishIdleyA2EmF":{"name":"publishIdle","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO12publishStartyA2EmF":{"name":"publishStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO19recordAlreadyExistsyA2EmF":{"name":"recordAlreadyExists","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO12recordFailedyA2EmF":{"name":"recordFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14recordNoAccessyA2EmF":{"name":"recordNoAccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11recordStartyA2EmF":{"name":"recordStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10recordStopyA2EmF":{"name":"recordStop","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO23recordDiskQuotaExceededyA2EmF":{"name":"recordDiskQuotaExceeded","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO17secondScreenStartyA2EmF":{"name":"secondScreenStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO16secondScreenStopyA2EmF":{"name":"secondScreenStop","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10seekFailedyA2EmF":{"name":"seekFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO15seekInvalidTimeyA2EmF":{"name":"seekInvalidTime","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10seekNotifyyA2EmF":{"name":"seekNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10stepNotifyyA2EmF":{"name":"stepNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO13unpauseNotifyyA2EmF":{"name":"unpauseNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO16unpublishSuccessyA2EmF":{"name":"unpublishSuccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO20videoDimensionChangeyA2EmF":{"name":"videoDimensionChange","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO5levelSSvp":{"name":"level","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html":{"name":"Code","abstract":"

NetStatusEvent#info.code for NetStream

","parent_name":"RTMPStream"},"Classes/RTMPStream/HowToPublish.html":{"name":"HowToPublish","abstract":"

The type of publish options.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4infoAA0C4InfoVvp":{"name":"info","abstract":"

The NetStreamInfo object whose properties contain data.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC14objectEncodingAA010RTMPObjectE0Ovp":{"name":"objectEncoding","abstract":"

The object encoding (AMF). Framework supports AMF0 only.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC12receiveAudioSbvp":{"name":"receiveAudio","abstract":"

Incoming audio plays on the stream or not.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC12receiveVideoSbvp":{"name":"receiveVideo","abstract":"

Incoming video plays on the stream or not.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC6pausedSbvp":{"name":"paused","abstract":"

Pauses playback or publish of a video stream or not.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC10connectionAcA14RTMPConnectionC_tcfc":{"name":"init(connection:)","abstract":"

Creates a new stream.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4playyyypSgd_tF":{"name":"play(_:)","abstract":"

Plays a live stream from RTMPServer.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4seekyySdF":{"name":"seek(_:)","abstract":"

Seeks the keyframe.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC7publish_4typeySSSg_AC12HowToPublishOtF":{"name":"publish(_:type:)","abstract":"

Sends streaming audio, vidoe and data message from client.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC5closeyyF":{"name":"close()","abstract":"

Stops playing or publishing and makes available other uses.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4send11handlerName9argumentsySS_ypSgdtF":{"name":"send(handlerName:arguments:)","abstract":"

Sends a message on a published stream to all subscribing clients.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC12makeMetaDataSDySSypSgGyF":{"name":"makeMetaData()","abstract":"

Creates flv metadata for a stream.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC20readyStateWillChange2toyAA9NetStreamC05ReadyE0O_tF":{"name":"readyStateWillChange(to:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC19readyStateDidChange2toyAA9NetStreamC05ReadyE0O_tF":{"name":"readyStateDidChange(to:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"addEventListener(_:selector:observer:useCapture:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"removeEventListener(_:selector:observer:useCapture:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch5eventyAA0C0C_tF":{"name":"dispatch(event:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF":{"name":"dispatch(_:bubbles:data:)","parent_name":"RTMPStream"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC9getRemote8withName10remotePath11persistenceACSS_SSSbtFZ":{"name":"getRemote(withName:remotePath:persistence:)","abstract":"

Returns a reference to a shared object on a server.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC14objectEncodingAA010RTMPObjectF0Ovp":{"name":"objectEncoding","abstract":"

The AMF object encoding type.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC4dataSDySSypSgGvp":{"name":"data","abstract":"

The current data storage.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC11setPropertyyySS_ypSgtF":{"name":"setProperty(_:_:)","abstract":"

Updates the value of a property in shared object.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC7connectyyAA14RTMPConnectionCF":{"name":"connect(_:)","abstract":"

Connects to a remove shared object on a server.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC5clearyyF":{"name":"clear()","abstract":"

Purges all of the data.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC5closeyyF":{"name":"close()","abstract":"

Closes the connection a server.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"RTMPSharedObject"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO14callBadVersionyA2EmF":{"name":"callBadVersion","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO10callFailedyA2EmF":{"name":"callFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO14callProhibitedyA2EmF":{"name":"callProhibited","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO18connectAppshutdownyA2EmF":{"name":"connectAppshutdown","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO13connectClosedyA2EmF":{"name":"connectClosed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO13connectFailedyA2EmF":{"name":"connectFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO18connectIdleTimeOutyA2EmF":{"name":"connectIdleTimeOut","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO17connectInvalidAppyA2EmF":{"name":"connectInvalidApp","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO20connectNetworkChangeyA2EmF":{"name":"connectNetworkChange","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO15connectRejectedyA2EmF":{"name":"connectRejected","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO14connectSuccessyA2EmF":{"name":"connectSuccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO5levelSSvp":{"name":"level","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC18defaultWindowSizeSs5Int64VvpZ":{"name":"defaultWindowSizeS","abstract":"

The default network’s window size for RTMPConnection.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC18supportedProtocolsShySSGvpZ":{"name":"supportedProtocols","abstract":"

The supported protocols are rtmp, rtmps, rtmpt and rtmps.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC11defaultPortSivpZ":{"name":"defaultPort","abstract":"

The default RTMP port is 1935.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC17defaultSecurePortSivpZ":{"name":"defaultSecurePort","abstract":"

The default RTMPS port is 443.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC15defaultFlashVerSSvpZ":{"name":"defaultFlashVer","abstract":"

The default flashVer is FMLE/3.0 (compatible; FMSc/1.0).

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC17defaultChunkSizeSSivpZ":{"name":"defaultChunkSizeS","abstract":"

The default chunk size for RTMPConnection.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC19defaultCapabilitiesSivpZ":{"name":"defaultCapabilities","abstract":"

The default capabilities for RTMPConneciton.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC21defaultObjectEncodingAA010RTMPObjectF0OvpZ":{"name":"defaultObjectEncoding","abstract":"

The default object encoding for RTMPConnection class.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection/Code.html":{"name":"Code","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC6swfUrlSSSgvp":{"name":"swfUrl","abstract":"

Specifies the URL of .swf.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC7pageUrlSSSgvp":{"name":"pageUrl","abstract":"

Specifies the URL of an HTTP referer.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC7timeoutSivp":{"name":"timeout","abstract":"

Specifies the time to wait for TCP/IP Handshake done.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC16qualityOfService8Dispatch0G3QoSVvp":{"name":"qualityOfService","abstract":"

Specifies the dispatchQos for socket.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC8flashVerSSvp":{"name":"flashVer","abstract":"

Specifies the name of application.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC9chunkSizeSivp":{"name":"chunkSize","abstract":"

Specifies theoutgoing RTMPChunkSize.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC3uri10Foundation3URLVSgvp":{"name":"uri","abstract":"

Specifies the URI passed to the Self.connect() method.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC9connectedSbvp":{"name":"connected","abstract":"

Specifies the instance connected to server(true) or not(false).

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC23requireNetworkFrameworkSbvp":{"name":"requireNetworkFramework","abstract":"

Specifies the instance requires Network.framework if possible.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC10parametersypSgvp":{"name":"parameters","abstract":"

Specifies the socket optional parameters.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC14objectEncodingAA010RTMPObjectE0Ovp":{"name":"objectEncoding","abstract":"

Specifies the object encoding for this RTMPConnection instance.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC12totalBytesIns5Int64Vvp":{"name":"totalBytesIn","abstract":"

The statistics of total incoming bytes.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC13totalBytesOuts5Int64Vvp":{"name":"totalBytesOut","abstract":"

The statistics of total outgoing bytes.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC17totalStreamsCountSivp":{"name":"totalStreamsCount","abstract":"

The statistics of total RTMPStream counts.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate of the NetStream.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC21previousQueueBytesOutSays5Int64VGvp":{"name":"previousQueueBytesOut","abstract":"

The statistics of outgoing queue bytes per second.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC23currentBytesInPerSeconds5Int32Vvp":{"name":"currentBytesInPerSecond","abstract":"

The statistics of incoming bytes per second.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC24currentBytesOutPerSeconds5Int32Vvp":{"name":"currentBytesOutPerSecond","abstract":"

The statistics of outgoing bytes per second.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionCACycfc":{"name":"init()","abstract":"

Creates a new connection.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC4call_9responder9argumentsySS_AA13RTMPResponderCSgypSgdtF":{"name":"call(_:responder:arguments:)","abstract":"

Calls a command or method on RTMP Server.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC7connect_9argumentsySS_ypSgdtF":{"name":"connect(_:arguments:)","abstract":"

Creates a two-way connection to an application on RTMP Server.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC5closeyyF":{"name":"close()","abstract":"

Closes the connection from the server.

","parent_name":"RTMPConnection"},"Classes/RTMPResponder.html#/s:10HaishinKit13RTMPResponderC7Handlera":{"name":"Handler","abstract":"

A Handler represents RTMPResponder’s callback function.

","parent_name":"RTMPResponder"},"Classes/RTMPResponder.html#/s:10HaishinKit13RTMPResponderC6result6statusACySayypSgGc_yAGcSgtcfc":{"name":"init(result:status:)","abstract":"

Creates a new RTMPResponder object.

","parent_name":"RTMPResponder"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherCACycfc":{"name":"init()","abstract":"

Creates a new event dispatcher.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC6targetACyXl_tcfc":{"name":"init(target:)","abstract":"

Creates a new event dispatcher to proxy target.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"addEventListener(_:selector:observer:useCapture:)","abstract":"

Registers the event listeners on the event target.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"removeEventListener(_:selector:observer:useCapture:)","abstract":"

Unregister the event listeners on the event target.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC8dispatch5eventyAA0C0C_tF":{"name":"dispatch(event:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF":{"name":"dispatch(_:bubbles:data:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcher"},"Classes/Event/Name.html#/s:SY8RawValueQa":{"name":"RawValue","parent_name":"Name"},"Classes/Event/Name.html#/s:s26ExpressibleByStringLiteralP0cD4TypeQa":{"name":"StringLiteralType","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV4syncAEvpZ":{"name":"sync","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV5eventAEvpZ":{"name":"event","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV7ioErrorAEvpZ":{"name":"ioError","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV10rtmpStatusAEvpZ":{"name":"rtmpStatus","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:SY8rawValue03RawB0Qzvp":{"name":"rawValue","parent_name":"Name"},"Classes/Event/Name.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"Name"},"Classes/Event/Name.html#/s:s26ExpressibleByStringLiteralP06stringD0x0cD4TypeQz_tcfc":{"name":"init(stringLiteral:)","parent_name":"Name"},"Classes/Event/Name.html":{"name":"Name","abstract":"

A structure that defines the name of an event.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4fromyAC10Foundation12NotificationVFZ":{"name":"from(_:)","abstract":"

Undocumented

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4typeAC4NameVvp":{"name":"type","abstract":"

The type represents the event name.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC7bubblesSbvp":{"name":"bubbles","abstract":"

The isBubbles indicates whether ot not an event is a bubbling event.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4dataypSgvp":{"name":"data","abstract":"

The data indicates the to provide information.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC6targetyXlSgvp":{"name":"target","abstract":"

The target indicates the [IEventDispatcher].

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4type7bubbles4dataA2C4NameV_SbypSgtcfc":{"name":"init(type:bubbles:data:)","abstract":"

Creates a new event.

","parent_name":"Event"},"Classes/Event.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"Event"},"Classes/NetStream/ReadyState.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO11initializedyA2EmF":{"name":"initialized","abstract":"

NetStream has been created.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO4openyA2EmF":{"name":"open","abstract":"

NetStream waiting for new method.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO4playyA2EmF":{"name":"play","abstract":"

NetStream play() has been called.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO7playingyA2EmF":{"name":"playing","abstract":"

NetStream play and server was accepted as playing

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO7publishyA2EmF":{"name":"publish","abstract":"

NetStream publish() has been called

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO10publishingyAeA7IOMuxer_p_tcAEmF":{"name":"publishing(muxer:)","abstract":"

NetStream publish and server accpted as publising.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO6closedyA2EmF":{"name":"closed","abstract":"

NetStream close() has been called.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html":{"name":"ReadyState","abstract":"

The enumeration defines the state a ReadyState NetStream is in.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC9lockQueueSo17OS_dispatch_queueCvp":{"name":"lockQueue","abstract":"

The lockQueue.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC15bitrateStrategyAA0c7BitRateF11Convertible_pvp":{"name":"bitrateStrategy","abstract":"

Specifies the adaptibe bitrate strategy.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC19isMonitoringEnabledSbvp":{"name":"isMonitoringEnabled","abstract":"

Specifies the audio monitoring enabled or not.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC7contextSo9CIContextCvp":{"name":"context","abstract":"

Specifies the context object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC5torchSbvp":{"name":"torch","abstract":"

Specifiet the device torch indicating wheter the turn on(TRUE) or not(FALSE).

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC9frameRateSdvp":{"name":"frameRate","abstract":"

Specifies the frame rate of a device capture.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13sessionPresetSo016AVCaptureSessionF0avp":{"name":"sessionPreset","abstract":"

Specifies the sessionPreset for the AVCaptureSession.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC16videoOrientationSo014AVCaptureVideoF0Vvp":{"name":"videoOrientation","abstract":"

Specifies the video orientation for stream.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC23multiCamCaptureSettingsAA05MultifgH0Vvp":{"name":"multiCamCaptureSettings","abstract":"

Specifies the multi camera capture properties.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC8hasAudioSbvp":{"name":"hasAudio","abstract":"

Specifies the hasAudio indicies whether no signal audio or not.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC8hasVideoSbvp":{"name":"hasVideo","abstract":"

Specifies the hasVideo indicies whether freeze video signal or not.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13audioSettingsAA010AudioCodecF0Vvp":{"name":"audioSettings","abstract":"

Specifies the audio compression properties.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13videoSettingsAA010VideoCodecF0Vvp":{"name":"videoSettings","abstract":"

Specifies the video compression properties.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC16videoInputFormatSo22CMFormatDescriptionRefaSgvp":{"name":"videoInputFormat","abstract":"

The video input format.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC16audioInputFormatSo07AVAudioG0CSgvp":{"name":"audioInputFormat","abstract":"

The audio input format.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC14soundTransformAA05SoundF0Vvp":{"name":"soundTransform","abstract":"

Specifies the controls sound.

","parent_name":"NetStream"},"Classes/NetStream.html#/c:@M@HaishinKit@objc(cs)NetStream(py)currentFPS":{"name":"currentFPS","abstract":"

The number of frames per second being displayed.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC8delegateAA0cD8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate..

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC10readyStateAC05ReadyF0Ovp":{"name":"readyState","abstract":"

The current state of the stream.

","parent_name":"NetStream"},"Classes/NetStream.html#/c:@M@HaishinKit@objc(cs)NetStream(im)init":{"name":"init()","abstract":"

Creates a NetStream object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC12attachCamera_7onErrorySo15AVCaptureDeviceCSg_ys0H0_pcSgtF":{"name":"attachCamera(_:onError:)","abstract":"

Attaches the primary camera object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC17attachMultiCamera_7onErrorySo15AVCaptureDeviceCSg_ys0I0_pcSgtF":{"name":"attachMultiCamera(_:onError:)","abstract":"

Attaches the 2ndary camera object for picture in picture.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC11attachAudio_034automaticallyConfiguresApplicationF7Session7onErrorySo15AVCaptureDeviceCSg_Sbys0L0_pcSgtF":{"name":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","abstract":"

Attaches the audio capture object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC12videoCapture3forAA07IOVideoF4UnitCSgSi_tF":{"name":"videoCapture(for:)","abstract":"

Returns the IOVideoCaptureUnit by index.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC12attachScreenyySo09AVCaptureF5InputCSgF":{"name":"attachScreen(_:)","abstract":"

Attaches the screen input object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","abstract":"

Append a CMSampleBuffer.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC6append_4whenySo13AVAudioBufferC_So0G4TimeCtF":{"name":"append(_:when:)","abstract":"

Append an AVAudioBuffer.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC19registerVideoEffectySbAA0fG0CF":{"name":"registerVideoEffect(_:)","abstract":"

Register a video effect.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC21unregisterVideoEffectySbAA0fG0CF":{"name":"unregisterVideoEffect(_:)","abstract":"

Unregister a video effect.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC14startRecording_8settingsyAA18IORecorderDelegate_p_SDySo11AVMediaTypeaSDySSypGGtF":{"name":"startRecording(_:settings:)","abstract":"

Starts recording.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13stopRecordingyyF":{"name":"stopRecording()","abstract":"

Stop recording.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC20readyStateWillChange2toyAC05ReadyF0O_tF":{"name":"readyStateWillChange(to:)","abstract":"

A handler that receives stream readyState will update.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC19readyStateDidChange2toyAC05ReadyF0O_tF":{"name":"readyStateDidChange(to:)","abstract":"

A handler that receives stream readyState updated.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit27IOScreenCaptureUnitDelegateP7session_9didOutput16presentationTimeyAA0cdE0_p_So11CVBufferRefaSo6CMTimeatF":{"name":"session(_:didOutput:presentationTime:)","parent_name":"NetStream"},"Classes/NetStream.html#/c:@CM@HaishinKit@objc(cs)NetStream(im)stream:didOutputSampleBuffer:ofType:":{"name":"stream(_:didOutputSampleBuffer:of:)","abstract":"

Undocumented

","parent_name":"NetStream"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC14defaultTimeoutSivpZ":{"name":"defaultTimeout","abstract":"

The default time to wait for TCP/IP Handshake done.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC18defaultWindowSizeCSivpZ":{"name":"defaultWindowSizeC","abstract":"

The defulat stream’s TCP window size.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC11inputBuffer10Foundation4DataVvp":{"name":"inputBuffer","abstract":"

The current incoming data buffer.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC7timeoutSivp":{"name":"timeout","abstract":"

Specifies time to wait for TCP/IP Handshake done.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC9connectedSbvp":{"name":"connected","abstract":"

Specifies instance connected to server(true) or not(false).

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC11windowSizeCSivp":{"name":"windowSizeC","abstract":"

Specifies the output buffer size in bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC12totalBytesInAA6AtomicVys5Int64VGvp":{"name":"totalBytesIn","abstract":"

Specifies statistics of total incoming bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC16qualityOfService8Dispatch0H3QoSVvp":{"name":"qualityOfService","abstract":"

Specifies instance’s quality of service for a Socket IO.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC13securityLevelSo08NSStreamd8SecurityF0avp":{"name":"securityLevel","abstract":"

Specifies instance determine to use the secure-socket layer (SSL) security level.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC16outputBufferSizeSivp":{"name":"outputBufferSize","abstract":"

Specifies the output buffer size in bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC13totalBytesOutAA6AtomicVys5Int64VGvp":{"name":"totalBytesOut","abstract":"

Specifies statistics of total outgoing bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC13queueBytesOutAA6AtomicVys5Int64VGvp":{"name":"queueBytesOut","abstract":"

Specifies statistics of total outgoing queued bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC7connect8withName4portySS_SitF":{"name":"connect(withName:port:)","abstract":"

Creates a two-way connection to a server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC8doOutput4data6lockedSi10Foundation4DataV_Spys6UInt32VGSgtF":{"name":"doOutput(data:locked:)","abstract":"

Does output data buffer to the server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC5closeyyF":{"name":"close()","abstract":"

Closes the connection from the server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC6listenyyF":{"name":"listen()","abstract":"

Listen incoming data buffer from the server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/c:@CM@HaishinKit@objc(cs)NetSocket(im)stream:handleEvent:":{"name":"stream(_:handle:)","abstract":"

Undocumented

","parent_name":"NetSocket"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC7txtData10Foundation0F0VSgvp":{"name":"txtData","abstract":"

The TXT record for the receiver.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC6domainSSvp":{"name":"domain","abstract":"

The domain for the service.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC4typeSSvp":{"name":"type","abstract":"

The network service type.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC4nameSSvp":{"name":"name","abstract":"

The name of service.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC4ports5Int32Vvp":{"name":"port","abstract":"

The port.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC9isRunningAA6AtomicVySbGvp":{"name":"isRunning","abstract":"

The service is running or not.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC7clientsSayAA0C6ClientCGvp":{"name":"clients","abstract":"

The current connected client objects.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC6domain4type4name4portACSS_S2Ss5Int32Vtcfc":{"name":"init(domain:type:name:port:)","abstract":"

Create a new NetService object.

","parent_name":"NetService"},"Classes/NetService.html#/c:@CM@HaishinKit@objc(cs)NetService(im)netService:didAcceptConnectionWithInputStream:outputStream:":{"name":"netService(_:didAcceptConnectionWith:outputStream:)","abstract":"

Undocumented

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","parent_name":"NetService"},"Classes/NetClient.html#/s:10HaishinKit9NetClientC6listenyyF":{"name":"listen()","parent_name":"NetClient"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit31VideoAdaptiveNetBitRateStrategyC27sufficientBWCountsThresholdSivpZ":{"name":"sufficientBWCountsThreshold","abstract":"

Undocumented

","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP6streamAA0C6StreamCSgvp":{"name":"stream","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumVideodE0Sivp":{"name":"mamimumVideoBitRate","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumAudiodE0Sivp":{"name":"mamimumAudioBitRate","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit31VideoAdaptiveNetBitRateStrategyC07mamimumC7BitrateACSi_tcfc":{"name":"init(mamimumVideoBitrate:)","abstract":"

Undocumented

","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP5setUpyyF":{"name":"setUp()","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP19sufficientBWOccuredyyAA0cdE5StatsVF":{"name":"sufficientBWOccured(_:)","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP21insufficientBWOccuredyyAA0cdE5StatsVF":{"name":"insufficientBWOccured(_:)","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit18NetBitRateStrategyC6sharedACvpZ":{"name":"shared","abstract":"

Undocumented

","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP6streamAA0C6StreamCSgvp":{"name":"stream","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumVideodE0Sivp":{"name":"mamimumVideoBitRate","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumAudiodE0Sivp":{"name":"mamimumAudioBitRate","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP5setUpyyF":{"name":"setUp()","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP19sufficientBWOccuredyyAA0cdE5StatsVF":{"name":"sufficientBWOccured(_:)","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP21insufficientBWOccuredyyAA0cdE5StatsVF":{"name":"insufficientBWOccured(_:)","parent_name":"NetBitRateStrategy"},"Classes/VideoEffect.html#/s:10HaishinKit11VideoEffectC9ciContextSo9CIContextCSgvp":{"name":"ciContext","abstract":"

Specifies the ciContext object.

","parent_name":"VideoEffect"},"Classes/VideoEffect.html#/s:10HaishinKit11VideoEffectC7execute_4infoSo7CIImageCAG_So17CMSampleBufferRefaSgtF":{"name":"execute(_:info:)","abstract":"

Executes to apply a video effect.

","parent_name":"VideoEffect"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC22defaultBackgroundColorSo7NSColorCvpZ":{"name":"defaultBackgroundColor","abstract":"

The view’s background color.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC12videoGravitySo012AVLayerVideoF0avp":{"name":"videoGravity","abstract":"

A value that specifies how the video is displayed within a player layer’s bounds.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC16videoOrientationSo014AVCaptureVideoF0Vvp":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC28isCaptureVideoPreviewEnabledSbvp":{"name":"isCaptureVideoPreviewEnabled","abstract":"

Specifies the capture video preview enabled or not.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/c:@M@HaishinKit@objc(cs)PiPHKView(im)initWithFrame:":{"name":"init(frame:)","abstract":"

Initializes and returns a newly allocated view object with the specified frame rectangle.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/c:@M@HaishinKit@objc(cs)PiPHKView(im)initWithCoder:":{"name":"init(coder:)","abstract":"

Returns an object initialized from data in a given unarchiver.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/c:@M@HaishinKit@objc(cs)PiPHKView(im)awakeFromNib":{"name":"awakeFromNib()","abstract":"

Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit17NetStreamDrawableP06attachD0yyAA0cD0CSgF":{"name":"attachStream(_:)","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit17NetStreamDrawableP7enqueueyySo17CMSampleBufferRefaSgF":{"name":"enqueue(_:)","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/defaultBackgroundColor":{"name":"defaultBackgroundColor","abstract":"

The view’s background color.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/layerClass":{"name":"layerClass","abstract":"

Returns the class used to create the layer for instances of this class.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/layer":{"name":"layer","abstract":"

The view’s Core Animation layer used for rendering.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/videoGravity":{"name":"videoGravity","abstract":"

A value that specifies how the video is displayed within a player layer’s bounds.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/videoOrientation":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/init(frame:)":{"name":"init(frame:)","abstract":"

Initializes and returns a newly allocated view object with the specified frame rectangle.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/init(coder:)":{"name":"init(coder:)","abstract":"

Returns an object initialized from data in a given unarchiver.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/awakeFromNib()":{"name":"awakeFromNib()","abstract":"

Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/attachStream(_:)":{"name":"attachStream(_:)","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/enqueue(_:)":{"name":"enqueue(_:)","parent_name":"PiPHKView"},"Classes/MTHKView.html#/s:10HaishinKit8MTHKViewC12videoGravitySo012AVLayerVideoE0avp":{"name":"videoGravity","abstract":"

Specifies how the video is displayed within a player layer’s bounds.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit8MTHKViewC16videoOrientationSo014AVCaptureVideoE0Vvp":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit8MTHKViewC28isCaptureVideoPreviewEnabledSbvp":{"name":"isCaptureVideoPreviewEnabled","abstract":"

Specifies the capture video preview enabled or not.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@M@HaishinKit@objc(cs)MTHKView(im)initWithFrame:":{"name":"init(frame:)","abstract":"

Initializes and returns a newly allocated view object with the specified frame rectangle.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@M@HaishinKit@objc(cs)MTHKView(im)initWithCoder:":{"name":"init(coder:)","abstract":"

Returns an object initialized from data in a given unarchiver.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@M@HaishinKit@objc(cs)MTHKView(im)awakeFromNib":{"name":"awakeFromNib()","abstract":"

Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit17NetStreamDrawableP06attachD0yyAA0cD0CSgF":{"name":"attachStream(_:)","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit17NetStreamDrawableP7enqueueyySo17CMSampleBufferRefaSgF":{"name":"enqueue(_:)","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@CM@HaishinKit@objc(cs)MTHKView(im)mtkView:drawableSizeWillChange:":{"name":"mtkView(_:drawableSizeWillChange:)","abstract":"

Undocumented

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@CM@HaishinKit@objc(cs)MTHKView(im)drawInMTKView:":{"name":"draw(in:)","abstract":"

Undocumented

","parent_name":"MTHKView"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC20defaultVideoSettingsSDySo8NSStringCyXlGvpZ":{"name":"defaultVideoSettings","abstract":"

The default videoSettings for a device.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC6deviceSo15AVCaptureDeviceCSgvp":{"name":"device","abstract":"

The current video device object.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC16videoOrientationSo014AVCaptureVideoG0Vvp":{"name":"videoOrientation","abstract":"

Specifies the videoOrientation indicates whether to rotate the video flowing through the connection to a given orientation.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC15isVideoMirroredSbvp":{"name":"isVideoMirrored","abstract":"

Spcifies the video mirroed indicates whether the video flowing through the connection should be mirrored about its vertical axis.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/preferredVideoStabilizationMode":{"name":"preferredVideoStabilizationMode","abstract":"

Specifies the preferredVideoStabilizationMode most appropriate for use with the connection.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/enabledScale":{"name":"enabledScale","abstract":"

Specifies the boolean value that indicates whether the snapshot image downsize or not.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/afterScreenUpdates":{"name":"afterScreenUpdates","abstract":"

Specifies the boolean value that indicates whether the snapshot should be rendered after recent changes have been incorporated.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/preferredFramesPerSecond":{"name":"preferredFramesPerSecond","abstract":"

Specifies the number of shaphot that must pass before the display link notifies the target again.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/attributes":{"name":"attributes","abstract":"

Specifies the CVPixelBufferPool’s attrivutes.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/delegate":{"name":"delegate","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/isRunning":{"name":"isRunning","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/init(shared:)":{"name":"init(shared:)","abstract":"

Creates an IOUIScreenCaptureUnit object to capture UIApplication.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/init(viewToCapture:)":{"name":"init(viewToCapture:)","abstract":"

Create an IOUIScreenCaptureUnit object to capture UIView.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/onScreen(_:)":{"name":"onScreen(_:)","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/startRunning()":{"name":"startRunning()","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/stopRunning()":{"name":"stopRunning()","parent_name":"IOUIScreenCaptureUnit"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO25failedToCreateAssetWriteryAEsAD_p_tcAEmF":{"name":"failedToCreateAssetWriter(error:)","abstract":"

Failed to create the AVAssetWriter.

","parent_name":"Error"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO30failedToCreateAssetWriterInputyAESo11NSExceptionC_tcAEmF":{"name":"failedToCreateAssetWriterInput(error:)","abstract":"

Failed to create the AVAssetWriterInput.

","parent_name":"Error"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO14failedToAppendyAEsAD_pSg_tcAEmF":{"name":"failedToAppend(error:)","abstract":"

Failed to append the PixelBuffer or SampleBuffer.

","parent_name":"Error"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO21failedToFinishWritingyAEsAD_pSg_tcAEmF":{"name":"failedToFinishWriting(error:)","abstract":"

Failed to finish writing the AVAssetWriter.

","parent_name":"Error"},"Classes/IORecorder/Error.html":{"name":"Error","abstract":"

The IORecorder error domain codes.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC21defaultOutputSettingsSDySo11AVMediaTypeaSDySSypGGvpZ":{"name":"defaultOutputSettings","abstract":"

The default output settings for an IORecorder.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC14outputSettingsSDySo11AVMediaTypeaSDySSypGGvp":{"name":"outputSettings","abstract":"

Specifies the recorder settings.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC9isRunningAA6AtomicVySbGvp":{"name":"isRunning","abstract":"

The running indicies whether recording or not.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","abstract":"

Append a sample buffer for recording.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC6append_20withPresentationTimeySo11CVBufferRefa_So6CMTimeatF":{"name":"append(_:withPresentationTime:)","abstract":"

Append a pixel buffer for recording.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","parent_name":"IORecorder"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC13defaultPATPIDs6UInt16VvpZ":{"name":"defaultPATPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC13defaultPMTPIDs6UInt16VvpZ":{"name":"defaultPMTPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC15defaultVideoPIDs6UInt16VvpZ":{"name":"defaultVideoPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC15defaultAudioPIDs6UInt16VvpZ":{"name":"defaultAudioPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC22defaultSegmentDurationSdvpZ":{"name":"defaultSegmentDuration","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

The delegate instance.

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC9isRunningAA6AtomicVySbGvp":{"name":"isRunning","abstract":"

This instance is running to process(true) or not(false).

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC14expectedMediasShySo11AVMediaTypeaGvp":{"name":"expectedMedias","abstract":"

The exptected medias = [.video, .audio].

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP11audioFormatSo07AVAudioE0CSgvp":{"name":"audioFormat","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP11videoFormatSo22CMFormatDescriptionRefaSgvp":{"name":"videoFormat","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC15segmentDurationACSd_tcfc":{"name":"init(segmentDuration:)","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP6append_4whenySo13AVAudioBufferC_So0F4TimeCtF":{"name":"append(_:when:)","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","parent_name":"TSWriter"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate object.

","parent_name":"TSReader"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderCACycfc":{"name":"init()","abstract":"

Create a new TSReader instance.

","parent_name":"TSReader"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderC4readySi10Foundation4DataVF":{"name":"read(_:)","abstract":"

Reads transport-stream data.

","parent_name":"TSReader"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderC5clearyyF":{"name":"clear()","abstract":"

Clears the reader object for new transport stream.

","parent_name":"TSReader"},"Classes/TSReader.html":{"name":"TSReader","abstract":"

The TSReader class represents read MPEG-2 transport stream data.

"},"Classes/TSWriter.html":{"name":"TSWriter","abstract":"

The TSWriter class represents writes MPEG-2 transport stream data.

"},"Classes/IORecorder.html":{"name":"IORecorder","abstract":"

The IORecorder class represents video and audio recorder.

"},"Classes/IOUIScreenCaptureUnit.html":{"name":"IOUIScreenCaptureUnit","abstract":"

The IOUIScreenCaptureUnit class captures the UIView.

"},"Classes/IOVideoCaptureUnit.html":{"name":"IOVideoCaptureUnit","abstract":"

An object that provides the interface to control the AVCaptureDevice’s transport behavior.

"},"Classes/MTHKView.html":{"name":"MTHKView","abstract":"

A view that displays a video content of a NetStream object which uses Metal api.

"},"Classes/PiPHKView.html":{"name":"PiPHKView","abstract":"

A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

"},"Classes/VideoEffect.html":{"name":"VideoEffect","abstract":"

An object that apply a video effect.

"},"Classes/NetBitRateStrategy.html":{"name":"NetBitRateStrategy","abstract":"

The NetBitRateStrategy class provides a no operative bitrate storategy.

"},"Classes/VideoAdaptiveNetBitRateStrategy.html":{"name":"VideoAdaptiveNetBitRateStrategy","abstract":"

The VideoAdaptiveNetBitRateStrategy class provides an algorithm that focuses on video bitrate control.

"},"Classes/NetClient.html":{"name":"NetClient","abstract":"

The NetClient class creates a two-way connection between a NetService.

"},"Classes/NetService.html":{"name":"NetService","abstract":"

The NetService class creates a two-way connection between a client and a server as a server.

"},"Classes/NetSocket.html":{"name":"NetSocket","abstract":"

The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream.

"},"Classes/NetStream.html":{"name":"NetStream","abstract":"

The NetStream class is the foundation of a RTMPStream.

"},"Classes/Event.html":{"name":"Event","abstract":"

The Event interface is used to provide information.

"},"Classes/EventDispatcher.html":{"name":"EventDispatcher","abstract":"

The EventDispatcher interface is in implementation which supports the DOM Event Model.

"},"Classes/RTMPResponder.html":{"name":"RTMPResponder","abstract":"

The RTMPResponder class provides to use handle RTMPConnection’s callback.

"},"Classes/RTMPConnection.html":{"name":"RTMPConnection","abstract":"

The RTMPConneciton class create a two-way RTMP connection.

"},"Classes/RTMPSharedObject.html":{"name":"RTMPSharedObject","abstract":"

The RTMPSharedObject class is used to read and write data on a server.

"},"Classes/RTMPStream.html":{"name":"RTMPStream","abstract":"

An object that provides the interface to control a one-way channel over a RtmpConnection.

"},"Classes/ByteArray.html":{"name":"ByteArray","abstract":"

The ByteArray class provides methods and properties the reading or writing with binary data.

"},"Classes/InstanceHolder.html":{"name":"InstanceHolder","abstract":"

The InstanceHolder class provides a shared instance memory management.

"},"Classes/SRTConnection.html":{"name":"SRTConnection","abstract":"

The SRTConnection class create a two-way SRT connection.

"},"Classes/SRTLogger.html":{"name":"SRTLogger","abstract":"

An object for writing interpolated string messages to srt logging system.

"},"Classes/SRTStream.html":{"name":"SRTStream","abstract":"

An object that provides the interface to control a one-way channel over a SRTConnection.

"},"Classes.html":{"name":"Classes","abstract":"

The following classes are available globally.

"},"Global%20Variables.html":{"name":"Global Variables","abstract":"

The following global variables are available globally.

"},"Enums.html":{"name":"Enumerations","abstract":"

The following enumerations are available globally.

"},"Extensions.html":{"name":"Extensions","abstract":"

The following extensions are available globally.

"},"Protocols.html":{"name":"Protocols","abstract":"

The following protocols are available globally.

"},"Structs.html":{"name":"Structures","abstract":"

The following structures are available globally.

"},"Typealiases.html":{"name":"Type Aliases","abstract":"

The following type aliases are available globally.

"}} \ No newline at end of file diff --git a/docs/docsets/HaishinKit.docset/Contents/Resources/docSet.dsidx b/docs/docsets/HaishinKit.docset/Contents/Resources/docSet.dsidx new file mode 100644 index 000000000..aa9131902 Binary files /dev/null and b/docs/docsets/HaishinKit.docset/Contents/Resources/docSet.dsidx differ diff --git a/docs/docsets/HaishinKit.tgz b/docs/docsets/HaishinKit.tgz new file mode 100644 index 000000000..d1542b187 Binary files /dev/null and b/docs/docsets/HaishinKit.tgz differ diff --git a/docs/documentation/haishinkit/asarray/!=(_:_:)/index.html b/docs/documentation/haishinkit/asarray/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/==(_:_:)/index.html b/docs/documentation/haishinkit/asarray/==(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/==(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/customdebugstringconvertible-implementations/index.html b/docs/documentation/haishinkit/asarray/customdebugstringconvertible-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/customdebugstringconvertible-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/debugdescription/index.html b/docs/documentation/haishinkit/asarray/debugdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/debugdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/equatable-implementations/index.html b/docs/documentation/haishinkit/asarray/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/expressiblebyarrayliteral-implementations/index.html b/docs/documentation/haishinkit/asarray/expressiblebyarrayliteral-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/expressiblebyarrayliteral-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/index.html b/docs/documentation/haishinkit/asarray/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/init(arrayliteral:)/index.html b/docs/documentation/haishinkit/asarray/init(arrayliteral:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/init(arrayliteral:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/init(count:)/index.html b/docs/documentation/haishinkit/asarray/init(count:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/init(count:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/init(data:)/index.html b/docs/documentation/haishinkit/asarray/init(data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/init(data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/length/index.html b/docs/documentation/haishinkit/asarray/length/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/length/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asarray/subscript(_:)/index.html b/docs/documentation/haishinkit/asarray/subscript(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asarray/subscript(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asobject/index.html b/docs/documentation/haishinkit/asobject/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asobject/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/astypedobject/index.html b/docs/documentation/haishinkit/astypedobject/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/astypedobject/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/astypedobject/register(type:named:)/index.html b/docs/documentation/haishinkit/astypedobject/register(type:named:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/astypedobject/register(type:named:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/astypedobject/register(typenamed:decoder:)/index.html b/docs/documentation/haishinkit/astypedobject/register(typenamed:decoder:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/astypedobject/register(typenamed:decoder:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/astypedobject/typedobjectdecoder/index.html b/docs/documentation/haishinkit/astypedobject/typedobjectdecoder/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/astypedobject/typedobjectdecoder/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/astypedobject/unregister(typenamed:)/index.html b/docs/documentation/haishinkit/astypedobject/unregister(typenamed:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/astypedobject/unregister(typenamed:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asundefined/description/index.html b/docs/documentation/haishinkit/asundefined/description/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asundefined/description/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asundefined/index.html b/docs/documentation/haishinkit/asundefined/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asundefined/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxml/!=(_:_:)/index.html b/docs/documentation/haishinkit/asxml/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxml/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxml/==(_:_:)/index.html b/docs/documentation/haishinkit/asxml/==(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxml/==(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxml/description/index.html b/docs/documentation/haishinkit/asxml/description/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxml/description/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxml/equatable-implementations/index.html b/docs/documentation/haishinkit/asxml/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxml/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxml/index.html b/docs/documentation/haishinkit/asxml/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxml/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxml/init(data:)/index.html b/docs/documentation/haishinkit/asxml/init(data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxml/init(data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxmldocument/!=(_:_:)/index.html b/docs/documentation/haishinkit/asxmldocument/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxmldocument/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxmldocument/==(_:_:)/index.html b/docs/documentation/haishinkit/asxmldocument/==(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxmldocument/==(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxmldocument/description/index.html b/docs/documentation/haishinkit/asxmldocument/description/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxmldocument/description/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxmldocument/equatable-implementations/index.html b/docs/documentation/haishinkit/asxmldocument/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxmldocument/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxmldocument/index.html b/docs/documentation/haishinkit/asxmldocument/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxmldocument/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/asxmldocument/init(data:)/index.html b/docs/documentation/haishinkit/asxmldocument/init(data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/asxmldocument/init(data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/atomic/index.html b/docs/documentation/haishinkit/atomic/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/atomic/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/atomic/init(_:)/index.html b/docs/documentation/haishinkit/atomic/init(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/atomic/init(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/atomic/mutate(_:)/index.html b/docs/documentation/haishinkit/atomic/mutate(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/atomic/mutate(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/atomic/value/index.html b/docs/documentation/haishinkit/atomic/value/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/atomic/value/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/appendsamplebuffer(_:offset:)/index.html b/docs/documentation/haishinkit/audiocodec/appendsamplebuffer(_:offset:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/appendsamplebuffer(_:offset:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/delegate/index.html b/docs/documentation/haishinkit/audiocodec/delegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/delegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/error/error-implementations/index.html b/docs/documentation/haishinkit/audiocodec/error/error-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/error/error-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/error/failedtoconvert(error:)/index.html b/docs/documentation/haishinkit/audiocodec/error/failedtoconvert(error:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/error/failedtoconvert(error:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/error/failedtocreate(from:to:)/index.html b/docs/documentation/haishinkit/audiocodec/error/failedtocreate(from:to:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/error/failedtocreate(from:to:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/error/index.html b/docs/documentation/haishinkit/audiocodec/error/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/error/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/error/localizeddescription/index.html b/docs/documentation/haishinkit/audiocodec/error/localizeddescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/error/localizeddescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/index.html b/docs/documentation/haishinkit/audiocodec/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/isrunning/index.html b/docs/documentation/haishinkit/audiocodec/isrunning/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/isrunning/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/running-implementations/index.html b/docs/documentation/haishinkit/audiocodec/running-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/running-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/settings/index.html b/docs/documentation/haishinkit/audiocodec/settings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/settings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/startrunning()/index.html b/docs/documentation/haishinkit/audiocodec/startrunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/startrunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodec/stoprunning()/index.html b/docs/documentation/haishinkit/audiocodec/stoprunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodec/stoprunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:)/index.html b/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:presentationtimestamp:)/index.html b/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:presentationtimestamp:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:didoutput:presentationtimestamp:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:erroroccurred:)/index.html b/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:erroroccurred:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecdelegate/audiocodec(_:erroroccurred:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecdelegate/index.html b/docs/documentation/haishinkit/audiocodecdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecsettings/bitrate/index.html b/docs/documentation/haishinkit/audiocodecsettings/bitrate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecsettings/bitrate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecsettings/default/index.html b/docs/documentation/haishinkit/audiocodecsettings/default/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecsettings/default/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecsettings/index.html b/docs/documentation/haishinkit/audiocodecsettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecsettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecsettings/init(bitrate:outputchannelsmap:)/index.html b/docs/documentation/haishinkit/audiocodecsettings/init(bitrate:outputchannelsmap:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecsettings/init(bitrate:outputchannelsmap:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecsettings/init(from:)/index.html b/docs/documentation/haishinkit/audiocodecsettings/init(from:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecsettings/init(from:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecsettings/maximumnumberofchannels/index.html b/docs/documentation/haishinkit/audiocodecsettings/maximumnumberofchannels/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecsettings/maximumnumberofchannels/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audiocodecsettings/outputchannelsmap/index.html b/docs/documentation/haishinkit/audiocodecsettings/outputchannelsmap/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audiocodecsettings/outputchannelsmap/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audioeffect/execute(_:presentationtimestamp:)/index.html b/docs/documentation/haishinkit/audioeffect/execute(_:presentationtimestamp:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audioeffect/execute(_:presentationtimestamp:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/audioeffect/index.html b/docs/documentation/haishinkit/audioeffect/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/audioeffect/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/avcodecdelegate/index.html b/docs/documentation/haishinkit/avcodecdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/avcodecdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/bytesavailable/index.html b/docs/documentation/haishinkit/bytearray/bytesavailable/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/bytesavailable/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/clear()/index.html b/docs/documentation/haishinkit/bytearray/clear()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/clear()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/customdebugstringconvertible-implementations/index.html b/docs/documentation/haishinkit/bytearray/customdebugstringconvertible-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/customdebugstringconvertible-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/debugdescription/index.html b/docs/documentation/haishinkit/bytearray/debugdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/debugdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/error/!=(_:_:)/index.html b/docs/documentation/haishinkit/bytearray/error/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/error/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/error/eof/index.html b/docs/documentation/haishinkit/bytearray/error/eof/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/error/eof/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/error/equatable-implementations/index.html b/docs/documentation/haishinkit/bytearray/error/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/error/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/error/error-implementations/index.html b/docs/documentation/haishinkit/bytearray/error/error-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/error/error-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/error/index.html b/docs/documentation/haishinkit/bytearray/error/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/error/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/error/localizeddescription/index.html b/docs/documentation/haishinkit/bytearray/error/localizeddescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/error/localizeddescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/error/parse/index.html b/docs/documentation/haishinkit/bytearray/error/parse/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/error/parse/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/index.html b/docs/documentation/haishinkit/bytearray/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/init()/index.html b/docs/documentation/haishinkit/bytearray/init()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/init()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/init(data:)/index.html b/docs/documentation/haishinkit/bytearray/init(data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/init(data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/length/index.html b/docs/documentation/haishinkit/bytearray/length/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/length/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/position/index.html b/docs/documentation/haishinkit/bytearray/position/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/position/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readdouble()/index.html b/docs/documentation/haishinkit/bytearray/readdouble()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readdouble()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readfloat()/index.html b/docs/documentation/haishinkit/bytearray/readfloat()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readfloat()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readint16()/index.html b/docs/documentation/haishinkit/bytearray/readint16()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readint16()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readint32()/index.html b/docs/documentation/haishinkit/bytearray/readint32()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readint32()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readint64()/index.html b/docs/documentation/haishinkit/bytearray/readint64()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readint64()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readint8()/index.html b/docs/documentation/haishinkit/bytearray/readint8()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readint8()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readuint16()/index.html b/docs/documentation/haishinkit/bytearray/readuint16()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readuint16()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readuint24()/index.html b/docs/documentation/haishinkit/bytearray/readuint24()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readuint24()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readuint32()/index.html b/docs/documentation/haishinkit/bytearray/readuint32()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readuint32()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readuint64()/index.html b/docs/documentation/haishinkit/bytearray/readuint64()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readuint64()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readuint8()/index.html b/docs/documentation/haishinkit/bytearray/readuint8()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readuint8()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/readutf8()/index.html b/docs/documentation/haishinkit/bytearray/readutf8()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/readutf8()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/subscript(_:)/index.html b/docs/documentation/haishinkit/bytearray/subscript(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/subscript(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writedouble(_:)/index.html b/docs/documentation/haishinkit/bytearray/writedouble(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writedouble(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writefloat(_:)/index.html b/docs/documentation/haishinkit/bytearray/writefloat(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writefloat(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeint16(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeint16(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeint16(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeint32(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeint32(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeint32(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeint64(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeint64(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeint64(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeint8(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeint8(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeint8(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeuint16(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeuint16(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeuint16(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeuint24(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeuint24(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeuint24(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeuint32(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeuint32(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeuint32(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeuint64(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeuint64(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeuint64(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeuint8(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeuint8(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeuint8(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/bytearray/writeutf8(_:)/index.html b/docs/documentation/haishinkit/bytearray/writeutf8(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/bytearray/writeutf8(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/!=(_:_:)/index.html b/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/==(_:_:)/index.html b/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/==(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/==(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/equatable-implementations/index.html b/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/index.html b/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/coreaudiotypes/audiostreambasicdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/coreaudiotypes/index.html b/docs/documentation/haishinkit/coreaudiotypes/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/coreaudiotypes/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/deviceutil/device(withlocalizedname:mediatype:)/index.html b/docs/documentation/haishinkit/deviceutil/device(withlocalizedname:mediatype:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/deviceutil/device(withlocalizedname:mediatype:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/deviceutil/index.html b/docs/documentation/haishinkit/deviceutil/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/deviceutil/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/bubbles/index.html b/docs/documentation/haishinkit/event/bubbles/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/bubbles/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/customdebugstringconvertible-implementations/index.html b/docs/documentation/haishinkit/event/customdebugstringconvertible-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/customdebugstringconvertible-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/data/index.html b/docs/documentation/haishinkit/event/data/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/data/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/debugdescription/index.html b/docs/documentation/haishinkit/event/debugdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/debugdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/from(_:)/index.html b/docs/documentation/haishinkit/event/from(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/from(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/index.html b/docs/documentation/haishinkit/event/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/init(type:bubbles:data:)/index.html b/docs/documentation/haishinkit/event/init(type:bubbles:data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/init(type:bubbles:data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/event/index.html b/docs/documentation/haishinkit/event/name/event/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/event/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/expressiblebyextendedgraphemeclusterliteral-implementations/index.html b/docs/documentation/haishinkit/event/name/expressiblebyextendedgraphemeclusterliteral-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/expressiblebyextendedgraphemeclusterliteral-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/expressiblebyunicodescalarliteral-implementations/index.html b/docs/documentation/haishinkit/event/name/expressiblebyunicodescalarliteral-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/expressiblebyunicodescalarliteral-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/index.html b/docs/documentation/haishinkit/event/name/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/init(extendedgraphemeclusterliteral:)/index.html b/docs/documentation/haishinkit/event/name/init(extendedgraphemeclusterliteral:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/init(extendedgraphemeclusterliteral:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/init(rawvalue:)/index.html b/docs/documentation/haishinkit/event/name/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/init(stringliteral:)/index.html b/docs/documentation/haishinkit/event/name/init(stringliteral:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/init(stringliteral:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/init(unicodescalarliteral:)/index.html b/docs/documentation/haishinkit/event/name/init(unicodescalarliteral:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/init(unicodescalarliteral:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/ioerror/index.html b/docs/documentation/haishinkit/event/name/ioerror/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/ioerror/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/rawvalue-swift.property/index.html b/docs/documentation/haishinkit/event/name/rawvalue-swift.property/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/rawvalue-swift.property/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/rawvalue-swift.typealias/index.html b/docs/documentation/haishinkit/event/name/rawvalue-swift.typealias/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/rawvalue-swift.typealias/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/rtmpstatus/index.html b/docs/documentation/haishinkit/event/name/rtmpstatus/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/rtmpstatus/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/stringliteraltype/index.html b/docs/documentation/haishinkit/event/name/stringliteraltype/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/stringliteraltype/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/name/sync/index.html b/docs/documentation/haishinkit/event/name/sync/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/name/sync/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/target/index.html b/docs/documentation/haishinkit/event/target/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/target/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/event/type/index.html b/docs/documentation/haishinkit/event/type/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/event/type/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcher/addeventlistener(_:selector:observer:usecapture:)/index.html b/docs/documentation/haishinkit/eventdispatcher/addeventlistener(_:selector:observer:usecapture:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcher/addeventlistener(_:selector:observer:usecapture:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcher/dispatch(_:bubbles:data:)/index.html b/docs/documentation/haishinkit/eventdispatcher/dispatch(_:bubbles:data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcher/dispatch(_:bubbles:data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcher/dispatch(event:)/index.html b/docs/documentation/haishinkit/eventdispatcher/dispatch(event:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcher/dispatch(event:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcher/index.html b/docs/documentation/haishinkit/eventdispatcher/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcher/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcher/init()/index.html b/docs/documentation/haishinkit/eventdispatcher/init()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcher/init()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcher/init(target:)/index.html b/docs/documentation/haishinkit/eventdispatcher/init(target:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcher/init(target:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcher/removeeventlistener(_:selector:observer:usecapture:)/index.html b/docs/documentation/haishinkit/eventdispatcher/removeeventlistener(_:selector:observer:usecapture:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcher/removeeventlistener(_:selector:observer:usecapture:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcherconvertible/addeventlistener(_:selector:observer:usecapture:)/index.html b/docs/documentation/haishinkit/eventdispatcherconvertible/addeventlistener(_:selector:observer:usecapture:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcherconvertible/addeventlistener(_:selector:observer:usecapture:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcherconvertible/dispatch(_:bubbles:data:)/index.html b/docs/documentation/haishinkit/eventdispatcherconvertible/dispatch(_:bubbles:data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcherconvertible/dispatch(_:bubbles:data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcherconvertible/dispatch(event:)/index.html b/docs/documentation/haishinkit/eventdispatcherconvertible/dispatch(event:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcherconvertible/dispatch(event:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcherconvertible/index.html b/docs/documentation/haishinkit/eventdispatcherconvertible/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcherconvertible/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/eventdispatcherconvertible/removeeventlistener(_:selector:observer:usecapture:)/index.html b/docs/documentation/haishinkit/eventdispatcherconvertible/removeeventlistener(_:selector:observer:usecapture:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/eventdispatcherconvertible/removeeventlistener(_:selector:observer:usecapture:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/attachstream(_:)/index.html b/docs/documentation/haishinkit/hkview/attachstream(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/attachstream(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/awakefromnib()/index.html b/docs/documentation/haishinkit/hkview/awakefromnib()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/awakefromnib()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/defaultbackgroundcolor/index.html b/docs/documentation/haishinkit/hkview/defaultbackgroundcolor/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/defaultbackgroundcolor/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/enqueue(_:)/index.html b/docs/documentation/haishinkit/hkview/enqueue(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/enqueue(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/index.html b/docs/documentation/haishinkit/hkview/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/init(coder:)/index.html b/docs/documentation/haishinkit/hkview/init(coder:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/init(coder:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/init(frame:)/index.html b/docs/documentation/haishinkit/hkview/init(frame:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/init(frame:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/netstreamdrawable-implementations/index.html b/docs/documentation/haishinkit/hkview/netstreamdrawable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/netstreamdrawable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/videoformatdescription/index.html b/docs/documentation/haishinkit/hkview/videoformatdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/videoformatdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/videogravity/index.html b/docs/documentation/haishinkit/hkview/videogravity/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/videogravity/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hkview/videoorientation/index.html b/docs/documentation/haishinkit/hkview/videoorientation/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hkview/videoorientation/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hlsservice/addhttpstream(_:)/index.html b/docs/documentation/haishinkit/hlsservice/addhttpstream(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hlsservice/addhttpstream(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hlsservice/get(_:client:)/index.html b/docs/documentation/haishinkit/hlsservice/get(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hlsservice/get(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hlsservice/index.html b/docs/documentation/haishinkit/hlsservice/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hlsservice/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/hlsservice/removehttpstream(_:)/index.html b/docs/documentation/haishinkit/hlsservice/removehttpstream(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/hlsservice/removehttpstream(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httprequest/body/index.html b/docs/documentation/haishinkit/httprequest/body/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httprequest/body/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httprequest/headerfields/index.html b/docs/documentation/haishinkit/httprequest/headerfields/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httprequest/headerfields/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httprequest/index.html b/docs/documentation/haishinkit/httprequest/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httprequest/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httprequest/method/index.html b/docs/documentation/haishinkit/httprequest/method/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httprequest/method/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httprequest/separator/index.html b/docs/documentation/haishinkit/httprequest/separator/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httprequest/separator/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httprequest/uri/index.html b/docs/documentation/haishinkit/httprequest/uri/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httprequest/uri/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httprequest/version/index.html b/docs/documentation/haishinkit/httprequest/version/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httprequest/version/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpresponse/body/index.html b/docs/documentation/haishinkit/httpresponse/body/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpresponse/body/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpresponse/headerfields/index.html b/docs/documentation/haishinkit/httpresponse/headerfields/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpresponse/headerfields/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpresponse/index.html b/docs/documentation/haishinkit/httpresponse/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpresponse/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpresponse/init(dictionaryliteral:)/index.html b/docs/documentation/haishinkit/httpresponse/init(dictionaryliteral:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpresponse/init(dictionaryliteral:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpresponse/statuscode/index.html b/docs/documentation/haishinkit/httpresponse/statuscode/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpresponse/statuscode/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpresponse/version/index.html b/docs/documentation/haishinkit/httpresponse/version/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpresponse/version/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/connect(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/connect(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/connect(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/defaultdocument/index.html b/docs/documentation/haishinkit/httpservice/defaultdocument/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/defaultdocument/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/defaultport/index.html b/docs/documentation/haishinkit/httpservice/defaultport/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/defaultport/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/delete(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/delete(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/delete(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/get(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/get(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/get(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/head(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/head(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/head(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/index.html b/docs/documentation/haishinkit/httpservice/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/options(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/options(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/options(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/post(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/post(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/post(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/put(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/put(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/put(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/trace(_:client:)/index.html b/docs/documentation/haishinkit/httpservice/trace(_:client:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/trace(_:client:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpservice/type/index.html b/docs/documentation/haishinkit/httpservice/type/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpservice/type/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)/index.html b/docs/documentation/haishinkit/httpstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpstream/attachcamera(_:onerror:)/index.html b/docs/documentation/haishinkit/httpstream/attachcamera(_:onerror:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpstream/attachcamera(_:onerror:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpstream/expectedmedias/index.html b/docs/documentation/haishinkit/httpstream/expectedmedias/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpstream/expectedmedias/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpstream/index.html b/docs/documentation/haishinkit/httpstream/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpstream/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/httpstream/publish(_:)/index.html b/docs/documentation/haishinkit/httpstream/publish(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/httpstream/publish(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/!=(_:_:)/index.html b/docs/documentation/haishinkit/imagetransform/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/east/index.html b/docs/documentation/haishinkit/imagetransform/east/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/east/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/encode(to:)/index.html b/docs/documentation/haishinkit/imagetransform/encode(to:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/encode(to:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/equatable-implementations/index.html b/docs/documentation/haishinkit/imagetransform/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/hash(into:)/index.html b/docs/documentation/haishinkit/imagetransform/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/hashvalue/index.html b/docs/documentation/haishinkit/imagetransform/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/index.html b/docs/documentation/haishinkit/imagetransform/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/init(from:)/index.html b/docs/documentation/haishinkit/imagetransform/init(from:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/init(from:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/init(rawvalue:)/index.html b/docs/documentation/haishinkit/imagetransform/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/north/index.html b/docs/documentation/haishinkit/imagetransform/north/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/north/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/imagetransform/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/south/index.html b/docs/documentation/haishinkit/imagetransform/south/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/south/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/imagetransform/west/index.html b/docs/documentation/haishinkit/imagetransform/west/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/imagetransform/west/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/index.html b/docs/documentation/haishinkit/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/instanceholder/index.html b/docs/documentation/haishinkit/instanceholder/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/instanceholder/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/instanceholder/init(factory:)/index.html b/docs/documentation/haishinkit/instanceholder/init(factory:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/instanceholder/init(factory:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/instanceholder/release(_:)/index.html b/docs/documentation/haishinkit/instanceholder/release(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/instanceholder/release(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/instanceholder/retain()/index.html b/docs/documentation/haishinkit/instanceholder/retain()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/instanceholder/retain()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/appendsamplebuffer(_:)/index.html b/docs/documentation/haishinkit/iomixer/appendsamplebuffer(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/appendsamplebuffer(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/audioengineholder/index.html b/docs/documentation/haishinkit/iomixer/audioengineholder/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/audioengineholder/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/defaultframerate/index.html b/docs/documentation/haishinkit/iomixer/defaultframerate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/defaultframerate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/drawable/index.html b/docs/documentation/haishinkit/iomixer/drawable/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/drawable/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/hasvideo/index.html b/docs/documentation/haishinkit/iomixer/hasvideo/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/hasvideo/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/index.html b/docs/documentation/haishinkit/iomixer/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/iounitdecoding-implementations/index.html b/docs/documentation/haishinkit/iomixer/iounitdecoding-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/iounitdecoding-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/iounitencoding-implementations/index.html b/docs/documentation/haishinkit/iomixer/iounitencoding-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/iounitencoding-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/ispaused/index.html b/docs/documentation/haishinkit/iomixer/ispaused/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/ispaused/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/isrunning/index.html b/docs/documentation/haishinkit/iomixer/isrunning/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/isrunning/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/recorder/index.html b/docs/documentation/haishinkit/iomixer/recorder/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/recorder/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/running-implementations/index.html b/docs/documentation/haishinkit/iomixer/running-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/running-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/session/index.html b/docs/documentation/haishinkit/iomixer/session/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/session/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/startdecoding()/index.html b/docs/documentation/haishinkit/iomixer/startdecoding()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/startdecoding()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/startencoding(_:)/index.html b/docs/documentation/haishinkit/iomixer/startencoding(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/startencoding(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/startrunning()/index.html b/docs/documentation/haishinkit/iomixer/startrunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/startrunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/stopdecoding()/index.html b/docs/documentation/haishinkit/iomixer/stopdecoding()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/stopdecoding()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/stopencoding()/index.html b/docs/documentation/haishinkit/iomixer/stopencoding()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/stopencoding()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iomixer/stoprunning()/index.html b/docs/documentation/haishinkit/iomixer/stoprunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iomixer/stoprunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/appendpixelbuffer(_:withpresentationtime:)/index.html b/docs/documentation/haishinkit/iorecorder/appendpixelbuffer(_:withpresentationtime:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/appendpixelbuffer(_:withpresentationtime:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/appendsamplebuffer(_:)/index.html b/docs/documentation/haishinkit/iorecorder/appendsamplebuffer(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/appendsamplebuffer(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/defaultoutputsettings/index.html b/docs/documentation/haishinkit/iorecorder/defaultoutputsettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/defaultoutputsettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/delegate/index.html b/docs/documentation/haishinkit/iorecorder/delegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/delegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/error/error-implementations/index.html b/docs/documentation/haishinkit/iorecorder/error/error-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/error/error-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/error/failedtoappend(error:)/index.html b/docs/documentation/haishinkit/iorecorder/error/failedtoappend(error:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/error/failedtoappend(error:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/error/failedtocreateassetwriter(error:)/index.html b/docs/documentation/haishinkit/iorecorder/error/failedtocreateassetwriter(error:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/error/failedtocreateassetwriter(error:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/error/failedtocreateassetwriterinput(error:)/index.html b/docs/documentation/haishinkit/iorecorder/error/failedtocreateassetwriterinput(error:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/error/failedtocreateassetwriterinput(error:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/error/failedtofinishwriting(error:)/index.html b/docs/documentation/haishinkit/iorecorder/error/failedtofinishwriting(error:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/error/failedtofinishwriting(error:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/error/index.html b/docs/documentation/haishinkit/iorecorder/error/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/error/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/error/localizeddescription/index.html b/docs/documentation/haishinkit/iorecorder/error/localizeddescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/error/localizeddescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/index.html b/docs/documentation/haishinkit/iorecorder/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/isrunning/index.html b/docs/documentation/haishinkit/iorecorder/isrunning/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/isrunning/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/outputsettings/index.html b/docs/documentation/haishinkit/iorecorder/outputsettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/outputsettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/running-implementations/index.html b/docs/documentation/haishinkit/iorecorder/running-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/running-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/startrunning()/index.html b/docs/documentation/haishinkit/iorecorder/startrunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/startrunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorder/stoprunning()/index.html b/docs/documentation/haishinkit/iorecorder/stoprunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorder/stoprunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorderdelegate/index.html b/docs/documentation/haishinkit/iorecorderdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorderdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorderdelegate/recorder(_:erroroccured:)/index.html b/docs/documentation/haishinkit/iorecorderdelegate/recorder(_:erroroccured:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorderdelegate/recorder(_:erroroccured:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iorecorderdelegate/recorder(_:finishwriting:)/index.html b/docs/documentation/haishinkit/iorecorderdelegate/recorder(_:finishwriting:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iorecorderdelegate/recorder(_:finishwriting:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/ioscreencaptureunit/attributes/index.html b/docs/documentation/haishinkit/ioscreencaptureunit/attributes/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/ioscreencaptureunit/attributes/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/ioscreencaptureunit/delegate/index.html b/docs/documentation/haishinkit/ioscreencaptureunit/delegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/ioscreencaptureunit/delegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/ioscreencaptureunit/index.html b/docs/documentation/haishinkit/ioscreencaptureunit/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/ioscreencaptureunit/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/ioscreencaptureunitdelegate/index.html b/docs/documentation/haishinkit/ioscreencaptureunitdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/ioscreencaptureunitdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/ioscreencaptureunitdelegate/session(_:didoutput:presentationtime:)/index.html b/docs/documentation/haishinkit/ioscreencaptureunitdelegate/session(_:didoutput:presentationtime:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/ioscreencaptureunitdelegate/session(_:didoutput:presentationtime:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iovideocaptureunit/defaultvideosettings/index.html b/docs/documentation/haishinkit/iovideocaptureunit/defaultvideosettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iovideocaptureunit/defaultvideosettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iovideocaptureunit/device/index.html b/docs/documentation/haishinkit/iovideocaptureunit/device/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iovideocaptureunit/device/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iovideocaptureunit/index.html b/docs/documentation/haishinkit/iovideocaptureunit/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iovideocaptureunit/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iovideocaptureunit/isvideomirrored/index.html b/docs/documentation/haishinkit/iovideocaptureunit/isvideomirrored/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iovideocaptureunit/isvideomirrored/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/iovideocaptureunit/videoorientation/index.html b/docs/documentation/haishinkit/iovideocaptureunit/videoorientation/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/iovideocaptureunit/videoorientation/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/kasundefined/index.html b/docs/documentation/haishinkit/kasundefined/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/kasundefined/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/attachstream(_:)/index.html b/docs/documentation/haishinkit/mthkview/attachstream(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/attachstream(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/awakefromnib()/index.html b/docs/documentation/haishinkit/mthkview/awakefromnib()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/awakefromnib()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/draw(in:)/index.html b/docs/documentation/haishinkit/mthkview/draw(in:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/draw(in:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/enqueue(_:)/index.html b/docs/documentation/haishinkit/mthkview/enqueue(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/enqueue(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/index.html b/docs/documentation/haishinkit/mthkview/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/init(coder:)/index.html b/docs/documentation/haishinkit/mthkview/init(coder:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/init(coder:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/init(frame:)/index.html b/docs/documentation/haishinkit/mthkview/init(frame:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/init(frame:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/ismirrored/index.html b/docs/documentation/haishinkit/mthkview/ismirrored/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/ismirrored/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/mtkview(_:drawablesizewillchange:)/index.html b/docs/documentation/haishinkit/mthkview/mtkview(_:drawablesizewillchange:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/mtkview(_:drawablesizewillchange:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/mtkviewdelegate-implementations/index.html b/docs/documentation/haishinkit/mthkview/mtkviewdelegate-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/mtkviewdelegate-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/netstreamdrawable-implementations/index.html b/docs/documentation/haishinkit/mthkview/netstreamdrawable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/netstreamdrawable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/videoformatdescription/index.html b/docs/documentation/haishinkit/mthkview/videoformatdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/videoformatdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/videogravity/index.html b/docs/documentation/haishinkit/mthkview/videogravity/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/videogravity/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/mthkview/videoorientation/index.html b/docs/documentation/haishinkit/mthkview/videoorientation/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/mthkview/videoorientation/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/cornerradius/index.html b/docs/documentation/haishinkit/multicamcapturesettings/cornerradius/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/cornerradius/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/default/index.html b/docs/documentation/haishinkit/multicamcapturesettings/default/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/default/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/direction/index.html b/docs/documentation/haishinkit/multicamcapturesettings/direction/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/direction/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/index.html b/docs/documentation/haishinkit/multicamcapturesettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/init(from:)/index.html b/docs/documentation/haishinkit/multicamcapturesettings/init(from:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/init(from:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/init(mode:cornerradius:regionofinterest:direction:)/index.html b/docs/documentation/haishinkit/multicamcapturesettings/init(mode:cornerradius:regionofinterest:direction:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/init(mode:cornerradius:regionofinterest:direction:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/!=(_:_:)/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/encode(to:)/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/encode(to:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/encode(to:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/equatable-implementations/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hash(into:)/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hashvalue/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(from:)/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(from:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(from:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(rawvalue:)/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/pip/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/pip/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/pip/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/splitview/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/splitview/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.enum/splitview/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.property/index.html b/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.property/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/mode-swift.property/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/multicamcapturesettings/regionofinterest/index.html b/docs/documentation/haishinkit/multicamcapturesettings/regionofinterest/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/multicamcapturesettings/regionofinterest/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netclient/index.html b/docs/documentation/haishinkit/netclient/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netclient/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netclient/listen()/index.html b/docs/documentation/haishinkit/netclient/listen()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netclient/listen()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/clients/index.html b/docs/documentation/haishinkit/netservice/clients/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/clients/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/domain/index.html b/docs/documentation/haishinkit/netservice/domain/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/domain/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/index.html b/docs/documentation/haishinkit/netservice/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/init(domain:type:name:port:)/index.html b/docs/documentation/haishinkit/netservice/init(domain:type:name:port:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/init(domain:type:name:port:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/isrunning/index.html b/docs/documentation/haishinkit/netservice/isrunning/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/isrunning/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/name/index.html b/docs/documentation/haishinkit/netservice/name/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/name/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/netservice(_:didacceptconnectionwith:outputstream:)/index.html b/docs/documentation/haishinkit/netservice/netservice(_:didacceptconnectionwith:outputstream:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/netservice(_:didacceptconnectionwith:outputstream:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/netservicedelegate-implementations/index.html b/docs/documentation/haishinkit/netservice/netservicedelegate-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/netservicedelegate-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/port/index.html b/docs/documentation/haishinkit/netservice/port/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/port/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/running-implementations/index.html b/docs/documentation/haishinkit/netservice/running-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/running-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/startrunning()/index.html b/docs/documentation/haishinkit/netservice/startrunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/startrunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/stoprunning()/index.html b/docs/documentation/haishinkit/netservice/stoprunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/stoprunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/txtdata/index.html b/docs/documentation/haishinkit/netservice/txtdata/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/txtdata/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netservice/type/index.html b/docs/documentation/haishinkit/netservice/type/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netservice/type/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/close()/index.html b/docs/documentation/haishinkit/netsocket/close()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/close()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/connect(withname:port:)/index.html b/docs/documentation/haishinkit/netsocket/connect(withname:port:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/connect(withname:port:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/connected/index.html b/docs/documentation/haishinkit/netsocket/connected/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/connected/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/defaulttimeout/index.html b/docs/documentation/haishinkit/netsocket/defaulttimeout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/defaulttimeout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/defaultwindowsizec/index.html b/docs/documentation/haishinkit/netsocket/defaultwindowsizec/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/defaultwindowsizec/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/dooutput(data:locked:)/index.html b/docs/documentation/haishinkit/netsocket/dooutput(data:locked:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/dooutput(data:locked:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/index.html b/docs/documentation/haishinkit/netsocket/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/inputbuffer/index.html b/docs/documentation/haishinkit/netsocket/inputbuffer/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/inputbuffer/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/listen()/index.html b/docs/documentation/haishinkit/netsocket/listen()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/listen()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/outputbuffersize/index.html b/docs/documentation/haishinkit/netsocket/outputbuffersize/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/outputbuffersize/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/qualityofservice/index.html b/docs/documentation/haishinkit/netsocket/qualityofservice/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/qualityofservice/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/queuebytesout/index.html b/docs/documentation/haishinkit/netsocket/queuebytesout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/queuebytesout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/securitylevel/index.html b/docs/documentation/haishinkit/netsocket/securitylevel/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/securitylevel/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/stream(_:handle:)/index.html b/docs/documentation/haishinkit/netsocket/stream(_:handle:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/stream(_:handle:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/streamdelegate-implementations/index.html b/docs/documentation/haishinkit/netsocket/streamdelegate-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/streamdelegate-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/timeout/index.html b/docs/documentation/haishinkit/netsocket/timeout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/timeout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/totalbytesin/index.html b/docs/documentation/haishinkit/netsocket/totalbytesin/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/totalbytesin/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/totalbytesout/index.html b/docs/documentation/haishinkit/netsocket/totalbytesout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/totalbytesout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netsocket/windowsizec/index.html b/docs/documentation/haishinkit/netsocket/windowsizec/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netsocket/windowsizec/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/appendsamplebuffer(_:options:)/index.html b/docs/documentation/haishinkit/netstream/appendsamplebuffer(_:options:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/appendsamplebuffer(_:options:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)/index.html b/docs/documentation/haishinkit/netstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/attachcamera(_:onerror:)/index.html b/docs/documentation/haishinkit/netstream/attachcamera(_:onerror:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/attachcamera(_:onerror:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/attachmulticamera(_:onerror:)/index.html b/docs/documentation/haishinkit/netstream/attachmulticamera(_:onerror:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/attachmulticamera(_:onerror:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/attachscreen(_:)/index.html b/docs/documentation/haishinkit/netstream/attachscreen(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/attachscreen(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/audiosettings/index.html b/docs/documentation/haishinkit/netstream/audiosettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/audiosettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/context/index.html b/docs/documentation/haishinkit/netstream/context/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/context/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/delegate/index.html b/docs/documentation/haishinkit/netstream/delegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/delegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/framerate/index.html b/docs/documentation/haishinkit/netstream/framerate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/framerate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/hasaudio/index.html b/docs/documentation/haishinkit/netstream/hasaudio/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/hasaudio/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/hasvideo/index.html b/docs/documentation/haishinkit/netstream/hasvideo/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/hasvideo/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/index.html b/docs/documentation/haishinkit/netstream/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/init()/index.html b/docs/documentation/haishinkit/netstream/init()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/init()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/ioscreencaptureunitdelegate-implementations/index.html b/docs/documentation/haishinkit/netstream/ioscreencaptureunitdelegate-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/ioscreencaptureunitdelegate-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/lockqueue/index.html b/docs/documentation/haishinkit/netstream/lockqueue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/lockqueue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/loopback/index.html b/docs/documentation/haishinkit/netstream/loopback/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/loopback/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/mixer/index.html b/docs/documentation/haishinkit/netstream/mixer/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/mixer/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/multicamcapturesettings/index.html b/docs/documentation/haishinkit/netstream/multicamcapturesettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/multicamcapturesettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/registeraudioeffect(_:)/index.html b/docs/documentation/haishinkit/netstream/registeraudioeffect(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/registeraudioeffect(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/registervideoeffect(_:)/index.html b/docs/documentation/haishinkit/netstream/registervideoeffect(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/registervideoeffect(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/scstreamoutput-implementations/index.html b/docs/documentation/haishinkit/netstream/scstreamoutput-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/scstreamoutput-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/session(_:didoutput:presentationtime:)/index.html b/docs/documentation/haishinkit/netstream/session(_:didoutput:presentationtime:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/session(_:didoutput:presentationtime:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/sessionpreset/index.html b/docs/documentation/haishinkit/netstream/sessionpreset/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/sessionpreset/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/startrecording(_:)/index.html b/docs/documentation/haishinkit/netstream/startrecording(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/startrecording(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/stoprecording()/index.html b/docs/documentation/haishinkit/netstream/stoprecording()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/stoprecording()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/stream(_:didoutputsamplebuffer:of:)/index.html b/docs/documentation/haishinkit/netstream/stream(_:didoutputsamplebuffer:of:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/stream(_:didoutputsamplebuffer:of:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/torch/index.html b/docs/documentation/haishinkit/netstream/torch/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/torch/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/unregisteraudioeffect(_:)/index.html b/docs/documentation/haishinkit/netstream/unregisteraudioeffect(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/unregisteraudioeffect(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/unregistervideoeffect(_:)/index.html b/docs/documentation/haishinkit/netstream/unregistervideoeffect(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/unregistervideoeffect(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/videocapture(for:)/index.html b/docs/documentation/haishinkit/netstream/videocapture(for:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/videocapture(for:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/videoorientation/index.html b/docs/documentation/haishinkit/netstream/videoorientation/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/videoorientation/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstream/videosettings/index.html b/docs/documentation/haishinkit/netstream/videosettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstream/videosettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdelegate/index.html b/docs/documentation/haishinkit/netstreamdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdelegate/stream(_:audiocodecerroroccurred:)/index.html b/docs/documentation/haishinkit/netstreamdelegate/stream(_:audiocodecerroroccurred:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdelegate/stream(_:audiocodecerroroccurred:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:)/index.html b/docs/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:presentationtimestamp:)/index.html b/docs/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:presentationtimestamp:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdelegate/stream(_:didoutput:presentationtimestamp:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdelegate/stream(_:videocodecerroroccurred:)/index.html b/docs/documentation/haishinkit/netstreamdelegate/stream(_:videocodecerroroccurred:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdelegate/stream(_:videocodecerroroccurred:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdelegate/streamdidopen(_:)/index.html b/docs/documentation/haishinkit/netstreamdelegate/streamdidopen(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdelegate/streamdidopen(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdelegate/streamwilldropframe(_:)/index.html b/docs/documentation/haishinkit/netstreamdelegate/streamwilldropframe(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdelegate/streamwilldropframe(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdrawable/attachstream(_:)/index.html b/docs/documentation/haishinkit/netstreamdrawable/attachstream(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdrawable/attachstream(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdrawable/enqueue(_:)/index.html b/docs/documentation/haishinkit/netstreamdrawable/enqueue(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdrawable/enqueue(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdrawable/index.html b/docs/documentation/haishinkit/netstreamdrawable/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdrawable/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdrawable/videoformatdescription/index.html b/docs/documentation/haishinkit/netstreamdrawable/videoformatdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdrawable/videoformatdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/netstreamdrawable/videoorientation/index.html b/docs/documentation/haishinkit/netstreamdrawable/videoorientation/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/netstreamdrawable/videoorientation/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/attachstream(_:)/index.html b/docs/documentation/haishinkit/piphkview/attachstream(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/attachstream(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/awakefromnib()/index.html b/docs/documentation/haishinkit/piphkview/awakefromnib()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/awakefromnib()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/defaultbackgroundcolor/index.html b/docs/documentation/haishinkit/piphkview/defaultbackgroundcolor/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/defaultbackgroundcolor/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/enqueue(_:)/index.html b/docs/documentation/haishinkit/piphkview/enqueue(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/enqueue(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/index.html b/docs/documentation/haishinkit/piphkview/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/init(coder:)/index.html b/docs/documentation/haishinkit/piphkview/init(coder:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/init(coder:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/init(frame:)/index.html b/docs/documentation/haishinkit/piphkview/init(frame:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/init(frame:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/netstreamdrawable-implementations/index.html b/docs/documentation/haishinkit/piphkview/netstreamdrawable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/netstreamdrawable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/videoformatdescription/index.html b/docs/documentation/haishinkit/piphkview/videoformatdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/videoformatdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/videogravity/index.html b/docs/documentation/haishinkit/piphkview/videogravity/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/videogravity/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/piphkview/videoorientation/index.html b/docs/documentation/haishinkit/piphkview/videoorientation/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/piphkview/videoorientation/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/call(_:responder:arguments:)/index.html b/docs/documentation/haishinkit/rtmpconnection/call(_:responder:arguments:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/call(_:responder:arguments:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/chunksize/index.html b/docs/documentation/haishinkit/rtmpconnection/chunksize/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/chunksize/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/close()/index.html b/docs/documentation/haishinkit/rtmpconnection/close()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/close()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/!=(_:_:)/index.html b/docs/documentation/haishinkit/rtmpconnection/code/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/callbadversion/index.html b/docs/documentation/haishinkit/rtmpconnection/code/callbadversion/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/callbadversion/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/callfailed/index.html b/docs/documentation/haishinkit/rtmpconnection/code/callfailed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/callfailed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/callprohibited/index.html b/docs/documentation/haishinkit/rtmpconnection/code/callprohibited/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/callprohibited/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectappshutdown/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectappshutdown/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectappshutdown/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectclosed/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectclosed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectclosed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectfailed/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectfailed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectfailed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectidletimeout/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectidletimeout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectidletimeout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectinvalidapp/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectinvalidapp/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectinvalidapp/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectnetworkchange/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectnetworkchange/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectnetworkchange/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectrejected/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectrejected/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectrejected/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/connectsuccess/index.html b/docs/documentation/haishinkit/rtmpconnection/code/connectsuccess/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/connectsuccess/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/equatable-implementations/index.html b/docs/documentation/haishinkit/rtmpconnection/code/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/hash(into:)/index.html b/docs/documentation/haishinkit/rtmpconnection/code/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/hashvalue/index.html b/docs/documentation/haishinkit/rtmpconnection/code/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/index.html b/docs/documentation/haishinkit/rtmpconnection/code/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/init(rawvalue:)/index.html b/docs/documentation/haishinkit/rtmpconnection/code/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/level/index.html b/docs/documentation/haishinkit/rtmpconnection/code/level/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/level/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/code/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/rtmpconnection/code/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/code/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/connect(_:arguments:)/index.html b/docs/documentation/haishinkit/rtmpconnection/connect(_:arguments:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/connect(_:arguments:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/connected/index.html b/docs/documentation/haishinkit/rtmpconnection/connected/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/connected/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/currentbytesinpersecond/index.html b/docs/documentation/haishinkit/rtmpconnection/currentbytesinpersecond/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/currentbytesinpersecond/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/currentbytesoutpersecond/index.html b/docs/documentation/haishinkit/rtmpconnection/currentbytesoutpersecond/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/currentbytesoutpersecond/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/defaultcapabilities/index.html b/docs/documentation/haishinkit/rtmpconnection/defaultcapabilities/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/defaultcapabilities/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/defaultchunksizes/index.html b/docs/documentation/haishinkit/rtmpconnection/defaultchunksizes/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/defaultchunksizes/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/defaultflashver/index.html b/docs/documentation/haishinkit/rtmpconnection/defaultflashver/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/defaultflashver/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/defaultobjectencoding/index.html b/docs/documentation/haishinkit/rtmpconnection/defaultobjectencoding/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/defaultobjectencoding/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/defaultport/index.html b/docs/documentation/haishinkit/rtmpconnection/defaultport/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/defaultport/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/defaultsecureport/index.html b/docs/documentation/haishinkit/rtmpconnection/defaultsecureport/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/defaultsecureport/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/defaultwindowsizes/index.html b/docs/documentation/haishinkit/rtmpconnection/defaultwindowsizes/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/defaultwindowsizes/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/delegate/index.html b/docs/documentation/haishinkit/rtmpconnection/delegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/delegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/flashver/index.html b/docs/documentation/haishinkit/rtmpconnection/flashver/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/flashver/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/index.html b/docs/documentation/haishinkit/rtmpconnection/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/init()/index.html b/docs/documentation/haishinkit/rtmpconnection/init()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/init()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/objectencoding/index.html b/docs/documentation/haishinkit/rtmpconnection/objectencoding/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/objectencoding/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/pageurl/index.html b/docs/documentation/haishinkit/rtmpconnection/pageurl/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/pageurl/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/parameters/index.html b/docs/documentation/haishinkit/rtmpconnection/parameters/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/parameters/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/previousqueuebytesout/index.html b/docs/documentation/haishinkit/rtmpconnection/previousqueuebytesout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/previousqueuebytesout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/qualityofservice/index.html b/docs/documentation/haishinkit/rtmpconnection/qualityofservice/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/qualityofservice/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/requirenetworkframework/index.html b/docs/documentation/haishinkit/rtmpconnection/requirenetworkframework/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/requirenetworkframework/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/supportedprotocols/index.html b/docs/documentation/haishinkit/rtmpconnection/supportedprotocols/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/supportedprotocols/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/swfurl/index.html b/docs/documentation/haishinkit/rtmpconnection/swfurl/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/swfurl/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/timeout/index.html b/docs/documentation/haishinkit/rtmpconnection/timeout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/timeout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/totalbytesin/index.html b/docs/documentation/haishinkit/rtmpconnection/totalbytesin/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/totalbytesin/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/totalbytesout/index.html b/docs/documentation/haishinkit/rtmpconnection/totalbytesout/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/totalbytesout/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/totalstreamscount/index.html b/docs/documentation/haishinkit/rtmpconnection/totalstreamscount/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/totalstreamscount/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnection/uri/index.html b/docs/documentation/haishinkit/rtmpconnection/uri/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnection/uri/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishinsufficientbwoccured:)/index.html b/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishinsufficientbwoccured:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishinsufficientbwoccured:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishsufficientbwoccured:)/index.html b/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishsufficientbwoccured:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:publishsufficientbwoccured:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:updatestats:)/index.html b/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:updatestats:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnectiondelegate/connection(_:updatestats:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpconnectiondelegate/index.html b/docs/documentation/haishinkit/rtmpconnectiondelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpconnectiondelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/!=(_:_:)/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/amf0/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/amf0/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/amf0/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/amf3/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/amf3/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/amf3/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/equatable-implementations/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/hash(into:)/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/hashvalue/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/init(rawvalue:)/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpobjectencoding/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/rtmpobjectencoding/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpobjectencoding/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpresponder/handler/index.html b/docs/documentation/haishinkit/rtmpresponder/handler/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpresponder/handler/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpresponder/index.html b/docs/documentation/haishinkit/rtmpresponder/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpresponder/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpresponder/init(result:status:)/index.html b/docs/documentation/haishinkit/rtmpresponder/init(result:status:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpresponder/init(result:status:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/clear()/index.html b/docs/documentation/haishinkit/rtmpsharedobject/clear()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/clear()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/close()/index.html b/docs/documentation/haishinkit/rtmpsharedobject/close()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/close()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/connect(_:)/index.html b/docs/documentation/haishinkit/rtmpsharedobject/connect(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/connect(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/customdebugstringconvertible-implementations/index.html b/docs/documentation/haishinkit/rtmpsharedobject/customdebugstringconvertible-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/customdebugstringconvertible-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/data/index.html b/docs/documentation/haishinkit/rtmpsharedobject/data/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/data/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/debugdescription/index.html b/docs/documentation/haishinkit/rtmpsharedobject/debugdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/debugdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/getremote(withname:remotepath:persistence:)/index.html b/docs/documentation/haishinkit/rtmpsharedobject/getremote(withname:remotepath:persistence:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/getremote(withname:remotepath:persistence:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/index.html b/docs/documentation/haishinkit/rtmpsharedobject/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/objectencoding/index.html b/docs/documentation/haishinkit/rtmpsharedobject/objectencoding/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/objectencoding/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpsharedobject/setproperty(_:_:)/index.html b/docs/documentation/haishinkit/rtmpsharedobject/setproperty(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpsharedobject/setproperty(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/addeventlistener(_:selector:observer:usecapture:)/index.html b/docs/documentation/haishinkit/rtmpstream/addeventlistener(_:selector:observer:usecapture:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/addeventlistener(_:selector:observer:usecapture:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/close()/index.html b/docs/documentation/haishinkit/rtmpstream/close()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/close()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/!=(_:_:)/index.html b/docs/documentation/haishinkit/rtmpstream/code/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/bufferempty/index.html b/docs/documentation/haishinkit/rtmpstream/code/bufferempty/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/bufferempty/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/bufferflush/index.html b/docs/documentation/haishinkit/rtmpstream/code/bufferflush/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/bufferflush/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/bufferfull/index.html b/docs/documentation/haishinkit/rtmpstream/code/bufferfull/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/bufferfull/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/connectclosed/index.html b/docs/documentation/haishinkit/rtmpstream/code/connectclosed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/connectclosed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/connectfailed/index.html b/docs/documentation/haishinkit/rtmpstream/code/connectfailed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/connectfailed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/connectrejected/index.html b/docs/documentation/haishinkit/rtmpstream/code/connectrejected/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/connectrejected/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/connectsuccess/index.html b/docs/documentation/haishinkit/rtmpstream/code/connectsuccess/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/connectsuccess/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/drmupdateneeded/index.html b/docs/documentation/haishinkit/rtmpstream/code/drmupdateneeded/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/drmupdateneeded/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/equatable-implementations/index.html b/docs/documentation/haishinkit/rtmpstream/code/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/failed/index.html b/docs/documentation/haishinkit/rtmpstream/code/failed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/failed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/hash(into:)/index.html b/docs/documentation/haishinkit/rtmpstream/code/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/hashvalue/index.html b/docs/documentation/haishinkit/rtmpstream/code/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/index.html b/docs/documentation/haishinkit/rtmpstream/code/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/init(rawvalue:)/index.html b/docs/documentation/haishinkit/rtmpstream/code/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/level/index.html b/docs/documentation/haishinkit/rtmpstream/code/level/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/level/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/multicaststreamreset/index.html b/docs/documentation/haishinkit/rtmpstream/code/multicaststreamreset/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/multicaststreamreset/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/pausenotify/index.html b/docs/documentation/haishinkit/rtmpstream/code/pausenotify/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/pausenotify/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playfailed/index.html b/docs/documentation/haishinkit/rtmpstream/code/playfailed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playfailed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playfilestructureinvalid/index.html b/docs/documentation/haishinkit/rtmpstream/code/playfilestructureinvalid/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playfilestructureinvalid/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playinsufficientbw/index.html b/docs/documentation/haishinkit/rtmpstream/code/playinsufficientbw/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playinsufficientbw/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playnosupportedtrackfound/index.html b/docs/documentation/haishinkit/rtmpstream/code/playnosupportedtrackfound/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playnosupportedtrackfound/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playreset/index.html b/docs/documentation/haishinkit/rtmpstream/code/playreset/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playreset/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playstart/index.html b/docs/documentation/haishinkit/rtmpstream/code/playstart/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playstart/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playstop/index.html b/docs/documentation/haishinkit/rtmpstream/code/playstop/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playstop/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playstreamnotfound/index.html b/docs/documentation/haishinkit/rtmpstream/code/playstreamnotfound/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playstreamnotfound/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playtransition/index.html b/docs/documentation/haishinkit/rtmpstream/code/playtransition/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playtransition/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/playunpublishnotify/index.html b/docs/documentation/haishinkit/rtmpstream/code/playunpublishnotify/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/playunpublishnotify/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/publishbadname/index.html b/docs/documentation/haishinkit/rtmpstream/code/publishbadname/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/publishbadname/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/publishidle/index.html b/docs/documentation/haishinkit/rtmpstream/code/publishidle/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/publishidle/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/publishstart/index.html b/docs/documentation/haishinkit/rtmpstream/code/publishstart/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/publishstart/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/rtmpstream/code/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/recordalreadyexists/index.html b/docs/documentation/haishinkit/rtmpstream/code/recordalreadyexists/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/recordalreadyexists/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/recorddiskquotaexceeded/index.html b/docs/documentation/haishinkit/rtmpstream/code/recorddiskquotaexceeded/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/recorddiskquotaexceeded/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/recordfailed/index.html b/docs/documentation/haishinkit/rtmpstream/code/recordfailed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/recordfailed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/recordnoaccess/index.html b/docs/documentation/haishinkit/rtmpstream/code/recordnoaccess/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/recordnoaccess/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/recordstart/index.html b/docs/documentation/haishinkit/rtmpstream/code/recordstart/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/recordstart/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/recordstop/index.html b/docs/documentation/haishinkit/rtmpstream/code/recordstop/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/recordstop/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/secondscreenstart/index.html b/docs/documentation/haishinkit/rtmpstream/code/secondscreenstart/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/secondscreenstart/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/secondscreenstop/index.html b/docs/documentation/haishinkit/rtmpstream/code/secondscreenstop/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/secondscreenstop/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/seekfailed/index.html b/docs/documentation/haishinkit/rtmpstream/code/seekfailed/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/seekfailed/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/seekinvalidtime/index.html b/docs/documentation/haishinkit/rtmpstream/code/seekinvalidtime/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/seekinvalidtime/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/seeknotify/index.html b/docs/documentation/haishinkit/rtmpstream/code/seeknotify/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/seeknotify/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/stepnotify/index.html b/docs/documentation/haishinkit/rtmpstream/code/stepnotify/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/stepnotify/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/unpausenotify/index.html b/docs/documentation/haishinkit/rtmpstream/code/unpausenotify/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/unpausenotify/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/unpublishsuccess/index.html b/docs/documentation/haishinkit/rtmpstream/code/unpublishsuccess/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/unpublishsuccess/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/code/videodimensionchange/index.html b/docs/documentation/haishinkit/rtmpstream/code/videodimensionchange/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/code/videodimensionchange/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/currentfps/index.html b/docs/documentation/haishinkit/rtmpstream/currentfps/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/currentfps/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/dispatch(_:bubbles:data:)/index.html b/docs/documentation/haishinkit/rtmpstream/dispatch(_:bubbles:data:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/dispatch(_:bubbles:data:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/dispatch(event:)/index.html b/docs/documentation/haishinkit/rtmpstream/dispatch(event:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/dispatch(event:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/eventdispatcherconvertible-implementations/index.html b/docs/documentation/haishinkit/rtmpstream/eventdispatcherconvertible-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/eventdispatcherconvertible-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/!=(_:_:)/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/append/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/append/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/append/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/appendwithgap/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/appendwithgap/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/appendwithgap/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/equatable-implementations/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/hash(into:)/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/hashvalue/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/init(rawvalue:)/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/live/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/live/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/live/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/howtopublish/record/index.html b/docs/documentation/haishinkit/rtmpstream/howtopublish/record/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/howtopublish/record/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/index.html b/docs/documentation/haishinkit/rtmpstream/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/info/index.html b/docs/documentation/haishinkit/rtmpstream/info/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/info/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/init(connection:)/index.html b/docs/documentation/haishinkit/rtmpstream/init(connection:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/init(connection:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/makemetadata()/index.html b/docs/documentation/haishinkit/rtmpstream/makemetadata()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/makemetadata()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/objectencoding/index.html b/docs/documentation/haishinkit/rtmpstream/objectencoding/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/objectencoding/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/paused/index.html b/docs/documentation/haishinkit/rtmpstream/paused/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/paused/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/play(_:)/index.html b/docs/documentation/haishinkit/rtmpstream/play(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/play(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/publish(_:type:)/index.html b/docs/documentation/haishinkit/rtmpstream/publish(_:type:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/publish(_:type:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/receiveaudio/index.html b/docs/documentation/haishinkit/rtmpstream/receiveaudio/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/receiveaudio/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/receivevideo/index.html b/docs/documentation/haishinkit/rtmpstream/receivevideo/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/receivevideo/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/removeeventlistener(_:selector:observer:usecapture:)/index.html b/docs/documentation/haishinkit/rtmpstream/removeeventlistener(_:selector:observer:usecapture:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/removeeventlistener(_:selector:observer:usecapture:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/seek(_:)/index.html b/docs/documentation/haishinkit/rtmpstream/seek(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/seek(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/send(handlername:arguments:)/index.html b/docs/documentation/haishinkit/rtmpstream/send(handlername:arguments:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/send(handlername:arguments:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstream/soundtransform/index.html b/docs/documentation/haishinkit/rtmpstream/soundtransform/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstream/soundtransform/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstreaminfo/bytecount/index.html b/docs/documentation/haishinkit/rtmpstreaminfo/bytecount/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstreaminfo/bytecount/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstreaminfo/currentbytespersecond/index.html b/docs/documentation/haishinkit/rtmpstreaminfo/currentbytespersecond/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstreaminfo/currentbytespersecond/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstreaminfo/customdebugstringconvertible-implementations/index.html b/docs/documentation/haishinkit/rtmpstreaminfo/customdebugstringconvertible-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstreaminfo/customdebugstringconvertible-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstreaminfo/debugdescription/index.html b/docs/documentation/haishinkit/rtmpstreaminfo/debugdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstreaminfo/debugdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstreaminfo/index.html b/docs/documentation/haishinkit/rtmpstreaminfo/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstreaminfo/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/rtmpstreaminfo/resourcename/index.html b/docs/documentation/haishinkit/rtmpstreaminfo/resourcename/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/rtmpstreaminfo/resourcename/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/running/index.html b/docs/documentation/haishinkit/running/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/running/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/running/isrunning/index.html b/docs/documentation/haishinkit/running/isrunning/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/running/isrunning/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/running/startrunning()/index.html b/docs/documentation/haishinkit/running/startrunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/running/startrunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/running/stoprunning()/index.html b/docs/documentation/haishinkit/running/stoprunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/running/stoprunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/soundtransform/customdebugstringconvertible-implementations/index.html b/docs/documentation/haishinkit/soundtransform/customdebugstringconvertible-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/soundtransform/customdebugstringconvertible-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/soundtransform/debugdescription/index.html b/docs/documentation/haishinkit/soundtransform/debugdescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/soundtransform/debugdescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/soundtransform/defaultpan/index.html b/docs/documentation/haishinkit/soundtransform/defaultpan/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/soundtransform/defaultpan/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/soundtransform/defaultvolume/index.html b/docs/documentation/haishinkit/soundtransform/defaultvolume/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/soundtransform/defaultvolume/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/soundtransform/index.html b/docs/documentation/haishinkit/soundtransform/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/soundtransform/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/soundtransform/pan/index.html b/docs/documentation/haishinkit/soundtransform/pan/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/soundtransform/pan/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/soundtransform/volume/index.html b/docs/documentation/haishinkit/soundtransform/volume/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/soundtransform/volume/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreader/clear()/index.html b/docs/documentation/haishinkit/tsreader/clear()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreader/clear()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreader/delegate/index.html b/docs/documentation/haishinkit/tsreader/delegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreader/delegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreader/index.html b/docs/documentation/haishinkit/tsreader/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreader/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreader/init()/index.html b/docs/documentation/haishinkit/tsreader/init()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreader/init()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreader/read(_:)/index.html b/docs/documentation/haishinkit/tsreader/read(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreader/read(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreaderdelegate/index.html b/docs/documentation/haishinkit/tsreaderdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreaderdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-37ztb/index.html b/docs/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-37ztb/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-37ztb/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-5kxz9/index.html b/docs/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-5kxz9/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tsreaderdelegate/reader(_:id:didread:)-5kxz9/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/audiocodec(_:didoutput:)/index.html b/docs/documentation/haishinkit/tswriter/audiocodec(_:didoutput:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/audiocodec(_:didoutput:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/audiocodec(_:didoutput:presentationtimestamp:)/index.html b/docs/documentation/haishinkit/tswriter/audiocodec(_:didoutput:presentationtimestamp:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/audiocodec(_:didoutput:presentationtimestamp:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/audiocodec(_:erroroccurred:)/index.html b/docs/documentation/haishinkit/tswriter/audiocodec(_:erroroccurred:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/audiocodec(_:erroroccurred:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/audiocodecdelegate-implementations/index.html b/docs/documentation/haishinkit/tswriter/audiocodecdelegate-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/audiocodecdelegate-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/defaultaudiopid/index.html b/docs/documentation/haishinkit/tswriter/defaultaudiopid/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/defaultaudiopid/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/defaultpatpid/index.html b/docs/documentation/haishinkit/tswriter/defaultpatpid/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/defaultpatpid/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/defaultpmtpid/index.html b/docs/documentation/haishinkit/tswriter/defaultpmtpid/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/defaultpmtpid/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/defaultsegmentduration/index.html b/docs/documentation/haishinkit/tswriter/defaultsegmentduration/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/defaultsegmentduration/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/defaultvideopid/index.html b/docs/documentation/haishinkit/tswriter/defaultvideopid/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/defaultvideopid/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/delegate/index.html b/docs/documentation/haishinkit/tswriter/delegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/delegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/expectedmedias/index.html b/docs/documentation/haishinkit/tswriter/expectedmedias/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/expectedmedias/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/index.html b/docs/documentation/haishinkit/tswriter/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/init(segmentduration:)/index.html b/docs/documentation/haishinkit/tswriter/init(segmentduration:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/init(segmentduration:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/isrunning/index.html b/docs/documentation/haishinkit/tswriter/isrunning/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/isrunning/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/startrunning()/index.html b/docs/documentation/haishinkit/tswriter/startrunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/startrunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/stoprunning()/index.html b/docs/documentation/haishinkit/tswriter/stoprunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/stoprunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-4cwlf/index.html b/docs/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-4cwlf/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-4cwlf/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-7embq/index.html b/docs/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-7embq/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/videocodec(_:didoutput:)-7embq/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/videocodec(_:erroroccurred:)/index.html b/docs/documentation/haishinkit/tswriter/videocodec(_:erroroccurred:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/videocodec(_:erroroccurred:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/videocodecdelegate-implementations/index.html b/docs/documentation/haishinkit/tswriter/videocodecdelegate-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/videocodecdelegate-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriter/videocodecwilldropfame(_:)/index.html b/docs/documentation/haishinkit/tswriter/videocodecwilldropfame(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriter/videocodecwilldropfame(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriterdelegate/index.html b/docs/documentation/haishinkit/tswriterdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriterdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriterdelegate/writer(_:didoutput:)/index.html b/docs/documentation/haishinkit/tswriterdelegate/writer(_:didoutput:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriterdelegate/writer(_:didoutput:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-17rsg/index.html b/docs/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-17rsg/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-17rsg/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-7ieyz/index.html b/docs/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-7ieyz/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/tswriterdelegate/writer(_:didrotatefilehandle:)-7ieyz/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/defaultattributes/index.html b/docs/documentation/haishinkit/videocodec/defaultattributes/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/defaultattributes/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/error/error-implementations/index.html b/docs/documentation/haishinkit/videocodec/error/error-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/error/error-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/error/failedtocreate(status:)/index.html b/docs/documentation/haishinkit/videocodec/error/failedtocreate(status:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/error/failedtocreate(status:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/error/failedtoflame(status:)/index.html b/docs/documentation/haishinkit/videocodec/error/failedtoflame(status:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/error/failedtoflame(status:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/error/failedtoprepare(status:)/index.html b/docs/documentation/haishinkit/videocodec/error/failedtoprepare(status:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/error/failedtoprepare(status:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/error/failedtosetoption(status:option:)/index.html b/docs/documentation/haishinkit/videocodec/error/failedtosetoption(status:option:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/error/failedtosetoption(status:option:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/error/index.html b/docs/documentation/haishinkit/videocodec/error/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/error/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/error/localizeddescription/index.html b/docs/documentation/haishinkit/videocodec/error/localizeddescription/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/error/localizeddescription/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/index.html b/docs/documentation/haishinkit/videocodec/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/isrunning/index.html b/docs/documentation/haishinkit/videocodec/isrunning/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/isrunning/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/running-implementations/index.html b/docs/documentation/haishinkit/videocodec/running-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/running-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/settings/index.html b/docs/documentation/haishinkit/videocodec/settings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/settings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/startrunning()/index.html b/docs/documentation/haishinkit/videocodec/startrunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/startrunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodec/stoprunning()/index.html b/docs/documentation/haishinkit/videocodec/stoprunning()/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodec/stoprunning()/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecdelegate/index.html b/docs/documentation/haishinkit/videocodecdelegate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecdelegate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-7sbpr/index.html b/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-7sbpr/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-7sbpr/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-879c7/index.html b/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-879c7/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:didoutput:)-879c7/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:erroroccurred:)/index.html b/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:erroroccurred:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecdelegate/videocodec(_:erroroccurred:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecdelegate/videocodecwilldropfame(_:)/index.html b/docs/documentation/haishinkit/videocodecdelegate/videocodecwilldropfame(_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecdelegate/videocodecwilldropfame(_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/allowframereordering/index.html b/docs/documentation/haishinkit/videocodecsettings/allowframereordering/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/allowframereordering/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitrate/index.html b/docs/documentation/haishinkit/videocodecsettings/bitrate/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitrate/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/!=(_:_:)/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/average/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/average/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/average/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/constant/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/constant/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/constant/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/encode(to:)/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/encode(to:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/encode(to:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/equatable-implementations/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hash(into:)/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hashvalue/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(from:)/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(from:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(from:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(rawvalue:)/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.enum/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.property/index.html b/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.property/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/bitratemode-swift.property/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/default/index.html b/docs/documentation/haishinkit/videocodecsettings/default/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/default/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/index.html b/docs/documentation/haishinkit/videocodecsettings/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/init(from:)/index.html b/docs/documentation/haishinkit/videocodecsettings/init(from:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/init(from:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:)/index.html b/docs/documentation/haishinkit/videocodecsettings/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/ishardwareencoderenabled/index.html b/docs/documentation/haishinkit/videocodecsettings/ishardwareencoderenabled/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/ishardwareencoderenabled/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/maxkeyframeintervalduration/index.html b/docs/documentation/haishinkit/videocodecsettings/maxkeyframeintervalduration/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/maxkeyframeintervalduration/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/profilelevel/index.html b/docs/documentation/haishinkit/videocodecsettings/profilelevel/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/profilelevel/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/!=(_:_:)/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/cropsourcetocleanaperture/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/cropsourcetocleanaperture/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/cropsourcetocleanaperture/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/encode(to:)/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/encode(to:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/encode(to:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/equatable-implementations/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hash(into:)/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hashvalue/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hashvalue/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/hashvalue/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(from:)/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(from:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(from:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(rawvalue:)/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(rawvalue:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/init(rawvalue:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/letterbox/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/letterbox/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/letterbox/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/normal/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/normal/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/normal/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/rawrepresentable-implementations/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/rawrepresentable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/rawrepresentable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/trim/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/trim/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.enum/trim/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.property/index.html b/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.property/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/scalingmode-swift.property/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videocodecsettings/videosize/index.html b/docs/documentation/haishinkit/videocodecsettings/videosize/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videocodecsettings/videosize/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videoeffect/cicontext/index.html b/docs/documentation/haishinkit/videoeffect/cicontext/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videoeffect/cicontext/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videoeffect/execute(_:info:)/index.html b/docs/documentation/haishinkit/videoeffect/execute(_:info:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videoeffect/execute(_:info:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/videoeffect/index.html b/docs/documentation/haishinkit/videoeffect/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/videoeffect/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/vtsessionoption/!=(_:_:)/index.html b/docs/documentation/haishinkit/vtsessionoption/!=(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/vtsessionoption/!=(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/vtsessionoption/==(_:_:)/index.html b/docs/documentation/haishinkit/vtsessionoption/==(_:_:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/vtsessionoption/==(_:_:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/vtsessionoption/equatable-implementations/index.html b/docs/documentation/haishinkit/vtsessionoption/equatable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/vtsessionoption/equatable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/vtsessionoption/hash(into:)/index.html b/docs/documentation/haishinkit/vtsessionoption/hash(into:)/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/vtsessionoption/hash(into:)/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/vtsessionoption/hashable-implementations/index.html b/docs/documentation/haishinkit/vtsessionoption/hashable-implementations/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/vtsessionoption/hashable-implementations/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/documentation/haishinkit/vtsessionoption/index.html b/docs/documentation/haishinkit/vtsessionoption/index.html deleted file mode 100644 index 359e920a2..000000000 --- a/docs/documentation/haishinkit/vtsessionoption/index.html +++ /dev/null @@ -1 +0,0 @@ -Documentation
\ No newline at end of file diff --git a/docs/favicon.ico b/docs/favicon.ico deleted file mode 100644 index 5231da6dc..000000000 Binary files a/docs/favicon.ico and /dev/null differ diff --git a/docs/favicon.svg b/docs/favicon.svg deleted file mode 100644 index c54c53fbf..000000000 --- a/docs/favicon.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/img/added-icon.d6f7e47d.svg b/docs/img/added-icon.d6f7e47d.svg deleted file mode 100644 index 6bb6d89a8..000000000 --- a/docs/img/added-icon.d6f7e47d.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/img/carat.png b/docs/img/carat.png new file mode 100755 index 000000000..29d2f7fd4 Binary files /dev/null and b/docs/img/carat.png differ diff --git a/docs/img/dash.png b/docs/img/dash.png new file mode 100755 index 000000000..6f694c7a0 Binary files /dev/null and b/docs/img/dash.png differ diff --git a/docs/img/deprecated-icon.015b4f17.svg b/docs/img/deprecated-icon.015b4f17.svg deleted file mode 100644 index a0f80086b..000000000 --- a/docs/img/deprecated-icon.015b4f17.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/img/modified-icon.f496e73d.svg b/docs/img/modified-icon.f496e73d.svg deleted file mode 100644 index 3e0bd6f0a..000000000 --- a/docs/img/modified-icon.f496e73d.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/img/no-image@2x.df2a0a50.png b/docs/img/no-image@2x.df2a0a50.png deleted file mode 100644 index 041394edd..000000000 Binary files a/docs/img/no-image@2x.df2a0a50.png and /dev/null differ diff --git a/docs/img/spinner.gif b/docs/img/spinner.gif new file mode 100644 index 000000000..e3038d0a4 Binary files /dev/null and b/docs/img/spinner.gif differ diff --git a/docs/index.html b/docs/index.html index 359e920a2..68de918ff 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1,834 @@ -Documentation
\ No newline at end of file + + + + HaishinKit Reference + + + + + + + + + + + + +
+
+

HaishinKit 1.7.0 Docs (86% documented)

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+ +

HaishinKit for iOS, macOS, tvOS, visionOS and Android.

+ +

GitHub Stars +Release +Platform Compatibility +Swift Compatibility +GitHub license

+ +
    +
  • Camera and Microphone streaming library via RTMP and SRT for iOS, macOS, tvOS and visionOS.
  • +
  • README.md contains unreleased content, which can be tested on the main branch.
  • +
  • API Documentation
  • +
+ +

+Sponsored with 💖 by
+ +Stream Chat + +
+Enterprise Grade APIs for Feeds & Chat. Try the iOS Chat tutorial 💬 +

+

💬 Communication

+ +
    +
  • If you need help with making LiveStreaming requests using HaishinKit, use a GitHub Discussions with Q&A.
  • +
  • If you’d like to discuss a feature request, use a GitHub Discussions with Idea
  • +
  • If you met a HaishinKit’s bug🐛, use a GitHub Issue with Bug report template + +
      +
    • The trace level log is very useful. Please set LBLogger.with(HaishinKitIdentifier).level = .trace.
    • +
    • If you don’t use an issue template. I will immediately close the your issue without a comment.
    • +
  • +
  • If you want to contribute, submit a pull request with a pr template.
  • +
  • If you want to support e-mail based communication without GitHub. + +
      +
    • Consulting fee is $50/1 incident. I’m able to response a few days.
    • +
  • +
  • Discord chatroom.
  • +
  • 日本語が分かる方は、日本語でのコミニケーションをお願いします!
  • +
+

💖 Sponsors

+ +

+Streamlabs +

+ + + + + + + + + + + + + + + + + + + +
Project nameNotesLicense
HaishinKit for Android.Camera and Microphone streaming library via RTMP for Android.BSD 3-Clause “New” or “Revised” License
HaishinKit for Flutter.Camera and Microphone streaming library via RTMP for Flutter.BSD 3-Clause “New” or “Revised” License
+

🎨 Features

+

RTMP

+ +
    +
  • [x] Authentication
  • +
  • [x] Publish and Recording
  • +
  • [x] Playback (Beta)
  • +
  • [x] Adaptive bitrate streaming)
  • +
  • [ ] Action Message Format + +
      +
    • [x] AMF0
    • +
    • [ ] AMF3
    • +
  • +
  • [x] SharedObject
  • +
  • [x] RTMPS + +
      +
    • [x] Native (RTMP over SSL/TLS)
    • +
    • [x] Tunneled (RTMPT over SSL/TLS) (Technical Preview)
    • +
  • +
  • [x] RTMPT (Technical Preview)
  • +
  • [x] ReplayKit Live as a Broadcast Upload Extension
  • +
  • [x] Enhanced RTMP
  • +
+

SRT(beta)

+ +
    +
  • [x] Publish and Recording (H264/AAC)
  • +
  • [x] Playback(beta)
  • +
  • [ ] mode + +
      +
    • [x] caller
    • +
    • [x] listener
    • +
    • [ ] rendezvous
    • +
  • +
+

Multi Camera

+ +

Supports two camera video sources. A picture-in-picture display that shows the image of the secondary camera of the primary camera. Supports camera split display that displays horizontally and vertically.

+ + + + + + + + + + + +
Picture-In-PictureSplit
+
// If you're using multi-camera functionality, please make sure to call the attachMultiCamera method first. This is required for iOS 14 and 15, among others.
+if #available(iOS 13.0, *) {
+  let front = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .front)
+  stream.attachMultiCamera(front)
+}
+let back = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back)
+stream.attachCamera(back)
+rtmpStream.attachAudio(AVCaptureDevice.default(for: .audio))
+
+

Rendering

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeaturesPiPHKViewMTHKView
EngineAVSampleBufferDisplayLayerMetal
Publish
Playback
VisualEffect
MultiCamera
PictureInPicture
+

Others

+ + +

🐾 Examples

+ +

Examples project are available for iOS with UIKit, iOS with SwiftUI, macOS and tvOS. Example macOS requires Apple Silicon mac.

+ +
    +
  • [x] Camera and microphone publish.
  • +
  • [x] Playback +sh +git clone https://github.com/shogo4405/HaishinKit.swift.git +cd HaishinKit.swift +carthage bootstrap --platform iOS,macOS,tvOS --use-xcframeworks +open HaishinKit.xcodeproj +
  • +
+

🌏 Requirements

+

Development

+ + + + + + + + + + + + + + + + + + + + + + + +
VersionXcodeSwift
1.7.0+15.0+5.9+
1.6.0+15.0+5.8+
1.5.0+14.0+5.7+
+

OS

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
-iOStvOSmacOSvisionOSwatchOS
HaishinKit12.0+12.0+10.13+1.0+-
SRTHaishinKit12.0+-13.0+--
+

Cocoa Keys

+ +

Please contains Info.plist.

+ +

iOS 10.0+

+ +
    +
  • NSMicrophoneUsageDescription
  • +
  • NSCameraUsageDescription
  • +
+ +

macOS 10.14+

+ +
    +
  • NSMicrophoneUsageDescription
  • +
  • NSCameraUsageDescription
  • +
+ +

tvOS 17.0+

+ +
    +
  • NSMicrophoneUsageDescription
  • +
  • NSCameraUsageDescription
  • +
+

🔧 Installation

+ +

HaishinKit has a multi-module configuration. If you want to use the SRT protocol, please use SRTHaishinKit. SRTHaishinKit supports SPM only. +| | HaishinKit | SRTHaishinKit | +| - | :- | :- | +| SPM | https://github.com/shogo4405/HaishinKit.swift | https://github.com/shogo4405/HaishinKit.swift | +| CocoaPods | source ‘https://github.com/CocoaPods/Specs.git
use_frameworks!

def import_pods
pod 'HaishinKit’, ‘~> 1.6.0
end

target 'Your Target’ do
platform :ios, ‘12.0’
import_pods
end
| Not supported. | +| Carthage | github “shogo4405/HaishinKit.swift” ~> 1.6.0 | Not supported. |

+

🔧 Prerequisites

+ +

Make sure you setup and activate your AVAudioSession iOS.

+
import AVFoundation
+let session = AVAudioSession.sharedInstance()
+do {
+    try session.setCategory(.playAndRecord, mode: .default, options: [.defaultToSpeaker, .allowBluetooth])
+    try session.setActive(true)
+} catch {
+    print(error)
+}
+
+

📓 RTMP Usage

+

Ingest

+
let connection = RTMPConnection()
+let stream = RTMPStream(connection: rtmpConnection)
+
+stream.attachAudio(AVCaptureDevice.default(for: .audio)) { error in
+    // print(error)
+}
+
+stream.attachCamera(AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back)) { error in
+    // print(error)
+}
+
+let hkView = MTHKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(stream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("rtmp://localhost/appName/instanceName")
+stream.publish("streamName")
+
+

Playback

+
let connection = RTMPConnection()
+let stream = RTMPStream(connection: rtmpConnection)
+
+let hkView = MTHKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(stream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("rtmp://localhost/appName/instanceName")
+stream.play("streamName")
+
+

Authentication

+
var connection = RTMPConnection()
+connection.connect("rtmp://username:password@localhost/appName/instanceName")
+
+

📓 SRT Usage

+

Ingest

+
let connection = SRTConnection()
+let stream = SRTStream(connection: connection)
+stream.attachAudio(AVCaptureDevice.default(for: .audio)) { error in
+    // print(error)
+}
+stream.attachCamera(AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back)) { error in
+    // print(error)
+}
+
+let hkView = HKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(rtmpStream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("srt://host:port?option=foo")
+stream.publish()
+
+

Playback

+
let connection = SRTConnection()
+let stream = SRTStream(connection: connection)
+
+let hkView = MTHKView(frame: view.bounds)
+hkView.videoGravity = AVLayerVideoGravity.resizeAspectFill
+hkView.attachStream(rtmpStream)
+
+// add ViewController#view
+view.addSubview(hkView)
+
+connection.connect("srt://host:port?option=foo")
+stream.play()
+
+

📓 Settings

+
stream.frameRate = 30
+stream.sessionPreset = AVCaptureSession.Preset.medium
+
+/// Specifies the video capture settings.
+stream.videoCapture(for: 0).isVideoMirrored = false
+stream.videoCapture(for: 0).preferredVideoStabilizationMode = .auto
+// stream.videoCapture(for: 1).isVideoMirrored = false
+
+// Specifies the audio codec settings.
+stream.audioSettings = AudioCodecSettings(
+  bitRate: 64 * 1000
+)
+
+// Specifies the video codec settings.
+stream.videoSettings = VideoCodecSettings(
+  videoSize: .init(width: 854, height: 480),
+  profileLevel: kVTProfileLevel_H264_Baseline_3_1 as String,
+  bitRate: 640 * 1000,
+  maxKeyFrameIntervalDuration: 2,
+  scalingMode: .trim,
+  bitRateMode: .average,
+  allowFrameReordering: nil,
+  isHardwareEncoderEnabled: true
+)
+
+// Specifies the recording settings. 0" means the same of input.
+stream.startRecording([
+  AVMediaType.audio: [
+    AVFormatIDKey: Int(kAudioFormatMPEG4AAC),
+    AVSampleRateKey: 0,
+    AVNumberOfChannelsKey: 0,
+    // AVEncoderBitRateKey: 128000,
+  ],
+  AVMediaType.video: [
+    AVVideoCodecKey: AVVideoCodecH264,
+    AVVideoHeightKey: 0,
+    AVVideoWidthKey: 0,
+    /*
+    AVVideoCompressionPropertiesKey: [
+      AVVideoMaxKeyFrameIntervalDurationKey: 2,
+      AVVideoProfileLevelKey: AVVideoProfileLevelH264Baseline30,
+      AVVideoAverageBitRateKey: 512000
+    ]
+    */
+  ]
+])
+
+stream.attachAudio(AVCaptureDevice.default(for: .audio))
+
+
// picrure in picrure settings.
+stream.multiCamCaptureSettings = MultiCamCaptureSetting(
+  mode: .pip,
+  cornerRadius: 16.0,
+  regionOfInterest: .init(
+    origin: CGPoint(x: 16, y: 16),
+    size: .init(width: 160, height: 160)
+  )
+)
+
+
// split settings.
+stream.multiCamCaptureSettings = MultiCamCaptureSetting(
+  mode: .split(direction: .east),
+  cornerRadius: 0.0,
+  regionOfInterest: .init(
+    origin: .zero,
+    size: .zero
+  )
+)
+
+

Screen Capture

+
// iOS
+let screen = IOUIScreenCaptureUnit(shared: UIApplication.shared)
+screen.delegate = stream
+screen.startRunning()
+
+// macOS
+stream.attachScreen(AVCaptureScreenInput(displayID: CGMainDisplayID()))
+
+

💠 Sponsorship

+ +

Looking for sponsors. Sponsoring I will enable us to:

+ +
    +
  • Purchase smartphones or peripheral devices for testing purposes.
  • +
  • Pay for testing on a specific streaming service or for testing on mobile lines.
  • +
  • Potentially private use to continue the OSS development
  • +
+ +

If you use any of our libraries for work, see if your employers would be interested in sponsorship. I have some special offers. I would greatly appreciate. Thank you.

+ +
    +
  • If you request I will note your name product our README.
  • +
  • If you mention on a discussion, an issue or pull request that you are sponsoring us I will prioritise helping you even higher.
  • +
+ +

スポンサーを募集しています。利用用途としては、

+ +
    +
  • テスト目的で、スマートフォンの購入や周辺機器の購入を行います。
  • +
  • 特定のストリーミングサービスへのテストの支払いや、モバイル回線でのテストの支払いに利用します。
  • +
  • 著書のOSS開発を継続的に行う為に私的に利用する可能性もあります。
  • +
+ +

このライブラリーを仕事で継続的に利用している場合は、ぜひ。雇用主に、スポンサーに興味がないか確認いただけると幸いです。いくつか特典を用意しています。

+ +
    +
  • README.mdへの企業ロゴの掲載
  • +
  • IssueやPull Requestの優先的な対応
  • +
+ +

Sponsorship

+

📖 Reference

+ + +

📜 License

+ +

BSD-3-Clause

+ +
+
+ +
+
+ + diff --git a/docs/index/index.json b/docs/index/index.json deleted file mode 100644 index a8d057bca..000000000 --- a/docs/index/index.json +++ /dev/null @@ -1 +0,0 @@ -{"interfaceLanguages":{"swift":[{"children":[{"title":"Classes","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodec\/delegate","title":"var delegate: (AudioCodecDelegate)?","type":"property"},{"path":"\/documentation\/haishinkit\/audiocodec\/isrunning","title":"var isRunning: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/audiocodec\/settings","title":"var settings: AudioCodecSettings","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodec\/appendsamplebuffer(_:offset:)","title":"func appendSampleBuffer(CMSampleBuffer, offset: Int)","type":"method"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodec\/error\/failedtoconvert(error:)","title":"case failedToConvert(error: NSError)","type":"case"},{"path":"\/documentation\/haishinkit\/audiocodec\/error\/failedtocreate(from:to:)","title":"case failedToCreate(from: AVAudioFormat, to: AVAudioFormat)","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodec\/error\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/audiocodec\/error\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/audiocodec\/error","title":"AudioCodec.Error","type":"enum"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodec\/startrunning()","title":"func startRunning()","type":"method"},{"path":"\/documentation\/haishinkit\/audiocodec\/stoprunning()","title":"func stopRunning()","type":"method"}],"path":"\/documentation\/haishinkit\/audiocodec\/running-implementations","title":"Running Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/audiocodec","title":"AudioCodec","type":"class"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audioeffect\/execute(_:presentationtimestamp:)","title":"func execute(AVAudioBuffer, presentationTimeStamp: CMTime)","type":"method"}],"path":"\/documentation\/haishinkit\/audioeffect","title":"AudioEffect","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/init()","title":"init()","type":"init"},{"path":"\/documentation\/haishinkit\/bytearray\/init(data:)","title":"init(data: Data)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/bytesavailable","title":"var bytesAvailable: Int","type":"property"},{"path":"\/documentation\/haishinkit\/bytearray\/length","title":"var length: Int","type":"property"},{"path":"\/documentation\/haishinkit\/bytearray\/position","title":"var position: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/clear()","title":"func clear() -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readdouble()","title":"func readDouble() throws -> Double","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readfloat()","title":"func readFloat() throws -> Float","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readint16()","title":"func readInt16() throws -> Int16","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readint32()","title":"func readInt32() throws -> Int32","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readint64()","title":"func readInt64() throws -> Int64","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readint8()","title":"func readInt8() throws -> Int8","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readuint16()","title":"func readUInt16() throws -> UInt16","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readuint24()","title":"func readUInt24() throws -> UInt32","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readuint32()","title":"func readUInt32() throws -> UInt32","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readuint64()","title":"func readUInt64() throws -> UInt64","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readuint8()","title":"func readUInt8() throws -> UInt8","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/readutf8()","title":"func readUTF8() throws -> String","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writedouble(_:)","title":"func writeDouble(Double) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writefloat(_:)","title":"func writeFloat(Float) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeint16(_:)","title":"func writeInt16(Int16) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeint32(_:)","title":"func writeInt32(Int32) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeint64(_:)","title":"func writeInt64(Int64) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeint8(_:)","title":"func writeInt8(Int8) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeuint16(_:)","title":"func writeUInt16(UInt16) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeuint24(_:)","title":"func writeUInt24(UInt32) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeuint32(_:)","title":"func writeUInt32(UInt32) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeuint64(_:)","title":"func writeUInt64(UInt64) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeuint8(_:)","title":"func writeUInt8(UInt8) -> Self","type":"method"},{"path":"\/documentation\/haishinkit\/bytearray\/writeutf8(_:)","title":"func writeUTF8(String) throws -> Self","type":"method"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/subscript(_:)","title":"subscript(Int) -> UInt8","type":"subscript"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/error\/eof","title":"case eof","type":"case"},{"path":"\/documentation\/haishinkit\/bytearray\/error\/parse","title":"case parse","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/error\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/bytearray\/error\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/error\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/bytearray\/error\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/bytearray\/error","title":"ByteArray.Error","type":"enum"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/bytearray\/debugdescription","title":"var debugDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/bytearray\/customdebugstringconvertible-implementations","title":"CustomDebugStringConvertible Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/bytearray","title":"ByteArray","type":"class"},{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/name\/init(rawvalue:)","title":"init(rawValue: String)","type":"init"},{"path":"\/documentation\/haishinkit\/event\/name\/init(stringliteral:)","title":"init(stringLiteral: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/name\/rawvalue-swift.property","title":"let rawValue: String","type":"property"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/name\/rawvalue-swift.typealias","title":"Event.Name.RawValue","type":"typealias"},{"path":"\/documentation\/haishinkit\/event\/name\/stringliteraltype","title":"Event.Name.StringLiteralType","type":"typealias"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/name\/event","title":"static let event: Event.Name","type":"property"},{"path":"\/documentation\/haishinkit\/event\/name\/ioerror","title":"static let ioError: Event.Name","type":"property"},{"path":"\/documentation\/haishinkit\/event\/name\/rtmpstatus","title":"static let rtmpStatus: Event.Name","type":"property"},{"path":"\/documentation\/haishinkit\/event\/name\/sync","title":"static let sync: Event.Name","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/name\/init(extendedgraphemeclusterliteral:)","title":"init(extendedGraphemeClusterLiteral: Self.StringLiteralType)","type":"init"}],"path":"\/documentation\/haishinkit\/event\/name\/expressiblebyextendedgraphemeclusterliteral-implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/name\/init(unicodescalarliteral:)","title":"init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)","type":"init"}],"path":"\/documentation\/haishinkit\/event\/name\/expressiblebyunicodescalarliteral-implementations","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/event\/name","title":"Event.Name","type":"struct"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/init(type:bubbles:data:)","title":"init(type: Event.Name, bubbles: Bool, data: Any?)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/bubbles","title":"var bubbles: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/event\/data","title":"var data: Any?","type":"property"},{"path":"\/documentation\/haishinkit\/event\/target","title":"var target: AnyObject?","type":"property"},{"path":"\/documentation\/haishinkit\/event\/type","title":"var type: Event.Name","type":"property"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/from(_:)","title":"static func from(Notification) -> Event","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/event\/debugdescription","title":"var debugDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/event\/customdebugstringconvertible-implementations","title":"CustomDebugStringConvertible Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/event","title":"Event","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/eventdispatcher\/init()","title":"init()","type":"init"},{"path":"\/documentation\/haishinkit\/eventdispatcher\/init(target:)","title":"init(target: AnyObject)","type":"init"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/eventdispatcher\/addeventlistener(_:selector:observer:usecapture:)","title":"func addEventListener(Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)","type":"method"},{"path":"\/documentation\/haishinkit\/eventdispatcher\/dispatch(_:bubbles:data:)","title":"func dispatch(Event.Name, bubbles: Bool, data: Any?)","type":"method"},{"path":"\/documentation\/haishinkit\/eventdispatcher\/dispatch(event:)","title":"func dispatch(event: Event)","type":"method"},{"path":"\/documentation\/haishinkit\/eventdispatcher\/removeeventlistener(_:selector:observer:usecapture:)","title":"func removeEventListener(Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)","type":"method"}],"path":"\/documentation\/haishinkit\/eventdispatcher","title":"EventDispatcher","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/hkview\/init(coder:)","title":"init?(coder: NSCoder)","type":"init"},{"path":"\/documentation\/haishinkit\/hkview\/init(frame:)","title":"init(frame: NSRect)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/hkview\/videoformatdescription","title":"var videoFormatDescription: CMVideoFormatDescription?","type":"property"},{"path":"\/documentation\/haishinkit\/hkview\/videogravity","title":"var videoGravity: AVLayerVideoGravity","type":"property"},{"path":"\/documentation\/haishinkit\/hkview\/videoorientation","title":"var videoOrientation: AVCaptureVideoOrientation","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/hkview\/awakefromnib()","title":"func awakeFromNib()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/hkview\/defaultbackgroundcolor","title":"static var defaultBackgroundColor: NSColor","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/hkview\/attachstream(_:)","title":"func attachStream(NetStream?)","type":"method"},{"path":"\/documentation\/haishinkit\/hkview\/enqueue(_:)","title":"func enqueue(CMSampleBuffer?)","type":"method"}],"path":"\/documentation\/haishinkit\/hkview\/netstreamdrawable-implementations","title":"NetStreamDrawable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/hkview","title":"HKView","type":"class"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/hlsservice\/addhttpstream(_:)","title":"func addHTTPStream(HTTPStream)","type":"method"},{"path":"\/documentation\/haishinkit\/hlsservice\/get(_:client:)","title":"func get(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/hlsservice\/removehttpstream(_:)","title":"func removeHTTPStream(HTTPStream)","type":"method"}],"path":"\/documentation\/haishinkit\/hlsservice","title":"HLSService","type":"class"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httpservice\/connect(_:client:)","title":"func connect(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/httpservice\/delete(_:client:)","title":"func delete(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/httpservice\/get(_:client:)","title":"func get(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/httpservice\/head(_:client:)","title":"func head(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/httpservice\/options(_:client:)","title":"func options(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/httpservice\/post(_:client:)","title":"func post(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/httpservice\/put(_:client:)","title":"func put(HTTPRequest, client: NetClient)","type":"method"},{"path":"\/documentation\/haishinkit\/httpservice\/trace(_:client:)","title":"func trace(HTTPRequest, client: NetClient)","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httpservice\/defaultdocument","title":"class var defaultDocument: String","type":"property"},{"path":"\/documentation\/haishinkit\/httpservice\/defaultport","title":"class var defaultPort: Int32","type":"property"},{"path":"\/documentation\/haishinkit\/httpservice\/type","title":"class var type: String","type":"property"}],"path":"\/documentation\/haishinkit\/httpservice","title":"HTTPService","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httpstream\/expectedmedias","title":"var expectedMedias: Set","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httpstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)","title":"func attachAudio(AVCaptureDevice?, automaticallyConfiguresApplicationAudioSession: Bool, onError: ((Error) -> Void)?)","type":"method"},{"path":"\/documentation\/haishinkit\/httpstream\/attachcamera(_:onerror:)","title":"func attachCamera(AVCaptureDevice?, onError: ((Error) -> Void)?)","type":"method"},{"path":"\/documentation\/haishinkit\/httpstream\/publish(_:)","title":"func publish(String?)","type":"method"}],"path":"\/documentation\/haishinkit\/httpstream","title":"HTTPStream","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iomixer\/drawable","title":"var drawable: (NetStreamDrawable)?","type":"property"},{"path":"\/documentation\/haishinkit\/iomixer\/hasvideo","title":"var hasVideo: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/iomixer\/ispaused","title":"var isPaused: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/iomixer\/isrunning","title":"var isRunning: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/iomixer\/recorder","title":"var recorder: IORecorder","type":"property"},{"path":"\/documentation\/haishinkit\/iomixer\/session","title":"var session: AVCaptureSession","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iomixer\/appendsamplebuffer(_:)","title":"func appendSampleBuffer(CMSampleBuffer)","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iomixer\/audioengineholder","title":"static let audioEngineHolder: InstanceHolder","type":"property"},{"path":"\/documentation\/haishinkit\/iomixer\/defaultframerate","title":"static let defaultFrameRate: Float64","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iomixer\/startdecoding()","title":"func startDecoding()","type":"method"},{"path":"\/documentation\/haishinkit\/iomixer\/stopdecoding()","title":"func stopDecoding()","type":"method"}],"path":"\/documentation\/haishinkit\/iomixer\/iounitdecoding-implementations","title":"IOUnitDecoding Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iomixer\/startencoding(_:)","title":"func startEncoding(AVCodecDelegate)","type":"method"},{"path":"\/documentation\/haishinkit\/iomixer\/stopencoding()","title":"func stopEncoding()","type":"method"}],"path":"\/documentation\/haishinkit\/iomixer\/iounitencoding-implementations","title":"IOUnitEncoding Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iomixer\/startrunning()","title":"func startRunning()","type":"method"},{"path":"\/documentation\/haishinkit\/iomixer\/stoprunning()","title":"func stopRunning()","type":"method"}],"path":"\/documentation\/haishinkit\/iomixer\/running-implementations","title":"Running Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/iomixer","title":"IOMixer","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iorecorder\/delegate","title":"var delegate: (IORecorderDelegate)?","type":"property"},{"path":"\/documentation\/haishinkit\/iorecorder\/isrunning","title":"var isRunning: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/iorecorder\/outputsettings","title":"var outputSettings: [AVMediaType : [String : Any]]","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iorecorder\/appendpixelbuffer(_:withpresentationtime:)","title":"func appendPixelBuffer(CVPixelBuffer, withPresentationTime: CMTime)","type":"method"},{"path":"\/documentation\/haishinkit\/iorecorder\/appendsamplebuffer(_:)","title":"func appendSampleBuffer(CMSampleBuffer)","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iorecorder\/defaultoutputsettings","title":"static let defaultOutputSettings: [AVMediaType : [String : Any]]","type":"property"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iorecorder\/error\/failedtoappend(error:)","title":"case failedToAppend(error: (Error)?)","type":"case"},{"path":"\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriter(error:)","title":"case failedToCreateAssetWriter(error: Error)","type":"case"},{"path":"\/documentation\/haishinkit\/iorecorder\/error\/failedtocreateassetwriterinput(error:)","title":"case failedToCreateAssetWriterInput(error: NSException)","type":"case"},{"path":"\/documentation\/haishinkit\/iorecorder\/error\/failedtofinishwriting(error:)","title":"case failedToFinishWriting(error: (Error)?)","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iorecorder\/error\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/iorecorder\/error\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/iorecorder\/error","title":"IORecorder.Error","type":"enum"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iorecorder\/startrunning()","title":"func startRunning()","type":"method"},{"path":"\/documentation\/haishinkit\/iorecorder\/stoprunning()","title":"func stopRunning()","type":"method"}],"path":"\/documentation\/haishinkit\/iorecorder\/running-implementations","title":"Running Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/iorecorder","title":"IORecorder","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iovideocaptureunit\/device","title":"var device: AVCaptureDevice?","type":"property"},{"path":"\/documentation\/haishinkit\/iovideocaptureunit\/isvideomirrored","title":"var isVideoMirrored: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/iovideocaptureunit\/videoorientation","title":"var videoOrientation: AVCaptureVideoOrientation","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iovideocaptureunit\/defaultvideosettings","title":"static let defaultVideoSettings: [NSString : AnyObject]","type":"property"}],"path":"\/documentation\/haishinkit\/iovideocaptureunit","title":"IOVideoCaptureUnit","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/instanceholder\/init(factory:)","title":"init(factory: () -> T)","type":"init"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/instanceholder\/release(_:)","title":"func release(T?)","type":"method"},{"path":"\/documentation\/haishinkit\/instanceholder\/retain()","title":"func retain() -> T?","type":"method"}],"path":"\/documentation\/haishinkit\/instanceholder","title":"InstanceHolder","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/mthkview\/init(coder:)","title":"init(coder: NSCoder)","type":"init"},{"path":"\/documentation\/haishinkit\/mthkview\/init(frame:)","title":"init(frame: CGRect)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/mthkview\/ismirrored","title":"var isMirrored: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/mthkview\/videoformatdescription","title":"var videoFormatDescription: CMVideoFormatDescription?","type":"property"},{"path":"\/documentation\/haishinkit\/mthkview\/videogravity","title":"var videoGravity: AVLayerVideoGravity","type":"property"},{"path":"\/documentation\/haishinkit\/mthkview\/videoorientation","title":"var videoOrientation: AVCaptureVideoOrientation","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/mthkview\/awakefromnib()","title":"func awakeFromNib()","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/mthkview\/draw(in:)","title":"func draw(in: MTKView)","type":"method"},{"path":"\/documentation\/haishinkit\/mthkview\/mtkview(_:drawablesizewillchange:)","title":"func mtkView(MTKView, drawableSizeWillChange: CGSize)","type":"method"}],"path":"\/documentation\/haishinkit\/mthkview\/mtkviewdelegate-implementations","title":"MTKViewDelegate Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/mthkview\/attachstream(_:)","title":"func attachStream(NetStream?)","type":"method"},{"path":"\/documentation\/haishinkit\/mthkview\/enqueue(_:)","title":"func enqueue(CMSampleBuffer?)","type":"method"}],"path":"\/documentation\/haishinkit\/mthkview\/netstreamdrawable-implementations","title":"NetStreamDrawable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/mthkview","title":"MTHKView","type":"class"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netclient\/listen()","title":"func listen()","type":"method"}],"path":"\/documentation\/haishinkit\/netclient","title":"NetClient","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netservice\/init(domain:type:name:port:)","title":"init(domain: String, type: String, name: String, port: Int32)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netservice\/clients","title":"var clients: [NetClient]","type":"property"},{"path":"\/documentation\/haishinkit\/netservice\/domain","title":"let domain: String","type":"property"},{"path":"\/documentation\/haishinkit\/netservice\/isrunning","title":"var isRunning: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/netservice\/name","title":"let name: String","type":"property"},{"path":"\/documentation\/haishinkit\/netservice\/port","title":"let port: Int32","type":"property"},{"path":"\/documentation\/haishinkit\/netservice\/txtdata","title":"var txtData: Data?","type":"property"},{"path":"\/documentation\/haishinkit\/netservice\/type","title":"let type: String","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netservice\/netservice(_:didacceptconnectionwith:outputstream:)","title":"func netService(NetService, didAcceptConnectionWith: InputStream, outputStream: OutputStream)","type":"method"}],"path":"\/documentation\/haishinkit\/netservice\/netservicedelegate-implementations","title":"NetServiceDelegate Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netservice\/startrunning()","title":"func startRunning()","type":"method"},{"path":"\/documentation\/haishinkit\/netservice\/stoprunning()","title":"func stopRunning()","type":"method"}],"path":"\/documentation\/haishinkit\/netservice\/running-implementations","title":"Running Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/netservice","title":"NetService","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netsocket\/connected","title":"var connected: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/inputbuffer","title":"var inputBuffer: Data","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/outputbuffersize","title":"var outputBufferSize: Int","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/qualityofservice","title":"var qualityOfService: DispatchQoS","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/queuebytesout","title":"var queueBytesOut: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/securitylevel","title":"var securityLevel: StreamSocketSecurityLevel","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/timeout","title":"var timeout: Int","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/totalbytesin","title":"var totalBytesIn: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/totalbytesout","title":"var totalBytesOut: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/windowsizec","title":"var windowSizeC: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netsocket\/close()","title":"func close()","type":"method"},{"path":"\/documentation\/haishinkit\/netsocket\/connect(withname:port:)","title":"func connect(withName: String, port: Int)","type":"method"},{"path":"\/documentation\/haishinkit\/netsocket\/dooutput(data:locked:)","title":"func doOutput(data: Data, locked: UnsafeMutablePointer?) -> Int","type":"method"},{"path":"\/documentation\/haishinkit\/netsocket\/listen()","title":"func listen()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netsocket\/defaulttimeout","title":"static let defaultTimeout: Int","type":"property"},{"path":"\/documentation\/haishinkit\/netsocket\/defaultwindowsizec","title":"static let defaultWindowSizeC: Int","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netsocket\/stream(_:handle:)","title":"func stream(Stream, handle: Stream.Event)","type":"method"}],"path":"\/documentation\/haishinkit\/netsocket\/streamdelegate-implementations","title":"StreamDelegate Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/netsocket","title":"NetSocket","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstream\/init()","title":"init()","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstream\/audiosettings","title":"var audioSettings: AudioCodecSettings","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/context","title":"var context: CIContext","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/delegate","title":"var delegate: (NetStreamDelegate)?","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/framerate","title":"var frameRate: Float64","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/hasaudio","title":"var hasAudio: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/hasvideo","title":"var hasVideo: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/lockqueue","title":"let lockQueue: DispatchQueue","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/loopback","title":"var loopback: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/mixer","title":"var mixer: IOMixer","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/multicamcapturesettings","title":"var multiCamCaptureSettings: MultiCamCaptureSettings","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/sessionpreset","title":"var sessionPreset: AVCaptureSession.Preset","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/torch","title":"var torch: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/videoorientation","title":"var videoOrientation: AVCaptureVideoOrientation","type":"property"},{"path":"\/documentation\/haishinkit\/netstream\/videosettings","title":"var videoSettings: VideoCodecSettings","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstream\/appendsamplebuffer(_:options:)","title":"func appendSampleBuffer(CMSampleBuffer, options: [NSObject : AnyObject]?)","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/attachaudio(_:automaticallyconfiguresapplicationaudiosession:onerror:)","title":"func attachAudio(AVCaptureDevice?, automaticallyConfiguresApplicationAudioSession: Bool, onError: ((Error) -> Void)?)","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/attachcamera(_:onerror:)","title":"func attachCamera(AVCaptureDevice?, onError: ((Error) -> Void)?)","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/attachmulticamera(_:onerror:)","title":"func attachMultiCamera(AVCaptureDevice?, onError: ((Error) -> Void)?)","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/attachscreen(_:)","title":"func attachScreen(AVCaptureScreenInput?)","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/registeraudioeffect(_:)","title":"func registerAudioEffect(AudioEffect) -> Bool","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/registervideoeffect(_:)","title":"func registerVideoEffect(VideoEffect) -> Bool","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/startrecording(_:)","title":"func startRecording([AVMediaType : [String : Any]])","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/stoprecording()","title":"func stopRecording()","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/unregisteraudioeffect(_:)","title":"func unregisterAudioEffect(AudioEffect) -> Bool","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/unregistervideoeffect(_:)","title":"func unregisterVideoEffect(VideoEffect) -> Bool","type":"method"},{"path":"\/documentation\/haishinkit\/netstream\/videocapture(for:)","title":"func videoCapture(for: Int) -> IOVideoCaptureUnit?","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstream\/session(_:didoutput:presentationtime:)","title":"func session(IOScreenCaptureUnit, didOutput: CVPixelBuffer, presentationTime: CMTime)","type":"method"}],"path":"\/documentation\/haishinkit\/netstream\/ioscreencaptureunitdelegate-implementations","title":"IOScreenCaptureUnitDelegate Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstream\/stream(_:didoutputsamplebuffer:of:)","title":"func stream(SCStream, didOutputSampleBuffer: CMSampleBuffer, of: SCStreamOutputType)","type":"method"}],"path":"\/documentation\/haishinkit\/netstream\/scstreamoutput-implementations","title":"SCStreamOutput Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/netstream","title":"NetStream","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/piphkview\/init(coder:)","title":"init?(coder: NSCoder)","type":"init"},{"path":"\/documentation\/haishinkit\/piphkview\/init(frame:)","title":"init(frame: CGRect)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/piphkview\/videoformatdescription","title":"var videoFormatDescription: CMVideoFormatDescription?","type":"property"},{"path":"\/documentation\/haishinkit\/piphkview\/videogravity","title":"var videoGravity: AVLayerVideoGravity","type":"property"},{"path":"\/documentation\/haishinkit\/piphkview\/videoorientation","title":"var videoOrientation: AVCaptureVideoOrientation","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/piphkview\/awakefromnib()","title":"func awakeFromNib()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/piphkview\/defaultbackgroundcolor","title":"static var defaultBackgroundColor: NSColor","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/piphkview\/attachstream(_:)","title":"func attachStream(NetStream?)","type":"method"},{"path":"\/documentation\/haishinkit\/piphkview\/enqueue(_:)","title":"func enqueue(CMSampleBuffer?)","type":"method"}],"path":"\/documentation\/haishinkit\/piphkview\/netstreamdrawable-implementations","title":"NetStreamDrawable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/piphkview","title":"PiPHKView","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/init()","title":"init()","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/chunksize","title":"var chunkSize: Int","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/connected","title":"var connected: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/currentbytesinpersecond","title":"var currentBytesInPerSecond: Int32","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/currentbytesoutpersecond","title":"var currentBytesOutPerSecond: Int32","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/delegate","title":"var delegate: (RTMPConnectionDelegate)?","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/flashver","title":"var flashVer: String","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/objectencoding","title":"var objectEncoding: RTMPObjectEncoding","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/pageurl","title":"var pageUrl: String?","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/parameters","title":"var parameters: Any?","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/previousqueuebytesout","title":"var previousQueueBytesOut: [Int64]","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/qualityofservice","title":"var qualityOfService: DispatchQoS","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/requirenetworkframework","title":"var requireNetworkFramework: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/swfurl","title":"var swfUrl: String?","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/timeout","title":"var timeout: Int","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/totalbytesin","title":"var totalBytesIn: Int64","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/totalbytesout","title":"var totalBytesOut: Int64","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/totalstreamscount","title":"var totalStreamsCount: Int","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/uri","title":"var uri: URL?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/call(_:responder:arguments:)","title":"func call(String, responder: RTMPResponder?, arguments: Any?...)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/close()","title":"func close()","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/connect(_:arguments:)","title":"func connect(String, arguments: Any?...)","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/defaultcapabilities","title":"static let defaultCapabilities: Int","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/defaultchunksizes","title":"static let defaultChunkSizeS: Int","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/defaultflashver","title":"static let defaultFlashVer: String","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/defaultobjectencoding","title":"static let defaultObjectEncoding: RTMPObjectEncoding","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/defaultport","title":"static let defaultPort: Int","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/defaultsecureport","title":"static let defaultSecurePort: Int","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/defaultwindowsizes","title":"static let defaultWindowSizeS: Int64","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/supportedprotocols","title":"static let supportedProtocols: Set","type":"property"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/callbadversion","title":"case callBadVersion","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/callfailed","title":"case callFailed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/callprohibited","title":"case callProhibited","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectappshutdown","title":"case connectAppshutdown","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectclosed","title":"case connectClosed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectfailed","title":"case connectFailed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectidletimeout","title":"case connectIdleTimeOut","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectinvalidapp","title":"case connectInvalidApp","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectnetworkchange","title":"case connectNetworkChange","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectrejected","title":"case connectRejected","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/connectsuccess","title":"case connectSuccess","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/level","title":"var level: String","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/rtmpconnection\/code\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/rtmpconnection\/code","title":"RTMPConnection.Code","type":"enum"}],"path":"\/documentation\/haishinkit\/rtmpconnection","title":"RTMPConnection","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpresponder\/init(result:status:)","title":"init(result: RTMPResponder.Handler, status: RTMPResponder.Handler?)","type":"init"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpresponder\/handler","title":"RTMPResponder.Handler","type":"typealias"}],"path":"\/documentation\/haishinkit\/rtmpresponder","title":"RTMPResponder","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/data","title":"var data: [String : Any?]","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/objectencoding","title":"let objectEncoding: RTMPObjectEncoding","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/clear()","title":"func clear()","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/close()","title":"func close()","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/connect(_:)","title":"func connect(RTMPConnection)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/setproperty(_:_:)","title":"func setProperty(String, Any?)","type":"method"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/getremote(withname:remotepath:persistence:)","title":"static func getRemote(withName: String, remotePath: String, persistence: Bool) -> RTMPSharedObject","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpsharedobject\/debugdescription","title":"var debugDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/rtmpsharedobject\/customdebugstringconvertible-implementations","title":"CustomDebugStringConvertible Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/rtmpsharedobject","title":"RTMPSharedObject","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/init(connection:)","title":"init(connection: RTMPConnection)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/currentfps","title":"var currentFPS: UInt16","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstream\/info","title":"var info: RTMPStreamInfo","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstream\/objectencoding","title":"var objectEncoding: RTMPObjectEncoding","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstream\/paused","title":"var paused: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstream\/receiveaudio","title":"var receiveAudio: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstream\/receivevideo","title":"var receiveVideo: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstream\/soundtransform","title":"var soundTransform: SoundTransform","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/close()","title":"func close()","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/makemetadata()","title":"func makeMetaData() -> ASObject","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/play(_:)","title":"func play(Any?...)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/publish(_:type:)","title":"func publish(String?, type: RTMPStream.HowToPublish)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/seek(_:)","title":"func seek(Double)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/send(handlername:arguments:)","title":"func send(handlerName: String, arguments: Any?...)","type":"method"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferempty","title":"case bufferEmpty","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferflush","title":"case bufferFlush","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/bufferfull","title":"case bufferFull","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/connectclosed","title":"case connectClosed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/connectfailed","title":"case connectFailed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/connectrejected","title":"case connectRejected","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/connectsuccess","title":"case connectSuccess","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/drmupdateneeded","title":"case drmUpdateNeeded","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/failed","title":"case failed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/multicaststreamreset","title":"case multicastStreamReset","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/pausenotify","title":"case pauseNotify","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playfailed","title":"case playFailed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playfilestructureinvalid","title":"case playFileStructureInvalid","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playinsufficientbw","title":"case playInsufficientBW","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playnosupportedtrackfound","title":"case playNoSupportedTrackFound","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playreset","title":"case playReset","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playstart","title":"case playStart","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playstop","title":"case playStop","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playstreamnotfound","title":"case playStreamNotFound","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playtransition","title":"case playTransition","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/playunpublishnotify","title":"case playUnpublishNotify","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/publishbadname","title":"case publishBadName","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/publishidle","title":"case publishIdle","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/publishstart","title":"case publishStart","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/recordalreadyexists","title":"case recordAlreadyExists","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/recorddiskquotaexceeded","title":"case recordDiskQuotaExceeded","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/recordfailed","title":"case recordFailed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/recordnoaccess","title":"case recordNoAccess","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/recordstart","title":"case recordStart","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/recordstop","title":"case recordStop","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstart","title":"case secondScreenStart","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/secondscreenstop","title":"case secondScreenStop","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/seekfailed","title":"case seekFailed","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/seekinvalidtime","title":"case seekInvalidTime","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/seeknotify","title":"case seekNotify","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/stepnotify","title":"case stepNotify","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/unpausenotify","title":"case unpauseNotify","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/unpublishsuccess","title":"case unpublishSuccess","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/videodimensionchange","title":"case videoDimensionChange","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/level","title":"var level: String","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/rtmpstream\/code\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/code\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/rtmpstream\/code\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/rtmpstream\/code","title":"RTMPStream.Code","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/append","title":"case append","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/appendwithgap","title":"case appendWithGap","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/live","title":"case live","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/record","title":"case record","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/rtmpstream\/howtopublish","title":"RTMPStream.HowToPublish","type":"enum"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstream\/addeventlistener(_:selector:observer:usecapture:)","title":"func addEventListener(Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/dispatch(_:bubbles:data:)","title":"func dispatch(Event.Name, bubbles: Bool, data: Any?)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/dispatch(event:)","title":"func dispatch(event: Event)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpstream\/removeeventlistener(_:selector:observer:usecapture:)","title":"func removeEventListener(Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)","type":"method"}],"path":"\/documentation\/haishinkit\/rtmpstream\/eventdispatcherconvertible-implementations","title":"EventDispatcherConvertible Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/rtmpstream","title":"RTMPStream","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tsreader\/init()","title":"init()","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tsreader\/delegate","title":"var delegate: (TSReaderDelegate)?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tsreader\/clear()","title":"func clear()","type":"method"},{"path":"\/documentation\/haishinkit\/tsreader\/read(_:)","title":"func read(Data) -> Int","type":"method"}],"path":"\/documentation\/haishinkit\/tsreader","title":"TSReader","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tswriter\/init(segmentduration:)","title":"init(segmentDuration: Double)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tswriter\/delegate","title":"var delegate: (TSWriterDelegate)?","type":"property"},{"path":"\/documentation\/haishinkit\/tswriter\/expectedmedias","title":"var expectedMedias: Set","type":"property"},{"path":"\/documentation\/haishinkit\/tswriter\/isrunning","title":"var isRunning: Atomic","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tswriter\/startrunning()","title":"func startRunning()","type":"method"},{"path":"\/documentation\/haishinkit\/tswriter\/stoprunning()","title":"func stopRunning()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tswriter\/defaultaudiopid","title":"static let defaultAudioPID: UInt16","type":"property"},{"path":"\/documentation\/haishinkit\/tswriter\/defaultpatpid","title":"static let defaultPATPID: UInt16","type":"property"},{"path":"\/documentation\/haishinkit\/tswriter\/defaultpmtpid","title":"static let defaultPMTPID: UInt16","type":"property"},{"path":"\/documentation\/haishinkit\/tswriter\/defaultsegmentduration","title":"static let defaultSegmentDuration: Double","type":"property"},{"path":"\/documentation\/haishinkit\/tswriter\/defaultvideopid","title":"static let defaultVideoPID: UInt16","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:)","title":"func audioCodec(AudioCodec, didOutput: AVAudioFormat)","type":"method"},{"path":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:didoutput:presentationtimestamp:)","title":"func audioCodec(AudioCodec, didOutput: AVAudioBuffer, presentationTimeStamp: CMTime)","type":"method"},{"path":"\/documentation\/haishinkit\/tswriter\/audiocodec(_:erroroccurred:)","title":"func audioCodec(AudioCodec, errorOccurred: AudioCodec.Error)","type":"method"}],"path":"\/documentation\/haishinkit\/tswriter\/audiocodecdelegate-implementations","title":"AudioCodecDelegate Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-4cwlf","title":"func videoCodec(VideoCodec, didOutput: CMFormatDescription?)","type":"method"},{"path":"\/documentation\/haishinkit\/tswriter\/videocodec(_:didoutput:)-7embq","title":"func videoCodec(VideoCodec, didOutput: CMSampleBuffer)","type":"method"},{"path":"\/documentation\/haishinkit\/tswriter\/videocodec(_:erroroccurred:)","title":"func videoCodec(VideoCodec, errorOccurred: VideoCodec.Error)","type":"method"},{"path":"\/documentation\/haishinkit\/tswriter\/videocodecwilldropfame(_:)","title":"func videoCodecWillDropFame(VideoCodec) -> Bool","type":"method"}],"path":"\/documentation\/haishinkit\/tswriter\/videocodecdelegate-implementations","title":"VideoCodecDelegate Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/tswriter","title":"TSWriter","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodec\/isrunning","title":"var isRunning: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/videocodec\/settings","title":"var settings: VideoCodecSettings","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodec\/defaultattributes","title":"static var defaultAttributes: [NSString : AnyObject]?","type":"property"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodec\/error\/failedtocreate(status:)","title":"case failedToCreate(status: OSStatus)","type":"case"},{"path":"\/documentation\/haishinkit\/videocodec\/error\/failedtoflame(status:)","title":"case failedToFlame(status: OSStatus)","type":"case"},{"path":"\/documentation\/haishinkit\/videocodec\/error\/failedtoprepare(status:)","title":"case failedToPrepare(status: OSStatus)","type":"case"},{"path":"\/documentation\/haishinkit\/videocodec\/error\/failedtosetoption(status:option:)","title":"case failedToSetOption(status: OSStatus, option: VTSessionOption)","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodec\/error\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/videocodec\/error\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/videocodec\/error","title":"VideoCodec.Error","type":"enum"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodec\/startrunning()","title":"func startRunning()","type":"method"},{"path":"\/documentation\/haishinkit\/videocodec\/stoprunning()","title":"func stopRunning()","type":"method"}],"path":"\/documentation\/haishinkit\/videocodec\/running-implementations","title":"Running Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/videocodec","title":"VideoCodec","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videoeffect\/cicontext","title":"var ciContext: CIContext?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videoeffect\/execute(_:info:)","title":"func execute(CIImage, info: CMSampleBuffer?) -> CIImage","type":"method"}],"path":"\/documentation\/haishinkit\/videoeffect","title":"VideoEffect","type":"class"},{"title":"Protocols","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:)","title":"func audioCodec(AudioCodec, didOutput: AVAudioFormat)","type":"method"},{"path":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:didoutput:presentationtimestamp:)","title":"func audioCodec(AudioCodec, didOutput: AVAudioBuffer, presentationTimeStamp: CMTime)","type":"method"},{"path":"\/documentation\/haishinkit\/audiocodecdelegate\/audiocodec(_:erroroccurred:)","title":"func audioCodec(AudioCodec, errorOccurred: AudioCodec.Error)","type":"method"}],"path":"\/documentation\/haishinkit\/audiocodecdelegate","title":"AudioCodecDelegate","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/eventdispatcherconvertible\/addeventlistener(_:selector:observer:usecapture:)","title":"func addEventListener(Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)","type":"method"},{"path":"\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(_:bubbles:data:)","title":"func dispatch(Event.Name, bubbles: Bool, data: Any?)","type":"method"},{"path":"\/documentation\/haishinkit\/eventdispatcherconvertible\/dispatch(event:)","title":"func dispatch(event: Event)","type":"method"},{"path":"\/documentation\/haishinkit\/eventdispatcherconvertible\/removeeventlistener(_:selector:observer:usecapture:)","title":"func removeEventListener(Event.Name, selector: Selector, observer: AnyObject?, useCapture: Bool)","type":"method"}],"path":"\/documentation\/haishinkit\/eventdispatcherconvertible","title":"EventDispatcherConvertible","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:erroroccured:)","title":"func recorder(IORecorder, errorOccured: IORecorder.Error)","type":"method"},{"path":"\/documentation\/haishinkit\/iorecorderdelegate\/recorder(_:finishwriting:)","title":"func recorder(IORecorder, finishWriting: AVAssetWriter)","type":"method"}],"path":"\/documentation\/haishinkit\/iorecorderdelegate","title":"IORecorderDelegate","type":"protocol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/ioscreencaptureunit\/attributes","title":"var attributes: [NSString : NSObject]","type":"property"},{"path":"\/documentation\/haishinkit\/ioscreencaptureunit\/delegate","title":"var delegate: (IOScreenCaptureUnitDelegate)?","type":"property"}],"path":"\/documentation\/haishinkit\/ioscreencaptureunit","title":"IOScreenCaptureUnit","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate\/session(_:didoutput:presentationtime:)","title":"func session(IOScreenCaptureUnit, didOutput: CVPixelBuffer, presentationTime: CMTime)","type":"method"}],"path":"\/documentation\/haishinkit\/ioscreencaptureunitdelegate","title":"IOScreenCaptureUnitDelegate","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:audiocodecerroroccurred:)","title":"func stream(NetStream, audioCodecErrorOccurred: AudioCodec.Error)","type":"method"},{"path":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:)","title":"func stream(NetStream, didOutput: CMSampleBuffer)","type":"method"},{"path":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:didoutput:presentationtimestamp:)","title":"func stream(NetStream, didOutput: AVAudioBuffer, presentationTimeStamp: CMTime)","type":"method"},{"path":"\/documentation\/haishinkit\/netstreamdelegate\/stream(_:videocodecerroroccurred:)","title":"func stream(NetStream, videoCodecErrorOccurred: VideoCodec.Error)","type":"method"},{"path":"\/documentation\/haishinkit\/netstreamdelegate\/streamdidopen(_:)","title":"func streamDidOpen(NetStream)","type":"method"},{"path":"\/documentation\/haishinkit\/netstreamdelegate\/streamwilldropframe(_:)","title":"func streamWillDropFrame(NetStream) -> Bool","type":"method"}],"path":"\/documentation\/haishinkit\/netstreamdelegate","title":"NetStreamDelegate","type":"protocol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstreamdrawable\/videoformatdescription","title":"var videoFormatDescription: CMVideoFormatDescription?","type":"property"},{"path":"\/documentation\/haishinkit\/netstreamdrawable\/videoorientation","title":"var videoOrientation: AVCaptureVideoOrientation","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/netstreamdrawable\/attachstream(_:)","title":"func attachStream(NetStream?)","type":"method"},{"path":"\/documentation\/haishinkit\/netstreamdrawable\/enqueue(_:)","title":"func enqueue(CMSampleBuffer?)","type":"method"}],"path":"\/documentation\/haishinkit\/netstreamdrawable","title":"NetStreamDrawable","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishinsufficientbwoccured:)","title":"func connection(RTMPConnection, publishInsufficientBWOccured: RTMPStream)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:publishsufficientbwoccured:)","title":"func connection(RTMPConnection, publishSufficientBWOccured: RTMPStream)","type":"method"},{"path":"\/documentation\/haishinkit\/rtmpconnectiondelegate\/connection(_:updatestats:)","title":"func connection(RTMPConnection, updateStats: RTMPStream)","type":"method"}],"path":"\/documentation\/haishinkit\/rtmpconnectiondelegate","title":"RTMPConnectionDelegate","type":"protocol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/running\/isrunning","title":"var isRunning: Atomic","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/running\/startrunning()","title":"func startRunning()","type":"method"},{"path":"\/documentation\/haishinkit\/running\/stoprunning()","title":"func stopRunning()","type":"method"}],"path":"\/documentation\/haishinkit\/running","title":"Running","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-37ztb","title":"func reader(TSReader, id: UInt16, didRead: CMFormatDescription)","type":"method"},{"path":"\/documentation\/haishinkit\/tsreaderdelegate\/reader(_:id:didread:)-5kxz9","title":"func reader(TSReader, id: UInt16, didRead: CMSampleBuffer)","type":"method"}],"path":"\/documentation\/haishinkit\/tsreaderdelegate","title":"TSReaderDelegate","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didoutput:)","title":"func writer(TSWriter, didOutput: Data)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-17rsg","title":"func writer(TSWriter, didRotateFileHandle: CMTime)","type":"method"}],"title":"TSWriterDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/haishinkit\/tswriterdelegate\/writer(_:didrotatefilehandle:)-7ieyz","title":"func writer(TSWriter, didRotateFileHandle: CMTime)","type":"method"}],"path":"\/documentation\/haishinkit\/tswriterdelegate","title":"TSWriterDelegate","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-7sbpr","title":"func videoCodec(VideoCodec, didOutput: CMSampleBuffer)","type":"method"},{"path":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:didoutput:)-879c7","title":"func videoCodec(VideoCodec, didOutput: CMFormatDescription?)","type":"method"},{"path":"\/documentation\/haishinkit\/videocodecdelegate\/videocodec(_:erroroccurred:)","title":"func videoCodec(VideoCodec, errorOccurred: VideoCodec.Error)","type":"method"},{"path":"\/documentation\/haishinkit\/videocodecdelegate\/videocodecwilldropfame(_:)","title":"func videoCodecWillDropFame(VideoCodec) -> Bool","type":"method"}],"path":"\/documentation\/haishinkit\/videocodecdelegate","title":"VideoCodecDelegate","type":"protocol"},{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asarray\/init(count:)","title":"init(count: Int)","type":"init"},{"path":"\/documentation\/haishinkit\/asarray\/init(data:)","title":"init(data: [Any?])","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asarray\/length","title":"var length: Int","type":"property"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asarray\/subscript(_:)","title":"subscript(Any) -> Any?","type":"subscript"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asarray\/debugdescription","title":"var debugDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/asarray\/customdebugstringconvertible-implementations","title":"CustomDebugStringConvertible Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asarray\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/haishinkit\/asarray\/==(_:_:)","title":"static func == (ASArray, ASArray) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/asarray\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asarray\/init(arrayliteral:)","title":"init(arrayLiteral: Any?...)","type":"init"}],"path":"\/documentation\/haishinkit\/asarray\/expressiblebyarrayliteral-implementations","title":"ExpressibleByArrayLiteral Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/asarray","title":"ASArray","type":"struct"},{"children":[{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/astypedobject\/typedobjectdecoder","title":"ASTypedObject.TypedObjectDecoder","type":"typealias"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/astypedobject\/register(type:named:)","title":"static func register(type: T.Type, named: String)","type":"method"},{"path":"\/documentation\/haishinkit\/astypedobject\/register(typenamed:decoder:)","title":"static func register(typeNamed: String, decoder: ASTypedObject.TypedObjectDecoder)","type":"method"},{"path":"\/documentation\/haishinkit\/astypedobject\/unregister(typenamed:)","title":"static func unregister(typeNamed: String)","type":"method"}],"path":"\/documentation\/haishinkit\/astypedobject","title":"ASTypedObject","type":"struct"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asundefined\/description","title":"var description: String","type":"property"}],"path":"\/documentation\/haishinkit\/asundefined","title":"ASUndefined","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asxml\/init(data:)","title":"init(data: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asxml\/description","title":"var description: String","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asxml\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/haishinkit\/asxml\/==(_:_:)","title":"static func == (ASXML, ASXML) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/asxml\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/asxml","title":"ASXML","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asxmldocument\/init(data:)","title":"init(data: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asxmldocument\/description","title":"var description: String","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asxmldocument\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/haishinkit\/asxmldocument\/==(_:_:)","title":"static func == (ASXMLDocument, ASXMLDocument) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/asxmldocument\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/asxmldocument","title":"ASXMLDocument","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/atomic\/init(_:)","title":"init(A)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/atomic\/value","title":"var value: A","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/atomic\/mutate(_:)","title":"func mutate((inout A) -> Void)","type":"method"}],"path":"\/documentation\/haishinkit\/atomic","title":"Atomic","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodecsettings\/init(bitrate:outputchannelsmap:)","title":"init(bitRate: Int, outputChannelsMap: [Int : Int])","type":"init"},{"path":"\/documentation\/haishinkit\/audiocodecsettings\/init(from:)","title":"init(from: Decoder) throws","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodecsettings\/bitrate","title":"var bitRate: Int","type":"property"},{"path":"\/documentation\/haishinkit\/audiocodecsettings\/outputchannelsmap","title":"var outputChannelsMap: [Int : Int]","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/audiocodecsettings\/default","title":"static let `default`: AudioCodecSettings","type":"property"},{"path":"\/documentation\/haishinkit\/audiocodecsettings\/maximumnumberofchannels","title":"static let maximumNumberOfChannels: UInt32","type":"property"}],"path":"\/documentation\/haishinkit\/audiocodecsettings","title":"AudioCodecSettings","type":"struct"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httprequest\/body","title":"var body: Data?","type":"property"},{"path":"\/documentation\/haishinkit\/httprequest\/headerfields","title":"var headerFields: [String : String]","type":"property"},{"path":"\/documentation\/haishinkit\/httprequest\/method","title":"var method: String","type":"property"},{"path":"\/documentation\/haishinkit\/httprequest\/uri","title":"var uri: String","type":"property"},{"path":"\/documentation\/haishinkit\/httprequest\/version","title":"var version: String","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httprequest\/separator","title":"static let separator: UInt8","type":"property"}],"path":"\/documentation\/haishinkit\/httprequest","title":"HTTPRequest","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httpresponse\/init(dictionaryliteral:)","title":"init(dictionaryLiteral: (String, String)...)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/httpresponse\/body","title":"var body: Data?","type":"property"},{"path":"\/documentation\/haishinkit\/httpresponse\/headerfields","title":"var headerFields: [String : String]","type":"property"},{"path":"\/documentation\/haishinkit\/httpresponse\/statuscode","title":"var statusCode: String","type":"property"},{"path":"\/documentation\/haishinkit\/httpresponse\/version","title":"var version: String","type":"property"}],"path":"\/documentation\/haishinkit\/httpresponse","title":"HTTPResponse","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/init(from:)","title":"init(from: Decoder) throws","type":"init"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/init(mode:cornerradius:regionofinterest:direction:)","title":"init(mode: MultiCamCaptureSettings.Mode, cornerRadius: CGFloat, regionOfInterest: CGRect, direction: ImageTransform)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/cornerradius","title":"let cornerRadius: CGFloat","type":"property"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/direction","title":"let direction: ImageTransform","type":"property"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.property","title":"let mode: MultiCamCaptureSettings.Mode","type":"property"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/regionofinterest","title":"let regionOfInterest: CGRect","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/default","title":"static let `default`: MultiCamCaptureSettings","type":"property"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/pip","title":"case pip","type":"case"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/splitview","title":"case splitView","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/init(from:)","title":"init(from: Decoder) throws","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/encode(to:)","title":"func encode(to: Encoder) throws","type":"method"},{"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/multicamcapturesettings\/mode-swift.enum","title":"MultiCamCaptureSettings.Mode","type":"enum"}],"path":"\/documentation\/haishinkit\/multicamcapturesettings","title":"MultiCamCaptureSettings","type":"struct"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstreaminfo\/bytecount","title":"var byteCount: Atomic","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstreaminfo\/currentbytespersecond","title":"var currentBytesPerSecond: Int32","type":"property"},{"path":"\/documentation\/haishinkit\/rtmpstreaminfo\/resourcename","title":"var resourceName: String?","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpstreaminfo\/debugdescription","title":"var debugDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/rtmpstreaminfo\/customdebugstringconvertible-implementations","title":"CustomDebugStringConvertible Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/rtmpstreaminfo","title":"RTMPStreamInfo","type":"struct"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/soundtransform\/pan","title":"var pan: Float","type":"property"},{"path":"\/documentation\/haishinkit\/soundtransform\/volume","title":"var volume: Float","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/soundtransform\/defaultpan","title":"static let defaultPan: Float","type":"property"},{"path":"\/documentation\/haishinkit\/soundtransform\/defaultvolume","title":"static let defaultVolume: Float","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/soundtransform\/debugdescription","title":"var debugDescription: String","type":"property"}],"path":"\/documentation\/haishinkit\/soundtransform\/customdebugstringconvertible-implementations","title":"CustomDebugStringConvertible Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/soundtransform","title":"SoundTransform","type":"struct"},{"children":[{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/vtsessionoption\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/haishinkit\/vtsessionoption\/==(_:_:)","title":"static func == (VTSessionOption, VTSessionOption) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/vtsessionoption\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/vtsessionoption\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/vtsessionoption\/hashable-implementations","title":"Hashable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/vtsessionoption","title":"VTSessionOption","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/init(from:)","title":"init(from: Decoder) throws","type":"init"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/init(videosize:profilelevel:bitrate:maxkeyframeintervalduration:scalingmode:bitratemode:allowframereordering:ishardwareencoderenabled:)","title":"init(videoSize: CGSize, profileLevel: String, bitRate: UInt32, maxKeyFrameIntervalDuration: Int32, scalingMode: VideoCodecSettings.ScalingMode, bitRateMode: VideoCodecSettings.BitRateMode, allowFrameReordering: Bool?, isHardwareEncoderEnabled: Bool)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/allowframereordering","title":"var allowFrameReordering: Bool?","type":"property"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitrate","title":"var bitRate: UInt32","type":"property"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.property","title":"var bitRateMode: VideoCodecSettings.BitRateMode","type":"property"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/ishardwareencoderenabled","title":"var isHardwareEncoderEnabled: Bool","type":"property"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/maxkeyframeintervalduration","title":"var maxKeyFrameIntervalDuration: Int32","type":"property"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/profilelevel","title":"var profileLevel: String","type":"property"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.property","title":"var scalingMode: VideoCodecSettings.ScalingMode","type":"property"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/videosize","title":"var videoSize: CGSize","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/default","title":"static let `default`: VideoCodecSettings","type":"property"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/average","title":"case average","type":"case"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/constant","title":"case constant","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/init(from:)","title":"init(from: Decoder) throws","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/encode(to:)","title":"func encode(to: Encoder) throws","type":"method"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/videocodecsettings\/bitratemode-swift.enum","title":"VideoCodecSettings.BitRateMode","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/cropsourcetocleanaperture","title":"case cropSourceToCleanAperture","type":"case"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/letterbox","title":"case letterbox","type":"case"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/normal","title":"case normal","type":"case"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/trim","title":"case trim","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/init(from:)","title":"init(from: Decoder) throws","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/encode(to:)","title":"func encode(to: Encoder) throws","type":"method"},{"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/videocodecsettings\/scalingmode-swift.enum","title":"VideoCodecSettings.ScalingMode","type":"enum"}],"path":"\/documentation\/haishinkit\/videocodecsettings","title":"VideoCodecSettings","type":"struct"},{"title":"Variables","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/kasundefined","title":"let kASUndefined: ASUndefined","type":"var"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/asobject","title":"ASObject","type":"typealias"},{"path":"\/documentation\/haishinkit\/avcodecdelegate","title":"AVCodecDelegate","type":"typealias"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/deviceutil\/device(withlocalizedname:mediatype:)","title":"static func device(withLocalizedName: String, mediaType: AVMediaType) -> AVCaptureDevice?","type":"method"}],"path":"\/documentation\/haishinkit\/deviceutil","title":"DeviceUtil","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/imagetransform\/east","title":"case east","type":"case"},{"path":"\/documentation\/haishinkit\/imagetransform\/north","title":"case north","type":"case"},{"path":"\/documentation\/haishinkit\/imagetransform\/south","title":"case south","type":"case"},{"path":"\/documentation\/haishinkit\/imagetransform\/west","title":"case west","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/imagetransform\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/imagetransform\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/imagetransform\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/imagetransform\/init(from:)","title":"init(from: Decoder) throws","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/imagetransform\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/imagetransform\/encode(to:)","title":"func encode(to: Encoder) throws","type":"method"},{"path":"\/documentation\/haishinkit\/imagetransform\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/imagetransform\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/imagetransform","title":"ImageTransform","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/amf0","title":"case amf0","type":"case"},{"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/amf3","title":"case amf3","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/init(rawvalue:)","title":"init?(rawValue: UInt8)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/haishinkit\/rtmpobjectencoding\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/rtmpobjectencoding","title":"RTMPObjectEncoding","type":"enum"},{"title":"Extended Modules","type":"groupMarker"},{"children":[{"title":"Extended Structures","type":"groupMarker"},{"children":[{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/==(_:_:)","title":"static func == (AudioStreamBasicDescription, AudioStreamBasicDescription) -> Bool","type":"op"}],"path":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/haishinkit\/coreaudiotypes\/audiostreambasicdescription","title":"AudioStreamBasicDescription","type":"extension"}],"path":"\/documentation\/haishinkit\/coreaudiotypes","title":"CoreAudioTypes","type":"extension"}],"path":"\/documentation\/haishinkit","title":"HaishinKit","type":"module"}]},"schemaVersion":{"major":0,"minor":1,"patch":1}} \ No newline at end of file diff --git a/docs/js/chunk-2d0d3105.cd72cc8e.js b/docs/js/chunk-2d0d3105.cd72cc8e.js deleted file mode 100644 index 74345f0cb..000000000 --- a/docs/js/chunk-2d0d3105.cd72cc8e.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0d3105"],{"5abe":function(t,e){(function(){"use strict";if("object"===typeof window)if("IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&"intersectionRatio"in window.IntersectionObserverEntry.prototype)"isIntersecting"in window.IntersectionObserverEntry.prototype||Object.defineProperty(window.IntersectionObserverEntry.prototype,"isIntersecting",{get:function(){return this.intersectionRatio>0}});else{var t=function(t){var e=t,n=i(e);while(n)e=n.ownerDocument,n=i(e);return e}(window.document),e=[],n=null,o=null;s.prototype.THROTTLE_TIMEOUT=100,s.prototype.POLL_INTERVAL=null,s.prototype.USE_MUTATION_OBSERVER=!0,s._setupCrossOriginUpdater=function(){return n||(n=function(t,n){o=t&&n?g(t,n):p(),e.forEach((function(t){t._checkForIntersections()}))}),n},s._resetCrossOriginUpdater=function(){n=null,o=null},s.prototype.observe=function(t){var e=this._observationTargets.some((function(e){return e.element==t}));if(!e){if(!t||1!=t.nodeType)throw new Error("target must be an Element");this._registerInstance(),this._observationTargets.push({element:t,entry:null}),this._monitorIntersections(t.ownerDocument),this._checkForIntersections()}},s.prototype.unobserve=function(t){this._observationTargets=this._observationTargets.filter((function(e){return e.element!=t})),this._unmonitorIntersections(t.ownerDocument),0==this._observationTargets.length&&this._unregisterInstance()},s.prototype.disconnect=function(){this._observationTargets=[],this._unmonitorAllIntersections(),this._unregisterInstance()},s.prototype.takeRecords=function(){var t=this._queuedEntries.slice();return this._queuedEntries=[],t},s.prototype._initThresholds=function(t){var e=t||[0];return Array.isArray(e)||(e=[e]),e.sort().filter((function(t,e,n){if("number"!=typeof t||isNaN(t)||t<0||t>1)throw new Error("threshold must be a number between 0 and 1 inclusively");return t!==n[e-1]}))},s.prototype._parseRootMargin=function(t){var e=t||"0px",n=e.split(/\s+/).map((function(t){var e=/^(-?\d*\.?\d+)(px|%)$/.exec(t);if(!e)throw new Error("rootMargin must be specified in pixels or percent");return{value:parseFloat(e[1]),unit:e[2]}}));return n[1]=n[1]||n[0],n[2]=n[2]||n[0],n[3]=n[3]||n[1],n},s.prototype._monitorIntersections=function(e){var n=e.defaultView;if(n&&-1==this._monitoringDocuments.indexOf(e)){var o=this._checkForIntersections,r=null,s=null;this.POLL_INTERVAL?r=n.setInterval(o,this.POLL_INTERVAL):(c(n,"resize",o,!0),c(e,"scroll",o,!0),this.USE_MUTATION_OBSERVER&&"MutationObserver"in n&&(s=new n.MutationObserver(o),s.observe(e,{attributes:!0,childList:!0,characterData:!0,subtree:!0}))),this._monitoringDocuments.push(e),this._monitoringUnsubscribes.push((function(){var t=e.defaultView;t&&(r&&t.clearInterval(r),a(t,"resize",o,!0)),a(e,"scroll",o,!0),s&&s.disconnect()}));var h=this.root&&(this.root.ownerDocument||this.root)||t;if(e!=h){var u=i(e);u&&this._monitorIntersections(u.ownerDocument)}}},s.prototype._unmonitorIntersections=function(e){var n=this._monitoringDocuments.indexOf(e);if(-1!=n){var o=this.root&&(this.root.ownerDocument||this.root)||t,r=this._observationTargets.some((function(t){var n=t.element.ownerDocument;if(n==e)return!0;while(n&&n!=o){var r=i(n);if(n=r&&r.ownerDocument,n==e)return!0}return!1}));if(!r){var s=this._monitoringUnsubscribes[n];if(this._monitoringDocuments.splice(n,1),this._monitoringUnsubscribes.splice(n,1),s(),e!=o){var h=i(e);h&&this._unmonitorIntersections(h.ownerDocument)}}}},s.prototype._unmonitorAllIntersections=function(){var t=this._monitoringUnsubscribes.slice(0);this._monitoringDocuments.length=0,this._monitoringUnsubscribes.length=0;for(var e=0;e=0&&h>=0&&{top:n,bottom:o,left:i,right:r,width:s,height:h}||null}function f(t){var e;try{e=t.getBoundingClientRect()}catch(n){}return e?(e.width&&e.height||(e={top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:e.right-e.left,height:e.bottom-e.top}),e):p()}function p(){return{top:0,bottom:0,left:0,right:0,width:0,height:0}}function d(t){return!t||"x"in t?t:{top:t.top,y:t.top,bottom:t.bottom,left:t.left,x:t.left,right:t.right,width:t.width,height:t.height}}function g(t,e){var n=e.top-t.top,o=e.left-t.left;return{top:n,left:o,height:e.height,width:e.width,bottom:n+e.height,right:o+e.width}}function m(t,e){var n=e;while(n){if(n==t)return!0;n=v(n)}return!1}function v(e){var n=e.parentNode;return 9==e.nodeType&&e!=t?i(e):(n&&n.assignedSlot&&(n=n.assignedSlot.parentNode),n&&11==n.nodeType&&n.host?n.host:n)}function w(t){return t&&9===t.nodeType}})()}}]); \ No newline at end of file diff --git a/docs/js/chunk-c0335d80.76a68cc5.js b/docs/js/chunk-c0335d80.76a68cc5.js deleted file mode 100644 index f4f01b7aa..000000000 --- a/docs/js/chunk-c0335d80.76a68cc5.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-c0335d80"],{"00b4":function(e,t,n){"use strict";var a,r,i,o,s,c,l,d,p=n("7b1f"),u={name:"ChangedToken",render(e){const{kind:t,tokens:n}=this;return e("span",{class:["token-"+t,"token-changed"]},n.map(t=>e(D,{props:t})))},props:{kind:{type:String,required:!0},tokens:{type:Array,required:!0}}},f=u,m=n("2877"),h=Object(m["a"])(f,a,r,!1,null,null,null),b=h.exports,g=n("86d8"),v=n("2f34"),y={name:"LinkableToken",mixins:[v["a"]],render(e){const t=this.references[this.identifier];return t&&t.url?e(g["a"],{props:{url:t.url,kind:t.kind,role:t.role}},this.$slots.default):e("span",{},this.$slots.default)},props:{identifier:{type:String,required:!0,default:()=>""}}},k=y,C=Object(m["a"])(k,i,o,!1,null,null,null),_=C.exports,x={name:"RawText",render(e){const{_v:t=(t=>e("span",t)),text:n}=this;return t(n)},props:{text:{type:String,required:!0}}},O=x,B=Object(m["a"])(O,s,c,!1,null,null,null),T=B.exports,S={name:"SyntaxToken",render(e){return e("span",{class:"token-"+this.kind},this.text)},props:{kind:{type:String,required:!0},text:{type:String,required:!0}}},I=S,$=Object(m["a"])(I,l,d,!1,null,null,null),j=$.exports;const q={attribute:"attribute",externalParam:"externalParam",genericParameter:"genericParameter",identifier:"identifier",internalParam:"internalParam",keyword:"keyword",label:"label",number:"number",string:"string",text:"text",typeIdentifier:"typeIdentifier",added:"added",removed:"removed"};var w,A,P={name:"DeclarationToken",render(e){const{kind:t,text:n,tokens:a}=this;switch(t){case q.text:{const t={text:n};return e(T,{props:t})}case q.typeIdentifier:{const t={identifier:this.identifier};return e(_,{class:"type-identifier-link",props:t},[e(p["a"],n)])}case q.attribute:{const{identifier:a}=this;return a?e(_,{class:"attribute-link",props:{identifier:a}},[e(p["a"],n)]):e(j,{props:{kind:t,text:n}})}case q.added:case q.removed:return e(b,{props:{tokens:a,kind:t}});default:{const a={kind:t,text:n};return e(j,{props:a})}}},constants:{TokenKind:q},props:{kind:{type:String,required:!0},identifier:{type:String,required:!1},text:{type:String,required:!1},tokens:{type:Array,required:!1,default:()=>[]}}},F=P,z=(n("8f34"),Object(m["a"])(F,w,A,!1,null,"3fd63d6c",null)),D=t["a"]=z.exports},"2a18":function(e,t,n){"use strict";n.r(t);var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"link-block",class:e.linkBlockClasses},[n(e.linkComponent,e._b({ref:"apiChangesDiff",tag:"component",staticClass:"link",class:e.linkClasses},"component",e.linkProps,!1),[e.topic.role&&!e.change?n("TopicLinkBlockIcon",{attrs:{role:e.topic.role,imageOverride:e.references[e.iconOverride]}}):e._e(),e.topic.fragments?n("DecoratedTopicTitle",{attrs:{tokens:e.topic.fragments}}):n("WordBreak",{attrs:{tag:e.titleTag}},[e._v(e._s(e.topic.title))]),e.change?n("span",{staticClass:"visuallyhidden"},[e._v("- "+e._s(e.$t(e.changeName)))]):e._e()],1),e.hasAbstractElements?n("div",{staticClass:"abstract"},[e.topic.abstract?n("ContentNode",{attrs:{content:e.topic.abstract}}):e._e(),e.topic.ideTitle?n("div",{staticClass:"topic-keyinfo"},[e.topic.titleStyle===e.titleStyles.title?[n("strong",[e._v("Key:")]),e._v(" "+e._s(e.topic.name)+" ")]:e.topic.titleStyle===e.titleStyles.symbol?[n("strong",[e._v("Name:")]),e._v(" "+e._s(e.topic.ideTitle)+" ")]:e._e()],2):e._e(),e.topic.required||e.topic.defaultImplementations?n("RequirementMetadata",{staticClass:"topic-required",attrs:{defaultImplementationsCount:e.topic.defaultImplementations}}):e._e(),e.topic.conformance?n("ConditionalConstraints",{attrs:{constraints:e.topic.conformance.constraints,prefix:e.topic.conformance.availabilityPrefix}}):e._e()],1):e._e(),e.showDeprecatedBadge?n("Badge",{attrs:{variant:"deprecated"}}):e.showBetaBadge?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.tags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)},r=[],i=n("66cd"),o=n("d26a"),s=n("a0fd"),c=n("7b1f"),l=n("6359"),d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.imageOverride||e.icon?n("div",{staticClass:"topic-icon-wrapper"},[e.imageOverride?n("OverridableAsset",{staticClass:"topic-icon",attrs:{imageOverride:e.imageOverride}}):e.icon?n(e.icon,{tag:"component",staticClass:"topic-icon"}):e._e()],1):e._e()},p=[],u=n("a9f1"),f=n("3b96"),m=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"api-reference-icon",attrs:{viewBox:"0 0 14 14",themeId:"api-reference"}},[n("title",[e._v(e._s(e.$t("api-reference")))]),n("path",{attrs:{d:"m1 1v12h12v-12zm11 11h-10v-10h10z"}}),n("path",{attrs:{d:"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 4h8v1h-8z"}}),n("path",{attrs:{d:"m3 6.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 9h8v1h-8z"}})])},h=[],b=n("be08"),g={name:"APIReferenceIcon",components:{SVGIcon:b["a"]}},v=g,y=n("2877"),k=Object(y["a"])(v,m,h,!1,null,null,null),C=k.exports,_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",themeId:"endpoint"}},[n("title",[e._v(e._s(e.$t("icons.web-service-endpoint")))]),n("path",{attrs:{d:"M4.052 8.737h-1.242l-1.878 5.263h1.15l0.364-1.081h1.939l0.339 1.081h1.193zM2.746 12.012l0.678-2.071 0.653 2.071z"}}),n("path",{attrs:{d:"M11.969 8.737h1.093v5.263h-1.093v-5.263z"}}),n("path",{attrs:{d:"M9.198 8.737h-2.295v5.263h1.095v-1.892h1.12c0.040 0.003 0.087 0.004 0.134 0.004 0.455 0 0.875-0.146 1.217-0.394l-0.006 0.004c0.296-0.293 0.48-0.699 0.48-1.148 0-0.060-0.003-0.118-0.010-0.176l0.001 0.007c0.003-0.039 0.005-0.085 0.005-0.131 0-0.442-0.183-0.842-0.476-1.128l-0-0c-0.317-0.256-0.724-0.41-1.168-0.41-0.034 0-0.069 0.001-0.102 0.003l0.005-0zM9.628 11.014c-0.15 0.118-0.341 0.188-0.548 0.188-0.020 0-0.040-0.001-0.060-0.002l0.003 0h-1.026v-1.549h1.026c0.017-0.001 0.037-0.002 0.058-0.002 0.206 0 0.396 0.066 0.551 0.178l-0.003-0.002c0.135 0.13 0.219 0.313 0.219 0.515 0 0.025-0.001 0.050-0.004 0.074l0-0.003c0.002 0.020 0.003 0.044 0.003 0.068 0 0.208-0.083 0.396-0.219 0.534l0-0z"}}),n("path",{attrs:{d:"M13.529 4.981c0-1.375-1.114-2.489-2.489-2.49h-0l-0.134 0.005c-0.526-1.466-1.903-2.496-3.522-2.496-0.892 0-1.711 0.313-2.353 0.835l0.007-0.005c-0.312-0.243-0.709-0.389-1.14-0.389-1.030 0-1.865 0.834-1.866 1.864v0c0 0.001 0 0.003 0 0.004 0 0.123 0.012 0.242 0.036 0.358l-0.002-0.012c-0.94 0.37-1.593 1.27-1.593 2.323 0 1.372 1.11 2.485 2.482 2.49h8.243c1.306-0.084 2.333-1.164 2.333-2.484 0-0.001 0-0.002 0-0.003v0zM11.139 6.535h-8.319c-0.799-0.072-1.421-0.739-1.421-1.551 0-0.659 0.41-1.223 0.988-1.45l0.011-0.004 0.734-0.28-0.148-0.776-0.012-0.082v-0.088c0-0 0-0.001 0-0.001 0-0.515 0.418-0.933 0.933-0.933 0.216 0 0.416 0.074 0.574 0.197l-0.002-0.002 0.584 0.453 0.575-0.467 0.169-0.127c0.442-0.306 0.991-0.489 1.581-0.489 1.211 0 2.243 0.769 2.633 1.846l0.006 0.019 0.226 0.642 0.814-0.023 0.131 0.006c0.805 0.067 1.432 0.736 1.432 1.552 0 0.836-0.659 1.518-1.486 1.556l-0.003 0z"}})])},x=[],O={name:"EndpointIcon",components:{SVGIcon:b["a"]}},B=O,T=Object(y["a"])(B,_,x,!1,null,null,null),S=T.exports,I=n("a295"),$=n("3024"),j=n("8d2d"),q=n("fdd9");const w={[i["a"].article]:u["a"],[i["a"].collection]:$["a"],[i["a"].collectionGroup]:C,[i["a"].learn]:I["a"],[i["a"].overview]:I["a"],[i["a"].project]:j["a"],[i["a"].tutorial]:j["a"],[i["a"].resources]:I["a"],[i["a"].sampleCode]:f["a"],[i["a"].restRequestSymbol]:S};var A={components:{OverridableAsset:q["a"],SVGIcon:b["a"]},props:{role:{type:String,required:!0},imageOverride:{type:Object,default:null}},computed:{icon:({role:e})=>w[e]}},P=A,F=(n("d94b"),Object(y["a"])(P,d,p,!1,null,"03cf3183",null)),z=F.exports,D=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("code",{staticClass:"decorated-title"},e._l(e.tokens,(function(t,a){return n(e.componentFor(t),{key:a,tag:"component",class:[e.classFor(t),e.emptyTokenClass(t)]},[e._v(e._s(t.text))])})),1)},N=[],E=n("00b4");const{TokenKind:M}=E["a"].constants,V={decorator:"decorator",identifier:"identifier",label:"label"};var L={name:"DecoratedTopicTitle",components:{WordBreak:c["a"]},props:{tokens:{type:Array,required:!0,default:()=>[]}},constants:{TokenKind:M},methods:{emptyTokenClass:({text:e})=>({"empty-token":" "===e}),classFor({kind:e}){switch(e){case M.externalParam:case M.identifier:return V.identifier;case M.label:return V.label;default:return V.decorator}},componentFor(e){return/^\s+$/.test(e.text)?"span":c["a"]}}},R=L,W=(n("dcf6"),Object(y["a"])(R,D,N,!1,null,"06ec7395",null)),G=W.exports,K=n("64cf"),H=n("e8ea"),J=n("5d59"),X=n("2f34");const Q={article:"article",symbol:"symbol"},U={title:"title",symbol:"symbol"},Y={link:"link"};var Z={name:"TopicsLinkBlock",components:{Badge:s["a"],WordBreak:c["a"],ContentNode:l["a"],TopicLinkBlockIcon:z,DecoratedTopicTitle:G,RequirementMetadata:H["a"],ConditionalConstraints:K["a"]},mixins:[J["b"],J["a"],X["a"]],constants:{ReferenceType:Y,TopicKind:Q,TitleStyles:U},props:{isSymbolBeta:Boolean,isSymbolDeprecated:Boolean,topic:{type:Object,required:!0,validator:e=>(!("abstract"in e)||Array.isArray(e.abstract))&&"string"===typeof e.identifier&&(e.type===Y.link&&!e.kind||"string"===typeof e.kind)&&(e.type===Y.link&&!e.role||"string"===typeof e.role)&&"string"===typeof e.title&&"string"===typeof e.url&&(!("defaultImplementations"in e)||"number"===typeof e.defaultImplementations)&&(!("required"in e)||"boolean"===typeof e.required)&&(!("conformance"in e)||"object"===typeof e.conformance)}},data(){return{state:this.store.state}},computed:{linkComponent:({topic:e})=>e.type===Y.link?"a":"router-link",linkProps({topic:e}){const t=Object(o["b"])(e.url,this.$route.query);return e.type===Y.link?{href:t}:{to:t}},linkBlockClasses:({changesClasses:e,hasAbstractElements:t,displaysMultipleLinesAfterAPIChanges:n,multipleLinesClass:a})=>({"has-inline-element":!t,[a]:n,...!t&&e}),linkClasses:({changesClasses:e,deprecated:t,hasAbstractElements:n})=>({deprecated:t,"has-adjacent-elements":n,...n&&e}),changesClasses:({getChangesClasses:e,change:t})=>e(t),titleTag({topic:e}){if(e.titleStyle===U.title)return e.ideTitle?"span":"code";if(e.role&&(e.role===i["a"].collection||e.role===i["a"].dictionarySymbol))return"span";switch(e.kind){case Q.symbol:return"code";default:return"span"}},titleStyles:()=>U,deprecated:({showDeprecatedBadge:e,topic:t})=>e||t.deprecated,showBetaBadge:({topic:e,isSymbolBeta:t})=>Boolean(!t&&e.beta),showDeprecatedBadge:({topic:e,isSymbolDeprecated:t})=>Boolean(!t&&e.deprecated),change({topic:{identifier:e},state:{apiChanges:t}}){return this.changeFor(e,t)},changeName:({change:e,getChangeName:t})=>t(e),hasAbstractElements:({topic:{abstract:e,conformance:t,required:n,defaultImplementations:a}}={})=>e&&e.length>0||t||n||a,tags:({topic:e})=>(e.tags||[]).slice(0,1),iconOverride:({topic:{images:e=[]}})=>{const t=e.find(({type:e})=>"icon"===e);return t?t.identifier:null}}},ee=Z,te=(n("8d8f8"),Object(y["a"])(ee,a,r,!1,null,"52205924",null));t["default"]=te.exports},"2f04":function(e,t,n){},4782:function(e,t,n){},4918:function(e,t,n){},"5d59":function(e,t,n){"use strict";n.d(t,"a",(function(){return c})),n.d(t,"b",(function(){return l}));var a=n("b5cf"),r=n("9055"),i=n("beb1");const o="latest_",s={xcode:{value:"xcode",label:"Xcode"},other:{value:"other",label:"Other"}},c={constants:{multipleLinesClass:r["a"]},data(){return{multipleLinesClass:r["a"]}},computed:{displaysMultipleLinesAfterAPIChanges:({change:e,changeType:t,$refs:n})=>!(!e&&!t)&&Object(i["a"])(n.apiChangesDiff)}},l={methods:{toVersionRange({platform:e,versions:t}){return`${e} ${t[0]} – ${e} ${t[1]}`},toOptionValue:e=>`${o}${e}`,toScope:e=>e.slice(o.length,e.length),getOptionsForDiffAvailability(e={}){return this.getOptionsForDiffAvailabilities([e])},getOptionsForDiffAvailabilities(e=[]){const t=e.reduce((e,t={})=>Object.keys(t).reduce((e,n)=>({...e,[n]:(e[n]||[]).concat(t[n])}),e),{}),n=Object.keys(t),a=n.reduce((e,n)=>{const a=t[n];return{...e,[n]:a.find(e=>e.platform===s.xcode.label)||a[0]}},{}),r=e=>({label:this.toVersionRange(a[e]),value:this.toOptionValue(e),platform:a[e].platform}),{sdk:i,beta:o,minor:c,major:l,...d}=a,p=[].concat(i?r("sdk"):[]).concat(o?r("beta"):[]).concat(c?r("minor"):[]).concat(l?r("major"):[]).concat(Object.keys(d).map(r));return this.splitOptionsPerPlatform(p)},changesClassesFor(e,t){const n=this.changeFor(e,t);return this.getChangesClasses(n)},getChangesClasses:e=>({["changed changed-"+e]:!!e}),changeFor(e,t){const{change:n}=(t||{})[e]||{};return n},splitOptionsPerPlatform(e){return e.reduce((e,t)=>{const n=t.platform===s.xcode.label?s.xcode.value:s.other.value;return e[n].push(t),e},{[s.xcode.value]:[],[s.other.value]:[]})},getChangeName(e){return a["b"][e]}},computed:{availableOptions({diffAvailability:e={},toOptionValue:t}){return new Set(Object.keys(e).map(t))}}}},6359:function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",e._b({},"BaseContentNode",e.$props,!1))},r=[],i=n("5677"),o={name:"ContentNode",components:{BaseContentNode:i["default"]},props:i["default"].props,methods:i["default"].methods,BlockType:i["default"].BlockType,InlineType:i["default"].InlineType},s=o,c=(n("958a"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"20945666",null);t["a"]=l.exports},"64cf":function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",{staticClass:"conditional-constraints",attrs:{content:e.content}})},r=[],i=n("6359"),o={name:"ConditionalConstraints",components:{ContentNode:i["a"]},props:{constraints:i["a"].props.content,prefix:i["a"].props.content},computed:{content:({constraints:e,prefix:t,space:n})=>t.concat(n).concat(e),space:()=>({type:i["a"].InlineType.text,text:" "})}},s=o,c=(n("918a"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"1548fd90",null);t["a"]=l.exports},"686d":function(e,t,n){},"8d74":function(e,t,n){},"8d8f8":function(e,t,n){"use strict";n("4918")},"8f34":function(e,t,n){"use strict";n("686d")},9055:function(e,t,n){"use strict";n.d(t,"a",(function(){return a}));const a="displays-multiple-lines"},"918a":function(e,t,n){"use strict";n("a2b5")},"94ca":function(e,t,n){"use strict";n("4782")},"958a":function(e,t,n){"use strict";n("8d74")},a0fd:function(e,t,n){"use strict";var a=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a("span",{staticClass:"badge",class:(e={},e["badge-"+t.variant]=t.variant,e),attrs:{role:"presentation"}},[t._t("default",(function(){return[t._v(t._s(t.text?t.$t(t.text):""))]}))],2)},r=[];const i={beta:"aside-kind.beta",deprecated:"aside-kind.deprecated"};var o={name:"Badge",props:{variant:{type:String,default:()=>""}},computed:{text:({variant:e})=>i[e]}},s=o,c=(n("94ca"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"8d6893ae",null);t["a"]=l.exports},a2b5:function(e,t,n){},b5cf:function(e,t,n){"use strict";n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return r})),n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}));const a={added:"added",modified:"modified",deprecated:"deprecated"},r=[a.modified,a.added,a.deprecated],i={[a.modified]:"change-type.modified",[a.added]:"change-type.added",[a.deprecated]:"change-type.deprecated"},o={"change-type.modified":a.modified,"change-type.added":a.added,"change-type.deprecated":a.deprecated}},beb1:function(e,t,n){"use strict";function a(e){if(!e)return!1;const t=window.getComputedStyle(e.$el||e),n=(e.$el||e).offsetHeight,a=t.lineHeight?parseFloat(t.lineHeight):1,r=t.paddingTop?parseFloat(t.paddingTop):0,i=t.paddingBottom?parseFloat(t.paddingBottom):0,o=t.borderTopWidth?parseFloat(t.borderTopWidth):0,s=t.borderBottomWidth?parseFloat(t.borderBottomWidth):0,c=n-(r+i+o+s),l=c/a;return l>=2}n.d(t,"a",(function(){return a}))},d94b:function(e,t,n){"use strict";n("fff0")},dcf6:function(e,t,n){"use strict";n("2f04")},e8ea:function(e,t,n){"use strict";var a=function(e,t){var n=t._c;return n("p",{staticClass:"requirement-metadata",class:t.data.staticClass},[n("strong",[t._v(t._s(t.parent.$t("required")))]),t.props.defaultImplementationsCount?[t._v(" "+t._s(t.parent.$tc("metadata.default-implementation",t.props.defaultImplementationsCount))+" ")]:t._e()],2)},r=[],i={name:"RequirementMetadata",props:{defaultImplementationsCount:{type:Number,default:0}}},o=i,s=n("2877"),c=Object(s["a"])(o,a,r,!0,null,null,null);t["a"]=c.exports},fff0:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/chunk-vendors.ba2dd0cb.js b/docs/js/chunk-vendors.ba2dd0cb.js deleted file mode 100644 index 1230066f1..000000000 --- a/docs/js/chunk-vendors.ba2dd0cb.js +++ /dev/null @@ -1,26 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{2877:function(t,e,n){"use strict";function r(t,e,n,r,i,o,a,s){var c,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):i&&(c=s?function(){i.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(u.functional){u._injectStyles=c;var l=u.render;u.render=function(t,e){return c.call(e),l(t,e)}}else{var f=u.beforeCreate;u.beforeCreate=f?[].concat(f,c):[c]}return{exports:t,options:u}}n.d(e,"a",(function(){return r}))},"2b0e":function(t,e,n){"use strict";n.r(e),function(t){ -/*! - * Vue.js v2.6.14 - * (c) 2014-2021 Evan You - * Released under the MIT License. - */ -var n=Object.freeze({});function r(t){return void 0===t||null===t}function i(t){return void 0!==t&&null!==t}function o(t){return!0===t}function a(t){return!1===t}function s(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function c(t){return null!==t&&"object"===typeof t}var u=Object.prototype.toString;function l(t){return"[object Object]"===u.call(t)}function f(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function h(t){return i(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function d(t){return null==t?"":Array.isArray(t)||l(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(t,e){return _.call(t,e)}function w(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var C=/-(\w)/g,k=w((function(t){return t.replace(C,(function(t,e){return e?e.toUpperCase():""}))})),$=w((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),x=/\B([A-Z])/g,A=w((function(t){return t.replace(x,"-$1").toLowerCase()}));function O(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function S(t,e){return t.bind(e)}var T=Function.prototype.bind?S:O;function E(t,e){e=e||0;var n=t.length-e,r=new Array(n);while(n--)r[n]=t[n+e];return r}function j(t,e){for(var n in e)t[n]=e[n];return t}function F(t){for(var e={},n=0;n0,nt=Q&&Q.indexOf("edge/")>0,rt=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===Y),it=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),ot={}.watch,at=!1;if(X)try{var st={};Object.defineProperty(st,"passive",{get:function(){at=!0}}),window.addEventListener("test-passive",null,st)}catch($a){}var ct=function(){return void 0===K&&(K=!X&&!Z&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),K},ut=X&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function lt(t){return"function"===typeof t&&/native code/.test(t.toString())}var ft,pt="undefined"!==typeof Symbol&<(Symbol)&&"undefined"!==typeof Reflect&<(Reflect.ownKeys);ft="undefined"!==typeof Set&<(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ht=I,dt=0,vt=function(){this.id=dt++,this.subs=[]};vt.prototype.addSub=function(t){this.subs.push(t)},vt.prototype.removeSub=function(t){g(this.subs,t)},vt.prototype.depend=function(){vt.target&&vt.target.addDep(this)},vt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(o&&!b(i,"default"))a=!1;else if(""===a||a===A(t)){var c=ee(String,i.type);(c<0||s0&&(a=Se(a,(e||"")+"_"+n),Oe(a[0])&&Oe(u)&&(l[c]=Ct(u.text+a[0].text),a.shift()),l.push.apply(l,a)):s(a)?Oe(u)?l[c]=Ct(u.text+a):""!==a&&l.push(Ct(a)):Oe(a)&&Oe(u)?l[c]=Ct(u.text+a.text):(o(t._isVList)&&i(a.tag)&&r(a.key)&&i(e)&&(a.key="__vlist"+e+"_"+n+"__"),l.push(a)));return l}function Te(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function Ee(t){var e=je(t.$options.inject,t);e&&(Tt(!1),Object.keys(e).forEach((function(n){Lt(t,n,e[n])})),Tt(!0))}function je(t,e){if(t){for(var n=Object.create(null),r=pt?Reflect.ownKeys(t):Object.keys(t),i=0;i0,a=t?!!t.$stable:!o,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==n&&s===r.$key&&!o&&!r.$hasNormal)return r;for(var c in i={},t)t[c]&&"$"!==c[0]&&(i[c]=De(e,c,t[c]))}else i={};for(var u in e)u in i||(i[u]=Re(e,u));return t&&Object.isExtensible(t)&&(t._normalized=i),z(i,"$stable",a),z(i,"$key",s),z(i,"$hasNormal",o),i}function De(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:Ae(t);var e=t&&t[0];return t&&(!e||1===t.length&&e.isComment&&!Le(e))?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function Re(t,e){return function(){return t[e]}}function Ne(t,e){var n,r,o,a,s;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),r=0,o=t.length;r1?E(n):n;for(var r=E(arguments,1),i='event handler for "'+t+'"',o=0,a=n.length;odocument.createEvent("Event").timeStamp&&(Gn=function(){return Xn.now()})}function Zn(){var t,e;for(Kn=Gn(),zn=!0,Wn.sort((function(t,e){return t.id-e.id})),qn=0;qnqn&&Wn[n].id>t.id)n--;Wn.splice(n+1,0,t)}else Wn.push(t);Bn||(Bn=!0,ve(Zn))}}var nr=0,rr=function(t,e,n,r,i){this.vm=t,i&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++nr,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ft,this.newDepIds=new ft,this.expression="","function"===typeof e?this.getter=e:(this.getter=J(e),this.getter||(this.getter=I)),this.value=this.lazy?void 0:this.get()};rr.prototype.get=function(){var t;yt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch($a){if(!this.user)throw $a;ne($a,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ye(t),gt(),this.cleanupDeps()}return t},rr.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},rr.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},rr.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():er(this)},rr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'+this.expression+'"';re(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},rr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},rr.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},rr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var ir={enumerable:!0,configurable:!0,get:I,set:I};function or(t,e,n){ir.get=function(){return this[e][n]},ir.set=function(t){this[e][n]=t},Object.defineProperty(t,n,ir)}function ar(t){t._watchers=[];var e=t.$options;e.props&&sr(t,e.props),e.methods&&vr(t,e.methods),e.data?cr(t):It(t._data={},!0),e.computed&&fr(t,e.computed),e.watch&&e.watch!==ot&&mr(t,e.watch)}function sr(t,e){var n=t.$options.propsData||{},r=t._props={},i=t.$options._propKeys=[],o=!t.$parent;o||Tt(!1);var a=function(o){i.push(o);var a=Xt(o,e,n,t);Lt(r,o,a),o in t||or(t,"_props",o)};for(var s in e)a(s);Tt(!0)}function cr(t){var e=t.$options.data;e=t._data="function"===typeof e?ur(e,t):e||{},l(e)||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);while(i--){var o=n[i];0,r&&b(r,o)||B(o)||or(t,"_data",o)}It(e,!0)}function ur(t,e){yt();try{return t.call(e,e)}catch($a){return ne($a,e,"data()"),{}}finally{gt()}}var lr={lazy:!0};function fr(t,e){var n=t._computedWatchers=Object.create(null),r=ct();for(var i in e){var o=e[i],a="function"===typeof o?o:o.get;0,r||(n[i]=new rr(t,a||I,I,lr)),i in t||pr(t,i,o)}}function pr(t,e,n){var r=!ct();"function"===typeof n?(ir.get=r?hr(e):dr(n),ir.set=I):(ir.get=n.get?r&&!1!==n.cache?hr(e):dr(n.get):I,ir.set=n.set||I),Object.defineProperty(t,e,ir)}function hr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),vt.target&&e.depend(),e.value}}function dr(t){return function(){return t.call(this,this)}}function vr(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?I:T(e[n],t)}function mr(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var i=0;i-1)return this;var n=E(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function Ar(t){t.mixin=function(t){return this.options=Kt(this.options,t),this}}function Or(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name;var a=function(t){this._init(t)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Kt(n.options,t),a["super"]=n,a.options.props&&Sr(a),a.options.computed&&Tr(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,V.forEach((function(t){a[t]=n[t]})),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=j({},a.options),i[r]=a,a}}function Sr(t){var e=t.options.props;for(var n in e)or(t.prototype,"_props",n)}function Tr(t){var e=t.options.computed;for(var n in e)pr(t.prototype,n,e[n])}function Er(t){V.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&l(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}function jr(t){return t&&(t.Ctor.options.name||t.tag)}function Fr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function Ir(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=a.name;s&&!e(s)&&Lr(n,o,r,i)}}}function Lr(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,g(n,e)}br($r),gr($r),En($r),Ln($r),bn($r);var Mr=[String,RegExp,Array],Dr={name:"keep-alive",abstract:!0,props:{include:Mr,exclude:Mr,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,i=t.keyToCache;if(r){var o=r.tag,a=r.componentInstance,s=r.componentOptions;e[i]={name:jr(s),tag:o,componentInstance:a},n.push(i),this.max&&n.length>parseInt(this.max)&&Lr(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Lr(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){Ir(t,(function(t){return Fr(e,t)}))})),this.$watch("exclude",(function(e){Ir(t,(function(t){return!Fr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=$n(t),n=e&&e.componentOptions;if(n){var r=jr(n),i=this,o=i.include,a=i.exclude;if(o&&(!r||!Fr(o,r))||a&&r&&Fr(a,r))return e;var s=this,c=s.cache,u=s.keys,l=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;c[l]?(e.componentInstance=c[l].componentInstance,g(u,l),u.push(l)):(this.vnodeToCache=e,this.keyToCache=l),e.data.keepAlive=!0}return e||t&&t[0]}},Rr={KeepAlive:Dr};function Nr(t){var e={get:function(){return H}};Object.defineProperty(t,"config",e),t.util={warn:ht,extend:j,mergeOptions:Kt,defineReactive:Lt},t.set=Mt,t.delete=Dt,t.nextTick=ve,t.observable=function(t){return It(t),t},t.options=Object.create(null),V.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,j(t.options.components,Rr),xr(t),Ar(t),Or(t),Er(t)}Nr($r),Object.defineProperty($r.prototype,"$isServer",{get:ct}),Object.defineProperty($r.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty($r,"FunctionalRenderContext",{value:Qe}),$r.version="2.6.14";var Pr=m("style,class"),Vr=m("input,textarea,option,select,progress"),Wr=function(t,e,n){return"value"===n&&Vr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Hr=m("contenteditable,draggable,spellcheck"),Ur=m("events,caret,typing,plaintext-only"),Br=function(t,e){return Gr(e)||"false"===e?"false":"contenteditable"===t&&Ur(e)?e:"true"},zr=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),qr="http://www.w3.org/1999/xlink",Jr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Kr=function(t){return Jr(t)?t.slice(6,t.length):""},Gr=function(t){return null==t||!1===t};function Xr(t){var e=t.data,n=t,r=t;while(i(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(e=Zr(r.data,e));while(i(n=n.parent))n&&n.data&&(e=Zr(e,n.data));return Yr(e.staticClass,e.class)}function Zr(t,e){return{staticClass:Qr(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Yr(t,e){return i(t)||i(e)?Qr(t,ti(e)):""}function Qr(t,e){return t?e?t+" "+e:t:e||""}function ti(t){return Array.isArray(t)?ei(t):c(t)?ni(t):"string"===typeof t?t:""}function ei(t){for(var e,n="",r=0,o=t.length;r-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())}var li=m("text,number,password,search,email,tel,url");function fi(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function pi(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n}function hi(t,e){return document.createElementNS(ri[t],e)}function di(t){return document.createTextNode(t)}function vi(t){return document.createComment(t)}function mi(t,e,n){t.insertBefore(e,n)}function yi(t,e){t.removeChild(e)}function gi(t,e){t.appendChild(e)}function _i(t){return t.parentNode}function bi(t){return t.nextSibling}function wi(t){return t.tagName}function Ci(t,e){t.textContent=e}function ki(t,e){t.setAttribute(e,"")}var $i=Object.freeze({createElement:pi,createElementNS:hi,createTextNode:di,createComment:vi,insertBefore:mi,removeChild:yi,appendChild:gi,parentNode:_i,nextSibling:bi,tagName:wi,setTextContent:Ci,setStyleScope:ki}),xi={create:function(t,e){Ai(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ai(t,!0),Ai(e))},destroy:function(t){Ai(t,!0)}};function Ai(t,e){var n=t.data.ref;if(i(n)){var r=t.context,o=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],o):a[n]===o&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var Oi=new _t("",{},[]),Si=["create","activate","update","remove","destroy"];function Ti(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&i(t.data)===i(e.data)&&Ei(t,e)||o(t.isAsyncPlaceholder)&&r(e.asyncFactory.error))}function Ei(t,e){if("input"!==t.tag)return!0;var n,r=i(n=t.data)&&i(n=n.attrs)&&n.type,o=i(n=e.data)&&i(n=n.attrs)&&n.type;return r===o||li(r)&&li(o)}function ji(t,e,n){var r,o,a={};for(r=e;r<=n;++r)o=t[r].key,i(o)&&(a[o]=r);return a}function Fi(t){var e,n,a={},c=t.modules,u=t.nodeOps;for(e=0;ev?(f=r(n[g+1])?null:n[g+1].elm,k(t,f,n,d,g,o)):d>g&&x(e,p,v)}function S(t,e,n,r){for(var o=n;o-1?Ui(t,e,n):zr(e)?Gr(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Hr(e)?t.setAttribute(e,Br(e,n)):Jr(e)?Gr(n)?t.removeAttributeNS(qr,Kr(e)):t.setAttributeNS(qr,e,n):Ui(t,e,n)}function Ui(t,e,n){if(Gr(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Bi={create:Wi,update:Wi};function zi(t,e){var n=e.elm,o=e.data,a=t.data;if(!(r(o.staticClass)&&r(o.class)&&(r(a)||r(a.staticClass)&&r(a.class)))){var s=Xr(e),c=n._transitionClasses;i(c)&&(s=Qr(s,ti(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var qi,Ji={create:zi,update:zi},Ki="__r",Gi="__c";function Xi(t){if(i(t[Ki])){var e=tt?"change":"input";t[e]=[].concat(t[Ki],t[e]||[]),delete t[Ki]}i(t[Gi])&&(t.change=[].concat(t[Gi],t.change||[]),delete t[Gi])}function Zi(t,e,n){var r=qi;return function i(){var o=e.apply(null,arguments);null!==o&&to(t,i,n,r)}}var Yi=se&&!(it&&Number(it[1])<=53);function Qi(t,e,n,r){if(Yi){var i=Kn,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}qi.addEventListener(t,e,at?{capture:n,passive:r}:n)}function to(t,e,n,r){(r||qi).removeEventListener(t,e._wrapper||e,n)}function eo(t,e){if(!r(t.data.on)||!r(e.data.on)){var n=e.data.on||{},i=t.data.on||{};qi=e.elm,Xi(n),we(n,i,Qi,to,Zi,e.context),qi=void 0}}var no,ro={create:eo,update:eo};function io(t,e){if(!r(t.data.domProps)||!r(e.data.domProps)){var n,o,a=e.elm,s=t.data.domProps||{},c=e.data.domProps||{};for(n in i(c.__ob__)&&(c=e.data.domProps=j({},c)),s)n in c||(a[n]="");for(n in c){if(o=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),o===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=o;var u=r(o)?"":String(o);oo(a,u)&&(a.value=u)}else if("innerHTML"===n&&oi(a.tagName)&&r(a.innerHTML)){no=no||document.createElement("div"),no.innerHTML=""+o+"";var l=no.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(l.firstChild)a.appendChild(l.firstChild)}else if(o!==s[n])try{a[n]=o}catch($a){}}}}function oo(t,e){return!t.composing&&("OPTION"===t.tagName||ao(t,e)||so(t,e))}function ao(t,e){var n=!0;try{n=document.activeElement!==t}catch($a){}return n&&t.value!==e}function so(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var co={create:io,update:io},uo=w((function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach((function(t){if(t){var n=t.split(r);n.length>1&&(e[n[0].trim()]=n[1].trim())}})),e}));function lo(t){var e=fo(t.style);return t.staticStyle?j(t.staticStyle,e):e}function fo(t){return Array.isArray(t)?F(t):"string"===typeof t?uo(t):t}function po(t,e){var n,r={};if(e){var i=t;while(i.componentInstance)i=i.componentInstance._vnode,i&&i.data&&(n=lo(i.data))&&j(r,n)}(n=lo(t.data))&&j(r,n);var o=t;while(o=o.parent)o.data&&(n=lo(o.data))&&j(r,n);return r}var ho,vo=/^--/,mo=/\s*!important$/,yo=function(t,e,n){if(vo.test(e))t.style.setProperty(e,n);else if(mo.test(n))t.style.setProperty(A(e),n.replace(mo,""),"important");else{var r=_o(e);if(Array.isArray(n))for(var i=0,o=n.length;i-1?e.split(Co).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function $o(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Co).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";while(n.indexOf(r)>=0)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function xo(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&j(e,Ao(t.name||"v")),j(e,t),e}return"string"===typeof t?Ao(t):void 0}}var Ao=w((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Oo=X&&!et,So="transition",To="animation",Eo="transition",jo="transitionend",Fo="animation",Io="animationend";Oo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Eo="WebkitTransition",jo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Fo="WebkitAnimation",Io="webkitAnimationEnd"));var Lo=X?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Mo(t){Lo((function(){Lo(t)}))}function Do(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ko(t,e))}function Ro(t,e){t._transitionClasses&&g(t._transitionClasses,e),$o(t,e)}function No(t,e,n){var r=Vo(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===So?jo:Io,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout((function(){c0&&(n=So,l=a,f=o.length):e===To?u>0&&(n=To,l=u,f=c.length):(l=Math.max(a,u),n=l>0?a>u?So:To:null,f=n?n===So?o.length:c.length:0);var p=n===So&&Po.test(r[Eo+"Property"]);return{type:n,timeout:l,propCount:f,hasTransform:p}}function Wo(t,e){while(t.length1}function Jo(t,e){!0!==e.data.show&&Uo(e)}var Ko=X?{create:Jo,activate:Jo,remove:function(t,e){!0!==t.data.show?Bo(t,e):e()}}:{},Go=[Bi,Ji,ro,co,wo,Ko],Xo=Go.concat(Vi),Zo=Fi({nodeOps:$i,modules:Xo});et&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&oa(t,"input")}));var Yo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Ce(n,"postpatch",(function(){Yo.componentUpdated(t,e,n)})):Qo(t,e,n.context),t._vOptions=[].map.call(t.options,na)):("textarea"===n.tag||li(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ra),t.addEventListener("compositionend",ia),t.addEventListener("change",ia),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Qo(t,e,n.context);var r=t._vOptions,i=t._vOptions=[].map.call(t.options,na);if(i.some((function(t,e){return!D(t,r[e])}))){var o=t.multiple?e.value.some((function(t){return ea(t,i)})):e.value!==e.oldValue&&ea(e.value,i);o&&oa(t,"change")}}}};function Qo(t,e,n){ta(t,e,n),(tt||nt)&&setTimeout((function(){ta(t,e,n)}),0)}function ta(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(D(na(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function ea(t,e){return e.every((function(e){return!D(e,t)}))}function na(t){return"_value"in t?t._value:t.value}function ra(t){t.target.composing=!0}function ia(t){t.target.composing&&(t.target.composing=!1,oa(t.target,"input"))}function oa(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function aa(t){return!t.componentInstance||t.data&&t.data.transition?t:aa(t.componentInstance._vnode)}var sa={bind:function(t,e,n){var r=e.value;n=aa(n);var i=n.data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,Uo(n,(function(){t.style.display=o}))):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value,i=e.oldValue;if(!r!==!i){n=aa(n);var o=n.data&&n.data.transition;o?(n.data.show=!0,r?Uo(n,(function(){t.style.display=t.__vOriginalDisplay})):Bo(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}},ca={model:Yo,show:sa},ua={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function la(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?la($n(e.children)):t}function fa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[k(o)]=i[o];return e}function pa(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ha(t){while(t=t.parent)if(t.data.transition)return!0}function da(t,e){return e.key===t.key&&e.tag===t.tag}var va=function(t){return t.tag||Le(t)},ma=function(t){return"show"===t.name},ya={name:"transition",props:ua,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(va),n.length)){0;var r=this.mode;0;var i=n[0];if(ha(this.$vnode))return i;var o=la(i);if(!o)return i;if(this._leaving)return pa(t,i);var a="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?a+"comment":a+o.tag:s(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var c=(o.data||(o.data={})).transition=fa(this),u=this._vnode,l=la(u);if(o.data.directives&&o.data.directives.some(ma)&&(o.data.show=!0),l&&l.data&&!da(o,l)&&!Le(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var f=l.data.transition=j({},c);if("out-in"===r)return this._leaving=!0,Ce(f,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),pa(t,i);if("in-out"===r){if(Le(o))return u;var p,h=function(){p()};Ce(c,"afterEnter",h),Ce(c,"enterCancelled",h),Ce(f,"delayLeave",(function(t){p=t}))}}return i}}},ga=j({tag:String,moveClass:String},ua);delete ga.mode;var _a={props:ga,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var i=Fn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=fa(this),s=0;s=0&&(e=t.slice(r),t=t.slice(0,r));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}function E(t){return t.replace(/\/\//g,"/")}var j=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},F=Z,I=N,L=P,M=H,D=X,R=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function N(t,e){var n,r=[],i=0,o=0,a="",s=e&&e.delimiter||"/";while(null!=(n=R.exec(t))){var c=n[0],u=n[1],l=n.index;if(a+=t.slice(o,l),o=l+c.length,u)a+=u[1];else{var f=t[o],p=n[2],h=n[3],d=n[4],v=n[5],m=n[6],y=n[7];a&&(r.push(a),a="");var g=null!=p&&null!=f&&f!==p,_="+"===m||"*"===m,b="?"===m||"*"===m,w=n[2]||s,C=d||v;r.push({name:h||i++,prefix:p||"",delimiter:w,optional:b,repeat:_,partial:g,asterisk:!!y,pattern:C?B(C):y?".*":"[^"+U(w)+"]+?"})}}return o1||!$.length)return 0===$.length?t():t("span",{},$)}if("a"===this.tag)k.on=w,k.attrs={href:c,"aria-current":g};else{var x=st(this.$slots.default);if(x){x.isStatic=!1;var A=x.data=i({},x.data);for(var O in A.on=A.on||{},A.on){var S=A.on[O];O in w&&(A.on[O]=Array.isArray(S)?S:[S])}for(var T in w)T in A.on?A.on[T].push(w[T]):A.on[T]=_;var E=x.data.attrs=i({},x.data.attrs);E.href=c,E["aria-current"]=g}else k.on=w}return t(this.tag,k,this.$slots.default)}};function at(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function st(t){if(t)for(var e,n=0;n-1&&(s.params[f]=n.params[f]);return s.path=Q(u.path,s.params,'named route "'+c+'"'),p(u,s,a)}if(s.path){s.params={};for(var h=0;h=t.length?n():t[i]?e(t[i],(function(){r(i+1)})):r(i+1)};r(0)}var Pt={redirected:2,aborted:4,cancelled:8,duplicated:16};function Vt(t,e){return Bt(t,e,Pt.redirected,'Redirected when going from "'+t.fullPath+'" to "'+qt(e)+'" via a navigation guard.')}function Wt(t,e){var n=Bt(t,e,Pt.duplicated,'Avoided redundant navigation to current location: "'+t.fullPath+'".');return n.name="NavigationDuplicated",n}function Ht(t,e){return Bt(t,e,Pt.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Ut(t,e){return Bt(t,e,Pt.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}function Bt(t,e,n,r){var i=new Error(r);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var zt=["params","query","hash"];function qt(t){if("string"===typeof t)return t;if("path"in t)return t.path;var e={};return zt.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}function Jt(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function Kt(t,e){return Jt(t)&&t._isRouter&&(null==e||t.type===e)}function Gt(t){return function(e,n,r){var i=!1,o=0,a=null;Xt(t,(function(t,e,n,s){if("function"===typeof t&&void 0===t.cid){i=!0,o++;var c,u=te((function(e){Qt(e)&&(e=e.default),t.resolved="function"===typeof e?e:et.extend(e),n.components[s]=e,o--,o<=0&&r()})),l=te((function(t){var e="Failed to resolve async component "+s+": "+t;a||(a=Jt(t)?t:new Error(e),r(a))}));try{c=t(u,l)}catch(p){l(p)}if(c)if("function"===typeof c.then)c.then(u,l);else{var f=c.component;f&&"function"===typeof f.then&&f.then(u,l)}}})),i||r()}}function Xt(t,e){return Zt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function Zt(t){return Array.prototype.concat.apply([],t)}var Yt="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Qt(t){return t.__esModule||Yt&&"Module"===t[Symbol.toStringTag]}function te(t){var e=!1;return function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var ee=function(t,e){this.router=t,this.base=ne(e),this.current=y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function ne(t){if(!t)if(ut){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function re(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n0)){var e=this.router,n=e.options.scrollBehavior,r=Mt&&n;r&&this.listeners.push(kt());var i=function(){var n=t.current,i=pe(t.base);t.current===y&&i===t._startLocation||t.transitionTo(i,(function(t){r&&$t(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){Dt(E(r.base+t.fullPath)),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){Rt(E(r.base+t.fullPath)),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(pe(this.base)!==this.current.fullPath){var e=E(this.base+this.current.fullPath);t?Dt(e):Rt(e)}},e.prototype.getCurrentLocation=function(){return pe(this.base)},e}(ee);function pe(t){var e=window.location.pathname,n=e.toLowerCase(),r=t.toLowerCase();return!t||n!==r&&0!==n.indexOf(E(r+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var he=function(t){function e(e,n,r){t.call(this,e,n),r&&de(this.base)||ve()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Mt&&n;r&&this.listeners.push(kt());var i=function(){var e=t.current;ve()&&t.transitionTo(me(),(function(n){r&&$t(t.router,n,e,!0),Mt||_e(n.fullPath)}))},o=Mt?"popstate":"hashchange";window.addEventListener(o,i),this.listeners.push((function(){window.removeEventListener(o,i)}))}},e.prototype.push=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){ge(t.fullPath),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){_e(t.fullPath),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;me()!==e&&(t?ge(e):_e(e))},e.prototype.getCurrentLocation=function(){return me()},e}(ee);function de(t){var e=pe(t);if(!/^\/#/.test(e))return window.location.replace(E(t+"/#"+e)),!0}function ve(){var t=me();return"/"===t.charAt(0)||(_e("/"+t),!1)}function me(){var t=window.location.href,e=t.indexOf("#");return e<0?"":(t=t.slice(e+1),t)}function ye(t){var e=window.location.href,n=e.indexOf("#"),r=n>=0?e.slice(0,n):e;return r+"#"+t}function ge(t){Mt?Dt(ye(t)):window.location.hash=t}function _e(t){Mt?Rt(ye(t)):window.location.replace(ye(t))}var be=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){var t=e.current;e.index=n,e.updateRoute(r),e.router.afterHooks.forEach((function(e){e&&e(r,t)}))}),(function(t){Kt(t,Pt.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(ee),we=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=dt(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Mt&&!1!==t.fallback,this.fallback&&(e="hash"),ut||(e="abstract"),this.mode=e,e){case"history":this.history=new fe(this,t.base);break;case"hash":this.history=new he(this,t.base,this.fallback);break;case"abstract":this.history=new be(this,t.base);break;default:0}},Ce={currentRoute:{configurable:!0}};function ke(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function $e(t,e,n){var r="hash"===n?"#"+e:e;return t?E(t+"/"+r):r}we.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Ce.currentRoute.get=function(){return this.history&&this.history.current},we.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof fe||n instanceof he){var r=function(t){var r=n.current,i=e.options.scrollBehavior,o=Mt&&i;o&&"fullPath"in t&&$t(e,t,r,!1)},i=function(t){n.setupListeners(),r(t)};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},we.prototype.beforeEach=function(t){return ke(this.beforeHooks,t)},we.prototype.beforeResolve=function(t){return ke(this.resolveHooks,t)},we.prototype.afterEach=function(t){return ke(this.afterHooks,t)},we.prototype.onReady=function(t,e){this.history.onReady(t,e)},we.prototype.onError=function(t){this.history.onError(t)},we.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},we.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},we.prototype.go=function(t){this.history.go(t)},we.prototype.back=function(){this.go(-1)},we.prototype.forward=function(){this.go(1)},we.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},we.prototype.resolve=function(t,e,n){e=e||this.history.current;var r=tt(t,e,n,this),i=this.match(r,e),o=i.redirectedFrom||i.fullPath,a=this.history.base,s=$e(a,o,this.mode);return{location:r,route:i,href:s,normalizedTo:r,resolved:i}},we.prototype.getRoutes=function(){return this.matcher.getRoutes()},we.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},we.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(we.prototype,Ce),we.install=ct,we.version="3.5.2",we.isNavigationFailure=Kt,we.NavigationFailureType=Pt,we.START_LOCATION=y,ut&&window.Vue&&window.Vue.use(we),e["a"]=we},a925:function(t,e,n){"use strict"; -/*! - * vue-i18n v8.28.2 - * (c) 2022 kazuya kawaguchi - * Released under the MIT License. - */var r=["compactDisplay","currency","currencyDisplay","currencySign","localeMatcher","notation","numberingSystem","signDisplay","style","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits"],i=["dateStyle","timeStyle","calendar","localeMatcher","hour12","hourCycle","timeZone","formatMatcher","weekday","era","year","month","day","hour","minute","second","timeZoneName"];function o(t,e){"undefined"!==typeof console&&(console.warn("[vue-i18n] "+t),e&&console.warn(e.stack))}function a(t,e){"undefined"!==typeof console&&(console.error("[vue-i18n] "+t),e&&console.error(e.stack))}var s=Array.isArray;function c(t){return null!==t&&"object"===typeof t}function u(t){return"boolean"===typeof t}function l(t){return"string"===typeof t}var f=Object.prototype.toString,p="[object Object]";function h(t){return f.call(t)===p}function d(t){return null===t||void 0===t}function v(t){return"function"===typeof t}function m(){var t=[],e=arguments.length;while(e--)t[e]=arguments[e];var n=null,r=null;return 1===t.length?c(t[0])||s(t[0])?r=t[0]:"string"===typeof t[0]&&(n=t[0]):2===t.length&&("string"===typeof t[0]&&(n=t[0]),(c(t[1])||s(t[1]))&&(r=t[1])),{locale:n,params:r}}function y(t){return JSON.parse(JSON.stringify(t))}function g(t,e){if(t.delete(e))return t}function _(t){var e=[];return t.forEach((function(t){return e.push(t)})),e}function b(t,e){return!!~t.indexOf(e)}var w=Object.prototype.hasOwnProperty;function C(t,e){return w.call(t,e)}function k(t){for(var e=arguments,n=Object(t),r=1;r/g,">").replace(/"/g,""").replace(/'/g,"'")}function A(t){return null!=t&&Object.keys(t).forEach((function(e){"string"==typeof t[e]&&(t[e]=x(t[e]))})),t}function O(t){t.prototype.hasOwnProperty("$i18n")||Object.defineProperty(t.prototype,"$i18n",{get:function(){return this._i18n}}),t.prototype.$t=function(t){var e=[],n=arguments.length-1;while(n-- >0)e[n]=arguments[n+1];var r=this.$i18n;return r._t.apply(r,[t,r.locale,r._getMessages(),this].concat(e))},t.prototype.$tc=function(t,e){var n=[],r=arguments.length-2;while(r-- >0)n[r]=arguments[r+2];var i=this.$i18n;return i._tc.apply(i,[t,i.locale,i._getMessages(),this,e].concat(n))},t.prototype.$te=function(t,e){var n=this.$i18n;return n._te(t,n.locale,n._getMessages(),e)},t.prototype.$d=function(t){var e,n=[],r=arguments.length-1;while(r-- >0)n[r]=arguments[r+1];return(e=this.$i18n).d.apply(e,[t].concat(n))},t.prototype.$n=function(t){var e,n=[],r=arguments.length-1;while(r-- >0)n[r]=arguments[r+1];return(e=this.$i18n).n.apply(e,[t].concat(n))}}function S(t){function e(){this!==this.$root&&this.$options.__INTLIFY_META__&&this.$el&&this.$el.setAttribute("data-intlify",this.$options.__INTLIFY_META__)}return void 0===t&&(t=!1),t?{mounted:e}:{beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18nBridge||t.__i18n?{}:null),t.i18n)if(t.i18n instanceof At){if(t.__i18nBridge||t.__i18n)try{var e=t.i18n&&t.i18n.messages?t.i18n.messages:{},n=t.__i18nBridge||t.__i18n;n.forEach((function(t){e=k(e,JSON.parse(t))})),Object.keys(e).forEach((function(n){t.i18n.mergeLocaleMessage(n,e[n])}))}catch(c){0}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData()}else if(h(t.i18n)){var r=this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof At?this.$root.$i18n:null;if(r&&(t.i18n.root=this.$root,t.i18n.formatter=r.formatter,t.i18n.fallbackLocale=r.fallbackLocale,t.i18n.formatFallbackMessages=r.formatFallbackMessages,t.i18n.silentTranslationWarn=r.silentTranslationWarn,t.i18n.silentFallbackWarn=r.silentFallbackWarn,t.i18n.pluralizationRules=r.pluralizationRules,t.i18n.preserveDirectiveContent=r.preserveDirectiveContent),t.__i18nBridge||t.__i18n)try{var i=t.i18n&&t.i18n.messages?t.i18n.messages:{},o=t.__i18nBridge||t.__i18n;o.forEach((function(t){i=k(i,JSON.parse(t))})),t.i18n.messages=i}catch(c){0}var a=t.i18n,s=a.sharedMessages;s&&h(s)&&(t.i18n.messages=k(t.i18n.messages,s)),this._i18n=new At(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale()),r&&r.onComponentInstanceCreated(this._i18n)}else 0;else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof At?this._i18n=this.$root.$i18n:t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof At&&(this._i18n=t.parent.$i18n)},beforeMount:function(){var t=this.$options;t.i18n=t.i18n||(t.__i18nBridge||t.__i18n?{}:null),t.i18n?(t.i18n instanceof At||h(t.i18n))&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0):(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof At||t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof At)&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0)},mounted:e,beforeDestroy:function(){if(this._i18n){var t=this;this.$nextTick((function(){t._subscribing&&(t._i18n.unsubscribeDataChanging(t),delete t._subscribing),t._i18nWatcher&&(t._i18nWatcher(),t._i18n.destroyVM(),delete t._i18nWatcher),t._localeWatcher&&(t._localeWatcher(),delete t._localeWatcher)}))}}}}var T={name:"i18n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,e){var n=e.data,r=e.parent,i=e.props,o=e.slots,a=r.$i18n;if(a){var s=i.path,c=i.locale,u=i.places,l=o(),f=a.i(s,c,E(l)||u?j(l.default,u):l),p=i.tag&&!0!==i.tag||!1===i.tag?i.tag:"span";return p?t(p,n,f):f}}};function E(t){var e;for(e in t)if("default"!==e)return!1;return Boolean(e)}function j(t,e){var n=e?F(e):{};if(!t)return n;t=t.filter((function(t){return t.tag||""!==t.text.trim()}));var r=t.every(M);return t.reduce(r?I:L,n)}function F(t){return Array.isArray(t)?t.reduce(L,{}):Object.assign({},t)}function I(t,e){return e.data&&e.data.attrs&&e.data.attrs.place&&(t[e.data.attrs.place]=e),t}function L(t,e,n){return t[n]=e,t}function M(t){return Boolean(t.data&&t.data.attrs&&t.data.attrs.place)}var D,R={name:"i18n-n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},value:{type:Number,required:!0},format:{type:[String,Object]},locale:{type:String}},render:function(t,e){var n=e.props,i=e.parent,o=e.data,a=i.$i18n;if(!a)return null;var s=null,u=null;l(n.format)?s=n.format:c(n.format)&&(n.format.key&&(s=n.format.key),u=Object.keys(n.format).reduce((function(t,e){var i;return b(r,e)?Object.assign({},t,(i={},i[e]=n.format[e],i)):t}),null));var f=n.locale||a.locale,p=a._ntp(n.value,f,s,u),h=p.map((function(t,e){var n,r=o.scopedSlots&&o.scopedSlots[t.type];return r?r((n={},n[t.type]=t.value,n.index=e,n.parts=p,n)):t.value})),d=n.tag&&!0!==n.tag||!1===n.tag?n.tag:"span";return d?t(d,{attrs:o.attrs,class:o["class"],staticClass:o.staticClass},h):h}};function N(t,e,n){W(t,n)&&U(t,e,n)}function P(t,e,n,r){if(W(t,n)){var i=n.context.$i18n;H(t,n)&&$(e.value,e.oldValue)&&$(t._localeMessage,i.getLocaleMessage(i.locale))||U(t,e,n)}}function V(t,e,n,r){var i=n.context;if(i){var a=n.context.$i18n||{};e.modifiers.preserve||a.preserveDirectiveContent||(t.textContent=""),t._vt=void 0,delete t["_vt"],t._locale=void 0,delete t["_locale"],t._localeMessage=void 0,delete t["_localeMessage"]}else o("Vue instance does not exists in VNode context")}function W(t,e){var n=e.context;return n?!!n.$i18n||(o("VueI18n instance does not exists in Vue instance"),!1):(o("Vue instance does not exists in VNode context"),!1)}function H(t,e){var n=e.context;return t._locale===n.$i18n.locale}function U(t,e,n){var r,i,a=e.value,s=B(a),c=s.path,u=s.locale,l=s.args,f=s.choice;if(c||u||l)if(c){var p=n.context;t._vt=t.textContent=null!=f?(r=p.$i18n).tc.apply(r,[c,f].concat(z(u,l))):(i=p.$i18n).t.apply(i,[c].concat(z(u,l))),t._locale=p.$i18n.locale,t._localeMessage=p.$i18n.getLocaleMessage(p.$i18n.locale)}else o("`path` is required in v-t directive");else o("value type not supported")}function B(t){var e,n,r,i;return l(t)?e=t:h(t)&&(e=t.path,n=t.locale,r=t.args,i=t.choice),{path:e,locale:n,args:r,choice:i}}function z(t,e){var n=[];return t&&n.push(t),e&&(Array.isArray(e)||h(e))&&n.push(e),n}function q(t,e){void 0===e&&(e={bridge:!1}),q.installed=!0,D=t;D.version&&Number(D.version.split(".")[0]);O(D),D.mixin(S(e.bridge)),D.directive("t",{bind:N,update:P,unbind:V}),D.component(T.name,T),D.component(R.name,R);var n=D.config.optionMergeStrategies;n.i18n=function(t,e){return void 0===e?t:e}}var J=function(){this._caches=Object.create(null)};J.prototype.interpolate=function(t,e){if(!e)return[t];var n=this._caches[t];return n||(n=X(t),this._caches[t]=n),Z(n,e)};var K=/^(?:\d)+/,G=/^(?:\w)+/;function X(t){var e=[],n=0,r="";while(n0)f--,l=at,p[Y]();else{if(f=0,void 0===n)return!1;if(n=mt(n),!1===n)return!1;p[Q]()}};while(null!==l)if(u++,e=t[u],"\\"!==e||!h()){if(i=vt(e),s=ft[l],o=s[i]||s["else"]||lt,o===lt)return;if(l=o[0],a=p[o[1]],a&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===ut)return c}}var gt=function(){this._cache=Object.create(null)};gt.prototype.parsePath=function(t){var e=this._cache[t];return e||(e=yt(t),e&&(this._cache[t]=e)),e||[]},gt.prototype.getPathValue=function(t,e){if(!c(t))return null;var n=this.parsePath(e);if(0===n.length)return null;var r=n.length,i=t,o=0;while(o/,wt=/(?:@(?:\.[a-zA-Z]+)?:(?:[\w\-_|./]+|\([\w\-_:|./]+\)))/g,Ct=/^@(?:\.([a-zA-Z]+))?:/,kt=/[()]/g,$t={upper:function(t){return t.toLocaleUpperCase()},lower:function(t){return t.toLocaleLowerCase()},capitalize:function(t){return""+t.charAt(0).toLocaleUpperCase()+t.substr(1)}},xt=new J,At=function(t){var e=this;void 0===t&&(t={}),!D&&"undefined"!==typeof window&&window.Vue&&q(window.Vue);var n=t.locale||"en-US",r=!1!==t.fallbackLocale&&(t.fallbackLocale||"en-US"),i=t.messages||{},o=t.dateTimeFormats||t.datetimeFormats||{},a=t.numberFormats||{};this._vm=null,this._formatter=t.formatter||xt,this._modifiers=t.modifiers||{},this._missing=t.missing||null,this._root=t.root||null,this._sync=void 0===t.sync||!!t.sync,this._fallbackRoot=void 0===t.fallbackRoot||!!t.fallbackRoot,this._fallbackRootWithEmptyString=void 0===t.fallbackRootWithEmptyString||!!t.fallbackRootWithEmptyString,this._formatFallbackMessages=void 0!==t.formatFallbackMessages&&!!t.formatFallbackMessages,this._silentTranslationWarn=void 0!==t.silentTranslationWarn&&t.silentTranslationWarn,this._silentFallbackWarn=void 0!==t.silentFallbackWarn&&!!t.silentFallbackWarn,this._dateTimeFormatters={},this._numberFormatters={},this._path=new gt,this._dataListeners=new Set,this._componentInstanceCreatedListener=t.componentInstanceCreatedListener||null,this._preserveDirectiveContent=void 0!==t.preserveDirectiveContent&&!!t.preserveDirectiveContent,this.pluralizationRules=t.pluralizationRules||{},this._warnHtmlInMessage=t.warnHtmlInMessage||"off",this._postTranslation=t.postTranslation||null,this._escapeParameterHtml=t.escapeParameterHtml||!1,"__VUE_I18N_BRIDGE__"in t&&(this.__VUE_I18N_BRIDGE__=t.__VUE_I18N_BRIDGE__),this.getChoiceIndex=function(t,n){var r=Object.getPrototypeOf(e);if(r&&r.getChoiceIndex){var i=r.getChoiceIndex;return i.call(e,t,n)}var o=function(t,e){return t=Math.abs(t),2===e?t?t>1?1:0:1:t?Math.min(t,2):0};return e.locale in e.pluralizationRules?e.pluralizationRules[e.locale].apply(e,[t,n]):o(t,n)},this._exist=function(t,n){return!(!t||!n)&&(!d(e._path.getPathValue(t,n))||!!t[n])},"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||Object.keys(i).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,i[t])})),this._initVM({locale:n,fallbackLocale:r,messages:i,dateTimeFormats:o,numberFormats:a})},Ot={vm:{configurable:!0},messages:{configurable:!0},dateTimeFormats:{configurable:!0},numberFormats:{configurable:!0},availableLocales:{configurable:!0},locale:{configurable:!0},fallbackLocale:{configurable:!0},formatFallbackMessages:{configurable:!0},missing:{configurable:!0},formatter:{configurable:!0},silentTranslationWarn:{configurable:!0},silentFallbackWarn:{configurable:!0},preserveDirectiveContent:{configurable:!0},warnHtmlInMessage:{configurable:!0},postTranslation:{configurable:!0},sync:{configurable:!0}};At.prototype._checkLocaleMessage=function(t,e,n){var r=[],i=function(t,e,n,r){if(h(n))Object.keys(n).forEach((function(o){var a=n[o];h(a)?(r.push(o),r.push("."),i(t,e,a,r),r.pop(),r.pop()):(r.push(o),i(t,e,a,r),r.pop())}));else if(s(n))n.forEach((function(n,o){h(n)?(r.push("["+o+"]"),r.push("."),i(t,e,n,r),r.pop(),r.pop()):(r.push("["+o+"]"),i(t,e,n,r),r.pop())}));else if(l(n)){var c=bt.test(n);if(c){var u="Detected HTML in message '"+n+"' of keypath '"+r.join("")+"' at '"+e+"'. Consider component interpolation with '' to avoid XSS. See https://bit.ly/2ZqJzkp";"warn"===t?o(u):"error"===t&&a(u)}}};i(e,t,n,r)},At.prototype._initVM=function(t){var e=D.config.silent;D.config.silent=!0,this._vm=new D({data:t,__VUE18N__INSTANCE__:!0}),D.config.silent=e},At.prototype.destroyVM=function(){this._vm.$destroy()},At.prototype.subscribeDataChanging=function(t){this._dataListeners.add(t)},At.prototype.unsubscribeDataChanging=function(t){g(this._dataListeners,t)},At.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",(function(){var e=_(t._dataListeners),n=e.length;while(n--)D.nextTick((function(){e[n]&&e[n].$forceUpdate()}))}),{deep:!0})},At.prototype.watchLocale=function(t){if(t){if(!this.__VUE_I18N_BRIDGE__)return null;var e=this,n=this._vm;return this.vm.$watch("locale",(function(r){n.$set(n,"locale",r),e.__VUE_I18N_BRIDGE__&&t&&(t.locale.value=r),n.$forceUpdate()}),{immediate:!0})}if(!this._sync||!this._root)return null;var r=this._vm;return this._root.$i18n.vm.$watch("locale",(function(t){r.$set(r,"locale",t),r.$forceUpdate()}),{immediate:!0})},At.prototype.onComponentInstanceCreated=function(t){this._componentInstanceCreatedListener&&this._componentInstanceCreatedListener(t,this)},Ot.vm.get=function(){return this._vm},Ot.messages.get=function(){return y(this._getMessages())},Ot.dateTimeFormats.get=function(){return y(this._getDateTimeFormats())},Ot.numberFormats.get=function(){return y(this._getNumberFormats())},Ot.availableLocales.get=function(){return Object.keys(this.messages).sort()},Ot.locale.get=function(){return this._vm.locale},Ot.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},Ot.fallbackLocale.get=function(){return this._vm.fallbackLocale},Ot.fallbackLocale.set=function(t){this._localeChainCache={},this._vm.$set(this._vm,"fallbackLocale",t)},Ot.formatFallbackMessages.get=function(){return this._formatFallbackMessages},Ot.formatFallbackMessages.set=function(t){this._formatFallbackMessages=t},Ot.missing.get=function(){return this._missing},Ot.missing.set=function(t){this._missing=t},Ot.formatter.get=function(){return this._formatter},Ot.formatter.set=function(t){this._formatter=t},Ot.silentTranslationWarn.get=function(){return this._silentTranslationWarn},Ot.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},Ot.silentFallbackWarn.get=function(){return this._silentFallbackWarn},Ot.silentFallbackWarn.set=function(t){this._silentFallbackWarn=t},Ot.preserveDirectiveContent.get=function(){return this._preserveDirectiveContent},Ot.preserveDirectiveContent.set=function(t){this._preserveDirectiveContent=t},Ot.warnHtmlInMessage.get=function(){return this._warnHtmlInMessage},Ot.warnHtmlInMessage.set=function(t){var e=this,n=this._warnHtmlInMessage;if(this._warnHtmlInMessage=t,n!==t&&("warn"===t||"error"===t)){var r=this._getMessages();Object.keys(r).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,r[t])}))}},Ot.postTranslation.get=function(){return this._postTranslation},Ot.postTranslation.set=function(t){this._postTranslation=t},Ot.sync.get=function(){return this._sync},Ot.sync.set=function(t){this._sync=t},At.prototype._getMessages=function(){return this._vm.messages},At.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},At.prototype._getNumberFormats=function(){return this._vm.numberFormats},At.prototype._warnDefault=function(t,e,n,r,i,o){if(!d(n))return n;if(this._missing){var a=this._missing.apply(null,[t,e,r,i]);if(l(a))return a}else 0;if(this._formatFallbackMessages){var s=m.apply(void 0,i);return this._render(e,o,s.params,e)}return e},At.prototype._isFallbackRoot=function(t){return(this._fallbackRootWithEmptyString?!t:d(t))&&!d(this._root)&&this._fallbackRoot},At.prototype._isSilentFallbackWarn=function(t){return this._silentFallbackWarn instanceof RegExp?this._silentFallbackWarn.test(t):this._silentFallbackWarn},At.prototype._isSilentFallback=function(t,e){return this._isSilentFallbackWarn(e)&&(this._isFallbackRoot()||t!==this.fallbackLocale)},At.prototype._isSilentTranslationWarn=function(t){return this._silentTranslationWarn instanceof RegExp?this._silentTranslationWarn.test(t):this._silentTranslationWarn},At.prototype._interpolate=function(t,e,n,r,i,o,a){if(!e)return null;var c,u=this._path.getPathValue(e,n);if(s(u)||h(u))return u;if(d(u)){if(!h(e))return null;if(c=e[n],!l(c)&&!v(c))return null}else{if(!l(u)&&!v(u))return null;c=u}return l(c)&&(c.indexOf("@:")>=0||c.indexOf("@.")>=0)&&(c=this._link(t,e,c,r,"raw",o,a)),this._render(c,i,o,n)},At.prototype._link=function(t,e,n,r,i,o,a){var c=n,u=c.match(wt);for(var l in u)if(u.hasOwnProperty(l)){var f=u[l],p=f.match(Ct),h=p[0],d=p[1],v=f.replace(h,"").replace(kt,"");if(b(a,v))return c;a.push(v);var m=this._interpolate(t,e,v,r,"raw"===i?"string":i,"raw"===i?void 0:o,a);if(this._isFallbackRoot(m)){if(!this._root)throw Error("unexpected error");var y=this._root.$i18n;m=y._translate(y._getMessages(),y.locale,y.fallbackLocale,v,r,i,o)}m=this._warnDefault(t,v,m,r,s(o)?o:[o],i),this._modifiers.hasOwnProperty(d)?m=this._modifiers[d](m):$t.hasOwnProperty(d)&&(m=$t[d](m)),a.pop(),c=m?c.replace(f,m):c}return c},At.prototype._createMessageContext=function(t,e,n,r){var i=this,o=s(t)?t:[],a=c(t)?t:{},u=function(t){return o[t]},l=function(t){return a[t]},f=this._getMessages(),p=this.locale;return{list:u,named:l,values:t,formatter:e,path:n,messages:f,locale:p,linked:function(t){return i._interpolate(p,f[p]||{},t,null,r,void 0,[t])}}},At.prototype._render=function(t,e,n,r){if(v(t))return t(this._createMessageContext(n,this._formatter||xt,r,e));var i=this._formatter.interpolate(t,n,r);return i||(i=xt.interpolate(t,n,r)),"string"!==e||l(i)?i:i.join("")},At.prototype._appendItemToChain=function(t,e,n){var r=!1;return b(t,e)||(r=!0,e&&(r="!"!==e[e.length-1],e=e.replace(/!/g,""),t.push(e),n&&n[e]&&(r=n[e]))),r},At.prototype._appendLocaleToChain=function(t,e,n){var r,i=e.split("-");do{var o=i.join("-");r=this._appendItemToChain(t,o,n),i.splice(-1,1)}while(i.length&&!0===r);return r},At.prototype._appendBlockToChain=function(t,e,n){for(var r=!0,i=0;i0)o[a]=arguments[a+4];if(!t)return"";var s=m.apply(void 0,o);this._escapeParameterHtml&&(s.params=A(s.params));var c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(i=this._root).$t.apply(i,[t].concat(o))}return u=this._warnDefault(c,t,u,r,o,"string"),this._postTranslation&&null!==u&&void 0!==u&&(u=this._postTranslation(u,t)),u},At.prototype.t=function(t){var e,n=[],r=arguments.length-1;while(r-- >0)n[r]=arguments[r+1];return(e=this)._t.apply(e,[t,this.locale,this._getMessages(),null].concat(n))},At.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.i(t,e,i)}return this._warnDefault(e,t,o,r,[i],"raw")},At.prototype.i=function(t,e,n){return t?(l(e)||(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},At.prototype._tc=function(t,e,n,r,i){var o,a=[],s=arguments.length-5;while(s-- >0)a[s]=arguments[s+5];if(!t)return"";void 0===i&&(i=1);var c={count:i,n:i},u=m.apply(void 0,a);return u.params=Object.assign(c,u.params),a=null===u.locale?[u.params]:[u.locale,u.params],this.fetchChoice((o=this)._t.apply(o,[t,e,n,r].concat(a)),i)},At.prototype.fetchChoice=function(t,e){if(!t||!l(t))return null;var n=t.split("|");return e=this.getChoiceIndex(e,n.length),n[e]?n[e].trim():t},At.prototype.tc=function(t,e){var n,r=[],i=arguments.length-2;while(i-- >0)r[i]=arguments[i+2];return(n=this)._tc.apply(n,[t,this.locale,this._getMessages(),null,e].concat(r))},At.prototype._te=function(t,e,n){var r=[],i=arguments.length-3;while(i-- >0)r[i]=arguments[i+3];var o=m.apply(void 0,r).locale||e;return this._exist(n[o],t)},At.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},At.prototype.getLocaleMessage=function(t){return y(this._vm.messages[t]||{})},At.prototype.setLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,e)},At.prototype.mergeLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,k("undefined"!==typeof this._vm.messages[t]&&Object.keys(this._vm.messages[t]).length?Object.assign({},this._vm.messages[t]):{},e))},At.prototype.getDateTimeFormat=function(t){return y(this._vm.dateTimeFormats[t]||{})},At.prototype.setDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,e),this._clearDateTimeFormat(t,e)},At.prototype.mergeDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,k(this._vm.dateTimeFormats[t]||{},e)),this._clearDateTimeFormat(t,e)},At.prototype._clearDateTimeFormat=function(t,e){for(var n in e){var r=t+"__"+n;this._dateTimeFormatters.hasOwnProperty(r)&&delete this._dateTimeFormatters[r]}},At.prototype._localizeDateTime=function(t,e,n,r,i,o){for(var a=e,s=r[a],c=this._getLocaleChain(e,n),u=0;u0)e[n]=arguments[n+1];var r=this.locale,o=null,a=null;return 1===e.length?(l(e[0])?o=e[0]:c(e[0])&&(e[0].locale&&(r=e[0].locale),e[0].key&&(o=e[0].key)),a=Object.keys(e[0]).reduce((function(t,n){var r;return b(i,n)?Object.assign({},t,(r={},r[n]=e[0][n],r)):t}),null)):2===e.length&&(l(e[0])&&(o=e[0]),l(e[1])&&(r=e[1])),this._d(t,r,o,a)},At.prototype.getNumberFormat=function(t){return y(this._vm.numberFormats[t]||{})},At.prototype.setNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,e),this._clearNumberFormat(t,e)},At.prototype.mergeNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,k(this._vm.numberFormats[t]||{},e)),this._clearNumberFormat(t,e)},At.prototype._clearNumberFormat=function(t,e){for(var n in e){var r=t+"__"+n;this._numberFormatters.hasOwnProperty(r)&&delete this._numberFormatters[r]}},At.prototype._getNumberFormatter=function(t,e,n,r,i,o){for(var a=e,s=r[a],c=this._getLocaleChain(e,n),u=0;u0)e[n]=arguments[n+1];var i=this.locale,o=null,a=null;return 1===e.length?l(e[0])?o=e[0]:c(e[0])&&(e[0].locale&&(i=e[0].locale),e[0].key&&(o=e[0].key),a=Object.keys(e[0]).reduce((function(t,n){var i;return b(r,n)?Object.assign({},t,(i={},i[n]=e[0][n],i)):t}),null)):2===e.length&&(l(e[0])&&(o=e[0]),l(e[1])&&(i=e[1])),this._n(t,i,o,a)},At.prototype._ntp=function(t,e,n,r){if(!At.availabilities.numberFormat)return[];if(!n){var i=r?new Intl.NumberFormat(e,r):new Intl.NumberFormat(e);return i.formatToParts(t)}var o=this._getNumberFormatter(t,e,this.fallbackLocale,this._getNumberFormats(),n,r),a=o&&o.formatToParts(t);if(this._isFallbackRoot(a)){if(!this._root)throw Error("unexpected error");return this._root.$i18n._ntp(t,e,n,r)}return a||[]},Object.defineProperties(At.prototype,Ot),Object.defineProperty(At,"availabilities",{get:function(){if(!_t){var t="undefined"!==typeof Intl;_t={dateTimeFormat:t&&"undefined"!==typeof Intl.DateTimeFormat,numberFormat:t&&"undefined"!==typeof Intl.NumberFormat}}return _t}}),At.install=q,At.version="8.28.2",e["a"]=At},c8ba:function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}t.exports=n},e7a5:function(t,e,n){(function(e){(function(e,n){t.exports=n(e)})("undefined"!=typeof e?e:this,(function(t){if(t.CSS&&t.CSS.escape)return t.CSS.escape;var e=function(t){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");var e,n=String(t),r=n.length,i=-1,o="",a=n.charCodeAt(0);while(++i=1&&e<=31||127==e||0==i&&e>=48&&e<=57||1==i&&e>=48&&e<=57&&45==a?"\\"+e.toString(16)+" ":(0!=i||1!=r||45!=e)&&(e>=128||45==e||95==e||e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122)?n.charAt(i):"\\"+n.charAt(i):"�";return o};return t.CSS||(t.CSS={}),t.CSS.escape=e,e}))}).call(this,n("c8ba"))}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic.57e91f8a.js b/docs/js/documentation-topic.57e91f8a.js deleted file mode 100644 index 629d8b645..000000000 --- a/docs/js/documentation-topic.57e91f8a.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic"],{"00f2":function(e,t,n){"use strict";n("2089")},"0b72":function(e,t,n){},"115d":function(e,t,n){"use strict";n("20dd")},1347:function(e,t,n){"use strict";n("367e")},"14d4":function(e,t,n){},"18f4":function(e,t,n){},"1a39":function(e,t,n){"use strict";n("a7e9")},"1e0b":function(e,t,n){"use strict";n("412b")},"1fde":function(e,t,n){},2089:function(e,t,n){},"20dd":function(e,t,n){},"22f6":function(e,t,n){},2482:function(e,t,n){},2521:function(e,t,n){},"252c":function(e,t,n){"use strict";(function(e){function i(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);var n=e.indexOf("Trident/");if(n>0){var i=e.indexOf("rv:");return parseInt(e.substring(i+3,e.indexOf(".",i)),10)}var a=e.indexOf("Edge/");return a>0?parseInt(e.substring(a+5,e.indexOf(".",a)),10):-1}n.d(t,"a",(function(){return r}));var a=void 0;function s(){s.init||(s.init=!0,a=-1!==i())}var r={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},staticRenderFns:[],_scopeId:"data-v-b329ee4c",name:"resize-observer",methods:{compareAndNotify:function(){this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.$emit("notify"))},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!a&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),delete this._resizeObject.onload)}},mounted:function(){var e=this;s(),this.$nextTick((function(){e._w=e.$el.offsetWidth,e._h=e.$el.offsetHeight}));var t=document.createElement("object");this._resizeObject=t,t.setAttribute("aria-hidden","true"),t.setAttribute("tabindex",-1),t.onload=this.addResizeHandlers,t.type="text/html",a&&this.$el.appendChild(t),t.data="about:blank",a||this.$el.appendChild(t)},beforeDestroy:function(){this.removeResizeHandlers()}};function o(e){e.component("resize-observer",r),e.component("ResizeObserver",r)}var l={version:"0.4.5",install:o},c=null;"undefined"!==typeof window?c=window.Vue:"undefined"!==typeof e&&(c=e.Vue),c&&c.use(l)}).call(this,n("c8ba"))},2591:function(e,t,n){"use strict";n("f6d7")},"260a":function(e,t,n){"use strict";n("9a8a")},"264a":function(e,t,n){},2822:function(e,t,n){"use strict";n("2521")},"2c54":function(e,t,n){},"2ca2":function(e,t,n){"use strict";n("98e2")},"2d12":function(e,t,n){"use strict";n("b324")},"2eeb":function(e,t,n){},"2f87":function(e,t,n){"use strict";n("b0a0")},3396:function(e,t,n){"use strict";n("cdce")},"367e":function(e,t,n){},3702:function(e,t,n){},"370f":function(e,t,n){},"374e":function(e,t,n){"use strict";n("0b72")},"37dc":function(e,t,n){},"39d3":function(e,t,n){"use strict";n("2c54")},"3c37":function(e,t,n){},"3d94":function(e,t,n){},"3e80":function(e,t,n){},4125:function(e,t,n){},"412b":function(e,t,n){},"45b2":function(e,t,n){"use strict";n("264a")},"464f":function(e,t,n){},"46c5":function(e,t,n){"use strict";n("dff0")},5079:function(e,t,n){},"509b":function(e,t,n){},"51f2":function(e,t,n){},5208:function(e,t,n){"use strict";n("3d94")},5228:function(e,t,n){},"533e":function(e,t,n){},5561:function(e,t,n){"use strict";n("a2cc")},"5a73":function(e,t,n){"use strict";n("f9c9")},"5c57":function(e,t,n){"use strict";n("f0ff")},"645a":function(e,t,n){},6513:function(e,t,n){},6742:function(e,t,n){},"6a35":function(e,t,n){"use strict";n("d436")},"6ca9":function(e,t,n){"use strict";n("8429")},"6d05":function(e,t,n){"use strict";n("d7f6")},"719b":function(e,t,n){"use strict";n("8b3c")},"72a9":function(e,t,n){"use strict";n("d551")},7309:function(e,t,n){"use strict";n("c227")},"73a8":function(e,t,n){"use strict";n("3c37")},7649:function(e,t,n){"use strict";n("37dc")},"7a2c":function(e,t,n){"use strict";n("c4c1")},8429:function(e,t,n){},"857c":function(e,t,n){"use strict";n("645a")},"85fe":function(e,t,n){"use strict";(function(e){function i(e){return i="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:{},r=function(r){for(var l=arguments.length,c=new Array(l>1?l-1:0),d=1;d1){var i=e.find((function(e){return e.isIntersecting}));i&&(t=i)}if(n.callback){var a=t.isIntersecting&&t.intersectionRatio>=n.threshold;if(a===n.oldResult)return;n.oldResult=a,n.callback(a,t)}}),this.options.intersection),t.context.$nextTick((function(){n.observer&&n.observer.observe(n.el)}))}}},{key:"destroyObserver",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:"threshold",get:function(){return this.options.intersection&&this.options.intersection.threshold||0}}]),e}();function f(e,t,n){var i=t.value;if(i)if("undefined"===typeof IntersectionObserver)console.warn("[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill");else{var a=new g(e,i,n);e._vue_visibilityState=a}}function m(e,t,n){var i=t.value,a=t.oldValue;if(!p(i,a)){var s=e._vue_visibilityState;i?s?s.createObserver(i,n):f(e,{value:i},n):y(e)}}function y(e){var t=e._vue_visibilityState;t&&(t.destroyObserver(),delete e._vue_visibilityState)}var v={bind:f,update:m,unbind:y};function b(e){e.directive("observe-visibility",v)}var T={version:"0.4.6",install:b},S=null;"undefined"!==typeof window?S=window.Vue:"undefined"!==typeof e&&(S=e.Vue),S&&S.use(T)}).call(this,n("c8ba"))},"8b3c":function(e,t,n){},"8e4d":function(e,t,n){"use strict";n("bdc3")},9475:function(e,t,n){"use strict";n("1fde")},"98e2":function(e,t,n){},"9a8a":function(e,t,n){},"9c7e":function(e,t,n){"use strict";n("5228")},"9c92":function(e,t,n){},"9cea":function(e,t,n){"use strict";n("a61f")},"9f0d":function(e,t,n){},"9f11":function(e,t,n){},"9f17":function(e,t,n){"use strict";n("6742")},a2cc:function(e,t,n){},a34a:function(e,t,n){"use strict";n("51f2")},a61f:function(e,t,n){},a7e9:function(e,t,n){},b0a0:function(e,t,n){},b324:function(e,t,n){},b32a:function(e,t,n){"use strict";n("3e80")},b39c:function(e,t,n){"use strict";n("18f4")},b831:function(e,t,n){"use strict";n("533e")},b857:function(e,t,n){"use strict";n("3702")},bdc3:function(e,t,n){},c1f5:function(e,t,n){"use strict";n("f4ae")},c227:function(e,t,n){},c4bc:function(e,t,n){"use strict";n("2eeb")},c4c1:function(e,t,n){},c61f:function(e,t,n){"use strict";n("509b")},c80b:function(e,t,n){"use strict";n("6513")},ca3d:function(e,t,n){"use strict";n("5079")},cb1f:function(e,t,n){"use strict";n("dd53")},cd88:function(e,t,n){},cdce:function(e,t,n){},d1ac:function(e,t,n){"use strict";n("9f11")},d1b4:function(e,t,n){"use strict";n("4125")},d436:function(e,t,n){},d551:function(e,t,n){},d71b:function(e,t,n){"use strict";n("9f0d")},d7f6:function(e,t,n){},dd53:function(e,t,n){},dfa5:function(e,t,n){"use strict";n("2482")},dff0:function(e,t,n){},e47c:function(e,t,n){"use strict";n("cd88")},e508:function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return L})),n.d(t,"b",(function(){return M})),n.d(t,"c",(function(){return z}));var i=n("252c"),a=n("85fe"),s=n("ed83"),r=n.n(s),o=n("2b0e"),l={itemsLimit:1e3};const c={items:{type:Array,required:!0},keyField:{type:String,default:"id"},direction:{type:String,default:"vertical",validator:e=>["vertical","horizontal"].includes(e)},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"}};function d(){return this.items.length&&"object"!==typeof this.items[0]}let u=!1;if("undefined"!==typeof window){u=!1;try{var h=Object.defineProperty({},"passive",{get(){u=!0}});window.addEventListener("test",null,h)}catch(H){}}let p=0;var g={name:"RecycleScroller",components:{ResizeObserver:i["a"]},directives:{ObserveVisibility:a["a"]},props:{...c,itemSize:{type:Number,default:null},gridItems:{type:Number,default:void 0},itemSecondarySize:{type:Number,default:void 0},minItemSize:{type:[Number,String],default:null},sizeField:{type:String,default:"size"},typeField:{type:String,default:"type"},buffer:{type:Number,default:200},pageMode:{type:Boolean,default:!1},prerender:{type:Number,default:0},emitUpdate:{type:Boolean,default:!1},skipHover:{type:Boolean,default:!1},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"},listClass:{type:[String,Object,Array],default:""},itemClass:{type:[String,Object,Array],default:""}},data(){return{pool:[],totalSize:0,ready:!1,hoverKey:null}},computed:{sizes(){if(null===this.itemSize){const e={"-1":{accumulator:0}},t=this.items,n=this.sizeField,i=this.minItemSize;let a,s=1e4,r=0;for(let o=0,l=t.length;o{this.$_prerender=!1,this.updateVisibleItems(!0),this.ready=!0})},activated(){const e=this.$_lastUpdateScrollPosition;"number"===typeof e&&this.$nextTick(()=>{this.scrollToPosition(e)})},beforeDestroy(){this.removeListeners()},methods:{addView(e,t,n,i,a){const s={item:n,position:0},r={id:p++,index:t,used:!0,key:i,type:a};return Object.defineProperty(s,"nr",{configurable:!1,value:r}),e.push(s),s},unuseView(e,t=!1){const n=this.$_unusedViews,i=e.nr.type;let a=n.get(i);a||(a=[],n.set(i,a)),a.push(e),t||(e.nr.used=!1,e.position=-9999,this.$_views.delete(e.nr.key))},handleResize(){this.$emit("resize"),this.ready&&this.updateVisibleItems(!1)},handleScroll(e){this.$_scrollDirty||(this.$_scrollDirty=!0,requestAnimationFrame(()=>{this.$_scrollDirty=!1;const{continuous:e}=this.updateVisibleItems(!1,!0);e||(clearTimeout(this.$_refreshTimout),this.$_refreshTimout=setTimeout(this.handleScroll,100))}))},handleVisibilityChange(e,t){this.ready&&(e||0!==t.boundingClientRect.width||0!==t.boundingClientRect.height?(this.$emit("visible"),requestAnimationFrame(()=>{this.updateVisibleItems(!1)})):this.$emit("hidden"))},updateVisibleItems(e,t=!1){const n=this.itemSize,i=this.gridItems||1,a=this.itemSecondarySize||n,s=this.$_computedMinItemSize,r=this.typeField,o=this.simpleArray?null:this.keyField,c=this.items,d=c.length,u=this.sizes,h=this.$_views,p=this.$_unusedViews,g=this.pool;let f,m,y,v,b,T;if(d)if(this.$_prerender)f=v=0,m=b=Math.min(this.prerender,c.length),y=null;else{const e=this.getScroll();if(t){let t=e.start-this.$_lastUpdateScrollPosition;if(t<0&&(t=-t),null===n&&te.start&&(a=s),s=~~((i+a)/2)}while(s!==n);for(s<0&&(s=0),f=s,y=u[d-1].accumulator,m=s;md&&(m=d)),v=f;vd&&(m=d),v<0&&(v=0),b>d&&(b=d),y=Math.ceil(d/i)*n}}else f=m=v=b=y=0;m-f>l.itemsLimit&&this.itemsLimitError(),this.totalSize=y;const S=f<=this.$_endIndex&&m>=this.$_startIndex;if(this.$_continuous!==S){if(S){h.clear(),p.clear();for(let e=0,t=g.length;e=m)&&this.unuseView(T));const _=S?null:new Map;let C,k,w,I;for(let l=f;l=w.length)&&(T=this.addView(g,l,C,e,k),this.unuseView(T,!0),w=p.get(k)),T=w[I],T.item=C,T.nr.used=!0,T.nr.index=l,T.nr.key=e,T.nr.type=k,_.set(k,I+1),I++),h.set(e,T)),null===n?(T.position=u[l-1].accumulator,T.offset=0):(T.position=Math.floor(l/i)*n,T.offset=l%i*a)):T&&this.unuseView(T)}return this.$_startIndex=f,this.$_endIndex=m,this.emitUpdate&&this.$emit("update",f,m,v,b),clearTimeout(this.$_sortTimer),this.$_sortTimer=setTimeout(this.sortViews,300),{continuous:S}},getListenerTarget(){let e=r()(this.$el);return!window.document||e!==window.document.documentElement&&e!==window.document.body||(e=window),e},getScroll(){const{$el:e,direction:t}=this,n="vertical"===t;let i;if(this.pageMode){const t=e.getBoundingClientRect(),a=n?t.height:t.width;let s=-(n?t.top:t.left),r=n?window.innerHeight:window.innerWidth;s<0&&(r+=s,s=0),s+r>a&&(r=a-s),i={start:s,end:s+r}}else i=n?{start:e.scrollTop,end:e.scrollTop+e.clientHeight}:{start:e.scrollLeft,end:e.scrollLeft+e.clientWidth};return i},applyPageMode(){this.pageMode?this.addListeners():this.removeListeners()},addListeners(){this.listenerTarget=this.getListenerTarget(),this.listenerTarget.addEventListener("scroll",this.handleScroll,!!u&&{passive:!0}),this.listenerTarget.addEventListener("resize",this.handleResize)},removeListeners(){this.listenerTarget&&(this.listenerTarget.removeEventListener("scroll",this.handleScroll),this.listenerTarget.removeEventListener("resize",this.handleResize),this.listenerTarget=null)},scrollToItem(e){let t;t=null===this.itemSize?e>0?this.sizes[e-1].accumulator:0:Math.floor(e/this.gridItems)*this.itemSize,this.scrollToPosition(t)},scrollToPosition(e){const t="vertical"===this.direction?{scroll:"scrollTop",start:"top"}:{scroll:"scrollLeft",start:"left"};let n,i,a;if(this.pageMode){const s=r()(this.$el),o="HTML"===s.tagName?0:s[t.scroll],l=s.getBoundingClientRect(),c=this.$el.getBoundingClientRect(),d=c[t.start]-l[t.start];n=s,i=t.scroll,a=e+o+d}else n=this.$el,i=t.scroll,a=e;n[i]=a},itemsLimitError(){throw setTimeout(()=>{console.log("It seems the scroller element isn't scrolling, so it tries to render all the items at once.","Scroller:",this.$el),console.log("Make sure the scroller has a fixed height (or width) and 'overflow-y' (or 'overflow-x') set to 'auto' so it can scroll correctly and only render the items visible in the scroll viewport.")}),new Error("Rendered items limit reached")},sortViews(){this.pool.sort((e,t)=>e.nr.index-t.nr.index)}}};function f(e,t,n,i,a,s,r,o,l,c){"boolean"!==typeof r&&(l=o,o=r,r=!1);const d="function"===typeof n?n.options:n;let u;if(e&&e.render&&(d.render=e.render,d.staticRenderFns=e.staticRenderFns,d._compiled=!0,a&&(d.functional=!0)),i&&(d._scopeId=i),s?(u=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,l(e)),e&&e._registeredComponents&&e._registeredComponents.add(s)},d._ssrRegister=u):t&&(u=r?function(e){t.call(this,c(e,this.$root.$options.shadowRoot))}:function(e){t.call(this,o(e))}),u)if(d.functional){const e=d.render;d.render=function(t,n){return u.call(n),e(t,n)}}else{const e=d.beforeCreate;d.beforeCreate=e?[].concat(e,u):[u]}return n}const m=g;var y=function(){var e,t,n=this,i=n.$createElement,a=n._self._c||i;return a("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:n.handleVisibilityChange,expression:"handleVisibilityChange"}],staticClass:"vue-recycle-scroller",class:(e={ready:n.ready,"page-mode":n.pageMode},e["direction-"+n.direction]=!0,e),on:{"&scroll":function(e){return n.handleScroll.apply(null,arguments)}}},[n.$slots.before?a("div",{ref:"before",staticClass:"vue-recycle-scroller__slot"},[n._t("before")],2):n._e(),n._v(" "),a(n.listTag,{ref:"wrapper",tag:"component",staticClass:"vue-recycle-scroller__item-wrapper",class:n.listClass,style:(t={},t["vertical"===n.direction?"minHeight":"minWidth"]=n.totalSize+"px",t)},[n._l(n.pool,(function(e){return a(n.itemTag,n._g({key:e.nr.id,tag:"component",staticClass:"vue-recycle-scroller__item-view",class:[n.itemClass,{hover:!n.skipHover&&n.hoverKey===e.nr.key}],style:n.ready?{transform:"translate"+("vertical"===n.direction?"Y":"X")+"("+e.position+"px) translate"+("vertical"===n.direction?"X":"Y")+"("+e.offset+"px)",width:n.gridItems?("vertical"===n.direction&&n.itemSecondarySize||n.itemSize)+"px":void 0,height:n.gridItems?("horizontal"===n.direction&&n.itemSecondarySize||n.itemSize)+"px":void 0}:null},n.skipHover?{}:{mouseenter:function(){n.hoverKey=e.nr.key},mouseleave:function(){n.hoverKey=null}}),[n._t("default",null,{item:e.item,index:e.nr.index,active:e.nr.used})],2)})),n._v(" "),n._t("empty")],2),n._v(" "),n.$slots.after?a("div",{ref:"after",staticClass:"vue-recycle-scroller__slot"},[n._t("after")],2):n._e(),n._v(" "),a("ResizeObserver",{on:{notify:n.handleResize}})],1)},v=[];y._withStripped=!0;const b=void 0,T=void 0,S=void 0,_=!1,C=f({render:y,staticRenderFns:v},b,m,T,_,S,!1,void 0,void 0,void 0);var k={name:"DynamicScroller",components:{RecycleScroller:C},provide(){return"undefined"!==typeof ResizeObserver&&(this.$_resizeObserver=new ResizeObserver(e=>{requestAnimationFrame(()=>{if(Array.isArray(e))for(const t of e)if(t.target){const e=new CustomEvent("resize",{detail:{contentRect:t.contentRect}});t.target.dispatchEvent(e)}})})),{vscrollData:this.vscrollData,vscrollParent:this,vscrollResizeObserver:this.$_resizeObserver}},inheritAttrs:!1,props:{...c,minItemSize:{type:[Number,String],required:!0}},data(){return{vscrollData:{active:!0,sizes:{},validSizes:{},keyField:this.keyField,simpleArray:!1}}},computed:{simpleArray:d,itemsWithSize(){const e=[],{items:t,keyField:n,simpleArray:i}=this,a=this.vscrollData.sizes,s=t.length;for(let r=0;r=n)break;i+=t[o].size||this.minItemSize,a+=e[o].size||this.minItemSize}const r=a-i;0!==r&&(this.$el.scrollTop+=r)}},beforeCreate(){this.$_updates=[],this.$_undefinedSizes=0,this.$_undefinedMap={}},activated(){this.vscrollData.active=!0},deactivated(){this.vscrollData.active=!1},methods:{onScrollerResize(){const e=this.$refs.scroller;e&&this.forceUpdate(),this.$emit("resize")},onScrollerVisible(){this.$emit("vscroll:update",{force:!1}),this.$emit("visible")},forceUpdate(e=!0){(e||this.simpleArray)&&(this.vscrollData.validSizes={}),this.$emit("vscroll:update",{force:!0})},scrollToItem(e){const t=this.$refs.scroller;t&&t.scrollToItem(e)},getItemSize(e,t){const n=this.simpleArray?null!=t?t:this.items.indexOf(e):e[this.keyField];return this.vscrollData.sizes[n]||0},scrollToBottom(){if(this.$_scrollingToBottom)return;this.$_scrollingToBottom=!0;const e=this.$el;this.$nextTick(()=>{e.scrollTop=e.scrollHeight+5e3;const t=()=>{e.scrollTop=e.scrollHeight+5e3,requestAnimationFrame(()=>{e.scrollTop=e.scrollHeight+5e3,0===this.$_undefinedSizes?this.$_scrollingToBottom=!1:requestAnimationFrame(t)})};requestAnimationFrame(t)})}}};const w=k;var I=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RecycleScroller",e._g(e._b({ref:"scroller",attrs:{items:e.itemsWithSize,"min-item-size":e.minItemSize,direction:e.direction,"key-field":"id","list-tag":e.listTag,"item-tag":e.itemTag},on:{resize:e.onScrollerResize,visible:e.onScrollerVisible},scopedSlots:e._u([{key:"default",fn:function(t){var n=t.item,i=t.index,a=t.active;return[e._t("default",null,null,{item:n.item,index:i,active:a,itemWithSize:n})]}}],null,!0)},"RecycleScroller",e.$attrs,!1),e.listeners),[e._v(" "),n("template",{slot:"before"},[e._t("before")],2),e._v(" "),n("template",{slot:"after"},[e._t("after")],2),e._v(" "),n("template",{slot:"empty"},[e._t("empty")],2)],2)},x=[];I._withStripped=!0;const $=void 0,O=void 0,D=void 0,P=!1,L=f({render:I,staticRenderFns:x},$,w,O,P,D,!1,void 0,void 0,void 0);var A={name:"DynamicScrollerItem",inject:["vscrollData","vscrollParent","vscrollResizeObserver"],props:{item:{required:!0},watchData:{type:Boolean,default:!1},active:{type:Boolean,required:!0},index:{type:Number,default:void 0},sizeDependencies:{type:[Array,Object],default:null},emitResize:{type:Boolean,default:!1},tag:{type:String,default:"div"}},computed:{id(){if(this.vscrollData.simpleArray)return this.index;if(this.item.hasOwnProperty(this.vscrollData.keyField))return this.item[this.vscrollData.keyField];throw new Error(`keyField '${this.vscrollData.keyField}' not found in your item. You should set a valid keyField prop on your Scroller`)},size(){return this.vscrollData.validSizes[this.id]&&this.vscrollData.sizes[this.id]||0},finalActive(){return this.active&&this.vscrollData.active}},watch:{watchData:"updateWatchData",id(){this.size||this.onDataUpdate()},finalActive(e){this.size||(e?this.vscrollParent.$_undefinedMap[this.id]||(this.vscrollParent.$_undefinedSizes++,this.vscrollParent.$_undefinedMap[this.id]=!0):this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=!1)),this.vscrollResizeObserver?e?this.observeSize():this.unobserveSize():e&&this.$_pendingVScrollUpdate===this.id&&this.updateSize()}},created(){if(!this.$isServer&&(this.$_forceNextVScrollUpdate=null,this.updateWatchData(),!this.vscrollResizeObserver)){for(const e in this.sizeDependencies)this.$watch(()=>this.sizeDependencies[e],this.onDataUpdate);this.vscrollParent.$on("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$on("vscroll:update-size",this.onVscrollUpdateSize)}},mounted(){this.vscrollData.active&&(this.updateSize(),this.observeSize())},beforeDestroy(){this.vscrollParent.$off("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$off("vscroll:update-size",this.onVscrollUpdateSize),this.unobserveSize()},methods:{updateSize(){this.finalActive?this.$_pendingSizeUpdate!==this.id&&(this.$_pendingSizeUpdate=this.id,this.$_forceNextVScrollUpdate=null,this.$_pendingVScrollUpdate=null,this.computeSize(this.id)):this.$_forceNextVScrollUpdate=this.id},updateWatchData(){this.watchData&&!this.vscrollResizeObserver?this.$_watchData=this.$watch("item",()=>{this.onDataUpdate()},{deep:!0}):this.$_watchData&&(this.$_watchData(),this.$_watchData=null)},onVscrollUpdate({force:e}){!this.finalActive&&e&&(this.$_pendingVScrollUpdate=this.id),this.$_forceNextVScrollUpdate!==this.id&&!e&&this.size||this.updateSize()},onDataUpdate(){this.updateSize()},computeSize(e){this.$nextTick(()=>{if(this.id===e){const e=this.$el.offsetWidth,t=this.$el.offsetHeight;this.applySize(e,t)}this.$_pendingSizeUpdate=null})},applySize(e,t){const n=~~("vertical"===this.vscrollParent.direction?t:e);n&&this.size!==n&&(this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=void 0),this.$set(this.vscrollData.sizes,this.id,n),this.$set(this.vscrollData.validSizes,this.id,!0),this.emitResize&&this.$emit("resize",this.id))},observeSize(){this.vscrollResizeObserver&&this.$el.parentNode&&(this.vscrollResizeObserver.observe(this.$el.parentNode),this.$el.parentNode.addEventListener("resize",this.onResize))},unobserveSize(){this.vscrollResizeObserver&&(this.vscrollResizeObserver.unobserve(this.$el.parentNode),this.$el.parentNode.removeEventListener("resize",this.onResize))},onResize(e){const{width:t,height:n}=e.detail.contentRect;this.applySize(t,n)}},render(e){return e(this.tag,this.$slots.default)}};const N=A,E=void 0,j=void 0,B=void 0,R=void 0,M=f({},E,N,j,R,B,!1,void 0,void 0,void 0);function z({idProp:e=(e=>e.item.id)}={}){const t={},n=new o["default"]({data(){return{store:t}}});return{data(){return{idState:null}},created(){this.$_id=null,this.$_getId="function"===typeof e?()=>e.call(this,this):()=>this[e],this.$watch(this.$_getId,{handler(e){this.$nextTick(()=>{this.$_id=e})},immediate:!0}),this.$_updateIdState()},beforeUpdate(){this.$_updateIdState()},methods:{$_idStateInit(e){const i=this.$options.idState;if("function"===typeof i){const a=i.call(this,this);return n.$set(t,e,a),this.$_id=e,a}throw new Error("[mixin IdState] Missing `idState` function on component definition.")},$_updateIdState(){const n=this.$_getId();null==n&&console.warn(`No id found for IdState with idProp: '${e}'.`),n!==this.$_id&&(t[n]||this.$_idStateInit(n),this.idState=t[n])}}}}function K(e,t){e.component(t+"recycle-scroller",C),e.component(t+"RecycleScroller",C),e.component(t+"dynamic-scroller",L),e.component(t+"DynamicScroller",L),e.component(t+"dynamic-scroller-item",M),e.component(t+"DynamicScrollerItem",M)}const q={version:"1.1.2",install(e,t){const n=Object.assign({},{installComponents:!0,componentsPrefix:""},t);for(const i in n)"undefined"!==typeof n[i]&&(l[i]=n[i]);n.installComponents&&K(e,n.componentsPrefix)}};let F=null;"undefined"!==typeof window?F=window.Vue:"undefined"!==typeof e&&(F=e.Vue),F&&F.use(q)}).call(this,n("c8ba"))},e615:function(e,t,n){"use strict";n("14d4")},e81e:function(e,t,n){"use strict";n("370f")},eb6d:function(e,t,n){"use strict";n("9c92")},ed83:function(e,t,n){var i,a,s;(function(n,r){a=[],i=r,s="function"===typeof i?i.apply(t,a):i,void 0===s||(e.exports=s)})(0,(function(){var e=/(auto|scroll)/,t=function(e,n){return null===e.parentNode?n:t(e.parentNode,n.concat([e]))},n=function(e,t){return getComputedStyle(e,null).getPropertyValue(t)},i=function(e){return n(e,"overflow")+n(e,"overflow-y")+n(e,"overflow-x")},a=function(t){return e.test(i(t))},s=function(e){if(e instanceof HTMLElement||e instanceof SVGElement){for(var n=t(e.parentNode,[]),i=0;i({"~0":"~","~1":"/"}[e]||e))}function*o(e){const t=1;if(e.lengtht)throw new Error("invalid array index "+e);return n}function*p(e,t,n={strict:!1}){let i=e;for(const a of o(t)){if(n.strict&&!Object.prototype.hasOwnProperty.call(i,a))throw new u(t);i=i[a],yield{node:i,token:a}}}function g(e,t){let n=e;for(const{node:i}of p(e,t,{strict:!0}))n=i;return n}function f(e,t,n){let i=null,a=e,s=null;for(const{node:o,token:l}of p(e,t))i=a,a=o,s=l;if(!i)throw new u(t);if(Array.isArray(i))try{const e=h(s,i);i.splice(e,0,n)}catch(r){throw new u(t)}else Object.assign(i,{[s]:n});return e}function m(e,t){let n=null,i=e,a=null;for(const{node:r,token:o}of p(e,t))n=i,i=r,a=o;if(!n)throw new u(t);if(Array.isArray(n))try{const e=h(a,n);n.splice(e,1)}catch(s){throw new u(t)}else{if(!i)throw new u(t);delete n[a]}return e}function y(e,t,n){return m(e,t),f(e,t,n),e}function v(e,t,n){const i=g(e,t);return m(e,t),f(e,n,i),e}function b(e,t,n){return f(e,n,g(e,t)),e}function T(e,t,n){function i(e,t){const n=typeof e,a=typeof t;if(n!==a)return!1;switch(n){case d:{const n=Object.keys(e),a=Object.keys(t);return n.length===a.length&&n.every((n,s)=>n===a[s]&&i(e[n],t[n]))}default:return e===t}}const a=g(e,t);if(!i(n,a))throw new Error("test failed");return e}const S={add:(e,{path:t,value:n})=>f(e,t,n),copy:(e,{from:t,path:n})=>b(e,t,n),move:(e,{from:t,path:n})=>v(e,t,n),remove:(e,{path:t})=>m(e,t),replace:(e,{path:t,value:n})=>y(e,t,n),test:(e,{path:t,value:n})=>T(e,t,n)};function _(e,{op:t,...n}){const i=S[t];if(!i)throw new Error("unknown operation");return i(e,n)}function C(e,t){return t.reduce(_,e)}var k=n("66cd"),w=n("25a9"),I=n("2b88"),x=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"doc-topic",class:{"with-on-this-page":e.enableOnThisPageNav&&e.isOnThisPageNavVisible}},[n(e.isTargetIDE?"div":"main",{tag:"component",staticClass:"main",attrs:{id:"main"}},[n("DocumentationHero",{attrs:{role:e.role,enhanceBackground:e.enhanceBackground,enableMinimized:e.enableMinimized,shortHero:e.shortHero,shouldShowLanguageSwitcher:e.shouldShowLanguageSwitcher,iconOverride:e.references[e.pageIcon],standardColorIdentifier:e.standardColorIdentifier},scopedSlots:e._u([{key:"above-content",fn:function(){return[e._t("above-hero-content")]},proxy:!0}],null,!0)},[e._t("above-title"),e.shouldShowLanguageSwitcher?n("LanguageSwitcher",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath}}):e._e(),n("Title",{class:{"minimized-title":e.enableMinimized},attrs:{eyebrow:e.enableMinimized?null:e.roleHeading}},[n(e.titleBreakComponent,{tag:"component"},[e._v(e._s(e.title))]),e.isSymbolDeprecated||e.isSymbolBeta?n("small",{class:e.tagName,attrs:{slot:"after","data-tag-name":e.tagName},slot:"after"}):e._e()],1),e.abstract?n("Abstract",{class:{"minimized-abstract":e.enableMinimized},attrs:{content:e.abstract}}):e._e(),e.sampleCodeDownload?n("div",[n("DownloadButton",{staticClass:"sample-download",attrs:{action:e.sampleCodeDownload.action}})],1):e._e(),e.shouldShowAvailability?n("Availability",{attrs:{platforms:e.platforms,technologies:e.technologies}}):e._e(),e.declarations.length?n("div",{staticClass:"declarations-container",class:{"minimized-container":e.enableMinimized}},e._l(e.declarations,(function(t,i){return n("Declaration",{key:i,attrs:{conformance:e.conformance,declarations:t.declarations,source:e.remoteSource}})})),1):e._e()],2),n("div",{staticClass:"doc-content-wrapper"},[n("div",{staticClass:"doc-content",class:{"no-primary-content":!e.hasPrimaryContent&&e.enhanceBackground}},[e.hasPrimaryContent?n("div",{class:["container",{"minimized-container":e.enableMinimized}]},[n("div",{staticClass:"description",class:{"after-enhanced-hero":e.enhanceBackground}},[e.isRequirement?n("RequirementMetadata",{attrs:{defaultImplementationsCount:e.defaultImplementationsCount}}):e._e(),e.deprecationSummary&&e.deprecationSummary.length?n("Aside",{attrs:{kind:"deprecated"}},[n("ContentNode",{attrs:{content:e.deprecationSummary}})],1):e._e(),e.downloadNotAvailableSummary&&e.downloadNotAvailableSummary.length?n("Aside",{attrs:{kind:"note"}},[n("ContentNode",{attrs:{content:e.downloadNotAvailableSummary}})],1):e._e()],1),e.primaryContentSectionsSanitized&&e.primaryContentSectionsSanitized.length?n("PrimaryContent",{class:{"with-border":!e.enhanceBackground},attrs:{conformance:e.conformance,source:e.remoteSource,sections:e.primaryContentSectionsSanitized}}):e._e(),e.shouldShowViewMoreLink?n("ViewMore",{attrs:{url:e.viewMoreLink}}):e._e()],1):e._e(),e.shouldRenderTopicSection?n("Topics",{attrs:{sections:e.topicSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,topicStyle:e.topicSectionsStyle}}):e._e(),e.defaultImplementationsSections&&!e.enableMinimized?n("DefaultImplementations",{attrs:{sections:e.defaultImplementationsSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}}):e._e(),e.relationshipsSections&&!e.enableMinimized?n("Relationships",{attrs:{sections:e.relationshipsSections}}):e._e(),e.seeAlsoSections&&!e.enableMinimized?n("SeeAlso",{attrs:{sections:e.seeAlsoSections}}):e._e()],1),e.enableOnThisPageNav?[n("OnThisPageStickyContainer",{directives:[{name:"show",rawName:"v-show",value:e.isOnThisPageNavVisible,expression:"isOnThisPageNavVisible"}]},[e.topicState.onThisPageSections.length>2?n("OnThisPageNav"):e._e()],1)]:e._e()],2),!e.isTargetIDE&&e.hasBetaContent?n("BetaLegalText"):e._e()],1),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" "+e._s(e.$t("documentation.current-page",{title:e.pageTitle}))+" ")])],1)},$=[],O=n("8649"),D=n("bf08"),P=n("d26a"),L=n("748c"),A=n("e425"),N=n("e3ab"),E=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"betainfo"},[n("div",{staticClass:"betainfo-container"},[n("GridRow",[n("GridColumn",{attrs:{span:{large:12}}},[n("p",{staticClass:"betainfo-label"},[e._v(e._s(e.$t("metadata.beta.software")))]),n("div",{staticClass:"betainfo-content"},[e._t("content",(function(){return[n("p",[e._v(e._s(e.$t("metadata.beta.legal")))])]}))],2),e._t("after")],2)],1)],1)])},j=[],B=n("0f00"),R=n("620a"),M={name:"BetaLegalText",components:{GridColumn:R["a"],GridRow:B["a"]}},z=M,K=(n("9cea"),n("2877")),q=Object(K["a"])(z,E,j,!1,null,"e8fd2a92",null),F=q.exports,H=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"language",attrs:{role:"complementary","aria-label":e.$t("language")}},[n("Title",[e._v(e._s(e.$t("formats.colon",{content:e.$t("language")})))]),n("div",{staticClass:"language-list"},[n("LanguageSwitcherLink",{staticClass:"language-option swift",class:{active:e.swift.active},attrs:{url:e.swift.active?null:e.swift.url},on:{click:function(t){return e.chooseLanguage(e.swift)}}},[e._v(" "+e._s(e.swift.name)+" ")]),n("LanguageSwitcherLink",{staticClass:"language-option objc",class:{active:e.objc.active},attrs:{url:e.objc.active?null:e.objc.url},on:{click:function(t){return e.chooseLanguage(e.objc)}}},[e._v(" "+e._s(e.objc.name)+" ")])],1)],1)},V=[],W=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.url?n("a",{attrs:{href:e.url},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._t("default")],2):n("span",[e._t("default")],2)},U=[],G={name:"LanguageSwitcherLink",props:{url:[String,Object]}},Q=G,X=Object(K["a"])(Q,W,U,!1,null,null,null),Y=X.exports,J=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"summary-section"},[e._t("default")],2)},Z=[],ee={name:"Section"},te=ee,ne=(n("1347"),Object(K["a"])(te,J,Z,!1,null,"3aa6f694",null)),ie=ne.exports,ae=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("p",{staticClass:"title"},[e._t("default")],2)},se=[],re={name:"Title"},oe=re,le=(n("ede5"),Object(K["a"])(oe,ae,se,!1,null,"6796f6ea",null)),ce=le.exports,de={name:"LanguageSwitcher",components:{LanguageSwitcherLink:Y,Section:ie,Title:ce},inject:{isTargetIDE:{default:()=>!1},store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!0},swiftPath:{type:String,required:!0}},computed:{objc:({interfaceLanguage:e,objcPath:t,$route:{query:n}})=>({...O["a"].objectiveC,active:O["a"].objectiveC.key.api===e,url:Object(P["b"])(Object(L["d"])(t),{...n,language:O["a"].objectiveC.key.url})}),swift:({interfaceLanguage:e,swiftPath:t,$route:{query:n}})=>({...O["a"].swift,active:O["a"].swift.key.api===e,url:Object(P["b"])(Object(L["d"])(t),{...n,language:void 0})})},methods:{chooseLanguage(e){this.isTargetIDE||this.store.setPreferredLanguage(e.key.url),this.$router.push(e.url)}}},ue=de,he=(n("a34a"),Object(K["a"])(ue,H,V,!1,null,"1a36493d",null)),pe=he.exports,ge=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"view-more-link"},[n("router-link",{staticClass:"base-link",attrs:{to:e.url}},[e._t("default",(function(){return[e._v("View more")]}))],2)],1)},fe=[],me={name:"ViewMore",props:{url:{type:String,required:!0}}},ye=me,ve=(n("2591"),Object(K["a"])(ye,ge,fe,!1,null,"0d14b62a",null)),be=ve.exports,Te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["documentation-hero",{"documentation-hero--disabled":!e.enhanceBackground,"theme-dark":e.enhanceBackground}],style:e.styles},[n("div",{staticClass:"icon"},[e.enhanceBackground?n("TopicTypeIcon",{key:"first",staticClass:"background-icon first-icon",attrs:{type:e.type,"image-override":e.iconOverride,"with-colors":""}}):e._e()],1),n("div",{staticClass:"documentation-hero__above-content"},[e._t("above-content")],2),n("div",{staticClass:"documentation-hero__content",class:{"short-hero":e.shortHero,"extra-bottom-padding":e.shouldShowLanguageSwitcher,"minimized-hero":e.enableMinimized}},[e._t("default")],2)])},Se=[],_e=n("f12c"),Ce=n("31d4"),ke=n("2cae");const we={red:"red",orange:"orange",yellow:"yellow",blue:"blue",green:"green",purple:"purple",gray:"gray"};var Ie={name:"DocumentationHero",components:{TopicTypeIcon:_e["a"]},props:{role:{type:String,required:!0},enhanceBackground:{type:Boolean,required:!0},enableMinimized:{type:Boolean,default:!1},shortHero:{type:Boolean,required:!0},shouldShowLanguageSwitcher:{type:Boolean,required:!0},iconOverride:{type:Object,required:!1},standardColorIdentifier:{type:String,required:!1,validator:e=>Object.prototype.hasOwnProperty.call(we,e)}},computed:{color:({type:e})=>ke["b"][Ce["a"][e]||e]||ke["a"].teal,styles:({color:e,standardColorIdentifier:t})=>({"--accent-color":`var(--color-documentation-intro-accent, var(--color-type-icon-${e}))`,"--standard-accent-color":t&&`var(--color-standard-${t}-documentation-intro-fill, var(--color-standard-${t}))`}),type:({role:e})=>{switch(e){case k["a"].collection:return Ce["b"].module;case k["a"].collectionGroup:return Ce["b"].collection;default:return e}}}},xe=Ie,$e=(n("c80b"),Object(K["a"])(xe,Te,Se,!1,null,"6540c364",null)),Oe=$e.exports,De=n("7b1f"),Pe=n("12b1"),Le=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"OnThisPageNav"},[n("ul",{staticClass:"items"},e._l(e.onThisPageSections,(function(t){return n("li",{key:t.anchor,class:e.getItemClasses(t)},[n("router-link",{staticClass:"base-link",attrs:{to:t.url},nativeOn:{click:function(n){return e.handleFocusAndScroll(t.anchor)}}},[n(e.getWrapperComponent(t),{tag:"component"},[e._v(" "+e._s(e.getTextContent(t))+" ")])],1)],1)})),0)])},Ae=[];function Ne(e,t){let n,i;return function(...a){const s=this;if(!i)return e.apply(s,a),void(i=Date.now());clearTimeout(n),n=setTimeout(()=>{Date.now()-i>=t&&(e.apply(s,a),i=Date.now())},t-(Date.now()-i))}}var Ee=n("3908"),je=n("8a61"),Be={name:"OnThisPageNav",components:{WordBreak:De["a"]},mixins:[je["a"]],inject:{store:{default(){return{state:{onThisPageSections:[],currentPageAnchor:null}}}}},computed:{onThisPageSections:({store:e,$route:t})=>e.state.onThisPageSections.map(e=>({...e,url:Object(P["b"])("#"+e.anchor,t.query)})),currentPageAnchor:({store:e})=>e.state.currentPageAnchor},async mounted(){window.addEventListener("scroll",this.onScroll,!1),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("scroll",this.onScroll)})},watch:{onThisPageSections:{immediate:!0,async handler(){await Object(Ee["b"])(8),this.onScroll()}}},methods:{onScroll:Ne((function(){const e=this.onThisPageSections.length;if(!e)return;const{scrollY:t,innerHeight:n}=window,{scrollHeight:i}=document.body,a=t+n>=i,s=t<=0,r=.3*n+t;if(s||a){const t=s?0:e-1;return void this.store.setCurrentPageSection(this.onThisPageSections[t].anchor)}let o,l,c=null;for(o=0;oObject(Ze["c"])(["theme","code","indentationWidth"],it),formattedTokens:({language:e,formattedSwiftTokens:t,tokens:n})=>e===O["a"].swift.key.api?t:n,formattedSwiftTokens:({indentationWidth:e,tokens:t})=>{const n=" ".repeat(e);let i=!1;const a=[];let s=0,r=null,o=null,l=null,c=null,d=0,u=null;while(se===nt.attribute||e===nt.externalParam;e.text&&e.text.endsWith(", ")&&g&&f(g)&&(h.text=`${e.text.trimEnd()}\n${n}`,i=!0),a.push(h),s+=1}if(i&&null!==r){const e=a[r].text;a[r].text=`${e}\n${n}`}if(i&&null!==l){const e=a[l].text,t=e.slice(0,c),n=e.slice(c),i=`${t}\n${n}`;a[l].text=i}return a},hasMultipleLines({formattedTokens:e}){return e.reduce((t,n,i)=>{let a=/\n/g;return i===e.length-1&&(a=/\n(?!$)/g),n.text?t+(n.text.match(a)||[]).length:t},1)>=2}},methods:{propsFor(e){return{kind:e.kind,identifier:e.identifier,text:e.text,tokens:e.tokens}},handleWindowResize(){this.displaysMultipleLines=Object(Ye["a"])(this.$refs.declarationGroup)}},async mounted(){window.addEventListener("resize",this.handleWindowResize),this.language===O["a"].objectiveC.key.api&&(await this.$nextTick(),Xe(this.$refs.code.$el,this.language)),this.handleWindowResize()},beforeDestroy(){window.removeEventListener("resize",this.handleWindowResize)}},st=at,rt=(n("72a9"),Object(K["a"])(st,Ue,Ge,!1,null,"d22a3f50",null)),ot=rt.exports,lt=n("5d59"),ct={name:"DeclarationGroup",components:{Source:ot},mixins:[lt["a"]],inject:{languages:{default:()=>new Set},interfaceLanguage:{default:()=>O["a"].swift.key.api},symbolKind:{default:()=>{}}},props:{declaration:{type:Object,required:!0},shouldCaption:{type:Boolean,default:!1},changeType:{type:String,required:!1}},computed:{classes:({changeType:e,multipleLinesClass:t,displaysMultipleLinesAfterAPIChanges:n})=>({["declaration-group--changed declaration-group--"+e]:e,[t]:n}),caption(){return this.declaration.platforms.join(", ")},isSwift:({interfaceLanguage:e})=>e===O["a"].swift.key.api}},dt=ct,ut=(n("c4bc"),Object(K["a"])(dt,Ve,We,!1,null,"4f51d8d2",null)),ht=ut.exports,pt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"declaration-diff"},[n("div",{staticClass:"declaration-diff-current"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Current")]),e._l(e.currentDeclarations,(function(t,i){return n("DeclarationGroup",{key:i,attrs:{declaration:t,"should-caption":e.currentDeclarations.length>1,changeType:e.changeType}})}))],2),n("div",{staticClass:"declaration-diff-previous"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Previous")]),e._l(e.previousDeclarations,(function(t,i){return n("DeclarationGroup",{key:i,attrs:{declaration:t,"should-caption":e.previousDeclarations.length>1,changeType:e.changeType}})}))],2)])},gt=[],ft={name:"DeclarationDiff",components:{DeclarationGroup:ht},props:{changes:{type:Object,required:!0},changeType:{type:String,required:!0}},computed:{previousDeclarations:({changes:e})=>e.declaration.previous||[],currentDeclarations:({changes:e})=>e.declaration.new||[]}},mt=ft,yt=(n("7a2c"),Object(K["a"])(mt,pt,gt,!1,null,"b3e21c4a",null)),vt=yt.exports,bt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("a",{staticClass:"declaration-source-link",attrs:{href:e.url,title:"Open source file for "+e.fileName,target:"_blank"}},[e.isSwiftFile?n("SwiftFileIcon",{staticClass:"declaration-icon"}):e._e(),n("WordBreak",[e._v(e._s(e.fileName))])],1)},Tt=[],St=n("a88f"),_t={name:"DeclarationSourceLink",components:{WordBreak:De["a"],SwiftFileIcon:St["a"]},props:{url:{type:String,required:!0},fileName:{type:String,required:!0}},computed:{isSwiftFile:({fileName:e})=>e.endsWith(".swift")}},Ct=_t,kt=(n("e615"),Object(K["a"])(Ct,bt,Tt,!1,null,"5863919c",null)),wt=kt.exports,It=n("b5cf"),xt={name:"Declaration",components:{DeclarationDiff:vt,DeclarationGroup:ht,DeclarationSourceLink:wt,ConditionalConstraints:He["a"]},constants:{ChangeTypes:It["c"],multipleLinesClass:Je["a"]},inject:["identifier","store"],data:({store:{state:e}})=>({state:e,multipleLinesClass:Je["a"]}),props:{conformance:{type:Object,required:!1},source:{type:Object,required:!1},declarations:{type:Array,required:!0}},computed:{hasPlatformVariants(){return this.declarations.length>1},hasModifiedChanges({declarationChanges:e}){if(!e||!e.declaration)return!1;const t=e.declaration;return!(!(t.new||[]).length||!(t.previous||[]).length)},declarationChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t],changeType:({declarationChanges:e,hasModifiedChanges:t})=>{if(!e)return;const n=e.declaration;return n?t?It["c"].modified:e.change:e.change===It["c"].added?It["c"].added:void 0},changeClasses:({changeType:e})=>({["changed changed-"+e]:e})}},$t=xt,Ot=(n("39d3"),Object(K["a"])($t,qe,Fe,!1,null,"2ab6251b",null)),Dt=Ot.exports,Pt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",e._b({staticClass:"abstract"},"ContentNode",e.$props,!1))},Lt=[],At=n("6359"),Nt={name:"Abstract",components:{ContentNode:At["a"]},props:At["a"].props},Et=Nt,jt=(n("374e"),Object(K["a"])(Et,Pt,Lt,!1,null,"702ec04e",null)),Bt=jt.exports,Rt=n("c081"),Mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title),isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections,wrapTitle:!0}})},zt=[];const Kt={topics:{title:"sections.topics",anchor:"topics",level:2},defaultImplementations:{title:"sections.default-implementations",anchor:"default-implementations",level:2},relationships:{title:"sections.relationships",anchor:"relationships",level:2},seeAlso:{title:"sections.see-also",anchor:"see-also",level:2}},qt={[Ke.details]:{title:"sections.details",anchor:"details",level:2},[Ke.parameters]:{title:"sections.parameters",anchor:"parameters",level:2},[Ke.possibleValues]:{title:"sections.possible-values",anchor:"possibleValues",level:2}};var Ft=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentTable",{attrs:{anchor:e.anchor,title:e.title}},e._l(e.sectionsWithTopics,(function(t,i){return n("ContentTableSection",{key:t.title+"_"+i,class:{"no-title":!t.title},attrs:{title:t.title,anchor:t.anchor},scopedSlots:e._u([t.title&&e.wrapTitle?{key:"title",fn:function(i){var a=i.className;return[n("LinkableHeading",{class:a,attrs:{level:3,anchor:t.anchor}},[n("WordBreak",[e._v(e._s(t.title))])],1)]}}:null],null,!0)},[t.abstract?n("template",{slot:"abstract"},[n("ContentNode",{attrs:{content:t.abstract}})],1):e._e(),t.discussion?n("template",{slot:"discussion"},[n("ContentNode",{attrs:{content:t.discussion.content}})],1):e._e(),e.shouldRenderList?e._l(t.topics,(function(t){return n("TopicsLinkBlock",{key:t.identifier,staticClass:"topic",attrs:{topic:t,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}})})):n("TopicsLinkCardGrid",{staticClass:"topic",attrs:{items:t.topics,topicStyle:e.topicStyle}})],2)})),1)},Ht=[],Vt=n("70fb"),Wt=n("5dcc"),Ut=n("2f34"),Gt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"contenttable alt-light"},[n("div",{staticClass:"container"},[n("LinkableHeading",{staticClass:"title",attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),e._t("default")],2)])},Qt=[],Xt={name:"ContentTable",components:{LinkableHeading:Wt["a"]},props:{anchor:{type:String,required:!0},title:{type:String,required:!0}}},Yt=Xt,Jt=(n("e81e"),Object(K["a"])(Yt,Gt,Qt,!1,null,"6e075935",null)),Zt=Jt.exports,en=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"contenttable-section"},[n("div",{staticClass:"section-title"},[e._t("title",(function(){return[e.title?n("LinkableHeading",{class:e.className,attrs:{level:3,anchor:e.anchorComputed}},[e._v(e._s(e.title))]):e._e()]}),{className:e.className})],2),n("div",{staticClass:"section-content"},[e._t("abstract"),e._t("discussion"),e._t("default")],2)])},tn=[],nn=n("002d");const an="contenttable-title";var sn={name:"ContentTableSection",components:{LinkableHeading:Wt["a"]},props:{title:{type:String,required:!1},anchor:{type:String,default:null}},computed:{anchorComputed:({title:e,anchor:t})=>t||Object(nn["a"])(e||""),className:()=>an}},rn=sn,on=(n("46c5"),Object(K["a"])(rn,en,tn,!1,null,"4aae1079",null)),ln=on.exports,cn=n("2a18"),dn={name:"TopicsTable",mixins:[Ut["a"]],components:{TopicsLinkCardGrid:Vt["a"],WordBreak:De["a"],ContentTable:Zt,TopicsLinkBlock:cn["default"],ContentNode:At["a"],ContentTableSection:ln,LinkableHeading:Wt["a"]},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:{type:Array,required:!0},title:{type:String,required:!1,default(){return"Topics"}},anchor:{type:String,required:!1,default(){return"topics"}},wrapTitle:{type:Boolean,default:!1},topicStyle:{type:String,default:Pe["a"].list}},computed:{shouldRenderList:({topicStyle:e})=>e===Pe["a"].list,sectionsWithTopics(){return this.sections.map(e=>({...e,topics:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},un=dn,hn=(n("00f2"),Object(K["a"])(un,Ft,Ht,!1,null,"3ccf02e9",null)),pn=hn.exports,gn={name:"DefaultImplementations",components:{TopicsTable:pn},computed:{contentSectionData:()=>Kt.defaultImplementations},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pn.props.sections}},fn=gn,mn=Object(K["a"])(fn,Mt,zt,!1,null,null,null),yn=mn.exports,vn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"primary-content"},e._l(e.sections,(function(t,i){return n(e.componentFor(t),e._b({key:i,tag:"component"},"component",e.propsFor(t),!1))})),1)},bn=[],Tn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.$t(e.contentSectionData.title))+" ")]),n("dl",{staticClass:"datalist"},[e._l(e.values,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.name))])],1),t.content?n("dd",{key:t.name+":content",staticClass:"value-content"},[n("ContentNode",{attrs:{content:t.content}})],1):e._e()]}))],2)],1)},Sn=[],_n=n("5677"),Cn={name:"PossibleValues",components:{ContentNode:_n["default"],LinkableHeading:Wt["a"],WordBreak:De["a"]},props:{values:{type:Array,required:!0}},computed:{contentSectionData:()=>qt[Ke.possibleValues]}},kn=Cn,wn=(n("719b"),Object(K["a"])(kn,Tn,Sn,!1,null,null,null)),In=wn.exports,xn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("DeclarationSource",{attrs:{tokens:e.tokens}})],1)},$n=[],On={name:"RestEndpoint",components:{DeclarationSource:ot,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},tokens:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e)}},Dn=On,Pn=Object(K["a"])(Dn,xn,$n,!1,null,null,null),Ln=Pn.exports,An=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"details"},[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.$t(e.contentSectionData.title))+" ")]),n("dl",[e.isSymbol?[n("dt",{key:e.details.name+":name",staticClass:"detail-type"},[e._v(" "+e._s(e.$t("metadata.details.name"))+" ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.ideTitle)+" ")])]:e._e(),e.isTitle?[n("dt",{key:e.details.name+":key",staticClass:"detail-type"},[e._v(" "+e._s(e.$t("metadata.details.key"))+" ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.name)+" ")])]:e._e(),n("dt",{key:e.details.name+":type",staticClass:"detail-type"},[e._v(" "+e._s(e.$t("metadata.details.type"))+" ")]),n("dd",{staticClass:"detail-content"},[n("PropertyListKeyType",{attrs:{types:e.details.value}})],1)],2)],1)},Nn=[],En=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"type"},[e._v(e._s(e.typeOutput))])},jn=[],Bn={name:"PropertyListKeyType",props:{types:{type:Array,required:!0}},computed:{englishTypes(){return this.types.map(({arrayMode:e,baseType:t="*"})=>e?"array of "+this.pluralizeKeyType(t):t)},typeOutput(){return this.englishTypes.length>2?[this.englishTypes.slice(0,this.englishTypes.length-1).join(", "),this.englishTypes[this.englishTypes.length-1]].join(", or "):this.englishTypes.join(" or ")}},methods:{pluralizeKeyType(e){switch(e){case"dictionary":return"dictionaries";case"array":case"number":case"string":return e+"s";default:return e}}}},Rn=Bn,Mn=(n("f7c0"),Object(K["a"])(Rn,En,jn,!1,null,"791bac44",null)),zn=Mn.exports,Kn={name:"PropertyListKeyDetails",components:{PropertyListKeyType:zn,LinkableHeading:Wt["a"]},props:{details:{type:Object,required:!0}},computed:{contentSectionData:()=>qt[Ke.details],isTitle(){return"title"===this.details.titleStyle&&this.details.ideTitle},isSymbol(){return"symbol"===this.details.titleStyle&&this.details.ideTitle}}},qn=Kn,Fn=(n("45b2"),Object(K["a"])(qn,An,Nn,!1,null,"d66cd00c",null)),Hn=Fn.exports,Vn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"parameters"},[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.$t(e.contentSectionData.title))+" ")]),n("dl",[e._l(e.parameters,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("code",[e._v(e._s(t.name))])]),n("dd",{key:t.name+":content",staticClass:"param-content"},[n("ContentNode",{attrs:{content:t.content}})],1)]}))],2)],1)},Wn=[],Un={name:"Parameters",components:{ContentNode:At["a"],LinkableHeading:Wt["a"]},props:{parameters:{type:Array,required:!0}},computed:{contentSectionData:()=>qt[Ke.parameters]}},Gn=Un,Qn=(n("1a39"),Object(K["a"])(Gn,Vn,Wn,!1,null,"53cac581",null)),Xn=Qn.exports,Yn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{staticClass:"property-table",attrs:{parameters:e.properties,changes:e.propertyChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n("div",{staticClass:"property-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),e.shouldShiftType({name:i,content:s})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:r.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.type,s=t.attributes,r=t.content,o=t.required,l=t.changes,c=t.deprecated,d=t.readOnly;return[e.shouldShiftType({name:i,content:r})?n("PossiblyChangedType",{attrs:{type:a,changes:l.type}}):e._e(),c?[n("Badge",{staticClass:"property-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:o}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("required")}))+" ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:d}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("read-only")}))+" ")]),r?n("ContentNode",{attrs:{content:r}}):e._e(),n("ParameterAttributes",{attrs:{attributes:s,changes:l.attributes}})]}}])})],1)},Jn=[],Zn={inject:["identifier","store"],data:({store:{state:e}})=>({state:e}),computed:{apiChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t]}},ei=n("a0fd"),ti=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameters-table"},e._l(e.parameters,(function(t){return n("Row",{key:t[e.keyBy],staticClass:"param",class:e.changedClasses(t[e.keyBy])},[n("Column",{staticClass:"param-symbol",attrs:{span:{large:3,small:12}}},[e._t("symbol",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2),n("Column",{staticClass:"param-content",attrs:{span:{large:9,small:12}}},[e._t("description",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2)],1)})),1)},ni=[],ii={name:"ParametersTable",components:{Row:B["a"],Column:R["a"]},props:{parameters:{type:Array,required:!0},changes:{type:Object,default:()=>({})},keyBy:{type:String,default:"name"}},methods:{getProps(e,t={}){return{...e,changes:t}},changedClasses(e){const{changes:t}=this,{change:n}=t[e]||{};return{["changed changed-"+n]:n}}}},ai=ii,si=(n("5561"),Object(K["a"])(ai,ti,ni,!1,null,"3f89f723",null)),ri=si.exports,oi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameter-attributes"},[e.shouldRender(e.AttributeKind.default)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.default")}))),n("code",[e._v(e._s(i.value))])]}}],null,!1,2998238055)},"ParameterMetaAttribute",{kind:e.AttributeKind.default,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.minimum")}))),n("code",[e._v(e._s(i.value))])]}}],null,!1,859757818)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.minimum")}))),n("code",[e._v("> "+e._s(i.value))])]}}],null,!1,770347247)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.maximum")}))),n("code",[e._v(e._s(i.value))])]}}],null,!1,1190666532)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.maximum")}))),n("code",[e._v("< "+e._s(i.value))])]}}],null,!1,1156490099)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.allowedTypes)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:e.$tc("parameters.possible-types",e.fallbackToValues(i).length)}))),n("code",[e._l(e.fallbackToValues(i),(function(t,a){return[e._l(t,(function(t,s){return[n("DeclarationToken",e._b({key:a+"-"+s},"DeclarationToken",t,!1)),a+1({new:null,previous:null})},value:{type:[Object,Array,String,Boolean],default:null},wrapChanges:{type:Boolean,default:!0},renderSingleChange:{type:Boolean,default:!1}},render(e){const{value:t,changes:n={},wrapChanges:i,renderSingleChange:a}=this,{new:s,previous:r}=n,o=(t,n)=>{const a=this.$scopedSlots.default({value:t});return n&&i?e("div",{class:n},[a]):a?a[0]:null};if(s||r){const t=o(s,ui.added),n=o(r,ui.removed);return a?s&&!r?t:n:e("div",{class:"property-changegroup"},[s?t:"",r?n:""])}return o(t)}},fi=gi,mi=Object(K["a"])(fi,hi,pi,!1,null,null,null),yi=mi.exports,vi={name:"ParameterMetaAttribute",components:{RenderChanged:yi},props:{kind:{type:String,required:!0},attributes:{type:Object,required:!0},changes:{type:Object,default:()=>({})}}},bi=vi,Ti=(n("2822"),Object(K["a"])(bi,ci,di,!1,null,"8590589e",null)),Si=Ti.exports;const _i={allowedTypes:"allowedTypes",allowedValues:"allowedValues",default:"default",maximum:"maximum",maximumExclusive:"maximumExclusive",minimum:"minimum",minimumExclusive:"minimumExclusive"};var Ci={name:"ParameterAttributes",components:{ParameterMetaAttribute:Si,DeclarationToken:tt["a"]},constants:{AttributeKind:_i},props:{attributes:{type:Array,default:()=>[]},changes:{type:Object,default:()=>({})}},computed:{AttributeKind:()=>_i,attributesObject:({attributes:e})=>e.reduce((e,t)=>({...e,[t.kind]:t}),{})},methods:{shouldRender(e){return Object.prototype.hasOwnProperty.call(this.attributesObject,e)},fallbackToValues:e=>{const t=e||[];return Array.isArray(t)?t:t.values}}},ki=Ci,wi=Object(K["a"])(ki,oi,li,!1,null,null,null),Ii=wi.exports,xi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{renderSingleChange:"",value:e.value,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return i?n("span",{staticClass:"property-text"},[e._t("default")],2):e._e()}}],null,!0)})},$i=[],Oi={name:"PossiblyChangedTextAttribute",components:{RenderChanged:yi},props:{changes:{type:Object,required:!1},value:{type:Boolean,default:!1}}},Di=Oi,Pi=(n("5c57"),Object(K["a"])(Di,xi,$i,!1,null,null,null)),Li=Pi.exports,Ai=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{value:e.type,wrapChanges:!1,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return n("DeclarationTokenGroup",{staticClass:"property-metadata property-type",attrs:{type:e.getValues(i)}})}}])})},Ni=[],Ei=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.type&&e.type.length?n("div",[n("code",e._l(e.type,(function(t,i){return n("DeclarationToken",e._b({key:i},"DeclarationToken",t,!1))})),1)]):e._e()},ji=[],Bi={name:"DeclarationTokenGroup",components:{DeclarationToken:tt["a"]},props:{type:{type:Array,default:()=>[],required:!1}}},Ri=Bi,Mi=Object(K["a"])(Ri,Ei,ji,!1,null,null,null),zi=Mi.exports,Ki={name:"PossiblyChangedType",components:{DeclarationTokenGroup:zi,RenderChanged:yi},props:{type:{type:Array,required:!0},changes:{type:Object,required:!1}},methods:{getValues(e){return Array.isArray(e)?e:e.values}}},qi=Ki,Fi=(n("2f87"),Object(K["a"])(qi,Ai,Ni,!1,null,"0a648a1e",null)),Hi=Fi.exports,Vi={name:"PropertyTable",mixins:[Zn],components:{Badge:ei["a"],WordBreak:De["a"],PossiblyChangedTextAttribute:Li,PossiblyChangedType:Hi,ParameterAttributes:Ii,ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},properties:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).properties},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},Wi=Vi,Ui=(n("d71b"),Object(K["a"])(Wi,Yn,Jn,!1,null,"310f0b2c",null)),Gi=Ui.exports,Qi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:[e.bodyParam],changes:e.bodyChanges,keyBy:"key"},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.type,a=t.content,s=t.changes,r=t.name;return[e.shouldShiftType({name:r,content:a})?e._e():n("PossiblyChangedType",{attrs:{type:i,changes:s.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.content,s=t.mimeType,r=t.type,o=t.changes;return[e.shouldShiftType({name:i,content:a})?n("PossiblyChangedType",{attrs:{type:r,changes:o.type}}):e._e(),a?n("ContentNode",{attrs:{content:a}}):e._e(),s?n("PossiblyChangedMimetype",{attrs:{mimetype:s,changes:o.mimetype,change:o.change}}):e._e()]}}])}),e.parts.length?[n("h3",[e._v(e._s(e.$t("sections.parts")))]),n("ParametersTable",{staticClass:"parts",attrs:{parameters:e.parts,changes:e.partsChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes;return[n("div",{staticClass:"part-name"},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),s?n("PossiblyChangedType",{attrs:{type:a,changes:r.type}}):e._e()]}},{key:"description",fn:function(t){var i=t.content,a=t.mimeType,s=t.required,r=t.type,o=t.attributes,l=t.changes,c=t.readOnly;return[n("div",[i?e._e():n("PossiblyChangedType",{attrs:{type:r,changes:l.type}}),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:s}},[e._v("(Required) ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:c}},[e._v("(Read only) ")]),i?n("ContentNode",{attrs:{content:i}}):e._e(),a?n("PossiblyChangedMimetype",{attrs:{mimetype:a,changes:l.mimetype,change:l.change}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:l.attributes}})],1)]}}],null,!1,1779956822)})]:e._e()],2)},Xi=[],Yi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{changes:e.changeValues,value:e.mimetype},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return n("div",{staticClass:"response-mimetype"},[e._v(" "+e._s(e.$t("content-type",{value:i}))+" ")])}}])})},Ji=[],Zi={name:"PossiblyChangedMimetype",components:{RenderChanged:yi},props:{mimetype:{type:String,required:!0},changes:{type:[Object,String],required:!1},change:{type:String,required:!1}},computed:{changeValues({change:e,changes:t}){return e===It["c"].modified&&"string"!==typeof t?t:void 0}}},ea=Zi,ta=(n("d1ac"),Object(K["a"])(ea,Yi,Ji,!1,null,"20293786",null)),na=ta.exports;const ia="restRequestBody";var aa={name:"RestBody",mixins:[Zn],components:{PossiblyChangedMimetype:na,PossiblyChangedTextAttribute:Li,PossiblyChangedType:Hi,WordBreak:De["a"],ParameterAttributes:Ii,ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},constants:{ChangesKey:ia},props:{bodyContentType:{type:Array,required:!0},content:{type:Array},mimeType:{type:String,required:!0},parts:{type:Array,default:()=>[]},title:{type:String,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),bodyParam:({bodyContentType:e,content:t,mimeType:n})=>({key:ia,content:t,mimeType:n,type:e}),bodyChanges:({apiChanges:e})=>e||{},partsChanges:({bodyChanges:e})=>(e[ia]||{}).parts},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},sa=aa,ra=(n("6a35"),Object(K["a"])(sa,Qi,Xi,!1,null,"021cd63d",null)),oa=ra.exports,la=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.parameters,changes:e.parameterChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n("div",{staticClass:"param-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),e.shouldShiftType({content:s,name:i})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:r.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.required,o=t.attributes,l=t.changes,c=t.deprecated,d=t.readOnly;return[n("div",[e.shouldShiftType({content:s,name:i})?n("PossiblyChangedType",{attrs:{type:a,changes:l.type}}):e._e(),c?[n("Badge",{staticClass:"param-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:r}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("required")}))+" ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:d}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("read-only")}))+" ")]),s?n("ContentNode",{attrs:{content:s}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:l}})],2)]}}])})],1)},ca=[],da={name:"RestParameters",mixins:[Zn],components:{Badge:ei["a"],PossiblyChangedType:Hi,PossiblyChangedTextAttribute:Li,ParameterAttributes:Ii,WordBreak:De["a"],ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},parameters:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),parameterChanges:({apiChanges:e})=>(e||{}).restParameters},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},ua=da,ha=(n("eb6d"),Object(K["a"])(ua,la,ca,!1,null,"03478142",null)),pa=ha.exports,ga=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.responses,changes:e.propertyChanges,"key-by":"status"},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.status,a=t.type,s=t.reason,r=t.content,o=t.changes;return[n("div",{staticClass:"response-name"},[n("code",[e._v(" "+e._s(i)+" "),n("span",{staticClass:"reason"},[e._v(e._s(s))])])]),e.shouldShiftType({content:r,reason:s,status:i})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:o.type}})]}},{key:"description",fn:function(t){var i=t.content,a=t.mimetype,s=t.reason,r=t.type,o=t.status,l=t.changes;return[e.shouldShiftType({content:i,reason:s,status:o})?n("PossiblyChangedType",{attrs:{type:r,changes:l.type}}):e._e(),n("div",{staticClass:"response-reason"},[n("code",[e._v(e._s(s))])]),i?n("ContentNode",{attrs:{content:i}}):e._e(),a?n("PossiblyChangedMimetype",{attrs:{mimetype:a,changes:l.mimetype,change:l.change}}):e._e()]}}])})],1)},fa=[],ma={name:"RestResponses",mixins:[Zn],components:{PossiblyChangedMimetype:na,PossiblyChangedType:Hi,ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},responses:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).restResponses},methods:{shouldShiftType:({content:e=[],reason:t,status:n})=>!(e.length||t)&&n}},ya=ma,va=(n("7649"),Object(K["a"])(ya,ga,fa,!1,null,"881189f4",null)),ba=va.exports,Ta={name:"PrimaryContent",components:{ContentNode:At["a"],Parameters:Xn,PropertyListKeyDetails:Hn,PropertyTable:Gi,RestBody:oa,RestEndpoint:Ln,RestParameters:pa,RestResponses:ba,PossibleValues:In},constants:{SectionKind:Ke},props:{sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(Ke,e))}},computed:{span(){return{large:9,medium:9,small:12}}},methods:{componentFor(e){return{[Ke.content]:At["a"],[Ke.details]:Hn,[Ke.parameters]:Xn,[Ke.properties]:Gi,[Ke.restBody]:oa,[Ke.restParameters]:pa,[Ke.restHeaders]:pa,[Ke.restCookies]:pa,[Ke.restEndpoint]:Ln,[Ke.restResponses]:ba,[Ke.possibleValues]:In}[e.kind]},propsFor(e){const{bodyContentType:t,content:n,details:i,items:a,kind:s,mimeType:r,parameters:o,title:l,tokens:c,values:d}=e;return{[Ke.content]:{content:n},[Ke.details]:{details:i},[Ke.parameters]:{parameters:o},[Ke.possibleValues]:{values:d},[Ke.properties]:{properties:a,title:l},[Ke.restBody]:{bodyContentType:t,content:n,mimeType:r,parts:o,title:l},[Ke.restCookies]:{parameters:a,title:l},[Ke.restEndpoint]:{tokens:c,title:l},[Ke.restHeaders]:{parameters:a,title:l},[Ke.restParameters]:{parameters:a,title:l},[Ke.restResponses]:{responses:a,title:l}}[s]}}},Sa=Ta,_a=(n("73a8"),Object(K["a"])(Sa,vn,bn,!1,null,"2baae7e0",null)),Ca=_a.exports,ka=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title)}},e._l(e.sectionsWithSymbols,(function(e){return n("Section",{key:e.type,attrs:{title:e.title,anchor:e.anchor}},[n("List",{attrs:{symbols:e.symbols,type:e.type}})],1)})),1)},wa=[],Ia=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{ref:"apiChangesDiff",staticClass:"relationships-list",class:e.classes},e._l(e.symbols,(function(t){return n("li",{key:t.identifier,staticClass:"relationships-item"},[t.url?n("router-link",{staticClass:"link",attrs:{to:e.buildUrl(t.url,e.$route.query)}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))])],1):n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))]),t.conformance?n("ConditionalConstraints",{attrs:{constraints:t.conformance.constraints,prefix:t.conformance.conformancePrefix}}):e._e()],1)})),0)},xa=[];const $a=3,Oa={conformsTo:"conformance",inheritsFrom:"inheritance",inheritedBy:"inheritedBy"};var Da={name:"RelationshipsList",components:{ConditionalConstraints:He["a"],WordBreak:De["a"]},inject:["store","identifier"],mixins:[lt["b"],lt["a"]],props:{symbols:{type:Array,required:!0},type:{type:String,required:!0}},data(){return{state:this.store.state}},computed:{classes({changeType:e,multipleLinesClass:t,displaysMultipleLinesAfterAPIChanges:n}){return[{inline:this.shouldDisplayInline,column:!this.shouldDisplayInline,["changed changed-"+e]:!!e,[t]:n}]},hasAvailabilityConstraints(){return this.symbols.some(e=>!!(e.conformance||{}).constraints)},changes({identifier:e,state:{apiChanges:t}}){return(t||{})[e]||{}},changeType({changes:e,type:t}){const n=Oa[t];if(e.change!==It["c"].modified)return e.change;const i=e[n];if(!i)return;const a=(e,t)=>e.map((e,n)=>[e,t[n]]),s=a(i.previous,i.new).some(([e,t])=>e.content?0===e.content.length&&t.content.length>0:!!t.content);return s?It["c"].added:It["c"].modified},shouldDisplayInline(){const{hasAvailabilityConstraints:e,symbols:t}=this;return t.length<=$a&&!e}},methods:{buildUrl:P["b"]}},Pa=Da,La=(n("9475"),Object(K["a"])(Pa,Ia,xa,!1,null,"4c67b8c7",null)),Aa=La.exports,Na={name:"Relationships",mixins:[Ut["a"]],components:{ContentTable:Zt,List:Aa,Section:ln},props:{sections:{type:Array,required:!0}},computed:{contentSectionData:()=>Kt.relationships,sectionsWithSymbols(){return this.sections.map(e=>({...e,symbols:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},Ea=Na,ja=Object(K["a"])(Ea,ka,wa,!1,null,null,null),Ba=ja.exports,Ra=n("e8ea"),Ma=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"availability",attrs:{role:"complementary","aria-label":e.$t("sections.availability")}},[e._l(e.technologies,(function(t){return n("Badge",{key:t,staticClass:"technology"},[n("TechnologyIcon",{staticClass:"tech-icon"}),e._v(" "+e._s(t)+" ")],1)})),e._l(e.platforms,(function(t){return n("Badge",{key:t.name,staticClass:"platform",class:e.changesClassesFor(t.name)},[n("AvailabilityRange",{attrs:{deprecatedAt:t.deprecatedAt,introducedAt:t.introducedAt,platformName:t.name}}),t.deprecatedAt?n("span",{staticClass:"deprecated"},[e._v(" "+e._s(e.$t("aside-kind.deprecated"))+" ")]):t.beta?n("span",{staticClass:"beta"},[e._v(e._s(e.$t("aside-kind.beta")))]):e._e()],1)}))],2)},za=[],Ka=n("3024"),qa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{attrs:{role:"text","aria-label":e.ariaLabel,title:e.description}},[e._v(" "+e._s(e.text)+" ")])},Fa=[],Ha={name:"AvailabilityRange",props:{deprecatedAt:{type:String,required:!1},introducedAt:{type:String,required:!0},platformName:{type:String,required:!0}},computed:{ariaLabel(){const{deprecatedAt:e,description:t,text:n}=this;return[n].concat(e?this.$t("change-type.deprecated"):[]).concat(t).join(", ")},description(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?this.$t("availability.introduced-and-deprecated",{name:n,introducedAt:t,deprecatedAt:e}):this.$t("availability.available-on",{name:n,introducedAt:t})},text(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`${n} ${t}–${e}`:`${n} ${t}+`}}},Va=Ha,Wa=Object(K["a"])(Va,qa,Fa,!1,null,null,null),Ua=Wa.exports,Ga={name:"Availability",mixins:[lt["b"]],inject:["identifier","store"],components:{Badge:ei["a"],AvailabilityRange:Ua,Section:ie,TechnologyIcon:Ka["a"]},props:{platforms:{type:Array,required:!0},technologies:{type:Array,required:!1}},data(){return{state:this.store.state}},methods:{changeFor(e){const{identifier:t,state:{apiChanges:n}}=this,{availability:i={}}=(n||{})[t]||{},a=i[e];if(a)return a.deprecated?It["c"].deprecated:a.introduced&&!a.introduced.previous?It["c"].added:It["c"].modified}}},Qa=Ga,Xa=(n("2d12"),Object(K["a"])(Qa,Ma,za,!1,null,"602d8130",null)),Ya=Xa.exports,Ja=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title),isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections}})},Za=[],es={name:"SeeAlso",components:{TopicsTable:pn},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pn.props.sections},computed:{contentSectionData:()=>Kt.seeAlso}},ts=es,ns=Object(K["a"])(ts,Ja,Za,!1,null,null,null),is=ns.exports,as=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"topictitle"},[e.eyebrow?n("span",{staticClass:"eyebrow"},[e._v(e._s(e.eyebrow))]):e._e(),n("h1",{staticClass:"title"},[e._t("default"),e._t("after")],2)])},ss=[],rs={name:"Title",props:{eyebrow:{type:String,required:!1}}},os=rs,ls=(n("3396"),Object(K["a"])(os,as,ss,!1,null,"4492c658",null)),cs=ls.exports,ds=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title),isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections,topicStyle:e.topicStyle}})},us=[],hs={name:"Topics",components:{TopicsTable:pn},computed:{contentSectionData:()=>Kt.topics},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pn.props.sections,topicStyle:{type:String,required:!0,validator:e=>Object.hasOwnProperty.call(Pe["a"],e)}}},ps=hs,gs=Object(K["a"])(ps,ds,us,!1,null,null,null),fs=gs.exports,ms=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"OnThisPageStickyContainer"},[e._t("default")],2)},ys=[],vs={name:"OnThisPageStickyContainer"},bs=vs,Ts=(n("1e0b"),Object(K["a"])(bs,ms,ys,!1,null,"1b6d0048",null)),Ss=Ts.exports;const _s=1050;var Cs={name:"DocumentationTopic",mixins:[D["a"]],constants:{ON_THIS_PAGE_CONTAINER_BREAKPOINT:_s},inject:{isTargetIDE:{default(){return!1}},store:{default(){return{reset(){},state:{}}}}},components:{Declaration:Dt,OnThisPageStickyContainer:Ss,OnThisPageNav:ze,DocumentationHero:Oe,Abstract:Bt,Aside:N["a"],BetaLegalText:F,ContentNode:At["a"],DefaultImplementations:yn,DownloadButton:Rt["a"],LanguageSwitcher:pe,PrimaryContent:Ca,Relationships:Ba,RequirementMetadata:Ra["a"],Availability:Ya,SeeAlso:is,Title:cs,Topics:fs,ViewMore:be,WordBreak:De["a"]},props:{abstract:{type:Array,required:!1},conformance:{type:Object,required:!1},defaultImplementationsSections:{type:Array,required:!1},downloadNotAvailableSummary:{type:Array,required:!1},deprecationSummary:{type:Array,required:!1},diffAvailability:{type:Object,required:!1},modules:{type:Array,required:!1},hasNoExpandedDocumentation:{type:Boolean,required:!1},hierarchy:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!0},identifier:{type:String,required:!0},isRequirement:{type:Boolean,default:()=>!1},platforms:{type:Array,required:!1},primaryContentSections:{type:Array,required:!1},references:{type:Object,required:!0},relationshipsSections:{type:Array,required:!1},roleHeading:{type:String,required:!1},title:{type:String,required:!0},topicSections:{type:Array,required:!1},topicSectionsStyle:{type:String,default:Pe["a"].list},sampleCodeDownload:{type:Object,required:!1},seeAlsoSections:{type:Array,required:!1},languagePaths:{type:Object,default:()=>({})},tags:{type:Array,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isSymbolBeta:{type:Boolean,required:!1},symbolKind:{type:String,default:""},role:{type:String,default:""},remoteSource:{type:Object,required:!1},pageImages:{type:Array,required:!1},enableMinimized:{type:Boolean,default:!1},enableOnThisPageNav:{type:Boolean,default:!1},disableHeroBackground:{type:Boolean,default:!1},standardColorIdentifier:{type:String,required:!1,validator:e=>Object.prototype.hasOwnProperty.call(we,e)},availableLocales:{type:Array,required:!1}},provide(){return{identifier:this.identifier,languages:new Set(Object.keys(this.languagePaths)),interfaceLanguage:this.interfaceLanguage,symbolKind:this.symbolKind,enableMinimized:this.enableMinimized}},data(){return{topicState:this.store.state}},computed:{normalizedSwiftPath:({swiftPath:e})=>Object(L["d"])(e),normalizedObjcPath:({objcPath:e,swiftPath:t})=>Object(L["d"])(e&&t?Object(P["b"])(e,{language:O["a"].objectiveC.key.url}):e),defaultImplementationsCount(){return(this.defaultImplementationsSections||[]).reduce((e,t)=>e+t.identifiers.length,0)},shouldShowAvailability:({platforms:e,technologies:t,enableMinimized:n})=>((e||[]).length||(t||[]).length)&&!n,hasBetaContent:({platforms:e})=>e&&e.length&&e.some(e=>e.beta),pageTitle:({title:e})=>e,pageDescription:({abstract:e,extractFirstParagraphText:t})=>e?t(e):null,shouldShowLanguageSwitcher:({objcPath:e,swiftPath:t,isTargetIDE:n,enableMinimized:i})=>!!(e&&t&&n)&&!i,enhanceBackground:({symbolKind:e,disableHeroBackground:t,enableMinimized:n})=>!t&&!n&&(!e||"module"===e),shortHero:({roleHeading:e,abstract:t,sampleCodeDownload:n,hasAvailability:i,shouldShowLanguageSwitcher:a,declarations:s})=>!!e+!!t+!!n+!!s.length+!!i+a<=1,technologies({modules:e=[]}){const t=e.reduce((e,t)=>(e.push(t.name),e.concat(t.relatedModules||[])),[]);return t.length>1?t:[]},titleBreakComponent:({enhanceBackground:e})=>e?"span":De["a"],hasPrimaryContent:({isRequirement:e,deprecationSummary:t,downloadNotAvailableSummary:n,primaryContentSectionsSanitized:i,shouldShowViewMoreLink:a})=>e||t&&t.length||n&&n.length||i.length||a,viewMoreLink:({interfaceLanguage:e,normalizedObjcPath:t,normalizedSwiftPath:n})=>e===O["a"].objectiveC.key.api?t:n,shouldShowViewMoreLink:({enableMinimized:e,hasNoExpandedDocumentation:t,viewMoreLink:n})=>e&&!t&&n,tagName(){return this.isSymbolDeprecated?this.$t("aside-kind.deprecated"):this.$t("aside-kind.beta")},pageIcon:({pageImages:e=[]})=>{const t=e.find(({type:e})=>"icon"===e);return t?t.identifier:null},shouldRenderTopicSection:({topicSectionsStyle:e,topicSections:t,enableMinimized:n})=>t&&e!==Pe["a"].hidden&&!n,isOnThisPageNavVisible:({topicState:e})=>e.contentWidth>_s,disableMetadata:({enableMinimized:e})=>e,primaryContentSectionsSanitized({primaryContentSections:e=[]}){return e.filter(({kind:e})=>e!==Ke.declarations)},declarations({primaryContentSections:e=[]}){return e.filter(({kind:e})=>e===Ke.declarations)}},methods:{extractProps(e){const{abstract:t,defaultImplementationsSections:n,deprecationSummary:i,downloadNotAvailableSummary:a,diffAvailability:s,hierarchy:r,identifier:{interfaceLanguage:o,url:l},metadata:{conformance:c,hasNoExpandedDocumentation:d,modules:u,availableLocales:h,platforms:p,required:g=!1,roleHeading:f,title:m="",tags:y=[],role:v,symbolKind:b="",remoteSource:T,images:S=[],color:{standardColorIdentifier:_}={}}={},primaryContentSections:C,relationshipsSections:k,references:w={},sampleCodeDownload:I,topicSectionsStyle:x,topicSections:$,seeAlsoSections:D,variantOverrides:P,variants:L=[]}=e,A=L.reduce((e,t)=>t.traits.reduce((e,n)=>n.interfaceLanguage?{...e,[n.interfaceLanguage]:(e[n.interfaceLanguage]||[]).concat(t.paths)}:e,e),{}),{[O["a"].objectiveC.key.api]:[N]=[],[O["a"].swift.key.api]:[E]=[]}=A;return{abstract:t,conformance:c,defaultImplementationsSections:n,deprecationSummary:i,downloadNotAvailableSummary:a,diffAvailability:s,hasNoExpandedDocumentation:d,availableLocales:h,hierarchy:r,role:v,identifier:l,interfaceLanguage:o,isRequirement:g,modules:u,platforms:p,primaryContentSections:C,relationshipsSections:k,references:w,roleHeading:f,sampleCodeDownload:I,title:m,topicSections:$,topicSectionsStyle:x,seeAlsoSections:D,variantOverrides:P,symbolKind:b,tags:y.slice(0,1),remoteSource:T,pageImages:S,objcPath:N,swiftPath:E,standardColorIdentifier:_}}},created(){if(this.topicState.preferredLanguage===O["a"].objectiveC.key.url&&this.interfaceLanguage!==O["a"].objectiveC.key.api&&this.objcPath&&this.$route.query.language!==O["a"].objectiveC.key.url){const{query:e}=this.$route;this.$nextTick().then(()=>{this.$router.replace({path:Object(L["d"])(this.objcPath),query:{...e,language:O["a"].objectiveC.key.url}})})}A["a"].setAvailableLocales(this.availableLocales||[]),this.store.reset(),this.store.setReferences(this.references)},watch:{references(e){this.store.setReferences(e)},availableLocales(e){A["a"].setAvailableLocales(e)}}},ks=Cs,ws=(n("6d05"),Object(K["a"])(ks,x,$,!1,null,"43c74ad0",null)),Is=ws.exports,xs=n("2b0e");const $s=()=>({[It["c"].modified]:0,[It["c"].added]:0,[It["c"].deprecated]:0});var Os={state:{apiChanges:null,apiChangesCounts:$s(),selectedAPIChangesVersion:null},setAPIChanges(e){this.state.apiChanges=e},setSelectedAPIChangesVersion(e){this.state.selectedAPIChangesVersion=e},resetApiChanges(){this.state.apiChanges=null,this.state.apiChangesCounts=$s()},async updateApiChangesCounts(){await xs["default"].nextTick(),Object.keys(this.state.apiChangesCounts).forEach(e=>{this.state.apiChangesCounts[e]=this.countChangeType(e)})},countChangeType(e){if(document&&document.querySelectorAll){const t=`.changed-${e}:not(.changed-total)`;return document.querySelectorAll(t).length}return 0}},Ds={state:{onThisPageSections:[],currentPageAnchor:null},resetPageSections(){this.state.onThisPageSections=[],this.state.currentPageAnchor=null},addOnThisPageSection(e,{i18n:t=!0}={}){this.state.onThisPageSections.push({...e,i18n:t})},setCurrentPageSection(e){const t=this.state.onThisPageSections.findIndex(({anchor:t})=>t===e);-1!==t&&(this.state.currentPageAnchor=e)}},Ps=n("d369");const{state:Ls,...As}=Os,{state:Ns,...Es}=Ds;var js={state:{preferredLanguage:Ps["a"].preferredLanguage,contentWidth:0,...Ls,...Ns,references:{}},reset(){this.state.preferredLanguage=Ps["a"].preferredLanguage,this.state.references={},this.resetApiChanges()},setPreferredLanguage(e){this.state.preferredLanguage=e,Ps["a"].preferredLanguage=this.state.preferredLanguage},setContentWidth(e){this.state.contentWidth=e},setReferences(e){this.state.references=e},...As,...Es},Bs=n("8590"),Rs=n("66c9"),Ms=n("0caf"),zs=n("146e");const Ks="",qs=32,Fs="navigator-hide-button";function Hs(e){return e.split("").reduce((e,t)=>(e<<5)-e+t.charCodeAt(0)|0,0)}function Vs(e){const t={},n=e.length;for(let i=0;ie.parent===Ks);const i=t[e];return i?(i.childUIDs||[]).map(e=>t[e]):[]}function Qs(e,t){const n=[],i=[e];let a=null;while(i.length){a=i.pop();const e=t[a];if(!e)return[];n.unshift(e),e.parent&&e.parent!==Ks&&i.push(e.parent)}return n}function Xs(e,t,n){const i=t[e];return i?Gs(i.parent,t,n):[]}var Ys,Js,Zs={name:"NavigatorDataProvider",props:{interfaceLanguage:{type:String,default:O["a"].swift.key.url},technologyUrl:{type:String,required:!0},apiChangesVersion:{type:String,default:""}},data(){return{isFetching:!1,errorFetching:!1,isFetchingAPIChanges:!1,navigationIndex:{[O["a"].swift.key.url]:[]},navigationReferences:{},diffs:null}},computed:{flatChildren:({technologyWithChildren:e={}})=>Ws(e.children||[],null,0,e.beta),technologyPath:({technologyUrl:e})=>{const t=/(\/documentation\/(?:[^/]+))\/?/.exec(e);return t?t[1]:""},technologyWithChildren({navigationIndex:e,interfaceLanguage:t,technologyPath:n}){let i=e[t]||[];return i.length||(i=e[O["a"].swift.key.url]||[]),i.find(e=>n.toLowerCase()===e.path.toLowerCase())}},methods:{async fetchIndexData(){try{this.isFetching=!0;const{interfaceLanguages:e,references:t}=await Object(w["d"])({slug:this.$route.params.locale||""});this.navigationIndex=Object.freeze(e),this.navigationReferences=Object.freeze(t)}catch(e){this.errorFetching=!0}finally{this.isFetching=!1}}},watch:{"$route.params.locale":{handler:"fetchIndexData",immediate:!0}},render(){return this.$scopedSlots.default({technology:this.technologyWithChildren,isFetching:this.isFetching,errorFetching:this.errorFetching,isFetchingAPIChanges:this.isFetchingAPIChanges,apiChanges:this.diffs,flatChildren:this.flatChildren,references:this.navigationReferences})}},er=Zs,tr=Object(K["a"])(er,Ys,Js,!1,null,null,null),nr=tr.exports,ir=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("button",{staticClass:"quick-navigation-open",attrs:{"aria-label":e.$t("quicknav.button.label"),title:e.$t("quicknav.button.title")}},[e._v(" / ")])},ar=[],sr={name:"QuickNavigationButton"},rr=sr,or=(n("5a73"),Object(K["a"])(rr,ir,ar,!1,null,"53faf852",null)),lr=or.exports,cr=function(){var e,t,n=this,i=n.$createElement,a=n._self._c||i;return a("GenericModal",{attrs:{isFullscreen:"",showClose:!1,visible:n.isVisible,backdropBackgroundColorOverride:"rgba(0, 0, 0, 0.7)"},on:{"update:visible":function(e){n.isVisible=e}}},[a("div",{staticClass:"quick-navigation",on:{keydown:[function(e){return!e.type.indexOf("key")&&n._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),n.focusNext.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&n._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),n.focusPrev.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&n._k(e.keyCode,"enter",13,e.key,"Enter")||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:n.handleKeyEnter.apply(null,arguments)}],click:function(e){return e.target!==e.currentTarget?null:n.closeQuickNavigationModal.apply(null,arguments)}}},[a("div",{staticClass:"quick-navigation__container",class:{focus:n.focusedInput}},[a("FilterInput",{staticClass:"quick-navigation__filter",attrs:{placeholder:n.$t("filter.search-symbols",{technology:n.technology}),focusInputWhenCreated:"",focusInputWhenEmpty:"",preventBorderStyle:"",selectInputOnFocus:""},on:{input:function(e){n.focusedIndex=0},focus:function(e){n.focusedInput=!0},blur:function(e){n.focusedInput=!1}},scopedSlots:n._u([{key:"icon",fn:function(){return[a("div",{staticClass:"quick-navigation__magnifier-icon-container",class:{blue:n.userInput.length}},[a("MagnifierIcon")],1)]},proxy:!0}]),model:{value:n.userInput,callback:function(e){n.userInput=e},expression:"userInput"}}),a("div",{staticClass:"quick-navigation__match-list",class:{active:n.processedUserInput.length}},[n.noResultsWereFound?a("div",{staticClass:"no-results"},[a("p",[n._v(" No results found. ")])]):[a("div",n._b({staticClass:"quick-navigation__refs"},"div",(e={},e[n.SCROLL_LOCK_DISABLE_ATTR]=!0,e),!1),n._l(n.filteredSymbols,(function(e,t){return a("Reference",{key:e.uid,staticClass:"quick-navigation__reference",attrs:{url:e.path},nativeOn:{click:function(e){return n.closeQuickNavigationModal.apply(null,arguments)},focus:function(e){return n.focusIndex(t)}}},[a("div",{ref:"match",refInFor:!0,staticClass:"quick-navigation__symbol-match",class:{selected:t==n.focusedIndex},attrs:{role:"list"}},[a("div",{staticClass:"symbol-info"},[a("div",{staticClass:"symbol-name"},[a("TopicTypeIcon",{staticClass:"navigator-icon",attrs:{type:e.type}}),a("div",{staticClass:"symbol-title"},[a("span",{domProps:{textContent:n._s(n.formatSymbolTitle(e.title,0,e.start))}}),a("QuickNavigationHighlighter",{attrs:{text:e.substring,matcherText:n.processedUserInput}}),a("span",{domProps:{textContent:n._s(n.formatSymbolTitle(e.title,e.start+e.matchLength))}})],1)],1),a("div",{staticClass:"symbol-path"},n._l(e.parents,(function(t,i){return a("div",{key:t.title},[a("span",{staticClass:"parent-path",domProps:{textContent:n._s(t.title)}}),i!==e.parents.length-1?a("span",{staticClass:"parent-path",domProps:{textContent:n._s("/")}}):n._e()])})),0)])])])})),1),n.previewState?a("Preview",n._b({staticClass:"quick-navigation__preview",attrs:{json:n.previewJSON,state:n.previewState}},"Preview",(t={},t[n.SCROLL_LOCK_DISABLE_ATTR]=!0,t),!1)):n._e()]],2)],1)])])},dr=[],ur=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"filter",class:{focus:e.showSuggestedTags&&!e.preventBorderStyle},attrs:{role:"search",tabindex:"0","aria-labelledby":e.searchAriaLabelledBy},on:{"!blur":function(t){return e.handleBlur.apply(null,arguments)},"!focus":function(t){return e.handleFocus.apply(null,arguments)}}},[n("div",{class:["filter__wrapper",{"filter__wrapper--reversed":e.positionReversed,"filter__wrapper--no-border-style":e.preventBorderStyle}]},[n("div",{staticClass:"filter__top-wrapper"},[n("button",{staticClass:"filter__filter-button",class:{blue:e.inputIsNotEmpty},attrs:{"aria-hidden":"true",tabindex:"-1"},on:{click:e.focusInput,mousedown:function(e){e.preventDefault()}}},[e._t("icon",(function(){return[n("FilterIcon")]}))],2),n("div",{class:["filter__input-box-wrapper",{scrolling:e.isScrolling}],on:{scroll:e.handleScroll}},[e.hasSelectedTags?n("TagList",e._g(e._b({ref:"selectedTags",staticClass:"filter__selected-tags",attrs:{id:e.SelectedTagsId,input:e.input,tags:e.selectedTags,ariaLabel:e.$tc("filter.selected-tags",e.suggestedTags.length),activeTags:e.activeTags,translatableTags:e.translatableTags,areTagsRemovable:""},on:{"focus-prev":e.handleFocusPrevOnSelectedTags,"focus-next":e.focusInputFromTags,"reset-filters":e.resetFilters,"prevent-blur":function(t){return e.$emit("update:preventedBlur",!0)}}},"TagList",e.virtualKeyboardBind,!1),e.selectedTagsMultipleSelectionListeners)):e._e(),n("label",{staticClass:"filter__input-label",attrs:{id:"filter-label",for:e.FilterInputId,"data-value":e.modelValue,"aria-label":e.placeholder}},[n("input",e._g(e._b({directives:[{name:"model",rawName:"v-model",value:e.modelValue,expression:"modelValue"}],ref:"input",staticClass:"filter__input",attrs:{id:e.FilterInputId,placeholder:e.hasSelectedTags?"":e.placeholder,"aria-expanded":e.displaySuggestedTags?"true":"false",disabled:e.disabled,type:"text"},domProps:{value:e.modelValue},on:{focus:function(t){e.selectInputOnFocus&&e.selectInputAndTags()},keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.downHandler.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.upHandler.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button?null:e.leftKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button?null:e.rightKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:e.deleteHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"a",void 0,t.key,void 0)?null:t.metaKey?(t.preventDefault(),t.stopPropagation(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"a",void 0,t.key,void 0)?null:t.ctrlKey?(t.preventDefault(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.enterHandler.apply(null,arguments)},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.assignEventValues.apply(null,arguments):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.assignEventValues.apply(null,arguments):null}],input:function(t){t.target.composing||(e.modelValue=t.target.value)}}},"input",e.AXinputProperties,!1),e.inputMultipleSelectionListeners))])],1),n("div",{staticClass:"filter__delete-button-wrapper"},[e.input.length||e.displaySuggestedTags||e.hasSelectedTags?n("button",{staticClass:"filter__delete-button",attrs:{"aria-label":e.$t("filter.reset-filter")},on:{click:function(t){return e.resetFilters(!0)},keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.stopPropagation(),e.resetFilters(!0))},mousedown:function(e){e.preventDefault()}}},[n("ClearRoundedIcon")],1):e._e()])]),e.displaySuggestedTags?n("TagList",e._b({ref:"suggestedTags",staticClass:"filter__suggested-tags",attrs:{id:e.SuggestedTagsId,ariaLabel:e.$tc("filter.suggested-tags",e.suggestedTags.length),input:e.input,tags:e.suggestedTags,translatableTags:e.translatableTags},on:{"click-tags":function(t){return e.selectTag(t.tagName)},"prevent-blur":function(t){return e.$emit("update:preventedBlur",!0)},"focus-next":function(t){e.positionReversed?e.focusInput():e.$emit("focus-next")},"focus-prev":function(t){e.positionReversed?e.$emit("focus-prev"):e.focusInput()}}},"TagList",e.virtualKeyboardBind,!1)):e._e()],1)])},hr=[],pr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"clear-rounded-icon",attrs:{viewBox:"0 0 16 16",themeId:"clear-rounded"}},[n("title",[e._v(e._s(e.$t("icons.clear")))]),n("path",{attrs:{d:"M14.55,0l1.45,1.45-6.56,6.55,6.54,6.54-1.45,1.45-6.53-6.53L1.47,15.99,.01,14.53l6.52-6.53L0,1.47,1.45,.02l6.55,6.54L14.55,0Z","fill-rule":"evenodd"}})])},gr=[],fr=n("be08"),mr={name:"ClearRoundedIcon",components:{SVGIcon:fr["a"]}},yr=mr,vr=Object(K["a"])(yr,pr,gr,!1,null,null,null),br=vr.exports;function Tr(){if(window.getSelection)try{const{activeElement:e}=document;return e&&e.value?e.value.substring(e.selectionStart,e.selectionEnd):window.getSelection().toString()}catch(e){return""}else if(document.selection&&"Control"!==document.selection.type)return document.selection.createRange().text;return""}function Sr(e){if("number"===typeof e.selectionStart)e.selectionStart=e.selectionEnd=e.value.length;else if("undefined"!==typeof e.createTextRange){e.focus();const t=e.createTextRange();t.collapse(!1),t.select()}}function _r(e){e.selectionStart=e.selectionEnd=0}function Cr(e){return/^[\w\W\s]$/.test(e)}function kr(e){const t=e.match(/(.*)<\/data>/);try{return t?JSON.parse(t[1]):null}catch(n){return null}}function wr(e){return"string"!==typeof e&&(e=JSON.stringify(e)),`${e}`}function Ir(e,t,n,i){let a,s;return function(...r){function o(){clearTimeout(a),a=null}function l(){o(),e.apply(s,r)}if(s=this,!a||!n&&!i){if(!n)return o(),void(a=setTimeout(l,t));a=setTimeout(o,t),e.apply(s,r)}}}const xr=280,$r=100;var Or={data(){return{keyboardIsVirtual:!1,activeTags:[],initTagIndex:null,focusedTagIndex:null,metaKey:!1,shiftKey:!1,tabbing:!1,debouncedHandleDeleteTag:null}},constants:{DebounceDelay:xr,VirtualKeyboardThreshold:$r},computed:{virtualKeyboardBind:({keyboardIsVirtual:e})=>({keyboardIsVirtual:e}),allSelectedTagsAreActive:({selectedTags:e,activeTags:t})=>e.every(e=>t.includes(e))},methods:{selectRangeActiveTags(e=this.focusedTagIndex,t=this.selectedTags.length){this.activeTags=this.selectedTags.slice(e,t)},selectTag(e){this.updateSelectedTags([e]),this.clearFilterOnTagSelect&&this.setFilterInput("")},unselectActiveTags(){this.activeTags.length&&(this.deleteTags(this.activeTags),this.resetActiveTags())},async deleteHandler(e){this.activeTags.length>0&&this.setSelectedTags(this.selectedTags.filter(e=>!this.activeTags.includes(e))),this.inputIsSelected()&&this.allSelectedTagsAreActive?(e.preventDefault(),await this.resetFilters()):0===this.$refs.input.selectionEnd&&this.hasSelectedTags&&(e.preventDefault(),this.keyboardIsVirtual?this.setSelectedTags(this.selectedTags.slice(0,-1)):this.$refs.selectedTags.focusLast()),this.unselectActiveTags()},leftKeyInputHandler(e){if(this.assignEventValues(e),this.hasSelectedTags){if(this.activeTags.length&&!this.shiftKey)return e.preventDefault(),void this.$refs.selectedTags.focusTag(this.activeTags[0]);if(this.shiftKey&&0===this.$refs.input.selectionStart&&"forward"!==this.$refs.input.selectionDirection)return null===this.focusedTagIndex&&(this.focusedTagIndex=this.selectedTags.length),this.focusedTagIndex>0&&(this.focusedTagIndex-=1),this.initTagIndex=this.selectedTags.length,void this.selectTagsPressingShift();(0===this.$refs.input.selectionEnd||this.inputIsSelected())&&this.$refs.selectedTags.focusLast()}},rightKeyInputHandler(e){if(this.assignEventValues(e),this.activeTags.length&&this.shiftKey&&this.focusedTagIndex=$r&&(this.keyboardIsVirtual=!0)}),xr),setFilterInput(e){this.$emit("update:input",e)},setSelectedTags(e){this.$emit("update:selectedTags",e)},updateSelectedTags(e){this.setSelectedTags([...new Set([...this.selectedTags,...e])])},handleCopy(e){e.preventDefault();const t=[],n={tags:[],input:Tr()};if(this.activeTags.length){const e=this.activeTags;n.tags=e,t.push(e.join(" "))}return t.push(n.input),n.tags.length||n.input.length?(e.clipboardData.setData("text/html",wr(n)),e.clipboardData.setData("text/plain",t.join(" ")),n):n},handleCut(e){e.preventDefault();const{input:t,tags:n}=this.handleCopy(e);if(!t&&!n.length)return;const i=this.selectedTags.filter(e=>!n.includes(e)),a=this.input.replace(t,"");this.setSelectedTags(i),this.setFilterInput(a)},handlePaste(e){e.preventDefault();const{types:t}=e.clipboardData;let n=[],i=e.clipboardData.getData("text/plain");if(t.includes("text/html")){const t=e.clipboardData.getData("text/html"),a=kr(t);a&&({tags:n=[],input:i=""}=a)}const a=Tr();i=a.length?this.input.replace(a,i):Object(nn["f"])(this.input,i,document.activeElement.selectionStart),this.setFilterInput(i.trim()),this.allSelectedTagsAreActive?this.setSelectedTags(n):this.updateSelectedTags(n),this.resetActiveTags()},async handleDeleteTag({tagName:e,event:t={}}){const{key:n}=t;this.activeTags.length||this.deleteTags([e]),this.unselectActiveTags(),await this.$nextTick(),Sr(this.$refs.input),this.hasSelectedTags&&(await this.focusInput(),"Backspace"===n&&_r(this.$refs.input))}},mounted(){window.visualViewport&&(window.visualViewport.addEventListener("resize",this.updateKeyboardType),this.$once("hook:beforeDestroy",()=>{window.visualViewport.removeEventListener("resize",this.updateKeyboardType)}))}};const Dr=1e3;var Pr={constants:{ScrollingDebounceDelay:Dr},data(){return{isScrolling:!1,scrollRemovedAt:0}},created(){this.deleteScroll=Ir(this.deleteScroll,Dr)},methods:{deleteScroll(){this.isScrolling=!1,this.scrollRemovedAt=Date.now()},handleScroll(e){const{target:t}=e;if(0!==t.scrollTop)return t.scrollTop=0,void e.preventDefault();const n=150,i=t.offsetWidth,a=i+n;if(t.scrollWidth0?this.focusIndex(this.focusedIndex-1):this.startingPointHook())},focusNext({metaKey:e,ctrlKey:t,shiftKey:n}){(e||t)&&n||(this.externalFocusChange=!1,this.focusedIndex0}},Kr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"tag",attrs:{role:"presentation"}},[n("button",{ref:"button",class:{focus:e.isActiveTag},attrs:{role:"option","aria-selected":e.ariaSelected,"aria-roledescription":"tag"},on:{focus:function(t){return e.$emit("focus",{event:t,tagName:e.name})},click:function(t){return t.preventDefault(),e.$emit("click",{event:t,tagName:e.name})},dblclick:function(t){t.preventDefault(),!e.keyboardIsVirtual&&e.deleteTag()},keydown:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name})},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:(t.preventDefault(),e.deleteTag.apply(null,arguments))}],mousedown:function(t){return t.preventDefault(),e.focusButton.apply(null,arguments)},copy:e.handleCopy}},[e.isRemovableTag?e._e():n("span",{staticClass:"visuallyhidden"},[e._v(" "+e._s(e.$t("filter.add-tag"))+" - ")]),e.isTranslatableTag?[e._v(" "+e._s(e.$t(e.name))+" ")]:[e._v(" "+e._s(e.name)+" ")],e.isRemovableTag?n("span",{staticClass:"visuallyhidden"},[e._v(" – "+e._s(e.$t("filter.tag-select-remove"))+" ")]):e._e()],2)])},qr=[],Fr={name:"Tag",props:{name:{type:String,required:!0},isFocused:{type:Boolean,default:()=>!1},isRemovableTag:{type:Boolean,default:!1},isTranslatableTag:{type:Boolean,default:!1},isActiveTag:{type:Boolean,default:!1},activeTags:{type:Array,required:!1},keyboardIsVirtual:{type:Boolean,default:!1}},watch:{isFocused(e){e&&this.focusButton()}},mounted(){document.addEventListener("copy",this.handleCopy),document.addEventListener("cut",this.handleCut),document.addEventListener("paste",this.handlePaste),this.$once("hook:beforeDestroy",()=>{document.removeEventListener("copy",this.handleCopy),document.removeEventListener("cut",this.handleCut),document.removeEventListener("paste",this.handlePaste)})},methods:{isCurrentlyActiveElement(){return document.activeElement===this.$refs.button},handleCopy(e){if(!this.isCurrentlyActiveElement())return;e.preventDefault();let t=[];t=this.activeTags.length>0?this.activeTags:[this.name],e.clipboardData.setData("text/html",wr({tags:t})),e.clipboardData.setData("text/plain",t.join(" "))},handleCut(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(this.handleCopy(e),this.deleteTag(e))},handlePaste(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(e.preventDefault(),this.deleteTag(e),this.$emit("paste-content",e))},deleteTag(e){this.$emit("delete-tag",{tagName:this.name,event:e}),this.$emit("prevent-blur")},focusButton(e={}){this.keyboardIsVirtual||this.$refs.button.focus(),0===e.buttons&&this.isFocused&&this.deleteTag(e)}},computed:{ariaSelected:({isActiveTag:e,isRemovableTag:t})=>t?e?"true":"false":null}},Hr=Fr,Vr=(n("f055"),Object(K["a"])(Hr,Kr,qr,!1,null,"7e76f326",null)),Wr=Vr.exports,Ur={name:"Tags",mixins:[Pr,zr],props:{tags:{type:Array,default:()=>[]},activeTags:{type:Array,default:()=>[]},translatableTags:{type:Array,default:()=>[]},ariaLabel:{type:String,required:!1},id:{type:String,required:!1},input:{type:String,default:null},areTagsRemovable:{type:Boolean,default:!1},keyboardIsVirtual:{type:Boolean,default:!1}},components:{Tag:Wr},methods:{focusTag(e){this.focusIndex(this.tags.indexOf(e))},startingPointHook(){this.$emit("focus-prev")},handleFocus(e,t){this.focusIndex(t),this.isScrolling=!1,this.$emit("focus",e)},endingPointHook(){this.$emit("focus-next")},resetScroll(){this.$refs["scroll-wrapper"].scrollLeft=0},handleKeydown(e){const{key:t}=e,n=this.tags[this.focusedIndex];Cr(t)&&n&&this.$emit("delete-tag",{tagName:n.label||n,event:e})}},computed:{totalItemsToNavigate:({tags:e})=>e.length}},Gr=Ur,Qr=(n("9f17"),Object(K["a"])(Gr,Rr,Mr,!1,null,"1f2bd813",null)),Xr=Qr.exports;const Yr=5,Jr="filter-input",Zr="selected-tags",eo="suggested-tags",to={autocorrect:"off",autocapitalize:"off",spellcheck:"false",role:"combobox","aria-haspopup":"true","aria-autocomplete":"none","aria-owns":"suggestedTags","aria-controls":"suggestedTags"};var no,io,ao={name:"FilterInput",mixins:[Pr,Or],constants:{FilterInputId:Jr,SelectedTagsId:Zr,SuggestedTagsId:eo,AXinputProperties:to,TagLimit:Yr},components:{TagList:Xr,ClearRoundedIcon:br,FilterIcon:Br},props:{positionReversed:{type:Boolean,default:()=>!1},tags:{type:Array,default:()=>[]},selectedTags:{type:Array,default:()=>[]},preventedBlur:{type:Boolean,default:()=>!1},placeholder:{type:String,default:()=>""},disabled:{type:Boolean,default:()=>!1},value:{type:String,default:()=>""},shouldTruncateTags:{type:Boolean,default:!1},focusInputWhenCreated:{type:Boolean,default:!1},focusInputWhenEmpty:{type:Boolean,default:!1},selectInputOnFocus:{type:Boolean,default:!1},clearFilterOnTagSelect:{type:Boolean,default:!0},preventBorderStyle:{type:Boolean,default:!1},translatableTags:{type:Array,default:()=>[]}},data(){return{resetedTagsViaDeleteButton:!1,FilterInputId:Jr,SelectedTagsId:Zr,SuggestedTagsId:eo,AXinputProperties:to,showSuggestedTags:!1}},computed:{hasSuggestedTags:({suggestedTags:e})=>e.length,hasSelectedTags:({selectedTags:e})=>e.length,inputIsNotEmpty:({input:e,hasSelectedTags:t})=>e.length||t,searchAriaLabelledBy:({hasSelectedTags:e})=>e?Jr.concat(" ",Zr):Jr,modelValue:{get:({value:e})=>e,set(e){this.$emit("input",e)}},input:({value:e})=>e,suggestedTags:({tags:e,selectedTags:t,shouldTruncateTags:n})=>{const i=e.filter(e=>!t.includes(e));return n?i.slice(0,Yr):i},displaySuggestedTags:({showSuggestedTags:e,suggestedTags:t})=>e&&t.length>0,inputMultipleSelectionListeners:({resetActiveTags:e,handleCopy:t,handleCut:n,handlePaste:i})=>({click:e,copy:t,cut:n,paste:i}),selectedTagsMultipleSelectionListeners:({handleSingleTagClick:e,selectInputAndTags:t,handleDeleteTag:n,selectedTagsKeydownHandler:i,focusTagHandler:a,handlePaste:s})=>({"click-tags":e,"select-all":t,"delete-tag":n,keydown:i,focus:a,"paste-tags":s})},watch:{async selectedTags(){this.resetedTagsViaDeleteButton?this.resetedTagsViaDeleteButton=!1:this.$el.contains(document.activeElement)&&await this.focusInput(),this.displaySuggestedTags&&this.hasSuggestedTags&&this.$refs.suggestedTags.resetScroll()},suggestedTags:{immediate:!0,handler(e){this.$emit("suggested-tags",e)}},showSuggestedTags(e){this.$emit("show-suggested-tags",e)}},methods:{async focusInput(){await this.$nextTick(),this.$refs.input.focus(),!this.input&&this.resetActiveTags&&this.resetActiveTags()},async resetFilters(e=!1){if(this.setFilterInput(""),this.setSelectedTags([]),!e)return this.$emit("update:preventedBlur",!0),this.resetActiveTags&&this.resetActiveTags(),void await this.focusInput();this.resetedTagsViaDeleteButton=!0,this.showSuggestedTags=!1,this.$refs.input.blur()},focusFirstTag(e=(()=>{})){this.showSuggestedTags||(this.showSuggestedTags=!0),this.hasSuggestedTags&&this.$refs.suggestedTags?this.$refs.suggestedTags.focusFirst():e()},setFilterInput(e){this.$emit("input",e)},setSelectedTags(e){this.$emit("update:selectedTags",e)},deleteTags(e){this.setSelectedTags(this.selectedTags.filter(t=>!e.includes(t)))},async handleBlur(e){const t=e.relatedTarget;t&&t.matches&&t.matches("button, input, ul")&&this.$el.contains(t)||(await this.$nextTick(),this.resetActiveTags(),this.preventedBlur?this.$emit("update:preventedBlur",!1):(this.showSuggestedTags=!1,this.$emit("blur")))},downHandler(e){const t=()=>this.$emit("focus-next",e);this.positionReversed?t():this.focusFirstTag(t)},upHandler(e){const t=()=>this.$emit("focus-prev",e);this.positionReversed?this.focusFirstTag(t):t()},handleFocusPrevOnSelectedTags(){this.positionReversed?this.focusFirstTag(()=>this.$emit("focus-prev")):this.$emit("focus-prev")},handleFocus(){this.showSuggestedTags=!0,this.$emit("focus")}},created(){this.focusInputWhenCreated&&document.activeElement!==this.$refs.input&&(this.inputIsNotEmpty||this.focusInputWhenEmpty)&&this.focusInput()}},so=ao,ro=(n("7309"),Object(K["a"])(so,ur,hr,!1,null,"3f01a546",null)),oo=ro.exports,lo=n("c161"),co={name:"QuickNavigationHighlighter",props:{text:{type:String,required:!0},matcherText:{type:String,default:""}},render(e){const{matcherText:t,text:n}=this,i=[];let a=0;return t?([...t].forEach(t=>{const s=n.toLowerCase().indexOf(t.toLowerCase(),a);a&&i.push(e("span",n.slice(a,s)));const r=s+1;i.push(e("span",{class:"match"},n.slice(s,r))),a=r}),e("p",{class:"highlight"},i)):e("span",{class:"highlight"},n)}},uo=co,ho=(n("ca3d"),Object(K["a"])(uo,no,io,!1,null,"1c4190f0",null)),po=ho.exports,go=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"magnifier-icon",attrs:{viewBox:"0 0 14 14",themeId:"magnifier"}},[n("path",{attrs:{d:"M15.0013 14.0319L10.9437 9.97424C11.8165 8.88933 12.2925 7.53885 12.2929 6.14645C12.2929 2.75841 9.53449 0 6.14645 0C2.75841 0 0 2.75841 0 6.14645C0 9.53449 2.75841 12.2929 6.14645 12.2929C7.57562 12.2929 8.89486 11.7932 9.94425 10.9637L14.0019 15.0213L15.0013 14.0319ZM6.13645 11.0736C4.83315 11.071 3.58399 10.5521 2.66241 9.63048C1.74084 8.70891 1.22194 7.45974 1.2193 6.15644C1.2193 3.44801 3.41802 1.23928 6.13645 1.23928C8.85488 1.23928 11.0536 3.44801 11.0536 6.15644C11.0636 8.86488 8.85488 11.0736 6.13645 11.0736Z"}})])},fo=[],mo={name:"MagnifierIcon",components:{SVGIcon:fr["a"]}},yo=mo,vo=Object(K["a"])(yo,go,fo,!1,null,null,null),bo=vo.exports,To=n("86d8"),So=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"preview"},[e.state===e.STATE.success?n("DocumentationTopic",e._b({attrs:{enableMinimized:""}},"DocumentationTopic",e.topicProps,!1)):e.state===e.STATE.loadingSlowly?n("div",{staticClass:"loading"},e._l(e.LOADER_ROW_STYLES,(function(e){return n("div",{key:e["--index"],staticClass:"loading-row",style:e})})),0):e.state===e.STATE.error?n("div",{staticClass:"unavailable"},[n("p",[e._v("Preview unavailable")])]):e._e()],1)},_o=[];const{extractProps:Co}=Is.methods,ko="hero",wo={error:"error",loading:"loading",loadingSlowly:"loadingSlowly",success:"success"},Io={...js,state:Object(w["a"])(js.state)};var xo={name:"QuickNavigationPreview",components:{DocumentationTopic:Is},constants:{PreviewState:wo,PreviewStore:Io},data(){return{store:Io}},provide(){return{store:this.store}},props:{json:{type:Object,required:!1},state:{type:String,required:!0,validator:e=>Object.hasOwnProperty.call(wo,e)}},computed:{LOADER_ROW_STYLES:()=>[{"--index":0,width:"30%"},{"--index":1,width:"80%"},{"--index":2,width:"50%"}],STATE:()=>wo,topicProps:({json:e})=>{const t=Co(e),{sections:n=[]}=e;let{abstract:i}=t;const a=n.find(({kind:e})=>e===ko);return!i&&a&&(i=a.content),{...t,abstract:i}}}},$o=xo,Oo=(n("c1f5"),Object(K["a"])($o,So,_o,!1,null,"6fb5ba95",null)),Do=Oo.exports;class Po{constructor(e){this.map=new Map,this.maxSize=e}get size(){return this.map.size}get(e){if(!this.map.has(e))return;const t=this.map.get(e);return this.map.delete(e),this.map.set(e,t),t}has(e){return this.map.has(e)}set(e,t){if(this.map.has(e)&&this.map.delete(e),this.map.set(e,t),this.map.size>this.maxSize){const e=this.map.keys().next().value;this.map.delete(e)}}*[Symbol.iterator](){yield*this.map}}var Lo=n("f2af");const{PreviewState:Ao}=Do.constants,No="AbortError",Eo=20,jo=1e3;var Bo={name:"QuickNavigationModal",components:{FilterInput:oo,GenericModal:lo["a"],MagnifierIcon:bo,TopicTypeIcon:_e["a"],QuickNavigationHighlighter:po,Reference:To["a"],Preview:Do},mixins:[zr],created(){this.abortController=null,this.$cachedSymbolResults=new Po(Eo),this.loadingTimeout=null},data(){return{debouncedInput:"",userInput:"",focusedInput:!1,cachedSymbolResults:{},previewIsLoadingSlowly:!1,SCROLL_LOCK_DISABLE_ATTR:Lo["a"]}},props:{children:{type:Array,required:!0},showQuickNavigationModal:{type:Boolean,required:!0},technology:{type:String,required:!0}},computed:{childrenMap({children:e}){return Vs(e)},filteredSymbols:({constructFuzzyRegex:e,children:t,fuzzyMatch:n,processedUserInput:i,childrenMap:a,orderSymbolsByPriority:s})=>{const r=t.filter(e=>"groupMarker"!==e.type&&null!=e.title);if(!i)return[];const o=n({inputLength:i.length,symbols:r,processedInputRegex:new RegExp(e(i),"i"),childrenMap:a}),l=[...new Map(o.map(e=>[e.path,e])).values()];return s(l).slice(0,Eo)},isVisible:{get:({showQuickNavigationModal:e})=>e,set(e){this.$emit("update:showQuickNavigationModal",e)}},noResultsWereFound:({processedUserInput:e,totalItemsToNavigate:t})=>e.length&&!t,processedUserInput:({debouncedInput:e})=>e.replace(/\s/g,""),totalItemsToNavigate:({filteredSymbols:e})=>e.length,selectedSymbol:({filteredSymbols:e,focusedIndex:t})=>null!==t?e[t]:null,nextSymbol:({filteredSymbols:e,focusedIndex:t})=>{if(null===t)return null;let n=t+1;return n>=e.length&&(n=0),e[n]},previewJSON:({cachedSymbolResults:e,selectedSymbol:t})=>t?(e[t.uid]||{}).json:null,previewState:({cachedSymbolResults:e,previewIsLoadingSlowly:t,selectedSymbol:n})=>n&&Object.hasOwnProperty.call(e,n.uid)?e[n.uid].success?Ao.success:Ao.error:t?Ao.loadingSlowly:Ao.loading},watch:{userInput:"debounceInput",focusedIndex:"scrollIntoView",selectedSymbol:"fetchSelectedSymbolData",$route:"closeQuickNavigationModal"},methods:{closeQuickNavigationModal(){this.$emit("update:showQuickNavigationModal",!1)},constructFuzzyRegex(e){return[...e].reduce((t,n,i)=>t.concat(`[${n}]`).concat(i{const a=n.exec(t.title);if(!a)return!1;const s=a[0].length;return!(s>3*e)&&{uid:t.uid,title:t.title,path:t.path,parents:Qs(t.parent,i),type:t.type,inputLengthDifference:t.title.length-e,matchLength:s,matchLengthDifference:s-e,start:a.index,substring:a[0]}}).filter(Boolean)},handleKeyEnter(){!this.noResultsWereFound&&this.userInput.length&&(this.$router.push(this.filteredSymbols[this.focusedIndex].path),this.closeQuickNavigationModal())},orderSymbolsByPriority(e){return e.sort((e,t)=>e.matchLengthDifference>t.matchLengthDifference?1:e.matchLengthDifferencet.start?1:e.startt.inputLengthDifference?1:e.inputLengthDifference{this.previewState===Ao.loading&&(this.previewIsLoadingSlowly=!0)},jo),!this.selectedSymbol||this.$cachedSymbolResults.has(this.selectedSymbol.uid))return clearTimeout(this.loadingTimeout),void(this.previewIsLoadingSlowly=!1);const e=async e=>{if(e&&!this.$cachedSymbolResults.has(e.uid))try{const t=await Object(w["b"])(e.path,{signal:this.abortController.signal});this.$cachedSymbolResults.set(e.uid,{success:!0,json:t})}catch(t){t.name!==No&&this.$cachedSymbolResults.set(e.uid,{success:!1})}finally{this.cachedSymbolResults=Object.freeze(Object.fromEntries(this.$cachedSymbolResults))}};this.abortController&&this.abortController.abort(),this.abortController=new AbortController,await Promise.all([e(this.selectedSymbol).finally(()=>{clearTimeout(this.loadingTimeout),this.previewIsLoadingSlowly=!1}),e(this.nextSymbol)])}}},Ro=Bo,Mo=(n("dfa5"),Object(K["a"])(Ro,cr,dr,!1,null,"71686791",null)),zo=Mo.exports,Ko=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"adjustable-sidebar-width",class:{dragging:e.isDragging,"sidebar-hidden":e.hiddenOnLarge}},[n("div",{ref:"sidebar",staticClass:"sidebar"},[n("div",{ref:"aside",staticClass:"aside",class:e.asideClasses,style:e.asideStyles,attrs:{"aria-hidden":e.hiddenOnLarge?"true":null},on:{transitionstart:function(t){return t.target!==t.currentTarget?null:e.trackTransitionStart.apply(null,arguments)},transitionend:function(t){return t.target!==t.currentTarget?null:e.trackTransitionEnd.apply(null,arguments)}}},[e._t("aside",null,{animationClass:"aside-animated-child",scrollLockID:e.scrollLockID,breakpoint:e.breakpoint})],2),e.fixedWidth?e._e():n("div",{staticClass:"resize-handle",on:{mousedown:function(t){return t.preventDefault(),e.startDrag.apply(null,arguments)},touchstart:function(t){return t.preventDefault(),e.startDrag.apply(null,arguments)}}})]),n("div",{ref:"content",staticClass:"content"},[e._t("default")],2),n("BreakpointEmitter",{attrs:{scope:e.BreakpointScopes.nav},on:{change:function(t){e.breakpoint=t}}})],1)},qo=[],Fo=n("5d2d"),Ho=n("a97e"),Vo=n("63b8"),Wo=n("c8e2"),Uo=n("95da"),Go=n("942d");const Qo="sidebar",Xo=1921,Yo=543,Jo=400,Zo={touch:{move:"touchmove",end:"touchend"},mouse:{move:"mousemove",end:"mouseup"}},el=(e,t=window.innerWidth)=>{const n=Math.min(t,Xo);return Math.floor(Math.min(n*(e/100),n))},tl={medium:30,large:20},nl={medium:50,large:50},il="sidebar-scroll-lock";var al={name:"AdjustableSidebarWidth",constants:{SCROLL_LOCK_ID:il},components:{BreakpointEmitter:Ho["a"]},inject:["store"],props:{shownOnMobile:{type:Boolean,default:!1},hiddenOnLarge:{type:Boolean,default:!1},fixedWidth:{type:Number,default:null}},data(){const e=window.innerWidth,t=window.innerHeight,n=Vo["b"].large,i=el(tl[n]),a=el(nl[n]),s=e>=Xo?Yo:Jo,r=Fo["c"].get(Qo,s);return{isDragging:!1,width:this.fixedWidth||Math.min(Math.max(r,i),a),isTouch:!1,windowWidth:e,windowHeight:t,breakpoint:n,noTransition:!1,isTransitioning:!1,isOpeningOnLarge:!1,focusTrapInstance:null,mobileTopOffset:0,topOffset:0}},computed:{minWidthPercent:({breakpoint:e})=>tl[e]||0,maxWidthPercent:({breakpoint:e})=>nl[e]||100,maxWidth:({maxWidthPercent:e,windowWidth:t,fixedWidth:n})=>Math.max(n,el(e,t)),minWidth:({minWidthPercent:e,windowWidth:t,fixedWidth:n})=>Math.min(n||t,el(e,t)),widthInPx:({width:e})=>e+"px",hiddenOnLargeThreshold:({minWidth:e})=>e/2,events:({isTouch:e})=>e?Zo.touch:Zo.mouse,asideStyles:({widthInPx:e,mobileTopOffset:t,topOffset:n,windowHeight:i})=>({width:e,"--top-offset":n?n+"px":null,"--top-offset-mobile":t+"px","--app-height":i+"px"}),asideClasses:({isDragging:e,shownOnMobile:t,noTransition:n,isTransitioning:i,hiddenOnLarge:a,mobileTopOffset:s,isOpeningOnLarge:r})=>({dragging:e,"show-on-mobile":t,"hide-on-large":a,"is-opening-on-large":r,"no-transition":n,"sidebar-transitioning":i,"has-mobile-top-offset":s}),scrollLockID:()=>il,BreakpointScopes:()=>Vo["c"]},async mounted(){window.addEventListener("keydown",this.onEscapeKeydown),window.addEventListener("resize",this.storeWindowSize,{passive:!0}),window.addEventListener("orientationchange",this.storeWindowSize,{passive:!0}),this.storeTopOffset(),0===this.topOffset&&0===window.scrollY||window.addEventListener("scroll",this.storeTopOffset,{passive:!0}),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("keydown",this.onEscapeKeydown),window.removeEventListener("resize",this.storeWindowSize),window.removeEventListener("orientationchange",this.storeWindowSize),window.removeEventListener("scroll",this.storeTopOffset),this.shownOnMobile&&this.toggleScrollLock(!1),this.focusTrapInstance&&this.focusTrapInstance.destroy()}),await this.$nextTick(),this.focusTrapInstance=new Wo["a"](this.$refs.aside)},watch:{$route:"closeMobileSidebar",width:{immediate:!0,handler:Ne((function(e){this.emitEventChange(e)}),150)},windowWidth:"getWidthInCheck",async breakpoint(e){this.getWidthInCheck(),e===Vo["b"].large&&this.closeMobileSidebar(),this.noTransition=!0,await Object(Ee["b"])(5),this.noTransition=!1},shownOnMobile:"handleExternalOpen",async isTransitioning(e){e?(await Object(Ee["a"])(1e3),this.isTransitioning=!1):this.updateContentWidthInStore()},hiddenOnLarge(){this.isTransitioning=!0}},methods:{getWidthInCheck:Ir((function(){this.width>this.maxWidth?this.width=this.maxWidth:this.widththis.maxWidth&&(i=this.maxWidth),this.hiddenOnLarge&&i>=this.hiddenOnLargeThreshold&&(this.$emit("update:hiddenOnLarge",!1),this.isOpeningOnLarge=!0),this.width=Math.max(i,this.minWidth),i<=this.hiddenOnLargeThreshold&&this.$emit("update:hiddenOnLarge",!0)},stopDrag(e){e.preventDefault(),this.isDragging&&(this.isDragging=!1,Fo["c"].set(Qo,this.width),document.removeEventListener(this.events.move,this.handleDrag),document.removeEventListener(this.events.end,this.stopDrag),this.emitEventChange(this.width))},emitEventChange(e){this.$emit("width-change",e),this.updateContentWidthInStore()},getTopOffset(){const e=document.getElementById(Go["e"]);if(!e)return 0;const{y:t}=e.getBoundingClientRect();return Math.max(t,0)},handleExternalOpen(e){e&&(this.mobileTopOffset=this.getTopOffset()),this.toggleScrollLock(e)},async updateContentWidthInStore(){await this.$nextTick(),this.store.setContentWidth(this.$refs.content.offsetWidth)},async toggleScrollLock(e){const t=document.getElementById(this.scrollLockID);e?(await this.$nextTick(),Lo["b"].lockScroll(t),this.focusTrapInstance.start(),Uo["a"].hide(this.$refs.aside)):(Lo["b"].unlockScroll(t),this.focusTrapInstance.stop(),Uo["a"].show(this.$refs.aside))},storeTopOffset:Ne((function(){this.topOffset=this.getTopOffset()}),60),async trackTransitionStart({propertyName:e}){"width"!==e&&"transform"!==e||(this.isTransitioning=!0)},trackTransitionEnd({propertyName:e}){"width"!==e&&"transform"!==e||(this.isTransitioning=!1,this.isOpeningOnLarge=!1)}}},sl=al,rl=(n("cb1f"),Object(K["a"])(sl,Ko,qo,!1,null,"f3c6416c",null)),ol=rl.exports,ll=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{staticClass:"navigator",attrs:{"aria-labelledby":e.INDEX_ROOT_KEY}},[e.isFetching?n("LoadingNavigatorCard",e._b({on:{close:function(t){return e.$emit("close")}}},"LoadingNavigatorCard",e.technologyProps,!1)):n("NavigatorCard",e._b({attrs:{type:e.type,children:e.flatChildren,"active-path":e.activePath,scrollLockID:e.scrollLockID,"error-fetching":e.errorFetching,"render-filter-on-top":e.renderFilterOnTop,"api-changes":e.apiChanges,"allow-hiding":e.allowHiding,"navigator-references":e.navigatorReferences},on:{close:function(t){return e.$emit("close")}},scopedSlots:e._u([{key:"filter",fn:function(){return[e._t("filter")]},proxy:!0}],null,!0)},"NavigatorCard",e.technologyProps,!1)),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" "+e._s(e.$t("navigator.navigator-is",{state:e.isFetching?e.$t("navigator.state.loading"):e.$t("navigator.state.ready")}))+" ")])],1)},cl=[],dl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCard",e._b({class:{"filter-on-top":e.renderFilterOnTop},on:{close:function(t){return e.$emit("close")},"head-click-alt":e.toggleAllNodes},scopedSlots:e._u([{key:"body",fn:function(t){var i=t.className;return[e._t("post-head"),n("div",{class:i,on:{"!keydown":[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:t.altKey?(t.preventDefault(),e.focusFirst.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:t.altKey?(t.preventDefault(),e.focusLast.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))}]}},[n("DynamicScroller",{directives:[{name:"show",rawName:"v-show",value:e.hasNodes,expression:"hasNodes"}],ref:"scroller",staticClass:"scroller",attrs:{id:e.scrollLockID,"aria-label":e.$t("navigator.title"),items:e.nodesToRender,"min-item-size":e.itemSize,"emit-update":"","key-field":"uid"},on:{update:e.handleScrollerUpdate,"!keydown":[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:t.altKey?(t.preventDefault(),e.focusFirst.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:t.altKey?(t.preventDefault(),e.focusLast.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))}]},nativeOn:{focusin:function(t){return e.handleFocusIn.apply(null,arguments)},focusout:function(t){return e.handleFocusOut.apply(null,arguments)}},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.item,a=t.active,s=t.index;return[n("DynamicScrollerItem",e._b({ref:"dynamicScroller_"+i.uid},"DynamicScrollerItem",{active:a,item:i,dataIndex:s},!1),[n("NavigatorCardItem",{attrs:{item:i,isRendered:a,"filter-pattern":e.filterPattern,"is-active":i.uid===e.activeUID,"is-bold":e.activePathMap[i.uid],expanded:e.openNodes[i.uid],"api-change":e.apiChangesObject[i.path],isFocused:e.focusedIndex===s,enableFocus:!e.externalFocusChange,"navigator-references":e.navigatorReferences},on:{toggle:e.toggle,"toggle-full":e.toggleFullTree,"toggle-siblings":e.toggleSiblings,navigate:e.handleNavigationChange,"focus-parent":e.focusNodeParent}})],1)]}}],null,!0)}),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" "+e._s(e.politeAriaLive)+" ")]),n("div",{staticClass:"no-items-wrapper",attrs:{"aria-live":"assertive"}},[n("p",{staticClass:"no-items"},[e._v(" "+e._s(e.$t(e.assertiveAriaLive))+" ")])])],1),e.errorFetching?e._e():n("div",{staticClass:"filter-wrapper"},[n("div",{staticClass:"navigator-filter"},[n("div",{staticClass:"input-wrapper"},[n("FilterInput",{staticClass:"filter-component",attrs:{tags:e.availableTags,translatableTags:e.translatableTags,"selected-tags":e.selectedTagsModelValue,placeholder:e.$t("filter.title"),"should-keep-open-on-blur":!1,"position-reversed":!e.renderFilterOnTop,"clear-filter-on-tag-select":!1},on:{"update:selectedTags":function(t){e.selectedTagsModelValue=t},"update:selected-tags":function(t){e.selectedTagsModelValue=t},clear:e.clearFilters},model:{value:e.filter,callback:function(t){e.filter=t},expression:"filter"}})],1),e._t("filter")],2)])]}}],null,!0)},"BaseNavigatorCard",{technology:e.technology,isTechnologyBeta:e.isTechnologyBeta,technologyPath:e.technologyPath},!1))},ul=[],hl=n("e508");function pl(e){const t=Object(nn["g"])(Object(nn["d"])(e));return new RegExp(t,"ig")}var gl,fl,ml=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCardItem",{staticClass:"navigator-card-item",class:{expanded:e.expanded,active:e.isActive,"is-group":e.isGroupMarker},style:{"--nesting-index":e.item.depth},attrs:{"data-nesting-index":e.item.depth,id:"container-"+e.item.uid,"aria-hidden":e.isRendered?null:"true",hideNavigatorIcon:e.isGroupMarker},nativeOn:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button?null:(t.preventDefault(),e.handleLeftKeydown.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.handleRightKeydown.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.clickReference.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])?null:t.altKey?"button"in t&&2!==t.button?null:(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null}]},scopedSlots:e._u([{key:"depth-spacer",fn:function(){return[n("span",{attrs:{hidden:"",id:e.usageLabel}},[e._v(" "+e._s(e.$t("filter.navigate"))+" ")]),e.isParent?n("button",{staticClass:"tree-toggle",attrs:{tabindex:"-1","aria-labelledby":e.item.uid,"aria-expanded":e.expanded?"true":"false","aria-describedby":e.ariaDescribedBy},on:{click:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.toggleTree.apply(null,arguments))},function(t){return t.altKey?(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null},function(t){return t.metaKey?(t.preventDefault(),e.toggleSiblings.apply(null,arguments)):null}]}},[n("InlineChevronRightIcon",{staticClass:"icon-inline chevron",class:{rotate:e.expanded,animating:e.idState.isOpening}})],1):e._e()]},proxy:!0},{key:"navigator-icon",fn:function(t){var i,a=t.className;return[e.apiChange?n("span",{class:[(i={},i["changed changed-"+e.apiChange]=e.apiChange,i),a]}):n("TopicTypeIcon",{key:e.item.uid,class:a,attrs:{type:e.item.type,"image-override":e.item.icon?e.navigatorReferences[e.item.icon]:null,shouldCalculateOptimalWidth:!1}})]}},{key:"title-container",fn:function(){return[e.isParent?n("span",{attrs:{hidden:"",id:e.parentLabel}},[e._v(e._s(e.$tc("filter.parent-label",e.item.childUIDs.length,{"number-siblings":e.item.index+1,"total-siblings":e.item.siblingsCount,"parent-siblings":e.item.parent,"number-parent":e.item.childUIDs.length})))]):e._e(),e.isParent?e._e():n("span",{attrs:{id:e.siblingsLabel,hidden:""}},[e._v(" "+e._s(e.$t("filter.siblings-label",{"number-siblings":e.item.index+1,"total-siblings":e.item.siblingsCount,"parent-siblings":e.item.parent}))+" ")]),n(e.refComponent,{ref:"reference",tag:"component",staticClass:"leaf-link",class:{bolded:e.isBold},attrs:{id:e.item.uid,url:e.isGroupMarker?null:e.item.path||"",tabindex:e.isFocused?"0":"-1","aria-describedby":e.ariaDescribedBy+" "+e.usageLabel},nativeOn:{click:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.handleClick.apply(null,arguments)},function(t){return t.altKey?(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null}]}},[n("HighlightMatches",{attrs:{text:e.item.title,matcher:e.filterPattern}})],1),e.isDeprecated?n("Badge",{attrs:{variant:"deprecated"}}):e.isBeta?n("Badge",{attrs:{variant:"beta"}}):e._e()]},proxy:!0}])})},yl=[],vl=n("34b0"),bl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"navigator-card-item"},[n("div",{staticClass:"head-wrapper"},[n("div",{staticClass:"depth-spacer"},[e._t("depth-spacer")],2),e.hideNavigatorIcon?e._e():n("div",{staticClass:"navigator-icon-wrapper"},[e._t("navigator-icon",null,{className:"navigator-icon"})],2),n("div",{staticClass:"title-container"},[e._t("title-container")],2)])])},Tl=[],Sl={name:"BaseNavigatorCardItem",props:{hideNavigatorIcon:{type:Boolean,default:()=>!1}}},_l=Sl,Cl=(n("b39c"),Object(K["a"])(_l,bl,Tl,!1,null,"0b9fe514",null)),kl=Cl.exports,wl={name:"HighlightMatch",props:{text:{type:String,required:!0},matcher:{type:RegExp,default:void 0}},render(e){const{matcher:t,text:n}=this;if(!t)return e("p",{class:"highlight"},n);const i=[];let a=0,s=null;const r=new RegExp(t,"gi");while(null!==(s=r.exec(n))){const t=s[0].length,r=s.index+t,o=n.slice(a,s.index);o&&i.push(e("span",o));const l=n.slice(s.index,r);l&&i.push(e("span",{class:"match"},l)),a=r}const o=n.slice(a,n.length);return o&&i.push(e("span",o)),e("p",{class:"highlight"},i)}},Il=wl,xl=(n("b831"),Object(K["a"])(Il,gl,fl,!1,null,"d75876e2",null)),$l=xl.exports,Ol={name:"NavigatorCardItem",mixins:[Object(hl["c"])({idProp:e=>e.item.uid})],components:{BaseNavigatorCardItem:kl,HighlightMatches:$l,TopicTypeIcon:_e["a"],InlineChevronRightIcon:vl["a"],Reference:To["a"],Badge:ei["a"]},props:{isRendered:{type:Boolean,default:!1},item:{type:Object,required:!0},expanded:{type:Boolean,default:!1},filterPattern:{type:RegExp,default:void 0},isActive:{type:Boolean,default:!1},isBold:{type:Boolean,default:!1},apiChange:{type:String,default:null,validator:e=>It["d"].includes(e)},isFocused:{type:Boolean,default:()=>!1},enableFocus:{type:Boolean,default:!0},navigatorReferences:{type:Object,default:()=>({})}},idState(){return{isOpening:!1}},computed:{isGroupMarker:({item:{type:e}})=>e===Ce["b"].groupMarker,isParent:({item:e,isGroupMarker:t})=>!!e.childUIDs.length&&!t,parentLabel:({item:e})=>"label-parent-"+e.uid,siblingsLabel:({item:e})=>"label-"+e.uid,usageLabel:({item:e})=>"usage-"+e.uid,ariaDescribedBy:({isParent:e,parentLabel:t,siblingsLabel:n})=>e?""+t:""+n,isBeta:({item:{beta:e}})=>!!e,isDeprecated:({item:{deprecated:e}})=>!!e,refComponent:({isGroupMarker:e})=>e?"h3":To["a"]},methods:{toggleTree(){this.idState.isOpening=!0,this.$emit("toggle",this.item)},toggleEntireTree(){this.idState.isOpening=!0,this.$emit("toggle-full",this.item)},toggleSiblings(){this.idState.isOpening=!0,this.$emit("toggle-siblings",this.item)},handleLeftKeydown(){this.expanded?this.toggleTree():this.$emit("focus-parent",this.item)},handleRightKeydown(){!this.expanded&&this.isParent&&this.toggleTree()},clickReference(){(this.$refs.reference.$el||this.$refs.reference).click()},focusReference(){(this.$refs.reference.$el||this.$refs.reference).focus()},handleClick(){this.isGroupMarker||this.$emit("navigate",this.item.uid)}},watch:{async isFocused(e){await Object(Ee["b"])(8),e&&this.isRendered&&this.enableFocus&&this.focusReference()},async expanded(){await Object(Ee["b"])(9),this.idState.isOpening=!1}}},Dl=Ol,Pl=(n("6ca9"),Object(K["a"])(Dl,ml,yl,!1,null,"0c96ff75",null)),Ll=Pl.exports,Al=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"navigator-card"},[n("div",{staticClass:"navigator-card-full-height"},[n("div",{staticClass:"navigator-card-inner"},[n("div",{staticClass:"head-wrapper"},[n("div",{staticClass:"head-inner"},[n("button",{staticClass:"close-card",class:{"hide-on-large":!e.allowHiding},attrs:{id:e.SIDEBAR_HIDE_BUTTON_ID,"aria-label":e.$t("navigator.close-navigator")},on:{click:e.handleHideClick}},[n("SidenavIcon",{staticClass:"icon-inline close-icon"})],1),n("Reference",{staticClass:"navigator-head",attrs:{id:e.INDEX_ROOT_KEY,url:e.technologyPath},nativeOn:{click:function(t){return t.altKey?(t.preventDefault(),e.$emit("head-click-alt")):null}}},[n("h2",{staticClass:"card-link"},[e._v(" "+e._s(e.technology)+" ")]),e.isTechnologyBeta?n("Badge",{attrs:{variant:"beta"}}):e._e()],1)],1)]),e._t("body",null,{className:"card-body"})],2)])])},Nl=[],El=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"sidenav-icon",attrs:{viewBox:"0 0 14 14",height:"14",themeId:"sidenav"}},[n("path",{attrs:{d:"M6.533 1.867h-6.533v10.267h14v-10.267zM0.933 11.2v-8.4h4.667v8.4zM13.067 11.2h-6.533v-8.4h6.533z"}}),n("path",{attrs:{d:"M1.867 5.133h2.8v0.933h-2.8z"}}),n("path",{attrs:{d:"M1.867 7.933h2.8v0.933h-2.8z"}})])},jl=[],Bl={name:"SidenavIcon",components:{SVGIcon:fr["a"]}},Rl=Bl,Ml=Object(K["a"])(Rl,El,jl,!1,null,null,null),zl=Ml.exports,Kl={name:"BaseNavigatorCard",components:{SidenavIcon:zl,Reference:To["a"],Badge:ei["a"]},props:{allowHiding:{type:Boolean,default:!0},technologyPath:{type:String,default:""},technology:{type:String,required:!0},isTechnologyBeta:{type:Boolean,default:!1}},data(){return{SIDEBAR_HIDE_BUTTON_ID:Fs,INDEX_ROOT_KEY:Ks}},methods:{async handleHideClick(){this.$emit("close"),await this.$nextTick();const e=document.getElementById(Go["d"]);e&&e.focus()}}},ql=Kl,Fl=(n("b32a"),Object(K["a"])(ql,Al,Nl,!1,null,"24789ed0",null)),Hl=Fl.exports;const Vl=e=>e[e.length-1],Wl=(e,t)=>JSON.stringify(e)===JSON.stringify(t),Ul="navigator.state",Gl={sampleCode:"sampleCode",tutorials:"tutorials",articles:"articles"},Ql={[Gl.sampleCode]:"Sample Code",[Gl.tutorials]:"Tutorials",[Gl.articles]:"Articles"},Xl=Object.fromEntries(Object.entries(Ql).map(([e,t])=>[t,e])),Yl={[Ce["b"].article]:Gl.articles,[Ce["b"].learn]:Gl.tutorials,[Ce["b"].overview]:Gl.tutorials,[Ce["b"].resources]:Gl.tutorials,[Ce["b"].sampleCode]:Gl.sampleCode,[Ce["b"].section]:Gl.tutorials,[Ce["b"].tutorial]:Gl.tutorials,[Ce["b"].project]:Gl.tutorials},Jl="navigator.no-results",Zl="navigator.no-children",ec="navigator.error-fetching",tc="navigator.items-found",nc="navigator.tags.hide-deprecated";var ic={name:"NavigatorCard",constants:{STORAGE_KEY:Ul,FILTER_TAGS:Gl,FILTER_TAGS_TO_LABELS:Ql,FILTER_LABELS_TO_TAGS:Xl,TOPIC_TYPE_TO_TAG:Yl,ERROR_FETCHING:ec,ITEMS_FOUND:tc,HIDE_DEPRECATED:nc},components:{FilterInput:oo,NavigatorCardItem:Ll,DynamicScroller:hl["a"],DynamicScrollerItem:hl["b"],BaseNavigatorCard:Hl},props:{...Hl.props,children:{type:Array,required:!0},activePath:{type:Array,required:!0},type:{type:String,required:!0},scrollLockID:{type:String,default:""},errorFetching:{type:Boolean,default:!1},apiChanges:{type:Object,default:null},isTechnologyBeta:{type:Boolean,default:!1},navigatorReferences:{type:Object,default:()=>{}},renderFilterOnTop:{type:Boolean,default:!1},hideAvailableTags:{type:Boolean,default:!1}},mixins:[zr],data(){return{filter:"",debouncedFilter:"",selectedTags:[],openNodes:Object.freeze({}),nodesToRender:Object.freeze([]),activeUID:null,lastFocusTarget:null,allNodesToggled:!1,translatableTags:[nc]}},computed:{politeAriaLive(){const{hasNodes:e,nodesToRender:t}=this;return e?this.$tc(tc,t.length,{number:t.length}):""},assertiveAriaLive:({hasNodes:e,hasFilter:t,errorFetching:n})=>e?"":t?Jl:n?ec:Zl,availableTags({selectedTags:e,renderableChildNodesMap:t,apiChangesObject:n,hideAvailableTags:i}){if(i||e.length)return[];const a=new Set(Object.values(n)),s=new Set(Object.values(Ql)),r=new Set([nc]);a.size&&r.delete(nc);const o={type:[],changes:[],other:[]};for(const l in t){if(!Object.hasOwnProperty.call(t,l))continue;if(!s.size&&!a.size&&!r.size)break;const{type:e,path:i,deprecated:c}=t[l],d=Ql[Yl[e]],u=n[i];s.has(d)&&(o.type.push(d),s.delete(d)),u&&a.has(u)&&(o.changes.push(this.$t(It["b"][u])),a.delete(u)),c&&r.has(nc)&&(o.other.push(nc),r.delete(nc))}return o.type.concat(o.changes,o.other)},selectedTagsModelValue:{get(){return this.selectedTags.map(e=>Ql[e]||this.$t(It["b"][e])||e)},set(e){(this.selectedTags.length||e.length)&&(this.selectedTags=e.map(e=>Xl[e]||It["a"][e]||e))}},filterPattern:({debouncedFilter:e})=>e?new RegExp(pl(e),"i"):null,itemSize:()=>qs,childrenMap({children:e}){return Vs(e)},activePathChildren({activeUID:e,childrenMap:t}){return e&&t[e]?Qs(e,t):[]},activePathMap:({activePathChildren:e})=>Object.fromEntries(e.map(({uid:e})=>[e,!0])),activeIndex:({activeUID:e,nodesToRender:t})=>t.findIndex(t=>t.uid===e),filteredChildren({hasFilter:e,children:t,filterPattern:n,selectedTags:i,apiChanges:a}){if(!e)return[];const s=new Set(i);return t.filter(({title:e,path:t,type:i,deprecated:r,deprecatedChildrenCount:o,childUIDs:l})=>{const c=r||o===l.length,d=!n||n.test(e);let u=!0;s.size&&(u=s.has(Yl[i]),a&&!u&&(u=s.has(a[t])),!c&&s.has(nc)&&(u=!0));const h=!a||!!a[t];return d&&u&&h})},renderableChildNodesMap({hasFilter:e,childrenMap:t,deprecatedHidden:n,filteredChildren:i,removeDeprecated:a}){if(!e)return t;const s=i.length-1,r=new Set([]);for(let o=s;o>=0;o-=1){const e=i[o],s=t[e.groupMarkerUID];if(s&&r.add(s),r.has(e))continue;if(r.has(t[e.parent])&&e.type!==Ce["b"].groupMarker){r.add(e);continue}let l=[];e.childUIDs.length&&(l=a(Us(e.uid,t),n)),l.concat(Qs(e.uid,t)).forEach(e=>r.add(e))}return Vs([...r])},nodeChangeDeps:({filteredChildren:e,activePathChildren:t,debouncedFilter:n,selectedTags:i})=>[e,t,n,i],hasFilter({debouncedFilter:e,selectedTags:t,apiChanges:n}){return Boolean(e.length||t.length||n)},deprecatedHidden:({selectedTags:e})=>e[0]===nc,apiChangesObject(){return this.apiChanges||{}},hasNodes:({nodesToRender:e})=>!!e.length,totalItemsToNavigate:({nodesToRender:e})=>e.length,lastActivePathItem:({activePath:e})=>Vl(e)},created(){this.restorePersistedState()},watch:{filter:"debounceInput",nodeChangeDeps:"trackOpenNodes",activePath:"handleActivePathChange",apiChanges(e){e||(this.selectedTags=this.selectedTags.filter(e=>!this.$t(It["b"][e])))},async activeUID(e,t){await this.$nextTick();const n=this.$refs["dynamicScroller_"+t];n&&n.updateSize&&n.updateSize()}},methods:{setUnlessEqual(e,t){Wl(t,this[e])||(this[e]=Object.freeze(t))},toggleAllNodes(){const e=this.children.filter(e=>e.parent===Ks&&e.type!==Ce["b"].groupMarker&&e.childUIDs.length);this.allNodesToggled=!this.allNodesToggled,this.allNodesToggled&&(this.openNodes={},this.generateNodesToRender()),e.forEach(e=>{this.toggleFullTree(e)})},clearFilters(){this.filter="",this.debouncedFilter="",this.selectedTags=[]},scrollToFocus(){this.$refs.scroller.scrollToItem(this.focusedIndex)},debounceInput:Ir((function(e){this.debouncedFilter=e,this.lastFocusTarget=null}),200),trackOpenNodes([e,t,n,i],[,a=[],s="",r=[]]=[]){if(n!==s&&!s&&this.getFromStorage("filter")||!Wl(i,r)&&!r.length&&this.getFromStorage("selectedTags",[]).length)return;const o=!Wl(a,t),{childrenMap:l}=this;let c=t;if(!(this.deprecatedHidden&&!this.debouncedFilter.length||o&&this.hasFilter)&&this.hasFilter){const t=new Set,n=e.length-1;for(let i=n;i>=0;i-=1){const n=e[i];t.has(l[n.parent])||t.has(n)||Qs(n.uid,l).slice(0,-1).forEach(e=>t.add(e))}c=[...t]}const d=o?{...this.openNodes}:{},u=c.reduce((e,t)=>(e[t.uid]=!0,e),d);this.setUnlessEqual("openNodes",u),this.generateNodesToRender(),this.updateFocusIndexExternally()},toggle(e){const t=this.openNodes[e.uid];let n=[],i=[];if(t){const t=Object(w["a"])(this.openNodes),n=Us(e.uid,this.childrenMap);n.forEach(({uid:e})=>{delete t[e]}),this.setUnlessEqual("openNodes",t),i=n.slice(1)}else this.setUnlessEqual("openNodes",{...this.openNodes,[e.uid]:!0}),n=Gs(e.uid,this.childrenMap,this.children).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e.uid,include:n,exclude:i})},toggleFullTree(e){const t=this.openNodes[e.uid],n=Object(w["a"])(this.openNodes),i=Us(e.uid,this.childrenMap);let a=[],s=[];i.forEach(({uid:e})=>{t?delete n[e]:n[e]=!0}),t?a=i.slice(1):s=i.slice(1).filter(e=>this.renderableChildNodesMap[e.uid]),this.setUnlessEqual("openNodes",n),this.augmentRenderNodes({uid:e.uid,exclude:a,include:s})},toggleSiblings(e){const t=this.openNodes[e.uid],n=Object(w["a"])(this.openNodes),i=Xs(e.uid,this.childrenMap,this.children);i.forEach(({uid:e,childUIDs:i,type:a})=>{if(i.length&&a!==Ce["b"].groupMarker)if(t){const t=Us(e,this.childrenMap);t.forEach(e=>{delete n[e.uid]}),delete n[e],this.augmentRenderNodes({uid:e,exclude:t.slice(1),include:[]})}else{n[e]=!0;const t=Gs(e,this.childrenMap,this.children).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e,exclude:[],include:t})}}),this.setUnlessEqual("openNodes",n),this.persistState()},removeDeprecated(e,t){return t?e.filter(({deprecated:e})=>!e):e},generateNodesToRender(){const{children:e,openNodes:t,renderableChildNodesMap:n}=this;this.setUnlessEqual("nodesToRender",e.filter(e=>n[e.uid]&&(e.parent===Ks||t[e.parent]))),this.persistState(),this.scrollToElement()},augmentRenderNodes({uid:e,include:t=[],exclude:n=[]}){const i=this.nodesToRender.findIndex(t=>t.uid===e);if(t.length){const e=t.filter(e=>!this.nodesToRender.includes(e)),n=this.nodesToRender.slice(0);n.splice(i+1,0,...e),this.setUnlessEqual("nodesToRender",n)}else if(n.length){const e=new Set(n);this.setUnlessEqual("nodesToRender",this.nodesToRender.filter(t=>!e.has(t)))}this.persistState()},getFromStorage(e,t=null){const n=Fo["b"].get(Ul,{}),i=n[this.technologyPath];return i?e?i[e]||t:i:t},persistState(){const e={path:this.lastActivePathItem},{path:t}=this.activeUID&&this.childrenMap[this.activeUID]||e,n={technology:this.technology,path:t,hasApiChanges:!!this.apiChanges,openNodes:Object.keys(this.openNodes).map(Number),nodesToRender:this.nodesToRender.map(({uid:e})=>e),activeUID:this.activeUID,filter:this.filter,selectedTags:this.selectedTags},i={...Fo["b"].get(Ul,{}),[this.technologyPath]:n};Fo["b"].set(Ul,i)},clearPersistedState(){const e={...Fo["b"].get(Ul,{}),[this.technologyPath]:{}};Fo["b"].set(Ul,e)},restorePersistedState(){const e=this.getFromStorage();if(!e||e.path!==this.lastActivePathItem)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const{technology:t,nodesToRender:n=[],filter:i="",hasAPIChanges:a=!1,activeUID:s=null,selectedTags:r=[],openNodes:o}=e;if(!n.length&&!i&&!r.length)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const{childrenMap:l}=this,c=n.every(e=>l[e]),d=s?(this.childrenMap[s]||{}).path===this.lastActivePathItem:1===this.activePath.length;if(t!==this.technology||!c||a!==Boolean(this.apiChanges)||!d||s&&!i&&!r.length&&!n.includes(s))return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);this.setUnlessEqual("openNodes",Object.fromEntries(o.map(e=>[e,!0]))),this.setUnlessEqual("nodesToRender",n.map(e=>l[e])),this.selectedTags=r,this.filter=i,this.debouncedFilter=this.filter,this.activeUID=s,this.scrollToElement()},async scrollToElement(){if(await Object(Ee["b"])(1),!this.$refs.scroller)return;if(this.hasFilter&&!this.deprecatedHidden)return void this.$refs.scroller.scrollToItem(0);const e=document.getElementById(this.activeUID);if(e&&0===this.getChildPositionInScroller(e))return;const t=this.nodesToRender.findIndex(e=>e.uid===this.activeUID);-1!==t&&this.$refs.scroller.scrollToItem(t)},getChildPositionInScroller(e){if(!e)return 0;const{paddingTop:t,paddingBottom:n}=getComputedStyle(this.$refs.scroller.$el),i={top:parseInt(t,10)||0,bottom:parseInt(n,10)||0},{y:a,height:s}=this.$refs.scroller.$el.getBoundingClientRect(),{y:r}=e.getBoundingClientRect(),o=e.offsetParent.offsetHeight,l=r-a-i.top;return l<0?-1:l+o>=s-i.bottom?1:0},isInsideScroller(e){return this.$refs.scroller.$el.contains(e)},handleFocusIn({target:e}){this.lastFocusTarget=e;const t=this.getChildPositionInScroller(e);if(0===t)return;const{offsetHeight:n}=e.offsetParent;this.$refs.scroller.$el.scrollBy({top:n*t,left:0})},handleFocusOut(e){e.relatedTarget&&(this.isInsideScroller(e.relatedTarget)||(this.lastFocusTarget=null))},handleScrollerUpdate:Ir((async function(){await Object(Ee["a"])(300),this.lastFocusTarget&&this.isInsideScroller(this.lastFocusTarget)&&document.activeElement!==this.lastFocusTarget&&this.lastFocusTarget.focus({preventScroll:!0})}),50),setActiveUID(e){this.activeUID=e},handleNavigationChange(e){this.childrenMap[e].path.startsWith(this.technologyPath)&&this.setActiveUID(e)},pathsToFlatChildren(e){const t=e.slice(0).reverse(),{childrenMap:n}=this;let i=this.children;const a=[];while(t.length){const e=t.pop(),s=i.find(t=>t.path===e);if(!s)break;a.push(s),t.length&&(i=s.childUIDs.map(e=>n[e]))}return a},handleActivePathChange(e){const t=this.childrenMap[this.activeUID],n=Vl(e);if(t){if(n===t.path)return;const e=Xs(this.activeUID,this.childrenMap,this.children),i=Gs(this.activeUID,this.childrenMap,this.children),a=Qs(this.activeUID,this.childrenMap),s=[...i,...e,...a].find(e=>e.path===n);if(s)return void this.setActiveUID(s.uid)}const i=this.pathsToFlatChildren(e);i.length?this.setActiveUID(i[i.length-1].uid):this.activeUID?this.setActiveUID(null):this.trackOpenNodes(this.nodeChangeDeps)},updateFocusIndexExternally(){this.externalFocusChange=!0,this.activeIndex>0?this.focusIndex(this.activeIndex):this.focusIndex(0)},focusNodeParent(e){const t=this.childrenMap[e.parent];if(!t)return;const n=this.nodesToRender.findIndex(e=>e.uid===t.uid);-1!==n&&this.focusIndex(n)}}},ac=ic,sc=(n("8e4d"),Object(K["a"])(ac,dl,ul,!1,null,"1543892a",null)),rc=sc.exports,oc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCard",e._b({on:{close:function(t){return e.$emit("close")}},scopedSlots:e._u([{key:"body",fn:function(t){var i=t.className;return[n("transition",{attrs:{name:"delay-visibility"}},[n("div",{staticClass:"loading-navigator",class:i,attrs:{"aria-hidden":"true"}},e._l(e.LOADER_ROWS,(function(e,t){return n("LoadingNavigatorItem",{key:t,attrs:{index:t,width:e.width,hideNavigatorIcon:e.hideNavigatorIcon}})})),1)])]}}])},"BaseNavigatorCard",e.$props,!1))},lc=[],cc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCardItem",{staticClass:"loading-navigator-item",style:"--index: "+e.index+";",attrs:{hideNavigatorIcon:e.hideNavigatorIcon},scopedSlots:e._u([{key:"navigator-icon",fn:function(e){var t=e.className;return[n("div",{class:t})]}},{key:"title-container",fn:function(){return[n("div",{staticClass:"loader",style:{width:e.width}})]},proxy:!0}])})},dc=[],uc={name:"LoadingNavigatorItem",components:{BaseNavigatorCardItem:kl},props:{...kl.props,index:{type:Number,default:0},width:{type:String,default:"50%"}}},hc=uc,pc=(n("d1b4"),Object(K["a"])(hc,cc,dc,!1,null,"0de29914",null)),gc=pc.exports;const fc=[{width:"30%",hideNavigatorIcon:!0},{width:"80%"},{width:"50%"}];var mc={name:"LoadingNavigatorCard",components:{BaseNavigatorCard:Hl,LoadingNavigatorItem:gc},props:{...Hl.props},data(){return{LOADER_ROWS:fc}}},yc=mc,vc=(n("115d"),Object(K["a"])(yc,oc,lc,!1,null,"4b6d345f",null)),bc=vc.exports,Tc={name:"Navigator",components:{NavigatorCard:rc,LoadingNavigatorCard:bc},data(){return{INDEX_ROOT_KEY:Ks}},props:{flatChildren:{type:Array,required:!0},parentTopicIdentifiers:{type:Array,required:!0},technology:{type:Object,required:!0},isFetching:{type:Boolean,default:!1},references:{type:Object,default:()=>{}},navigatorReferences:{type:Object,default:()=>{}},scrollLockID:{type:String,default:""},errorFetching:{type:Boolean,default:!1},renderFilterOnTop:{type:Boolean,default:!1},apiChanges:{type:Object,default:null},allowHiding:{type:Boolean,default:!0}},computed:{parentTopicReferences({references:e,parentTopicIdentifiers:t}){return t.reduce((t,n)=>{const i=e[n];return i?t.concat(i):(console.error(`Reference for "${n}" is missing`),t)},[])},activePath({parentTopicReferences:e,$route:{path:t}}){if(t=t.replace(/\/$/,"").toLowerCase(),!e.length)return[t];let n=1;return"technologies"===e[0].kind&&(n=2),e.slice(n).map(e=>e.url).concat(t)},type:()=>Ce["b"].module,technologyProps:({technology:e})=>({technology:e.title,technologyPath:e.path||e.url,isTechnologyBeta:e.beta})}},Sc=Tc,_c=(n("9c7e"),Object(K["a"])(Sc,ll,cl,!1,null,"159b9764",null)),Cc=_c.exports,kc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{staticClass:"documentation-nav",attrs:{breakpoint:e.BreakpointName.medium,hasOverlay:!1,hasSolidBackground:"",hasNoBorder:e.hasNoBorder,isDark:e.isDark,isWideFormat:"",hasFullWidthBorder:"","aria-label":e.$t("api-reference")},scopedSlots:e._u([e.displaySidenav?{key:"pre-title",fn:function(t){var i=t.closeNav,a=t.isOpen,s=t.currentBreakpoint,r=t.className;return[n("div",{class:r},[n("transition",{attrs:{name:"sidenav-toggle"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.sidenavHiddenOnLarge,expression:"sidenavHiddenOnLarge"}],staticClass:"sidenav-toggle-wrapper"},[n("button",{staticClass:"sidenav-toggle",attrs:{"aria-label":e.$t("navigator.open-navigator"),id:e.baseNavOpenSidenavButtonId,tabindex:a?-1:null},on:{click:function(t){return t.preventDefault(),e.handleSidenavToggle(i,s)}}},[n("span",{staticClass:"sidenav-icon-wrapper"},[n("SidenavIcon",{staticClass:"icon-inline sidenav-icon"})],1)]),n("span",{staticClass:"sidenav-toggle__separator"})])])],1)]}}:null,{key:"tray",fn:function(t){var i=t.closeNav;return[n("Hierarchy",{attrs:{currentTopicTitle:e.title,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,parentTopicIdentifiers:e.hierarchyItems,currentTopicTags:e.currentTopicTags,references:e.references}}),n("NavMenuItems",{staticClass:"nav-menu-settings",attrs:{previousSiblingChildren:e.breadcrumbCount}},[e.interfaceLanguage&&(e.swiftPath||e.objcPath)?n("LanguageToggle",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath,closeNav:i}}):e._e(),e._t("menu-items")],2),e._t("tray-after",null,null,{breadcrumbCount:e.breadcrumbCount})]}}],null,!0)},[n("template",{slot:"default"},[e._t("title",(function(){return[e.rootLink?n("router-link",{staticClass:"nav-title-link",attrs:{to:e.rootLink}},[e._v(" "+e._s(e.$t("documentation.title"))+" ")]):n("span",{staticClass:"nav-title-link inactive"},[e._v(e._s(e.$t("documentation.title")))])]}),null,{rootLink:e.rootLink,linkClass:"nav-title-link",inactiveClass:"inactive"})],2),n("template",{slot:"after-content"},[e._t("after-content")],2)],2)},wc=[],Ic=n("cbcf"),xc=n("9b30"),$c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"hierarchy",class:{"has-badge":e.hasBadge},attrs:{"aria-label":e.$t("documentation.nav.breadcrumbs")}},[e.root?n("HierarchyItem",{key:e.root.title,staticClass:"root-hierarchy",attrs:{url:e.addQueryParamsToUrl(e.root.url)}},[e._v(" "+e._s(e.root.title)+" ")]):e._e(),e._l(e.collapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{isCollapsed:"",url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),e.collapsibleItems.length?n("HierarchyCollapsedItems",{attrs:{topics:e.collapsibleItems}}):e._e(),e._l(e.nonCollapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),n("HierarchyItem",[e._v(" "+e._s(e.currentTopicTitle)+" "),n("template",{slot:"tags"},[e.isSymbolDeprecated?n("Badge",{attrs:{variant:"deprecated"}}):e.isSymbolBeta?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.currentTopicTags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)],2)],2)},Oc=[],Dc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"hierarchy-collapsed-items"},[n("span",{staticClass:"hierarchy-item-icon icon-inline"},[e._v("/")]),n("button",{ref:"btn",staticClass:"toggle",class:{focused:!e.collapsed},on:{click:e.toggleCollapsed}},[n("span",{staticClass:"indicator"},[n("EllipsisIcon",{staticClass:"icon-inline toggle-icon"})],1)]),n("ul",{ref:"dropdown",staticClass:"dropdown",class:{collapsed:e.collapsed}},e._l(e.topicsWithUrls,(function(t){return n("li",{key:t.title,staticClass:"dropdown-item"},[n("router-link",{staticClass:"nav-menu-link",attrs:{to:t.url}},[e._v(e._s(t.title))])],1)})),0)])},Pc=[],Lc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"ellipsis-icon",attrs:{viewBox:"0 0 14 14",themeId:"ellipsis"}},[n("path",{attrs:{d:"m12.439 7.777v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554z"}})])},Ac=[],Nc={name:"EllipsisIcon",components:{SVGIcon:fr["a"]}},Ec=Nc,jc=Object(K["a"])(Ec,Lc,Ac,!1,null,null,null),Bc=jc.exports,Rc={name:"HierarchyCollapsedItems",components:{EllipsisIcon:Bc},data:()=>({collapsed:!0}),props:{topics:{type:Array,required:!0}},watch:{collapsed(e,t){t&&!e?document.addEventListener("click",this.handleDocumentClick,!1):!t&&e&&document.removeEventListener("click",this.handleDocumentClick,!1)}},beforeDestroy(){document.removeEventListener("click",this.handleDocumentClick,!1)},computed:{topicsWithUrls:({$route:e,topics:t})=>t.map(t=>({...t,url:Object(P["b"])(t.url,e.query)}))},methods:{handleDocumentClick(e){const{target:t}=e,{collapsed:n,$refs:{btn:i,dropdown:a}}=this,s=!i.contains(t)&&!a.contains(t);!n&&s&&(this.collapsed=!0)},toggleCollapsed(){this.collapsed=!this.collapsed}}},Mc=Rc,zc=(n("2ca2"),Object(K["a"])(Mc,Dc,Pc,!1,null,"74906830",null)),Kc=zc.exports,qc=function(e,t){var n=t._c;return n(t.$options.components.NavMenuItemBase,{tag:"component",staticClass:"hierarchy-item",class:[{collapsed:t.props.isCollapsed},t.data.staticClass]},[n("span",{staticClass:"hierarchy-item-icon icon-inline"},[t._v("/")]),t.props.url?n("router-link",{staticClass:"parent item nav-menu-link",attrs:{to:t.props.url}},[t._t("default")],2):[n("span",{staticClass:"current item"},[t._t("default")],2),t._t("tags")]],2)},Fc=[],Hc=n("863d"),Vc={name:"HierarchyItem",components:{NavMenuItemBase:Hc["a"],InlineChevronRightIcon:vl["a"]},props:{isCollapsed:Boolean,url:{type:String,required:!1}}},Wc=Vc,Uc=(n("260a"),Object(K["a"])(Wc,qc,Fc,!0,null,"382bf39e",null)),Gc=Uc.exports;const Qc=3;var Xc={name:"Hierarchy",components:{Badge:ei["a"],NavMenuItems:xc["a"],HierarchyCollapsedItems:Kc,HierarchyItem:Gc},constants:{MaxVisibleLinks:Qc},inject:["store"],props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,references:Object,currentTopicTitle:{type:String,required:!0},parentTopicIdentifiers:{type:Array,default:()=>[]},currentTopicTags:{type:Array,default:()=>[]}},computed:{windowWidth:({store:e})=>e.state.contentWidth,parentTopics(){return this.parentTopicIdentifiers.reduce((e,t)=>{const n=this.references[t];if(n){const{title:t,url:i}=n;return e.concat({title:t,url:i})}return console.error(`Reference for "${t}" is missing`),e},[])},root:({parentTopics:e,windowWidth:t})=>t<=1e3?null:e[0],firstItemSlice:({root:e})=>e?1:0,linksAfterCollapse:({windowWidth:e,hasBadge:t})=>{const n=t?1:0;return e>1200?Qc-n:e>1e3?Qc-1-n:e>=800?Qc-2-n:0},collapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n,-t):e.slice(n),nonCollapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n).slice(-t):[],hasBadge:({isSymbolDeprecated:e,isSymbolBeta:t,currentTopicTags:n})=>e||t||n.length},methods:{addQueryParamsToUrl(e){return Object(P["b"])(e,this.$route.query)}}},Yc=Xc,Jc=(n("5208"),Object(K["a"])(Yc,$c,Oc,!1,null,"c2bd6086",null)),Zc=Jc.exports,ed=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItemBase",{staticClass:"nav-menu-setting language-container"},[n("div",{class:{"language-toggle-container":e.hasLanguages}},[n("select",{ref:"language-sizer",staticClass:"language-dropdown language-sizer",attrs:{"aria-hidden":"true",tabindex:"-1"}},[n("option",{key:e.currentLanguage.name,attrs:{selected:""}},[e._v(e._s(e.currentLanguage.name))])]),n("label",{staticClass:"nav-menu-setting-label",attrs:{for:e.hasLanguages?"language-toggle":null}},[e._v(e._s(e.$t("formats.colon",{content:e.$t("language")})))]),e.hasLanguages?n("select",{directives:[{name:"model",rawName:"v-model",value:e.languageModel,expression:"languageModel"}],staticClass:"language-dropdown nav-menu-link",style:"width: "+e.adjustedWidth+"px",attrs:{id:"language-toggle"},on:{change:[function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t="_value"in e?e._value:e.value;return t}));e.languageModel=t.target.multiple?n:n[0]},function(t){return e.pushRoute(e.currentLanguage.route)}]}},e._l(e.languages,(function(t){return n("option",{key:t.api,domProps:{value:t.api}},[e._v(" "+e._s(t.name)+" ")])})),0):n("span",{staticClass:"nav-menu-toggle-none current-language",attrs:{"aria-current":"page"}},[e._v(e._s(e.currentLanguage.name))]),e.hasLanguages?n("InlineChevronDownIcon",{staticClass:"toggle-icon icon-inline"}):e._e()],1),e.hasLanguages?n("div",{staticClass:"language-list-container"},[n("span",{staticClass:"nav-menu-setting-label"},[e._v(e._s(e.$t("formats.colon",{content:e.$t("language")})))]),n("ul",{staticClass:"language-list"},e._l(e.languages,(function(t){return n("li",{key:t.api,staticClass:"language-list-item"},[t.api===e.languageModel?n("span",{staticClass:"current-language",attrs:{"data-language":t.api,"aria-current":"page"}},[e._v(" "+e._s(t.name)+" ")]):n("a",{staticClass:"nav-menu-link",attrs:{href:"#"},on:{click:function(n){return n.preventDefault(),e.pushRoute(t.route)}}},[e._v(" "+e._s(t.name)+" ")])])})),0)]):e._e()])},td=[],nd=n("7948"),id={name:"LanguageToggle",components:{InlineChevronDownIcon:nd["a"],NavMenuItemBase:Hc["a"]},inject:{store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},closeNav:{type:Function,default:()=>{}}},data(){return{languageModel:null,adjustedWidth:0}},mounted(){const e=Ne(async()=>{await Object(Ee["b"])(3),this.calculateSelectWidth()},150);window.addEventListener("resize",e),window.addEventListener("orientationchange",e),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("resize",e),window.removeEventListener("orientationchange",e)})},watch:{interfaceLanguage:{immediate:!0,handler(e){this.languageModel=e}},currentLanguage:{immediate:!0,handler:"calculateSelectWidth"}},methods:{getRoute(e){const t=e.query===O["a"].swift.key.url?void 0:e.query;return{query:{...this.$route.query,language:t},path:this.isCurrentPath(e.path)?null:Object(L["d"])(e.path)}},async pushRoute(e){await this.closeNav(),this.store.setPreferredLanguage(e.query),this.$router.push(this.getRoute(e))},isCurrentPath(e){return this.$route.path.replace(/^\//,"")===e},async calculateSelectWidth(){await this.$nextTick(),this.adjustedWidth=this.$refs["language-sizer"].clientWidth+6}},computed:{languages(){return[{name:O["a"].swift.name,api:O["a"].swift.key.api,route:{path:this.swiftPath,query:O["a"].swift.key.url}},{name:O["a"].objectiveC.name,api:O["a"].objectiveC.key.api,route:{path:this.objcPath,query:O["a"].objectiveC.key.url}}]},currentLanguage:({languages:e,languageModel:t})=>e.find(e=>e.api===t),hasLanguages:({objcPath:e,swiftPath:t})=>t&&e}},ad=id,sd=(n("b857"),Object(K["a"])(ad,ed,td,!1,null,"d12167e0",null)),rd=sd.exports,od={name:"DocumentationNav",components:{SidenavIcon:zl,NavBase:Ic["a"],NavMenuItems:xc["a"],Hierarchy:Zc,LanguageToggle:rd},props:{title:{type:String,required:!1},parentTopicIdentifiers:{type:Array,required:!1},isSymbolBeta:{type:Boolean,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isDark:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},currentTopicTags:{type:Array,required:!0},references:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!1},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},sidenavHiddenOnLarge:{type:Boolean,default:!1},displaySidenav:{type:Boolean,default:!1}},computed:{baseNavOpenSidenavButtonId:()=>Go["d"],BreakpointName:()=>Vo["b"],breadcrumbCount:({hierarchyItems:e})=>e.length+1,rootHierarchyReference:({parentTopicIdentifiers:e,references:t})=>t[e[0]]||{},isRootTechnologyLink:({rootHierarchyReference:{kind:e}})=>"technologies"===e,rootLink:({isRootTechnologyLink:e,rootHierarchyReference:t,$route:n})=>e?{path:t.url,query:n.query}:null,hierarchyItems:({parentTopicIdentifiers:e,isRootTechnologyLink:t})=>t?e.slice(1):e},methods:{async handleSidenavToggle(e,t){await e(),this.$emit("toggle-sidenav",t),await this.$nextTick();const n=document.getElementById(Fs);n&&n.focus()}}},ld=od,cd=(n("c61f"),Object(K["a"])(ld,kc,wc,!1,null,"138d523a",null)),dd=cd.exports,ud=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"StaticContentWidth"},[e._t("default")],2)},hd=[],pd={name:"StaticContentWidth",inject:["store"],mounted(){const e=Ne(async()=>{await this.$nextTick(),this.store.setContentWidth(this.$el.offsetWidth)},150);window.addEventListener("resize",e),window.addEventListener("orientationchange",e),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("resize",e),window.removeEventListener("orientationchange",e)}),e()}},gd=pd,fd=Object(K["a"])(gd,ud,hd,!1,null,null,null),md=fd.exports,yd=n("3bdd"),vd=n("4009");const bd="symbol";var Td={watch:{topicData:{immediate:!0,handler:"extractOnThisPageSections"}},methods:{shouldRegisterContentSection(e){return e.type===_n["BlockType"].heading&&e.level<4},extractOnThisPageSections(e){if(!e)return;this.store.resetPageSections();const{metadata:{title:t},primaryContentSections:n,topicSections:i,defaultImplementationsSections:a,relationshipsSections:s,seeAlsoSections:r,kind:o}=e;this.store.addOnThisPageSection({title:t,anchor:vd["a"],level:1,isSymbol:o===bd},{i18n:!1}),n&&n.forEach(e=>{switch(e.kind){case Ke.content:At["a"].methods.forEach.call(e,e=>{this.shouldRegisterContentSection(e)&&this.store.addOnThisPageSection({title:e.text,anchor:e.anchor||Object(nn["a"])(e.text),level:e.level},{i18n:!1})});break;case Ke.properties:case Ke.restBody:case Ke.restCookies:case Ke.restEndpoint:case Ke.restHeaders:case Ke.restParameters:case Ke.restResponses:this.store.addOnThisPageSection({title:e.title,anchor:Object(nn["a"])(e.title),level:2});break;default:qt[e.kind]&&this.store.addOnThisPageSection(qt[e.kind])}}),i&&this.store.addOnThisPageSection(Kt.topics),a&&this.store.addOnThisPageSection(Kt.defaultImplementations),s&&this.store.addOnThisPageSection(Kt.relationships),r&&this.store.addOnThisPageSection(Kt.seeAlso)}}},Sd=n("9b56");const _d="0.3.0",Cd="navigator-hidden-large",{extractProps:kd}=Is.methods;var wd={name:"DocumentationTopicView",constants:{MIN_RENDER_JSON_VERSION_WITH_INDEX:_d,NAVIGATOR_HIDDEN_ON_LARGE_KEY:Cd},components:{Navigator:Cc,AdjustableSidebarWidth:ol,StaticContentWidth:md,NavigatorDataProvider:nr,Topic:Is,CodeTheme:Bs["a"],Nav:dd,QuickNavigationButton:lr,QuickNavigationModal:zo,PortalTarget:I["PortalTarget"]},mixins:[Ms["a"],zs["a"],Td],props:{enableMinimized:{type:Boolean,default:!1}},data(){return{topicDataDefault:null,topicDataObjc:null,sidenavVisibleOnMobile:!1,sidenavHiddenOnLarge:Fo["c"].get(Cd,!1),showQuickNavigationModal:!1,store:js,BreakpointName:Vo["b"]}},computed:{objcOverrides:({topicData:e})=>{const{variantOverrides:t=[]}=e||{},n=({interfaceLanguage:e})=>e===O["a"].objectiveC.key.api,i=({traits:e})=>e.some(n),a=t.find(i);return a?a.patch:null},enableQuickNavigation:({isTargetIDE:e})=>!e&&Object(Ze["c"])(["features","docs","quickNavigation","enable"],!0),topicData:{get(){return this.topicDataObjc?this.topicDataObjc:this.topicDataDefault},set(e){this.topicDataDefault=e}},topicKey:({$route:e,topicProps:t})=>[e.path,t.interfaceLanguage].join(),topicProps(){return kd(this.topicData)},parentTopicIdentifiers:({topicProps:{hierarchy:{paths:e=[]},references:t},$route:n})=>e.length?e.find(e=>{const i=e.find(e=>t[e]&&"technologies"!==t[e].kind),a=i&&t[i];return a&&n.path.toLowerCase().startsWith(a.url.toLowerCase())})||e[0]:[],technology:({$route:e,topicProps:{identifier:t,references:n,role:i,title:a},parentTopicIdentifiers:s})=>{const r={title:a,url:e.path},o=n[t];if(!s.length)return o||r;const l=n[s[0]];return l&&"technologies"!==l.kind?l:(i!==k["a"].collection||o)&&(l&&n[s[1]]||o)||r},languagePaths:({topicData:{variants:e=[]}})=>e.reduce((e,t)=>t.traits.reduce((e,n)=>n.interfaceLanguage?{...e,[n.interfaceLanguage]:(e[n.interfaceLanguage]||[]).concat(t.paths)}:e,e),{}),objcPath:({languagePaths:{[O["a"].objectiveC.key.api]:[e]=[]}={}})=>e,swiftPath:({languagePaths:{[O["a"].swift.key.api]:[e]=[]}={}})=>e,isSymbolBeta:({topicProps:{platforms:e}})=>!!(e&&e.length&&e.every(e=>e.beta)),isSymbolDeprecated:({topicProps:{platforms:e,deprecationSummary:t}})=>!!(t&&t.length>0||e&&e.length&&e.every(e=>e.deprecatedAt)),enableNavigator:({isTargetIDE:e,topicDataDefault:t})=>!e&&Object(yd["b"])(Object(yd["a"])(t.schemaVersion),_d)>=0,enableOnThisPageNav:({isTargetIDE:e})=>!Object(Ze["c"])(["features","docs","onThisPageNavigator","disable"],!1)&&!e,sidebarProps:({sidenavVisibleOnMobile:e,enableNavigator:t,sidenavHiddenOnLarge:n})=>t?{shownOnMobile:e,hiddenOnLarge:n}:{},sidebarListeners(){return this.enableNavigator?{"update:shownOnMobile":this.toggleMobileSidenav,"update:hiddenOnLarge":this.toggleLargeSidenav}:{}}},methods:{applyObjcOverrides(){this.topicDataObjc=C(Object(w["a"])(this.topicData),this.objcOverrides)},handleCodeColorsChange(e){Rs["a"].updateCodeColors(e)},handleToggleSidenav(e){e===Vo["b"].large?this.toggleLargeSidenav():this.toggleMobileSidenav()},openQuickNavigationModal(){this.sidenavVisibleOnMobile||(this.showQuickNavigationModal=!0)},toggleLargeSidenav(e=!this.sidenavHiddenOnLarge){this.sidenavHiddenOnLarge=e,Fo["c"].set(Cd,e)},toggleMobileSidenav(e=!this.sidenavVisibleOnMobile){this.sidenavVisibleOnMobile=e},onQuickNavigationKeydown(e){("/"===e.key||"o"===e.key&&e.shiftKey&&e.metaKey)&&this.enableNavigator&&"input"!==e.target.tagName.toLowerCase()&&(this.openQuickNavigationModal(),e.preventDefault())}},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge),this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"}),this.enableQuickNavigation&&window.addEventListener("keydown",this.onQuickNavigationKeydown)},provide(){return{store:this.store}},inject:{isTargetIDE:{default(){return!1}}},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge),this.$bridge.off("codeColors",this.handleCodeColorsChange),this.enableQuickNavigation&&window.removeEventListener("keydown",this.onQuickNavigationKeydown)},beforeRouteEnter(e,t,n){e.meta.skipFetchingData?n(e=>e.newContentMounted()):Object(w["c"])(e,t,n).then(t=>n(n=>{Object(Sd["c"])(e.params.locale,n),n.topicData=t,e.query.language===O["a"].objectiveC.key.url&&n.objcOverrides&&n.applyObjcOverrides()})).catch(n)},beforeRouteUpdate(e,t,n){e.path===t.path&&e.query.language===O["a"].objectiveC.key.url&&this.objcOverrides?(this.applyObjcOverrides(),n()):Object(w["e"])(e,t)?Object(w["c"])(e,t,n).then(t=>{this.topicDataObjc=null,this.topicData=t,e.query.language===O["a"].objectiveC.key.url&&this.objcOverrides&&this.applyObjcOverrides(),Object(Sd["c"])(e.params.locale,this),n()}).catch(n):n()},created(){this.store.reset()},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},Id=wd,xd=(n("857c"),Object(K["a"])(Id,i,a,!1,null,"4a89caca",null));t["default"]=xd.exports},f9c9:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic~topic.1679ec90.js b/docs/js/documentation-topic~topic.1679ec90.js deleted file mode 100644 index 520330847..000000000 --- a/docs/js/documentation-topic~topic.1679ec90.js +++ /dev/null @@ -1,20 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic~topic"],{"1c3f":function(t,e,n){"use strict";n("b826")},"2b88":function(t,e,n){"use strict"; -/*! - * portal-vue © Thorsten Lünborg, 2019 - * - * Version: 2.1.7 - * - * LICENCE: MIT - * - * https://github.com/linusborg/portal-vue - * - */function s(t){return t&&"object"===typeof t&&"default"in t?t["default"]:t}Object.defineProperty(e,"__esModule",{value:!0});var r=s(n("2b0e"));function o(t){return o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}function a(t){return i(t)||l(t)||c()}function i(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e1&&void 0!==arguments[1]?arguments[1]:{};return t.reduce((function(t,n){var s=n.passengers[0],r="function"===typeof s?s(e):n.passengers;return t.concat(r)}),[])}function f(t,e){return t.map((function(t,e){return[e,t]})).sort((function(t,n){return e(t[1],n[1])||t[0]-n[0]})).map((function(t){return t[1]}))}function p(t,e){return e.reduce((function(e,n){return t.hasOwnProperty(n)&&(e[n]=t[n]),e}),{})}var m={},g={},y={},b=r.extend({data:function(){return{transports:m,targets:g,sources:y,trackInstances:u}},methods:{open:function(t){if(u){var e=t.to,n=t.from,s=t.passengers,o=t.order,a=void 0===o?1/0:o;if(e&&n&&s){var i={to:e,from:n,passengers:h(s),order:a},l=Object.keys(this.transports);-1===l.indexOf(e)&&r.set(this.transports,e,[]);var c=this.$_getTransportIndex(i),d=this.transports[e].slice(0);-1===c?d.push(i):d[c]=i,this.transports[e]=f(d,(function(t,e){return t.order-e.order}))}}},close:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.to,s=t.from;if(n&&(s||!1!==e)&&this.transports[n])if(e)this.transports[n]=[];else{var r=this.$_getTransportIndex(t);if(r>=0){var o=this.transports[n].slice(0);o.splice(r,1),this.transports[n]=o}}},registerTarget:function(t,e,n){u&&(this.trackInstances&&!n&&this.targets[t]&&console.warn("[portal-vue]: Target ".concat(t," already exists")),this.$set(this.targets,t,Object.freeze([e])))},unregisterTarget:function(t){this.$delete(this.targets,t)},registerSource:function(t,e,n){u&&(this.trackInstances&&!n&&this.sources[t]&&console.warn("[portal-vue]: source ".concat(t," already exists")),this.$set(this.sources,t,Object.freeze([e])))},unregisterSource:function(t){this.$delete(this.sources,t)},hasTarget:function(t){return!(!this.targets[t]||!this.targets[t][0])},hasSource:function(t){return!(!this.sources[t]||!this.sources[t][0])},hasContentFor:function(t){return!!this.transports[t]&&!!this.transports[t].length},$_getTransportIndex:function(t){var e=t.to,n=t.from;for(var s in this.transports[e])if(this.transports[e][s].from===n)return+s;return-1}}}),v=new b(m),T=1,S=r.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(T++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var t=this;this.$nextTick((function(){v.registerSource(t.name,t)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){v.unregisterSource(this.name),this.clear()},watch:{to:function(t,e){e&&e!==t&&this.clear(e),this.sendUpdate()}},methods:{clear:function(t){var e={from:this.name,to:t||this.to};v.close(e)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(t){return"function"===typeof t?t(this.slotProps):t},sendUpdate:function(){var t=this.normalizeSlots();if(t){var e={from:this.name,to:this.to,passengers:a(t),order:this.order};v.open(e)}else this.clear()}},render:function(t){var e=this.$slots.default||this.$scopedSlots.default||[],n=this.tag;return e&&this.disabled?e.length<=1&&this.slim?this.normalizeOwnChildren(e)[0]:t(n,[this.normalizeOwnChildren(e)]):this.slim?t():t(n,{class:{"v-portal":!0},style:{display:"none"},key:"v-portal-placeholder"})}}),w=r.extend({name:"portalTarget",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},data:function(){return{transports:v.transports,firstRender:!0}},created:function(){var t=this;this.$nextTick((function(){v.registerTarget(t.name,t)}))},watch:{ownTransports:function(){this.$emit("change",this.children().length>0)},name:function(t,e){v.unregisterTarget(e),v.registerTarget(t,this)}},mounted:function(){var t=this;this.transition&&this.$nextTick((function(){t.firstRender=!1}))},beforeDestroy:function(){v.unregisterTarget(this.name)},computed:{ownTransports:function(){var t=this.transports[this.name]||[];return this.multiple?t:0===t.length?[]:[t[t.length-1]]},passengers:function(){return d(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var t=this.slim&&!this.transition;return t&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),t}},render:function(t){var e=this.noWrapper(),n=this.children(),s=this.transition||this.tag;return e?n[0]:this.slim&&!s?t():t(s,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},n)}}),C=0,$=["disabled","name","order","slim","slotProps","tag","to"],k=["multiple","transition"],x=r.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(C++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!==typeof document){var t=document.querySelector(this.mountTo);if(t){var e=this.$props;if(v.targets[e.name])e.bail?console.warn("[portal-vue]: Target ".concat(e.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=v.targets[e.name];else{var n=e.append;if(n){var s="string"===typeof n?n:"DIV",r=document.createElement(s);t.appendChild(r),t=r}var o=p(this.$props,k);o.slim=this.targetSlim,o.tag=this.targetTag,o.slotProps=this.targetSlotProps,o.name=this.to,this.portalTarget=new w({el:t,parent:this.$parent||this,propsData:o})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var t=this.portalTarget;if(this.append){var e=t.$el;e.parentNode.removeChild(e)}t.$destroy()},render:function(t){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),t();if(!this.$scopedSlots.manual){var e=p(this.$props,$);return t(S,{props:e,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var n=this.$scopedSlots.manual({to:this.to});return Array.isArray(n)&&(n=n[0]),n||t()}});function P(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.component(e.portalName||"Portal",S),t.component(e.portalTargetName||"PortalTarget",w),t.component(e.MountingPortalName||"MountingPortal",x)}var I={install:P};e.default=I,e.Portal=S,e.PortalTarget=w,e.MountingPortal=x,e.Wormhole=v},"66c9":function(t,e,n){"use strict";e["a"]={state:{codeColors:null},reset(){this.state.codeColors=null},updateCodeColors(t){const e=t=>t?`rgba(${t.red}, ${t.green}, ${t.blue}, ${t.alpha})`:null;this.state.codeColors=Object.entries(t).reduce((t,[n,s])=>({...t,[n]:e(s)}),{})}}},7948:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-chevron-down-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-chevron-down"}},[n("path",{attrs:{d:"M12.634 2.964l0.76 0.649-6.343 7.426-6.445-7.423 0.755-0.655 5.683 6.545 5.59-6.542z"}})])},r=[],o=n("be08"),a={name:"InlineChevronDownIcon",components:{SVGIcon:o["a"]}},i=a,l=n("2877"),c=Object(l["a"])(i,s,r,!1,null,null,null);e["a"]=c.exports},8590:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{style:t.codeStyle},[t._t("default")],2)},r=[],o=n("66c9");const a=0,i=255;function l(t){const e=t.match(/rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+\.?\d*|\.\d+)\s*\)/);if(!e)throw new Error("invalid rgba() input");const n=10;return{r:parseInt(e[1],n),g:parseInt(e[2],n),b:parseInt(e[3],n),a:parseFloat(e[4])}}function c(t){const{r:e,g:n,b:s}=l(t);return.2126*e+.7152*n+.0722*s}function u(t,e){const n=Math.round(i*e),s=l(t),{a:r}=s,[o,c,u]=[s.r,s.g,s.b].map(t=>Math.max(a,Math.min(i,t+n)));return`rgba(${o}, ${c}, ${u}, ${r})`}function h(t,e){return u(t,e)}function d(t,e){return u(t,-1*e)}var f={name:"CodeTheme",data(){return{codeThemeState:o["a"].state}},computed:{codeStyle(){const{codeColors:t}=this.codeThemeState;return t?{"--text":t.text,"--background":t.background,"--line-highlight":t.lineHighlight,"--url":t.commentURL,"--syntax-comment":t.comment,"--syntax-quote":t.comment,"--syntax-keyword":t.keyword,"--syntax-literal":t.keyword,"--syntax-selector-tag":t.keyword,"--syntax-string":t.stringLiteral,"--syntax-bullet":t.stringLiteral,"--syntax-meta":t.keyword,"--syntax-number":t.stringLiteral,"--syntax-symbol":t.stringLiteral,"--syntax-tag":t.stringLiteral,"--syntax-attr":t.typeAnnotation,"--syntax-built_in":t.typeAnnotation,"--syntax-builtin-name":t.typeAnnotation,"--syntax-class":t.typeAnnotation,"--syntax-params":t.typeAnnotation,"--syntax-section":t.typeAnnotation,"--syntax-title":t.typeAnnotation,"--syntax-type":t.typeAnnotation,"--syntax-attribute":t.keyword,"--syntax-identifier":t.text,"--syntax-subst":t.text,"--color-syntax-param-internal-name":this.internalParamNameColor}:null},internalParamNameColor(){const{background:t,text:e}=this.codeThemeState.codeColors;try{const n=c(t),s=nObject.keys(u).includes(t),default:u.light},codeBackgroundColorOverride:{type:String,default:""},backdropBackgroundColorOverride:{type:String,default:""},width:{type:String,default:null},showClose:{type:Boolean,default:!0}},data(){return{lastFocusItem:null,prefersDarkStyle:!1,focusTrapInstance:null}},computed:{isVisible:{get:({visible:t})=>t,set(t){this.$emit("update:visible",t)}},modalColors(){return{"--code-background":this.codeBackgroundColorOverride,"--backdrop-background":this.backdropBackgroundColorOverride}},themeClass({theme:t,prefersDarkStyle:e,isThemeDynamic:n}){let s={};return n&&(s={"theme-light":!e,"theme-dark":e}),["theme-"+t,s]},stateClasses:({isFullscreen:t,isVisible:e,showClose:n})=>({"modal-fullscreen":t,"modal-standard":!t,"modal-open":e,"modal-with-close":n}),isThemeDynamic:({theme:t})=>t===u.dynamic||t===u.code},watch:{isVisible(t){t?this.onShow():this.onHide()}},mounted(){if(this.focusTrapInstance=new a["a"],document.addEventListener("keydown",this.onKeydown),this.isThemeDynamic){const t=window.matchMedia("(prefers-color-scheme: dark)");t.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{t.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(t)}},beforeDestroy(){this.isVisible&&o["b"].unlockScroll(this.$refs.container),document.removeEventListener("keydown",this.onKeydown),this.focusTrapInstance.destroy()},methods:{async onShow(){await this.$nextTick(),o["b"].lockScroll(this.$refs.container),await this.focusCloseButton(),this.focusTrapInstance.updateFocusContainer(this.$refs.container),this.focusTrapInstance.start(),i["a"].hide(this.$refs.container)},onHide(){o["b"].unlockScroll(this.$refs.container),this.focusTrapInstance.stop(),this.lastFocusItem&&(this.lastFocusItem.focus({preventScroll:!0}),this.lastFocusItem=null),this.$emit("close"),i["a"].show(this.$refs.container)},closeModal(){this.isVisible=!1},selectContent(){window.getSelection().selectAllChildren(this.$refs.content)},onClickOutside(){this.closeModal()},onKeydown(t){const{metaKey:e=!1,ctrlKey:n=!1,key:s}=t;this.isVisible&&("a"===s&&(e||n)&&(t.preventDefault(),this.selectContent()),"Escape"===s&&(t.preventDefault(),this.closeModal()))},onColorSchemePreferenceChange({matches:t}){this.prefersDarkStyle=t},async focusCloseButton(){this.lastFocusItem=document.activeElement,await this.$nextTick(),this.$refs.close&&this.$refs.close.focus(),this.$emit("open")}}},d=h,f=(n("1c3f"),n("2877")),p=Object(f["a"])(d,s,r,!1,null,"795f7b59",null);e["a"]=p.exports},c8e2:function(t,e,n){"use strict";function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}n.d(e,"a",(function(){return o}));var r=n("0cb0");class o{constructor(t){s(this,"focusContainer",null),s(this,"tabTargets",[]),s(this,"firstTabTarget",null),s(this,"lastTabTarget",null),s(this,"lastFocusedElement",null),this.focusContainer=t,this.onFocus=this.onFocus.bind(this)}updateFocusContainer(t){this.focusContainer=t}start(){this.collectTabTargets(),this.firstTabTarget?this.focusContainer.contains(document.activeElement)&&r["a"].isTabbableElement(document.activeElement)||this.firstTabTarget.focus():console.warn("There are no focusable elements. FocusTrap needs at least one."),this.lastFocusedElement=document.activeElement,document.addEventListener("focus",this.onFocus,!0)}stop(){document.removeEventListener("focus",this.onFocus,!0)}collectTabTargets(){this.tabTargets=r["a"].getTabbableElements(this.focusContainer),this.firstTabTarget=this.tabTargets[0],this.lastTabTarget=this.tabTargets[this.tabTargets.length-1]}onFocus(t){if(this.focusContainer.contains(t.target))this.lastFocusedElement=t.target;else{if(t.preventDefault(),this.collectTabTargets(),this.lastFocusedElement===this.lastTabTarget||!this.lastFocusedElement||!document.contains(this.lastFocusedElement))return this.firstTabTarget.focus(),void(this.lastFocusedElement=this.firstTabTarget);this.lastFocusedElement===this.firstTabTarget&&(this.lastTabTarget.focus(),this.lastFocusedElement=this.lastTabTarget)}}destroy(){this.stop(),this.focusContainer=null,this.tabTargets=[],this.firstTabTarget=null,this.lastTabTarget=null,this.lastFocusedElement=null}}}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic~topic~tutorials-overview.90c61522.js b/docs/js/documentation-topic~topic~tutorials-overview.90c61522.js deleted file mode 100644 index ab75cfe10..000000000 --- a/docs/js/documentation-topic~topic~tutorials-overview.90c61522.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic~topic~tutorials-overview"],{"007b":function(e,t,n){},"0444":function(e,t,n){},"05a1":function(e,t,n){},"0939":function(e,t,n){"use strict";n("9034")},"0caf":function(e,t,n){"use strict";t["a"]={inject:{performanceMetricsEnabled:{default:!1},isTargetIDE:{default:!1}},methods:{newContentMounted(){let e;this.performanceMetricsEnabled&&(e=Math.round(window.performance.now()),window.renderedTimes||(window.renderedTimes=[]),window.renderedTimes.push(e)),this.$bridge.send({type:"rendered",data:{time:e}})},handleContentUpdateFromBridge(e){this.topicData=e}}}},"0cb0":function(e,t,n){"use strict";const i=["input","select","textarea","button","optgroup","option","menuitem","fieldset","object","a[href]","*[tabindex]","*[contenteditable]"],a=i.join(",");t["a"]={getTabbableElements(e){const t=e.querySelectorAll(a),n=t.length;let i;const r=[];for(i=0;i=0},isFocusableElement(e){const t=e.nodeName.toLowerCase(),n=i.includes(t);return!("a"!==t||!e.getAttribute("href"))||(n?!e.disabled:"true"===e.getAttribute("contenteditable")||!Number.isNaN(parseFloat(e.getAttribute("tabindex"))))}}},"0cf0":function(e,t,n){},"0da1":function(e,t,n){"use strict";n("5c97")},"0eaa":function(e,t,n){},"0f00":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"row"},[e._t("default")],2)},a=[],r={name:"GridRow"},s=r,o=(n("2224"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"be73599c",null);t["a"]=c.exports},1020:function(e,t){var n={exports:{}};function i(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((function(t){var n=e[t];"object"!=typeof n||Object.isFrozen(n)||i(n)})),e}n.exports=i,n.exports.default=i;var a=n.exports;class r{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function s(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function o(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach((function(e){for(const t in e)n[t]=e[t]})),n}const c="",l=e=>!!e.kind,u=(e,{prefix:t})=>{if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map((e,t)=>`${e}${"_".repeat(t+1)}`)].join(" ")}return`${t}${e}`};class d{constructor(e,t){this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=s(e)}openNode(e){if(!l(e))return;let t=e.kind;t=e.sublanguage?"language-"+t:u(t,{prefix:this.classPrefix}),this.span(t)}closeNode(e){l(e)&&(this.buffer+=c)}value(){return this.buffer}span(e){this.buffer+=``}}class p{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){while(this.closeNode());}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return"string"===typeof t?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){"string"!==typeof e&&e.children&&(e.children.every(e=>"string"===typeof e)?e.children=[e.children.join("")]:e.children.forEach(e=>{p._collapse(e)}))}}class h extends p{constructor(e){super(),this.options=e}addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){const e=new d(this,this.options);return e.value()}finalize(){return!0}}function m(e){return e?"string"===typeof e?e:e.source:null}function f(e){return v("(?=",e,")")}function g(e){return v("(?:",e,")*")}function b(e){return v("(?:",e,")?")}function v(...e){const t=e.map(e=>m(e)).join("");return t}function y(e){const t=e[e.length-1];return"object"===typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function w(...e){const t=y(e),n="("+(t.capture?"":"?:")+e.map(e=>m(e)).join("|")+")";return n}function _(e){return new RegExp(e.toString()+"|").exec("").length-1}function x(e,t){const n=e&&e.exec(t);return n&&0===n.index}const k=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function C(e,{joinWith:t}){let n=0;return e.map(e=>{n+=1;const t=n;let i=m(e),a="";while(i.length>0){const e=k.exec(i);if(!e){a+=i;break}a+=i.substring(0,e.index),i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?a+="\\"+String(Number(e[1])+t):(a+=e[0],"("===e[0]&&n++)}return a}).map(e=>`(${e})`).join(t)}const S=/\b\B/,E="[a-zA-Z]\\w*",O="[a-zA-Z_]\\w*",I="\\b\\d+(\\.\\d+)?",j="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",T="\\b(0b[01]+)",A="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",L=(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=v(t,/.*\b/,e.binary,/\b.*/)),o({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},B={begin:"\\\\[\\s\\S]",relevance:0},$={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[B]},N={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[B]},M={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},P=function(e,t,n={}){const i=o({scope:"comment",begin:e,end:t,contains:[]},n);i.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const a=w("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:v(/[ ]+/,"(",a,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i},R=P("//","$"),V=P("/\\*","\\*/"),D=P("#","$"),G={scope:"number",begin:I,relevance:0},z={scope:"number",begin:j,relevance:0},q={scope:"number",begin:T,relevance:0},F={begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[B,{begin:/\[/,end:/\]/,relevance:0,contains:[B]}]}]},U={scope:"title",begin:E,relevance:0},W={scope:"title",begin:O,relevance:0},H={begin:"\\.\\s*"+O,relevance:0},K=function(e){return Object.assign(e,{"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})};var Z=Object.freeze({__proto__:null,MATCH_NOTHING_RE:S,IDENT_RE:E,UNDERSCORE_IDENT_RE:O,NUMBER_RE:I,C_NUMBER_RE:j,BINARY_NUMBER_RE:T,RE_STARTERS_RE:A,SHEBANG:L,BACKSLASH_ESCAPE:B,APOS_STRING_MODE:$,QUOTE_STRING_MODE:N,PHRASAL_WORDS_MODE:M,COMMENT:P,C_LINE_COMMENT_MODE:R,C_BLOCK_COMMENT_MODE:V,HASH_COMMENT_MODE:D,NUMBER_MODE:G,C_NUMBER_MODE:z,BINARY_NUMBER_MODE:q,REGEXP_MODE:F,TITLE_MODE:U,UNDERSCORE_TITLE_MODE:W,METHOD_GUARD:H,END_SAME_AS_BEGIN:K});function Y(e,t){const n=e.input[e.index-1];"."===n&&t.ignoreMatch()}function X(e,t){void 0!==e.className&&(e.scope=e.className,delete e.className)}function J(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=Y,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function Q(e,t){Array.isArray(e.illegal)&&(e.illegal=w(...e.illegal))}function ee(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function te(e,t){void 0===e.relevance&&(e.relevance=1)}const ne=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.keywords=n.keywords,e.begin=v(n.beforeMatch,f(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},ie=["of","and","for","in","not","or","if","then","parent","list","value"],ae="keyword";function re(e,t,n=ae){const i=Object.create(null);return"string"===typeof e?a(n,e.split(" ")):Array.isArray(e)?a(n,e):Object.keys(e).forEach((function(n){Object.assign(i,re(e[n],t,n))})),i;function a(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach((function(t){const n=t.split("|");i[n[0]]=[e,se(n[0],n[1])]}))}}function se(e,t){return t?Number(t):oe(e)?0:1}function oe(e){return ie.includes(e.toLowerCase())}const ce={},le=e=>{console.error(e)},ue=(e,...t)=>{console.log("WARN: "+e,...t)},de=(e,t)=>{ce[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),ce[`${e}/${t}`]=!0)},pe=new Error;function he(e,t,{key:n}){let i=0;const a=e[n],r={},s={};for(let o=1;o<=t.length;o++)s[o+i]=a[o],r[o+i]=!0,i+=_(t[o-1]);e[n]=s,e[n]._emit=r,e[n]._multi=!0}function me(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw le("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),pe;if("object"!==typeof e.beginScope||null===e.beginScope)throw le("beginScope must be object"),pe;he(e,e.begin,{key:"beginScope"}),e.begin=C(e.begin,{joinWith:""})}}function fe(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw le("skip, excludeEnd, returnEnd not compatible with endScope: {}"),pe;if("object"!==typeof e.endScope||null===e.endScope)throw le("endScope must be object"),pe;he(e,e.end,{key:"endScope"}),e.end=C(e.end,{joinWith:""})}}function ge(e){e.scope&&"object"===typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)}function be(e){ge(e),"string"===typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"===typeof e.endScope&&(e.endScope={_wrap:e.endScope}),me(e),fe(e)}function ve(e){function t(t,n){return new RegExp(m(t),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(n?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=_(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=t(C(e,{joinWith:"|"}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=>t>0&&void 0!==e),i=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,i)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function a(e){const t=new i;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:"begin"})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end"}),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t}function r(n,i){const s=n;if(n.isCompiled)return s;[X,ee,be,ne].forEach(e=>e(n,i)),e.compilerExtensions.forEach(e=>e(n,i)),n.__beforeBegin=null,[J,Q,te].forEach(e=>e(n,i)),n.isCompiled=!0;let o=null;return"object"===typeof n.keywords&&n.keywords.$pattern&&(n.keywords=Object.assign({},n.keywords),o=n.keywords.$pattern,delete n.keywords.$pattern),o=o||/\w+/,n.keywords&&(n.keywords=re(n.keywords,e.case_insensitive)),s.keywordPatternRe=t(o,!0),i&&(n.begin||(n.begin=/\B|\b/),s.beginRe=t(s.begin),n.end||n.endsWithParent||(n.end=/\B|\b/),n.end&&(s.endRe=t(s.end)),s.terminatorEnd=m(s.end)||"",n.endsWithParent&&i.terminatorEnd&&(s.terminatorEnd+=(n.end?"|":"")+i.terminatorEnd)),n.illegal&&(s.illegalRe=t(n.illegal)),n.contains||(n.contains=[]),n.contains=[].concat(...n.contains.map((function(e){return we("self"===e?n:e)}))),n.contains.forEach((function(e){r(e,s)})),n.starts&&r(n.starts,i),s.matcher=a(s),s}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=o(e.classNameAliases||{}),r(e)}function ye(e){return!!e&&(e.endsWithParent||ye(e.starts))}function we(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return o(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:ye(e)?o(e,{starts:e.starts?o(e.starts):null}):Object.isFrozen(e)?o(e):e}var _e="11.3.1";class xe extends Error{constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}}const ke=s,Ce=o,Se=Symbol("nomatch"),Ee=7,Oe=function(e){const t=Object.create(null),n=Object.create(null),i=[];let s=!0;const o="Could not find the language '{}', did you forget to load/include a language module?",c={disableAutodetect:!0,name:"Plain text",contains:[]};let l={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:h};function u(e){return l.noHighlightRe.test(e)}function d(e){let t=e.className+" ";t+=e.parentNode?e.parentNode.className:"";const n=l.languageDetectRe.exec(t);if(n){const t=$(n[1]);return t||(ue(o.replace("{}",n[1])),ue("Falling back to no-highlight mode for this block.",e)),t?n[1]:"no-highlight"}return t.split(/\s+/).find(e=>u(e)||$(e))}function p(e,t,n){let i="",a="";"object"===typeof t?(i=e,n=t.ignoreIllegals,a=t.language):(de("10.7.0","highlight(lang, code, ...args) has been deprecated."),de("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),a=e,i=t),void 0===n&&(n=!0);const r={code:i,language:a};V("before:highlight",r);const s=r.result?r.result:m(r.language,r.code,n);return s.code=r.code,V("after:highlight",s),s}function m(e,n,i,a){const c=Object.create(null);function u(e,t){return e.keywords[t]}function d(){if(!j.keywords)return void A.addText(L);let e=0;j.keywordPatternRe.lastIndex=0;let t=j.keywordPatternRe.exec(L),n="";while(t){n+=L.substring(e,t.index);const i=E.case_insensitive?t[0].toLowerCase():t[0],a=u(j,i);if(a){const[e,r]=a;if(A.addText(n),n="",c[i]=(c[i]||0)+1,c[i]<=Ee&&(B+=r),e.startsWith("_"))n+=t[0];else{const n=E.classNameAliases[e]||e;A.addKeyword(t[0],n)}}else n+=t[0];e=j.keywordPatternRe.lastIndex,t=j.keywordPatternRe.exec(L)}n+=L.substr(e),A.addText(n)}function p(){if(""===L)return;let e=null;if("string"===typeof j.subLanguage){if(!t[j.subLanguage])return void A.addText(L);e=m(j.subLanguage,L,!0,T[j.subLanguage]),T[j.subLanguage]=e._top}else e=_(L,j.subLanguage.length?j.subLanguage:null);j.relevance>0&&(B+=e.relevance),A.addSublanguage(e._emitter,e.language)}function h(){null!=j.subLanguage?p():d(),L=""}function f(e,t){let n=1;while(void 0!==t[n]){if(!e._emit[n]){n++;continue}const i=E.classNameAliases[e[n]]||e[n],a=t[n];i?A.addKeyword(a,i):(L=a,d(),L=""),n++}}function g(e,t){return e.scope&&"string"===typeof e.scope&&A.openNode(E.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(A.addKeyword(L,E.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),L=""):e.beginScope._multi&&(f(e.beginScope,t),L="")),j=Object.create(e,{parent:{value:j}}),j}function b(e,t,n){let i=x(e.endRe,n);if(i){if(e["on:end"]){const n=new r(e);e["on:end"](t,n),n.isMatchIgnored&&(i=!1)}if(i){while(e.endsParent&&e.parent)e=e.parent;return e}}if(e.endsWithParent)return b(e.parent,t,n)}function v(e){return 0===j.matcher.regexIndex?(L+=e[0],1):(P=!0,0)}function y(e){const t=e[0],n=e.rule,i=new r(n),a=[n.__beforeBegin,n["on:begin"]];for(const r of a)if(r&&(r(e,i),i.isMatchIgnored))return v(t);return n.skip?L+=t:(n.excludeBegin&&(L+=t),h(),n.returnBegin||n.excludeBegin||(L=t)),g(n,e),n.returnBegin?0:t.length}function w(e){const t=e[0],i=n.substr(e.index),a=b(j,e,i);if(!a)return Se;const r=j;j.endScope&&j.endScope._wrap?(h(),A.addKeyword(t,j.endScope._wrap)):j.endScope&&j.endScope._multi?(h(),f(j.endScope,e)):r.skip?L+=t:(r.returnEnd||r.excludeEnd||(L+=t),h(),r.excludeEnd&&(L=t));do{j.scope&&A.closeNode(),j.skip||j.subLanguage||(B+=j.relevance),j=j.parent}while(j!==a.parent);return a.starts&&g(a.starts,e),r.returnEnd?0:t.length}function k(){const e=[];for(let t=j;t!==E;t=t.parent)t.scope&&e.unshift(t.scope);e.forEach(e=>A.openNode(e))}let C={};function S(t,a){const r=a&&a[0];if(L+=t,null==r)return h(),0;if("begin"===C.type&&"end"===a.type&&C.index===a.index&&""===r){if(L+=n.slice(a.index,a.index+1),!s){const t=new Error(`0 width match regex (${e})`);throw t.languageName=e,t.badRule=C.rule,t}return 1}if(C=a,"begin"===a.type)return y(a);if("illegal"===a.type&&!i){const e=new Error('Illegal lexeme "'+r+'" for mode "'+(j.scope||"")+'"');throw e.mode=j,e}if("end"===a.type){const e=w(a);if(e!==Se)return e}if("illegal"===a.type&&""===r)return 1;if(M>1e5&&M>3*a.index){const e=new Error("potential infinite loop, way more iterations than matches");throw e}return L+=r,r.length}const E=$(e);if(!E)throw le(o.replace("{}",e)),new Error('Unknown language: "'+e+'"');const O=ve(E);let I="",j=a||O;const T={},A=new l.__emitter(l);k();let L="",B=0,N=0,M=0,P=!1;try{for(j.matcher.considerAll();;){M++,P?P=!1:j.matcher.considerAll(),j.matcher.lastIndex=N;const e=j.matcher.exec(n);if(!e)break;const t=n.substring(N,e.index),i=S(t,e);N=e.index+i}return S(n.substr(N)),A.closeAllNodes(),A.finalize(),I=A.toHTML(),{language:e,value:I,relevance:B,illegal:!1,_emitter:A,_top:j}}catch(R){if(R.message&&R.message.includes("Illegal"))return{language:e,value:ke(n),illegal:!0,relevance:0,_illegalBy:{message:R.message,index:N,context:n.slice(N-100,N+100),mode:R.mode,resultSoFar:I},_emitter:A};if(s)return{language:e,value:ke(n),illegal:!1,relevance:0,errorRaised:R,_emitter:A,_top:j};throw R}}function y(e){const t={value:ke(e),illegal:!1,relevance:0,_top:c,_emitter:new l.__emitter(l)};return t._emitter.addText(e),t}function _(e,n){n=n||l.languages||Object.keys(t);const i=y(e),a=n.filter($).filter(M).map(t=>m(t,e,!1));a.unshift(i);const r=a.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if($(e.language).supersetOf===t.language)return 1;if($(t.language).supersetOf===e.language)return-1}return 0}),[s,o]=r,c=s;return c.secondBest=o,c}function k(e,t,i){const a=t&&n[t]||i;e.classList.add("hljs"),e.classList.add("language-"+a)}function C(e){let t=null;const n=d(e);if(u(n))return;if(V("before:highlightElement",{el:e,language:n}),e.children.length>0&&(l.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/issues/2886"),console.warn(e)),l.throwUnescapedHTML)){const t=new xe("One of your code blocks includes unescaped HTML.",e.innerHTML);throw t}t=e;const i=t.textContent,a=n?p(i,{language:n,ignoreIllegals:!0}):_(i);e.innerHTML=a.value,k(e,n,a.language),e.result={language:a.language,re:a.relevance,relevance:a.relevance},a.secondBest&&(e.secondBest={language:a.secondBest.language,relevance:a.secondBest.relevance}),V("after:highlightElement",{el:e,result:a,text:i})}function S(e){l=Ce(l,e)}const E=()=>{j(),de("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function O(){j(),de("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let I=!1;function j(){if("loading"===document.readyState)return void(I=!0);const e=document.querySelectorAll(l.cssSelector);e.forEach(C)}function T(){I&&j()}function A(n,i){let a=null;try{a=i(e)}catch(r){if(le("Language definition for '{}' could not be registered.".replace("{}",n)),!s)throw r;le(r),a=c}a.name||(a.name=n),t[n]=a,a.rawDefinition=i.bind(null,e),a.aliases&&N(a.aliases,{languageName:n})}function L(e){delete t[e];for(const t of Object.keys(n))n[t]===e&&delete n[t]}function B(){return Object.keys(t)}function $(e){return e=(e||"").toLowerCase(),t[e]||t[n[e]]}function N(e,{languageName:t}){"string"===typeof e&&(e=[e]),e.forEach(e=>{n[e.toLowerCase()]=t})}function M(e){const t=$(e);return t&&!t.disableAutodetect}function P(e){e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{e["before:highlightBlock"](Object.assign({block:t.el},t))}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{e["after:highlightBlock"](Object.assign({block:t.el},t))})}function R(e){P(e),i.push(e)}function V(e,t){const n=e;i.forEach((function(e){e[n]&&e[n](t)}))}function D(e){return de("10.7.0","highlightBlock will be removed entirely in v12.0"),de("10.7.0","Please use highlightElement now."),C(e)}"undefined"!==typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",T,!1),Object.assign(e,{highlight:p,highlightAuto:_,highlightAll:j,highlightElement:C,highlightBlock:D,configure:S,initHighlighting:E,initHighlightingOnLoad:O,registerLanguage:A,unregisterLanguage:L,listLanguages:B,getLanguage:$,registerAliases:N,autoDetection:M,inherit:Ce,addPlugin:R}),e.debugMode=function(){s=!1},e.safeMode=function(){s=!0},e.versionString=_e,e.regex={concat:v,lookahead:f,either:w,optional:b,anyNumberOfTimes:g};for(const r in Z)"object"===typeof Z[r]&&a(Z[r]);return Object.assign(e,Z),e};var Ie=Oe({});e.exports=Ie,Ie.HighlightJS=Ie,Ie.default=Ie},"12b1":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i={list:"list",compactGrid:"compactGrid",detailedGrid:"detailedGrid",hidden:"hidden"}},1417:function(e,t,n){var i={"./markdown":["84cb","highlight-js-custom-markdown"],"./markdown.js":["84cb","highlight-js-custom-markdown"],"./swift":["81c8","highlight-js-custom-swift"],"./swift.js":["81c8","highlight-js-custom-swift"]};function a(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],a=t[0];return n.e(t[1]).then((function(){return n(a)}))}a.keys=function(){return Object.keys(i)},a.id="1417",e.exports=a},"146e":function(e,t,n){"use strict";var i=n("e425"),a=n("dd18"),r=n("8a61");function s(e){return new Promise((t,n)=>{e.complete?t():(e.addEventListener("load",t,{once:!0}),e.addEventListener("error",n,{once:!0}))})}function o(){return Promise.allSettled([...document.getElementsByTagName("img")].map(s))}t["a"]={mixins:[r["a"]],mounted(){this.scrollToElementIfAnchorPresent()},updated(){this.scrollToElementIfAnchorPresent()},methods:{async scrollToElementIfAnchorPresent(){const{hash:e}=this.$route;if(!e)return;const{imageLoadingStrategy:t}=i["a"].state;i["a"].setImageLoadingStrategy(a["a"].eager),await this.$nextTick(),await o(),this.scrollToElement(e),i["a"].setImageLoadingStrategy(t)}}}},"159b":function(e,t,n){"use strict";n("2d6f")},"17a4":function(e,t,n){"use strict";n("bbe1")},"19cc":function(e,t,n){},"1f39":function(e,t,n){"use strict";n("007b")},2224:function(e,t,n){"use strict";n("b392")},"25a9":function(e,t,n){"use strict";n.d(t,"c",(function(){return d})),n.d(t,"e",(function(){return p})),n.d(t,"b",(function(){return h})),n.d(t,"a",(function(){return m})),n.d(t,"d",(function(){return f}));var i=n("748c"),a=n("d26a"),r=n("3bdd");class s extends Error{constructor({location:e,response:t}){super("Request redirected"),this.location=e,this.response=t}}class o extends Error{constructor(e){super("Unable to fetch data"),this.route=e}}async function c(e,t={},n={}){function i(e){return("ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET||0!==e.status)&&!e.ok}const o=Object(a["c"])(e),c=Object(a["d"])(t);c&&(o.search=c);const l=await fetch(o.href,n);if(i(l))throw l;if(l.redirected)throw new s({location:l.url,response:l});const u=await l.json();return Object(r["c"])(u.schemaVersion),u}function l(e){const t=e.replace(/\/$/,"");return Object(i["c"])(["/data",t])+".json"}function u(e){const{pathname:t,search:n}=new URL(e),i=/\/data(\/.*).json$/,a=i.exec(t);return a?a[1]+n:t+n}async function d(e,t,n){const i=l(e.path);let a;try{a=await c(i,e.query)}catch(r){if("ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET)throw console.error(r),!1;if(r instanceof s)throw u(r.location);r.status&&404===r.status?n({name:"not-found",params:[e.path]}):n(new o(e))}return a}function p(e,t){return!Object(a["a"])(e,t)}async function h(e,t={}){const n=l(e);return c(n,{},t)}function m(e){return JSON.parse(JSON.stringify(e))}async function f({slug:e}){const t=Object(a["c"])(["/index/",e,"index.json"]);return c(t)}},"2cae":function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return s}));var i=n("31d4"),a=n("66cd");const r={blue:"blue",teal:"teal",orange:"orange",purple:"purple",green:"green",sky:"sky",pink:"pink"},s={[i["b"].article]:r.teal,[i["b"].init]:r.blue,[i["b"].case]:r.orange,[i["b"].class]:r.purple,[i["b"].collection]:r.pink,[a["a"].collectionGroup]:r.teal,[i["b"].dictionarySymbol]:r.purple,[i["b"].enum]:r.orange,[i["b"].extension]:r.orange,[i["b"].func]:r.green,[i["b"].op]:r.green,[i["b"].httpRequest]:r.green,[i["b"].module]:r.sky,[i["b"].method]:r.blue,[i["b"].macro]:r.pink,[i["b"].protocol]:r.purple,[i["b"].property]:r.teal,[i["b"].propertyListKey]:r.green,[i["b"].propertyListKeyReference]:r.green,[i["b"].sampleCode]:r.purple,[i["b"].struct]:r.purple,[i["b"].subscript]:r.blue,[i["b"].typealias]:r.orange,[i["b"].union]:r.purple,[i["b"].var]:r.purple}},"2d6f":function(e,t,n){},"2f34":function(e,t,n){"use strict";t["a"]={inject:{store:{default:()=>({state:{references:{}},setReferences(){},reset(){}})}},computed:{references:({store:e})=>e.state.references}}},3024:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"technology-icon",attrs:{viewBox:"0 0 14 14",themeId:"technology"}},[n("path",{attrs:{d:"M3.39,9l3.16,1.84.47.28.47-.28L10.61,9l.45.26,1.08.63L7,12.91l-5.16-3,1.08-.64L3.39,9M7,0,0,4.1,2.47,5.55,0,7,2.47,8.44,0,9.9,7,14l7-4.1L11.53,8.45,14,7,11.53,5.56,14,4.1ZM7,7.12,5.87,6.45l-1.54-.9L3.39,5,1.85,4.1,7,1.08l5.17,3L10.6,5l-.93.55-1.54.91ZM7,10,3.39,7.9,1.85,7,3.4,6.09,4.94,7,7,8.2,9.06,7,10.6,6.1,12.15,7l-1.55.9Z"}})])},a=[],r=n("be08"),s={name:"TechnologyIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"308e":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"column",style:e.style},[e._t("default")],2)},a=[],r={name:"Column",props:{span:{type:Number,default:null}},computed:{style:({span:e})=>({"--col-span":e})}},s=r,o=(n("fe08"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"0f654188",null);t["a"]=c.exports},"31d4":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return a}));const i={article:"article",associatedtype:"associatedtype",buildSetting:"buildSetting",case:"case",collection:"collection",class:"class",container:"container",dictionarySymbol:"dictionarySymbol",enum:"enum",extension:"extension",func:"func",groupMarker:"groupMarker",httpRequest:"httpRequest",init:"init",languageGroup:"languageGroup",learn:"learn",macro:"macro",method:"method",module:"module",op:"op",overview:"overview",project:"project",property:"property",propertyListKey:"propertyListKey",propertyListKeyReference:"propertyListKeyReference",protocol:"protocol",resources:"resources",root:"root",sampleCode:"sampleCode",section:"section",struct:"struct",subscript:"subscript",symbol:"symbol",tutorial:"tutorial",typealias:"typealias",union:"union",var:"var"},a={[i.init]:i.method,[i.case]:i.enum,[i.propertyListKeyReference]:i.propertyListKey,[i.project]:i.tutorial}},"3b75":function(e,t,n){},"3b96":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"curly-brackets-icon",attrs:{viewBox:"0 0 14 14",themeId:"curly-brackets"}},[n("path",{attrs:{d:"M9.987 14h-0.814v-0.916h0.36c0.137 0 0.253-0.038 0.349-0.116 0.099-0.080 0.179-0.188 0.239-0.318 0.064-0.134 0.11-0.298 0.139-0.483 0.031-0.186 0.045-0.38 0.045-0.58v-2.115c0-0.417 0.046-0.781 0.139-1.083 0.092-0.3 0.2-0.554 0.322-0.754 0.127-0.203 0.246-0.353 0.366-0.458 0.087-0.076 0.155-0.131 0.207-0.169-0.052-0.037-0.12-0.093-0.207-0.167-0.12-0.105-0.239-0.255-0.366-0.459-0.122-0.2-0.23-0.453-0.322-0.754-0.093-0.3-0.139-0.665-0.139-1.082v-2.13c0-0.199-0.014-0.392-0.045-0.572-0.029-0.182-0.076-0.345-0.139-0.483-0.060-0.137-0.141-0.246-0.239-0.328-0.095-0.076-0.212-0.115-0.349-0.115h-0.36v-0.916h0.814c0.442 0 0.788 0.18 1.030 0.538 0.238 0.352 0.358 0.826 0.358 1.407v2.236c0 0.3 0.015 0.597 0.044 0.886 0.030 0.287 0.086 0.544 0.164 0.765 0.077 0.216 0.184 0.392 0.318 0.522 0.129 0.124 0.298 0.188 0.503 0.188h0.058v0.916h-0.058c-0.206 0-0.374 0.064-0.503 0.188-0.134 0.129-0.242 0.305-0.318 0.521-0.078 0.223-0.134 0.48-0.164 0.766-0.029 0.288-0.044 0.587-0.044 0.884v2.236c0 0.582-0.12 1.055-0.358 1.409-0.242 0.358-0.588 0.538-1.030 0.538z"}}),n("path",{attrs:{d:"M4.827 14h-0.814c-0.442 0-0.788-0.18-1.030-0.538-0.238-0.352-0.358-0.825-0.358-1.409v-2.221c0-0.301-0.015-0.599-0.045-0.886-0.029-0.287-0.085-0.544-0.163-0.764-0.077-0.216-0.184-0.393-0.318-0.522-0.131-0.127-0.296-0.188-0.503-0.188h-0.058v-0.916h0.058c0.208 0 0.373-0.063 0.503-0.188 0.135-0.129 0.242-0.304 0.318-0.522 0.078-0.22 0.134-0.477 0.163-0.765 0.030-0.286 0.045-0.585 0.045-0.886v-2.251c0-0.582 0.12-1.055 0.358-1.407 0.242-0.358 0.588-0.538 1.030-0.538h0.814v0.916h-0.36c-0.138 0-0.252 0.038-0.349 0.116-0.099 0.079-0.179 0.189-0.239 0.327-0.064 0.139-0.11 0.302-0.141 0.483-0.029 0.18-0.044 0.373-0.044 0.572v2.13c0 0.417-0.046 0.782-0.138 1.082-0.092 0.302-0.201 0.556-0.324 0.754-0.123 0.201-0.246 0.356-0.366 0.459-0.086 0.074-0.153 0.13-0.206 0.167 0.052 0.038 0.12 0.093 0.206 0.169 0.12 0.103 0.243 0.258 0.366 0.458s0.232 0.453 0.324 0.754c0.092 0.302 0.138 0.666 0.138 1.083v2.115c0 0.2 0.015 0.394 0.044 0.58 0.030 0.186 0.077 0.349 0.139 0.482 0.062 0.132 0.142 0.239 0.241 0.32 0.096 0.079 0.21 0.116 0.349 0.116h0.36z"}})])},a=[],r=n("be08"),s={name:"CurlyBracketsIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"3ba9":function(e,t,n){},"3bdd":function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"b",(function(){return s})),n.d(t,"c",(function(){return d}));const i={major:0,minor:3,patch:0};function a({major:e,minor:t,patch:n}){return[e,t,n].join(".")}function r(e){const[t=0,n=0,i=0]=e.split(".");return[Number(t),Number(n),Number(i)]}function s(e,t){const n=r(e),i=r(t);for(let a=0;ai[a])return 1;if(n[a]`[Swift-DocC-Render] The render node version for this page (${e}) has a different major version component than Swift-DocC-Render supports (${o}). Compatibility is not guaranteed.`;function u(e){const{major:t,minor:n}=e,{major:r,minor:s}=i;return t!==r?l(a(e)):n>s?c(a(e)):""}function d(e){if(!e)return;const t=u(e);t&&console.warn(t)}},"43fe":function(e,t,n){"use strict";n("4573")},4573:function(e,t,n){},"47cc":function(e,t,n){},"49e3":function(e,t,n){},"517a":function(e,t,n){"use strict";n("8222")},5201:function(e,t,n){"use strict";n("0cf0")},"52e4":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("WordBreak",{attrs:{tag:"code"}},[e._t("default")],2)},a=[],r=n("7b1f"),s={name:"CodeVoice",components:{WordBreak:r["a"]}},o=s,c=(n("8c92"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"05f4a5b7",null);t["a"]=l.exports},5416:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"device-frame",class:e.classes,style:e.styles,attrs:{"data-device":e.device}},[n("div",{staticClass:"device-screen",class:{"with-device":e.currentDeviceAttrs}},[e._t("default")],2),n("div",{staticClass:"device"})])},a=[],r={},s=n("6842");const o=e=>e&&e!==1/0,c=(e,t=4)=>o(e)?+`${Math.round(`${e}e+${t}`)}e-${t}`:null;var l={name:"DeviceFrame",props:{device:{type:String,required:!0}},provide:{insideDeviceFrame:!0},computed:{currentDeviceAttrs:({device:e})=>Object(s["c"])(["theme","device-frames",e],r[e]),styles:({toPixel:e,toUrl:t,toPct:n,currentDeviceAttrs:i={}})=>{const{screenTop:a,screenLeft:r,screenWidth:s,frameWidth:o,lightUrl:l,darkUrl:u,screenHeight:d,frameHeight:p}=i;return{"--screen-top":n(a/p),"--screen-left":n(r/o),"--screen-width":n(s/o),"--screen-height":n(d/p),"--screen-aspect":c(s/d)||null,"--frame-width":e(o),"--frame-aspect":c(o/p)||null,"--device-light-url":t(l),"--device-dark-url":t(u)}},classes:({currentDeviceAttrs:e})=>({"no-device":!e})},methods:{toPixel:e=>o(e)?e+"px":null,toUrl:e=>o(e)?`url(${e})`:null,toPct:e=>o(e)?c(100*e)+"%":null}},u=l,d=(n("b2da"),n("2877")),p=Object(d["a"])(u,i,a,!1,null,"28ae8fd3",null);t["a"]=p.exports},5677:function(e,t,n){"use strict";n.r(t),n.d(t,"BlockType",(function(){return Ct}));var i=n("2f34"),a=n("e3ab"),r=n("7b69"),s=n("5dcc"),o=n("52e4"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"DictionaryExample"},[e._t("default"),n("CollapsibleCodeListing",{attrs:{content:e.example.content,showLineNumbers:""}})],2)},l=[],u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"collapsible-code-listing",class:{"single-line":1===e.content[0].code.length}},[n("pre",[n("CodeBlock",e._l(this.content,(function(t,i){return n("div",{key:i,class:["container-general",{collapsible:!0===t.collapsible},{collapsed:!0===t.collapsible&&e.collapsed}]},e._l(t.code,(function(t,i){return n("div",{key:i,staticClass:"code-line-container"},[e._v("\n "),n("div",{directives:[{name:"show",rawName:"v-show",value:e.showLineNumbers,expression:"showLineNumbers"}],staticClass:"code-number"}),e._v("\n "),n("div",{staticClass:"code-line"},[e._v(e._s(t))]),e._v("\n ")])})),0)})),0)],1)])},d=[],p=n("800b"),h={name:"CollapsibleCodeListing",components:{CodeBlock:p["a"]},props:{collapsed:{type:Boolean,required:!1},content:{type:Array,required:!0},showLineNumbers:{type:Boolean,default:()=>!0}}},m=h,f=(n("efc1"),n("2877")),g=Object(f["a"])(m,u,d,!1,null,"25a17a0e",null),b=g.exports,v={name:"DictionaryExample",components:{CollapsibleCodeListing:b},props:{example:{type:Object,required:!0}}},y=v,w=Object(f["a"])(y,c,l,!1,null,null,null),_=w.exports,x=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",{staticClass:"endpoint-example"},[n("Column",{staticClass:"example-code"},[e._t("default"),n("Tabnav",{model:{value:e.currentTab,callback:function(t){e.currentTab=t},expression:"currentTab"}},[n("TabnavItem",{attrs:{value:e.Tab.request}},[e._v(e._s(e.$t("tab.request")))]),n("TabnavItem",{attrs:{value:e.Tab.response}},[e._v(e._s(e.$t("tab.response")))])],1),n("div",{staticClass:"output"},[e.isCurrent(e.Tab.request)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.request,!1))],1):e._e(),e.isCurrent(e.Tab.response)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.response,!1))],1):e._e()]),e.isCollapsible?n("div",{staticClass:"controls"},[e.isCollapsed?n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showMore.apply(null,arguments)}}},[n("InlinePlusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" "+e._s(e.$t("more"))+" ")],1):n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showLess.apply(null,arguments)}}},[n("InlineMinusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" "+e._s(e.$t("less"))+" ")],1)]):e._e()],2)],1)},k=[],C=n("0f00"),S=n("620a"),E=function(){var e,t=this,n=t.$createElement,i=t._self._c||n;return i("nav",{staticClass:"tabnav",class:(e={},e["tabnav--"+t.position]=t.position,e["tabnav--vertical"]=t.vertical,e)},[i("ul",{staticClass:"tabnav-items"},[t._t("default")],2)])},O=[];const I="tabnavData";var j={name:"Tabnav",constants:{ProvideKey:I},provide(){const e={selectTab:this.selectTab};return Object.defineProperty(e,"activeTab",{enumerable:!0,get:()=>this.value}),{[I]:e}},props:{position:{type:String,required:!1,validator:e=>new Set(["start","center","end"]).has(e)},vertical:{type:Boolean,default:!1},value:{type:[String,Number],required:!0}},methods:{selectTab(e){this.$emit("input",e)}}},T=j,A=(n("fb8e"),Object(f["a"])(T,E,O,!1,null,"5283512a",null)),L=A.exports,B=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"tabnav-item"},[n("a",{staticClass:"tabnav-link",class:{active:e.isActive},attrs:{href:"#","aria-current":e.isActive?"true":"false"},on:{click:function(t){return t.preventDefault(),e.tabnavData.selectTab(e.value)}}},[e._t("default")],2)])},$=[],N={name:"TabnavItem",inject:{tabnavData:{default:{activeTab:null,selectTab:()=>{}}}},props:{value:{type:[String,Number],default:null}},computed:{isActive({tabnavData:e,value:t}){return e.activeTab===t}}},M=N,P=(n("6869"),Object(f["a"])(M,B,$,!1,null,"6aa9882a",null)),R=P.exports,V=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-solid-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-plus-circle-solid"}},[n("path",{attrs:{d:"M7.005 0.5h-0.008c-1.791 0.004-3.412 0.729-4.589 1.9l0-0c-1.179 1.177-1.908 2.803-1.908 4.6 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.587-2.906-6.496-6.492-6.5h-0zM4.005 7.52v-1h2.5v-2.51h1v2.51h2.5v1h-2.501v2.49h-1v-2.49z"}})])},D=[],G=n("be08"),z={name:"InlinePlusCircleSolidIcon",components:{SVGIcon:G["a"]}},q=z,F=Object(f["a"])(q,V,D,!1,null,null,null),U=F.exports,W=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-minus-circle-solid-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-minus-circle-solid"}},[n("path",{attrs:{d:"m6.98999129.48999129c3.58985091 0 6.50000001 2.91014913 6.50000001 6.5 0 3.58985091-2.9101491 6.50000001-6.50000001 6.50000001-3.58985087 0-6.5-2.9101491-6.5-6.50000001 0-3.58985087 2.91014913-6.5 6.5-6.5zm3 6.02001742h-6v1h6z","fill-rule":"evenodd"}})])},H=[],K={name:"InlineMinusCircleSolidIcon",components:{SVGIcon:G["a"]}},Z=K,Y=Object(f["a"])(Z,W,H,!1,null,null,null),X=Y.exports;const J={request:"Request",response:"Response"};var Q={name:"EndpointExample",components:{InlineMinusCircleSolidIcon:X,InlinePlusCircleSolidIcon:U,TabnavItem:R,Tabnav:L,CollapsibleCodeListing:b,Row:C["a"],Column:S["a"]},constants:{Tab:J},props:{request:{type:Object,required:!0},response:{type:Object,required:!0}},data(){return{isCollapsed:!0,currentTab:J.request}},computed:{Tab:()=>J,isCollapsible:({response:e,request:t,currentTab:n})=>{const i={[J.request]:t.content,[J.response]:e.content}[n]||[];return i.some(({collapsible:e})=>e)}},methods:{isCurrent(e){return this.currentTab===e},showMore(){this.isCollapsed=!1},showLess(){this.isCollapsed=!0}}},ee=Q,te=(n("b0e7"),Object(f["a"])(ee,x,k,!1,null,"c84e62a6",null)),ne=te.exports,ie=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("figure",{attrs:{id:e.anchor}},[e._t("default")],2)},ae=[],re={name:"Figure",props:{anchor:{type:String,required:!1}}},se=re,oe=Object(f["a"])(se,ie,ae,!1,null,null,null),ce=oe.exports,le=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.tag,{tag:"component",staticClass:"caption",class:{trailing:e.trailing}},[e.title?[n("strong",[e._v(e._s(e.title))]),e._v(" "),e._t("default")]:[e._t("default")]],2)},ue=[];const de={caption:"caption",figcaption:"figcaption"},pe={leading:"leading",trailing:"trailing"};var he={name:"Caption",constants:{CaptionPosition:pe,CaptionTag:de},props:{title:{type:String,required:!1},tag:{type:String,required:!0,validator:e=>Object.hasOwnProperty.call(de,e)},position:{type:String,default:()=>pe.leading,validator:e=>Object.hasOwnProperty.call(pe,e)}},computed:{trailing:({position:e})=>e===pe.trailing}},me=he,fe=(n("6209"),Object(f["a"])(me,le,ue,!1,null,"1b76f4e0",null)),ge=fe.exports,be=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ImageAsset",{attrs:{alt:e.alt,variants:e.variants}})},ve=[],ye=n("8bd9"),we={name:"InlineImage",components:{ImageAsset:ye["a"]},props:{alt:{type:String,default:""},variants:{type:Array,required:!0}}},_e=we,xe=(n("cb92"),Object(f["a"])(_e,be,ve,!1,null,"3a939631",null)),ke=xe.exports,Ce=n("86d8"),Se=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"table-wrapper"},[n("table",{class:{spanned:e.spanned}},[e._t("default")],2)])},Ee=[],Oe={name:"Table",props:{spanned:{type:Boolean,default:!1}}},Ie=Oe,je=(n("ec71"),Object(f["a"])(Ie,Se,Ee,!1,null,"5ed73c89",null)),Te=je.exports,Ae=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("s",{attrs:{"data-before-text":e.$t("accessibility.strike.start"),"data-after-text":e.$t("accessibility.strike.end")}},[e._t("default")],2)},Le=[],Be={name:"StrikeThrough"},$e=Be,Ne=(n("d0da"),Object(f["a"])($e,Ae,Le,!1,null,"7fc51673",null)),Me=Ne.exports,Pe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("small",[e._t("default")],2)},Re=[],Ve={name:"Small"},De=Ve,Ge=(n("b0f5"),Object(f["a"])(De,Pe,Re,!1,null,"77035f61",null)),ze=Ge.exports,qe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Asset",{attrs:{identifier:e.identifier,"video-autoplays":!1,"video-muted":!1,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,deviceFrame:e.deviceFrame}})},Fe=[],Ue=n("80e4"),We=n("7689"),He={name:"BlockVideo",mixins:[We["a"]],components:{Asset:Ue["a"]},props:{identifier:{type:String,required:!0},deviceFrame:{type:String,required:!1}}},Ke=He,Ze=(n("fe1c"),Object(f["a"])(Ke,qe,Fe,!1,null,"035a093f",null)),Ye=Ze.exports,Xe=n("308e"),Je=n("ee9e"),Qe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TabNavigator",class:[{"tabs--vertical":e.vertical}]},[n("Tabnav",e._b({model:{value:e.currentTitle,callback:function(t){e.currentTitle=t},expression:"currentTitle"}},"Tabnav",{position:e.position,vertical:e.vertical},!1),e._l(e.titles,(function(t){return n("TabnavItem",{key:t,attrs:{value:t}},[e._v(" "+e._s(t)+" ")])})),1),n("div",{staticClass:"tabs-content"},[n("div",{staticClass:"tabs-content-container"},[n("transition-group",{attrs:{name:"fade"}},[e._l(e.titles,(function(t){return[n("div",{directives:[{name:"show",rawName:"v-show",value:t===e.currentTitle,expression:"title === currentTitle"}],key:t,staticClass:"tab-container",class:{active:t===e.currentTitle}},[e._t(t)],2)]}))],2)],1)])],1)},et=[],tt={name:"TabNavigator",components:{TabnavItem:R,Tabnav:L},props:{vertical:{type:Boolean,default:!1},position:{type:String,default:"start",validator:e=>new Set(["start","center","end"]).has(e)},titles:{type:Array,required:!0,default:()=>[]}},data(){return{currentTitle:this.titles[0]}},watch:{titles(e,t){if(e.length!t.includes(e));this.currentTitle=n||this.currentTitle}}}},nt=tt,it=(n("9ed5"),Object(f["a"])(nt,Qe,et,!1,null,"e671a734",null)),at=it.exports,rt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"tasklist"},e._l(e.tasks,(function(t,i){return n("li",{key:i},[e.showCheckbox(t)?n("input",{attrs:{type:"checkbox",disabled:""},domProps:{checked:t.checked}}):e._e(),e._t("task",null,{task:t})],2)})),0)},st=[];const ot="checked",ct=e=>Object.hasOwnProperty.call(e,ot);var lt={name:"TaskList",props:{tasks:{required:!0,type:Array,validator:e=>e.some(ct)}},methods:{showCheckbox:ct}},ut=lt,dt=(n("c3da"),Object(f["a"])(ut,rt,st,!1,null,"6a56a858",null)),pt=dt.exports,ht=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isListStyle?n("div",{staticClass:"links-block"},e._l(e.items,(function(e){return n("TopicsLinkBlock",{key:e.identifier,staticClass:"topic-link-block",attrs:{topic:e}})})),1):n("TopicsLinkCardGrid",{staticClass:"links-block",attrs:{items:e.items,"topic-style":e.blockStyle}})},mt=[],ft=n("70fb"),gt=n("12b1"),bt={name:"LinksBlock",mixins:[i["a"]],components:{TopicsLinkBlock:()=>n.e("chunk-c0335d80").then(n.bind(null,"2a18")),TopicsLinkCardGrid:ft["a"]},props:{identifiers:{type:Array,required:!0},blockStyle:{type:String,default:gt["a"].compactGrid}},computed:{isListStyle:({blockStyle:e})=>e===gt["a"].list,items:({identifiers:e,references:t})=>e.reduce((e,n)=>t[n]?e.concat(t[n]):e,[])}},vt=bt,yt=(n("6e71"),Object(f["a"])(vt,ht,mt,!1,null,"ce6f87f6",null)),wt=yt.exports,_t=n("5416");const{CaptionPosition:xt,CaptionTag:kt}=ge.constants,Ct={aside:"aside",codeListing:"codeListing",endpointExample:"endpointExample",heading:"heading",orderedList:"orderedList",paragraph:"paragraph",table:"table",termList:"termList",unorderedList:"unorderedList",dictionaryExample:"dictionaryExample",small:"small",video:"video",row:"row",tabNavigator:"tabNavigator",links:"links"},St={codeVoice:"codeVoice",emphasis:"emphasis",image:"image",inlineHead:"inlineHead",link:"link",newTerm:"newTerm",reference:"reference",strong:"strong",text:"text",superscript:"superscript",subscript:"subscript",strikethrough:"strikethrough"},Et={both:"both",column:"column",none:"none",row:"row"},Ot={left:"left",right:"right",center:"center",unset:"unset"},It=7;function jt(e,t){const n=n=>n.map(jt(e,t)),i=t=>t.map(t=>e("li",{},n(t.content))),c=(t,i,a,r,s,o,c)=>{const{colspan:l,rowspan:u}=o[`${s}_${r}`]||{};if(0===l||0===u)return null;const d=c[r]||Ot.unset;let p=null;return d!==Ot.unset&&(p=d+"-cell"),e(t,{attrs:{...i,colspan:l,rowspan:u},class:p},n(a))},l=(t,n=Et.none,i={},a=[])=>{switch(n){case Et.both:{const[n,...r]=t;return[e("thead",{},[e("tr",{},n.map((e,t)=>c("th",{scope:"col"},e,t,0,i,a)))]),e("tbody",{},r.map(([t,...n],r)=>e("tr",{},[c("th",{scope:"row"},t,0,r+1,i,a),...n.map((e,t)=>c("td",{},e,t+1,r+1,i,a))])))]}case Et.column:return[e("tbody",{},t.map(([t,...n],r)=>e("tr",{},[c("th",{scope:"row"},t,0,r,i,a),...n.map((e,t)=>c("td",{},e,t+1,r,i,a))])))];case Et.row:{const[n,...r]=t;return[e("thead",{},[e("tr",{},n.map((e,t)=>c("th",{scope:"col"},e,t,0,i,a)))]),e("tbody",{},r.map((t,n)=>e("tr",{},t.map((e,t)=>c("td",{},e,t,n+1,i,a)))))]}default:return[e("tbody",{},t.map((t,n)=>e("tr",{},t.map((e,t)=>c("td",{},e,t,n,i,a)))))]}},u=({metadata:{abstract:t=[],anchor:i,title:a,...r},...s})=>{const o={...s,metadata:r},c=[n([o])];if(a&&t.length||t.length){const i=a?xt.leading:xt.trailing,r=i===xt.trailing?1:0,s=kt.figcaption;c.splice(r,0,e(ge,{props:{title:a,position:i,tag:s}},n(t)))}return e(ce,{props:{anchor:i}},c)},d=({metadata:{deviceFrame:t},...i})=>e(_t["a"],{props:{device:t}},n([i]));return function(c){switch(c.type){case Ct.aside:{const t={kind:c.style,name:c.name};return e(a["a"],{props:t},n(c.content))}case Ct.codeListing:{if(c.metadata&&c.metadata.anchor)return u(c);const t={syntax:c.syntax,fileType:c.fileType,content:c.code,showLineNumbers:c.showLineNumbers};return e(r["a"],{props:t})}case Ct.endpointExample:{const t={request:c.request,response:c.response};return e(ne,{props:t},n(c.summary||[]))}case Ct.heading:{const t={anchor:c.anchor,level:c.level};return e(s["a"],{props:t},c.text)}case Ct.orderedList:return e("ol",{attrs:{start:c.start}},i(c.items));case Ct.paragraph:{const t=1===c.inlineContent.length&&c.inlineContent[0].type===St.image,i=t?{class:["inline-image-container"]}:{};return e("p",i,n(c.inlineContent))}case Ct.table:{const t=l(c.rows,c.header,c.extendedData,c.alignments);if(c.metadata&&c.metadata.abstract){const{title:i}=c.metadata,a=i?xt.leading:xt.trailing,r=kt.caption;t.unshift(e(ge,{props:{title:i,position:a,tag:r}},n(c.metadata.abstract)))}return e(Te,{attrs:{id:c.metadata&&c.metadata.anchor},props:{spanned:!!c.extendedData}},t)}case Ct.termList:return e("dl",{},c.items.map(({term:t,definition:i})=>[e("dt",{},n(t.inlineContent)),e("dd",{},n(i.content))]));case Ct.unorderedList:{const t=e=>pt.props.tasks.validator(e.items);return t(c)?e(pt,{props:{tasks:c.items},scopedSlots:{task:e=>n(e.task.content)}}):e("ul",{},i(c.items))}case Ct.dictionaryExample:{const t={example:c.example};return e(_,{props:t},n(c.summary||[]))}case Ct.small:return e("p",{},[e(ze,{},n(c.inlineContent))]);case Ct.video:{if(c.metadata&&c.metadata.abstract)return u(c);if(!t[c.identifier])return null;const{deviceFrame:n}=c.metadata||{};return e(Ye,{props:{identifier:c.identifier,deviceFrame:n}})}case Ct.row:{const t=c.numberOfColumns?{large:c.numberOfColumns}:void 0;return e(Je["a"],{props:{columns:t}},c.columns.map(t=>e(Xe["a"],{props:{span:t.size}},n(t.content))))}case Ct.tabNavigator:{const t=c.tabs.length>It,i=c.tabs.map(e=>e.title),a=c.tabs.reduce((e,t)=>({...e,[t.title]:()=>n(t.content)}),{});return e(at,{props:{titles:i,vertical:t},scopedSlots:a})}case Ct.links:return e(wt,{props:{blockStyle:c.style,identifiers:c.items}});case St.codeVoice:return e(o["a"],{},c.code);case St.emphasis:case St.newTerm:return e("em",n(c.inlineContent));case St.image:{if(c.metadata&&(c.metadata.anchor||c.metadata.abstract))return u(c);const n=t[c.identifier];return n?c.metadata&&c.metadata.deviceFrame?d(c):e(ke,{props:{alt:n.alt,variants:n.variants}}):null}case St.link:return e("a",{attrs:{href:c.destination}},c.title);case St.reference:{const i=t[c.identifier];if(!i)return null;const a=c.overridingTitleInlineContent||i.titleInlineContent,r=c.overridingTitle||i.title;return e(Ce["a"],{props:{url:i.url,kind:i.kind,role:i.role,isActive:c.isActive,ideTitle:i.ideTitle,titleStyle:i.titleStyle,hasInlineFormatting:!!a}},a?n(a):r)}case St.strong:case St.inlineHead:return e("strong",n(c.inlineContent));case St.text:return"\n"===c.text?e("br"):c.text;case St.superscript:return e("sup",n(c.inlineContent));case St.subscript:return e("sub",n(c.inlineContent));case St.strikethrough:return e(Me,n(c.inlineContent));default:return null}}}var Tt,At,Lt={name:"ContentNode",constants:{TableHeaderStyle:Et,TableColumnAlignments:Ot},mixins:[i["a"]],render:function(e){return e(this.tag,{class:"content"},this.content.map(jt(e,this.references),this))},props:{content:{type:Array,required:!0},tag:{type:String,default:()=>"div"}},methods:{map(e){function t(n=[]){return n.map(n=>{switch(n.type){case Ct.aside:return e({...n,content:t(n.content)});case Ct.dictionaryExample:return e({...n,summary:t(n.summary)});case Ct.paragraph:case St.emphasis:case St.strong:case St.inlineHead:case St.superscript:case St.subscript:case St.strikethrough:case St.newTerm:return e({...n,inlineContent:t(n.inlineContent)});case Ct.orderedList:case Ct.unorderedList:return e({...n,items:n.items.map(e=>({...e,content:t(e.content)}))});case Ct.table:return e({...n,rows:n.rows.map(e=>e.map(t))});case Ct.termList:return e({...n,items:n.items.map(e=>({...e,term:{inlineContent:t(e.term.inlineContent)},definition:{content:t(e.definition.content)}}))});default:return e(n)}})}return t(this.content)},forEach(e){function t(n=[]){n.forEach(n=>{switch(e(n),n.type){case Ct.aside:t(n.content);break;case Ct.paragraph:case St.emphasis:case St.strong:case St.inlineHead:case St.newTerm:case St.superscript:case St.subscript:case St.strikethrough:t(n.inlineContent);break;case Ct.orderedList:case Ct.unorderedList:n.items.forEach(e=>t(e.content));break;case Ct.dictionaryExample:t(n.summary);break;case Ct.table:n.rows.forEach(e=>{e.forEach(t)});break;case Ct.termList:n.items.forEach(e=>{t(e.term.inlineContent),t(e.definition.content)});break}})}return t(this.content)},reduce(e,t){let n=t;return this.forEach(t=>{n=e(n,t)}),n}},computed:{plaintext(){return this.reduce((e,t)=>t.type===Ct.paragraph?e+"\n":t.type===St.text?`${e}${t.text}`:e,"").trim()}},BlockType:Ct,InlineType:St},Bt=Lt,$t=Object(f["a"])(Bt,Tt,At,!1,null,null,null);t["default"]=$t.exports},"598a":function(e,t,n){},"5c97":function(e,t,n){},"5da3":function(e,t,n){e.exports=n.p+"img/no-image@2x.df2a0a50.png"},"5dcc":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("h"+e.level,{tag:"component",attrs:{id:e.anchor}},[e.shouldLink?n("router-link",{staticClass:"header-anchor",attrs:{to:{hash:"#"+e.anchor}},on:{click:function(t){return e.handleFocusAndScroll(e.anchor)}}},[e._t("default"),n("span",{staticClass:"visuallyhidden"},[e._v(e._s(e.$t("accessibility.in-page-link")))]),n("LinkIcon",{staticClass:"icon",attrs:{"aria-hidden":"true"}})],2):[e._t("default")]],2)},a=[],r=n("8a61"),s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"link-icon",attrs:{viewBox:"0 0 20 20"}},[n("path",{attrs:{d:"M19.34,4.88L15.12,.66c-.87-.87-2.3-.87-3.17,0l-3.55,3.56-1.38,1.38-1.4,1.4c-.47,.47-.68,1.09-.64,1.7,.02,.29,.09,.58,.21,.84,.11,.23,.24,.44,.43,.63l4.22,4.22h0l.53-.53,.53-.53h0l-4.22-4.22c-.29-.29-.29-.77,0-1.06l1.4-1.4,.91-.91,.58-.58,.55-.55,2.9-2.9c.29-.29,.77-.29,1.06,0l4.22,4.22c.29,.29,.29,.77,0,1.06l-2.9,2.9c.14,.24,.24,.49,.31,.75,.08,.32,.11,.64,.09,.96l3.55-3.55c.87-.87,.87-2.3,0-3.17Z"}}),n("path",{attrs:{d:"M14.41,9.82s0,0,0,0l-4.22-4.22h0l-.53,.53-.53,.53h0l4.22,4.22c.29,.29,.29,.77,0,1.06l-1.4,1.4-.91,.91-.58,.58-.55,.55h0l-2.9,2.9c-.29,.29-.77,.29-1.06,0L1.73,14.04c-.29-.29-.29-.77,0-1.06l2.9-2.9c-.14-.24-.24-.49-.31-.75-.08-.32-.11-.64-.09-.97L.68,11.93c-.87,.87-.87,2.3,0,3.17l4.22,4.22c.87,.87,2.3,.87,3.17,0l3.55-3.55,1.38-1.38,1.4-1.4c.47-.47,.68-1.09,.64-1.7-.02-.29-.09-.58-.21-.84-.11-.22-.24-.44-.43-.62Z"}})])},o=[],c=n("be08"),l={name:"LinkIcon",components:{SVGIcon:c["a"]}},u=l,d=n("2877"),p=Object(d["a"])(u,s,o,!1,null,null,null),h=p.exports,m={name:"LinkableHeading",mixins:[r["a"]],components:{LinkIcon:h},props:{anchor:{type:String,required:!1},level:{type:Number,default:()=>2,validator:e=>e>=1&&e<=6}},inject:{enableMinimized:{default:()=>!1},isTargetIDE:{default:()=>!1}},computed:{shouldLink:({anchor:e,enableMinimized:t,isTargetIDE:n})=>!!e&&!t&&!n}},f=m,g=(n("bbf6"),Object(d["a"])(f,i,a,!1,null,"6007a8a4",null));t["a"]=g.exports},6058:function(e,t,n){},6209:function(e,t,n){"use strict";n("0eaa")},"620a":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"col",class:e.classes},[e._t("default")],2)},a=[];const r=0,s=12,o=new Set(["large","medium","small"]),c=e=>({type:Object,default:()=>({}),validator:t=>Object.keys(t).every(n=>o.has(n)&&e(t[n]))}),l=c(e=>"boolean"===typeof e),u=c(e=>"number"===typeof e&&e>=r&&e<=s);var d={name:"GridColumn",props:{isCentered:l,isUnCentered:l,span:{...u,default:()=>({large:s})}},computed:{classes:function(){return{["large-"+this.span.large]:void 0!==this.span.large,["medium-"+this.span.medium]:void 0!==this.span.medium,["small-"+this.span.small]:void 0!==this.span.small,"large-centered":!!this.isCentered.large,"medium-centered":!!this.isCentered.medium,"small-centered":!!this.isCentered.small,"large-uncentered":!!this.isUnCentered.large,"medium-uncentered":!!this.isUnCentered.medium,"small-uncentered":!!this.isUnCentered.small}}}},p=d,h=(n("6e4a"),n("2877")),m=Object(h["a"])(p,i,a,!1,null,"2ee3ad8b",null);t["a"]=m.exports},"636c":function(e,t,n){},"63e6":function(e,t,n){},"64b5":function(e,t,n){},6667:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"diagonal-arrow",attrs:{viewBox:"0 0 14 14",themeId:"diagonal-arrow"}},[n("path",{attrs:{d:"M0.010 12.881l10.429-10.477-3.764 0.824-0.339-1.549 7.653-1.679-1.717 7.622-1.546-0.349 0.847-3.759-10.442 10.487z"}})])},a=[],r=n("be08"),s={name:"DiagonalArrowIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"66cd":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i={article:"article",codeListing:"codeListing",collection:"collection",collectionGroup:"collectionGroup",containerSymbol:"containerSymbol",devLink:"devLink",dictionarySymbol:"dictionarySymbol",generic:"generic",link:"link",media:"media",pseudoCollection:"pseudoCollection",pseudoSymbol:"pseudoSymbol",restRequestSymbol:"restRequestSymbol",sampleCode:"sampleCode",symbol:"symbol",table:"table",learn:"learn",overview:"overview",project:"project",tutorial:"tutorial",resources:"resources"}},6869:function(e,t,n){"use strict";n("9649")},"6e4a":function(e,t,n){"use strict";n("05a1")},"6e71":function(e,t,n){"use strict";n("3ba9")},"70fb":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TopicsLinkCardGrid"},[n("Row",{attrs:{columns:{large:e.compactCards?3:2,medium:2}}},e._l(e.items,(function(t){return n("Column",{key:t.title},[n("TopicsLinkCardGridItem",{attrs:{item:t,compact:e.compactCards}})],1)})),1)],1)},a=[],r=n("ee9e"),s=n("308e"),o=n("12b1"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Card",{staticClass:"reference-card-grid-item",attrs:{url:e.item.url,image:e.imageReferences.card,title:e.item.title,"floating-style":"",size:e.cardSize,"link-text":e.compact?"":e.$t(e.linkText)},scopedSlots:e._u([e.imageReferences.card?null:{key:"cover",fn:function(t){var i=t.classes;return[n("div",{staticClass:"reference-card-grid-item__image",class:i},[n("TopicTypeIcon",{staticClass:"reference-card-grid-item__icon",attrs:{type:e.item.role,"image-override":e.references[e.imageReferences.icon]}})],1)]}}],null,!0)},[e.compact?e._e():n("ContentNode",{attrs:{content:e.item.abstract}})],1)},l=[],u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Reference",e._b({staticClass:"card",class:e.classes,attrs:{url:e.url}},"Reference",e.linkAriaTags,!1),[n("CardCover",{attrs:{variants:e.imageVariants,rounded:e.floatingStyle,alt:e.imageReference.alt,"aria-hidden":"true"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._t("cover",null,null,t)]}}],null,!0)}),n("div",{staticClass:"details",attrs:{"aria-hidden":"true"}},[e.eyebrow?n("div",{staticClass:"eyebrow",attrs:{id:e.eyebrowId,"aria-label":e.formatAriaLabel("- "+e.eyebrow)}},[e._v(" "+e._s(e.eyebrow)+" ")]):e._e(),n("div",{staticClass:"title",attrs:{id:e.titleId}},[e._v(" "+e._s(e.title)+" ")]),e.$slots.default?n("div",{staticClass:"card-content",attrs:{id:e.contentId}},[e._t("default")],2):e._e(),e.linkText?n(e.hasButton?"ButtonLink":"div",{tag:"component",staticClass:"link"},[e._v(" "+e._s(e.linkText)+" "),e.showExternalLinks?n("DiagonalArrowIcon",{staticClass:"icon-inline link-icon"}):e.hasButton?e._e():n("InlineChevronRightIcon",{staticClass:"icon-inline link-icon"})],1):e._e()],1)],1)},d=[],p=n("76ab"),h=n("34b0"),m=n("6667"),f=n("86d8"),g={small:"small",large:"large"},b=n("2f34"),v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"card-cover-wrap",class:{rounded:e.rounded}},[e._t("default",(function(){return[n("ImageAsset",{staticClass:"card-cover",attrs:{variants:e.variants,alt:e.alt}})]}),{classes:"card-cover"})],2)},y=[],w=n("8bd9"),_={name:"CardCover",components:{ImageAsset:w["a"]},props:{variants:{type:Array,required:!0},rounded:{type:Boolean,default:!1},alt:{type:String,default:null}}},x=_,k=(n("850e"),n("2877")),C=Object(k["a"])(x,v,y,!1,null,"0c1c40a1",null),S=C.exports,E={name:"Card",components:{Reference:f["a"],DiagonalArrowIcon:m["a"],InlineChevronRightIcon:h["a"],CardCover:S,ButtonLink:p["a"]},constants:{CardSize:g},mixins:[b["a"]],computed:{titleId:({_uid:e})=>"card_title_"+e,contentId:({_uid:e})=>"card_content_"+e,eyebrowId:({_uid:e})=>"card_eyebrow_"+e,linkAriaTags:({titleId:e,eyebrowId:t,contentId:n,eyebrow:i,$slots:a})=>({"aria-labelledby":e.concat(i?" "+t:""),"aria-describedby":a.default?""+n:null}),classes:({size:e,floatingStyle:t})=>[e,{"floating-style":t}],imageReference:({image:e,references:t})=>t[e]||{},imageVariants:({imageReference:e})=>e.variants||[]},props:{linkText:{type:String,required:!1},url:{type:String,required:!1,default:""},eyebrow:{type:String,required:!1},image:{type:String,required:!1},size:{type:String,validator:e=>Object.prototype.hasOwnProperty.call(g,e)},title:{type:String,required:!0},hasButton:{type:Boolean,default:()=>!1},floatingStyle:{type:Boolean,default:!1},showExternalLinks:{type:Boolean,default:!1},formatAriaLabel:{type:Function,default:e=>e}}},O=E,I=(n("0939"),Object(k["a"])(O,u,d,!1,null,"328d568a",null)),j=I.exports,T=n("f12c"),A=n("66cd");const L={[A["a"].article]:"documentation.card.read-article",[A["a"].overview]:"documentation.card.start-tutorial",[A["a"].collection]:"documentation.card.view-api",[A["a"].symbol]:"documentation.card.view-symbol",[A["a"].sampleCode]:"documentation.card.view-sample-code"};var B={name:"TopicsLinkCardGridItem",components:{TopicTypeIcon:T["a"],Card:j,ContentNode:()=>Promise.resolve().then(n.bind(null,"5677"))},mixins:[b["a"]],props:{item:{type:Object,required:!0},compact:{type:Boolean,default:!0}},computed:{imageReferences:({item:e})=>(e.images||[]).reduce((e,t)=>(e[t.type]=t.identifier,e),{icon:null,card:null}),linkText:({item:e})=>L[e.role]||"documentation.card.learn-more",cardSize:({compact:e})=>e?void 0:g.large}},$=B,N=(n("8f26"),Object(k["a"])($,c,l,!1,null,"08a5e3f8",null)),M=N.exports,P={name:"TopicsLinkCardGrid",components:{TopicsLinkCardGridItem:M,Column:s["a"],Row:r["a"]},props:{items:{type:Array,required:!0},topicStyle:{type:String,default:o["a"].compactGrid,validator:e=>e===o["a"].compactGrid||e===o["a"].detailedGrid}},computed:{compactCards:({topicStyle:e})=>e===o["a"].compactGrid}},R=P,V=Object(k["a"])(R,i,a,!1,null,null,null);t["a"]=V.exports},"72e7":function(e,t,n){"use strict";const i={up:"up",down:"down"};t["a"]={constants:{IntersectionDirections:i},data(){return{intersectionObserver:null,intersectionPreviousScrollY:0,intersectionScrollDirection:i.down}},computed:{intersectionThreshold(){const e=[];for(let t=0;t<=1;t+=.01)e.push(t);return e},intersectionRoot(){return null},intersectionRootMargin(){return"0px 0px 0px 0px"},intersectionObserverOptions(){return{root:this.intersectionRoot,rootMargin:this.intersectionRootMargin,threshold:this.intersectionThreshold}}},async mounted(){await n.e("chunk-2d0d3105").then(n.t.bind(null,"5abe",7)),this.intersectionObserver=new IntersectionObserver(e=>{this.detectIntersectionScrollDirection();const t=this.onIntersect;t?e.forEach(t):console.warn("onIntersect not implemented")},this.intersectionObserverOptions),this.getIntersectionTargets().forEach(e=>{this.intersectionObserver.observe(e)})},beforeDestroy(){this.intersectionObserver&&this.intersectionObserver.disconnect()},methods:{getIntersectionTargets(){return[this.$el]},detectIntersectionScrollDirection(){window.scrollYthis.intersectionPreviousScrollY&&(this.intersectionScrollDirection=i.up),this.intersectionPreviousScrollY=window.scrollY}}}},"74ea":function(e,t,n){"use strict";n("636c")},7689:function(e,t,n){"use strict";t["a"]={computed:{isClientMobile(){let e=!1;return e="maxTouchPoints"in navigator||"msMaxTouchPoints"in navigator?Boolean(navigator.maxTouchPoints||navigator.msMaxTouchPoints):window.matchMedia?window.matchMedia("(pointer:coarse)").matches:"orientation"in window,e}}}},"76ab":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.resolvedComponent,e._b({tag:"component",staticClass:"button-cta",class:{"is-dark":e.isDark}},"component",e.componentProps,!1),[e._t("default")],2)},a=[],r=n("86d8"),s={name:"ButtonLink",components:{Reference:r["a"]},props:{url:{type:String,required:!1},isDark:{type:Boolean,default:!1}},computed:{resolvedComponent:({url:e})=>e?r["a"]:"button",componentProps:({url:e})=>e?{url:e}:{}}},o=s,c=(n("0da1"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"c9c81868",null);t["a"]=l.exports},"7b1f":function(e,t,n){"use strict";var i,a,r={functional:!0,name:"WordBreak",render(e,{props:t,slots:n,data:i}){const a=n().default||[],r=a.filter(e=>e.text&&!e.tag);if(0===r.length||r.length!==a.length)return e(t.tag,i,a);const s=r.map(({text:e})=>e).join(),o=[];let c=null,l=0;while(null!==(c=t.safeBoundaryPattern.exec(s))){const t=c.index+1;o.push(s.slice(l,t)),o.push(e("wbr",{key:c.index})),l=t}return o.push(s.slice(l,s.length)),e(t.tag,i,o)},props:{safeBoundaryPattern:{type:RegExp,default:()=>/([a-z](?=[A-Z])|(:)\w|\w(?=[._]\w))/g},tag:{type:String,default:()=>"span"}}},s=r,o=n("2877"),c=Object(o["a"])(s,i,a,!1,null,null,null);t["a"]=c.exports},"7b69":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing",class:{"single-line":1===e.syntaxHighlightedLines.length},attrs:{"data-syntax":e.syntaxNameNormalized}},[e.fileName?n("Filename",{attrs:{isActionable:e.isFileNameActionable,fileType:e.fileType},on:{click:function(t){return e.$emit("file-name-click")}}},[e._v(e._s(e.fileName)+" ")]):e._e(),n("div",{staticClass:"container-general"},[n("pre",[n("CodeBlock",[e._l(e.syntaxHighlightedLines,(function(t,i){return[n("span",{key:i,class:["code-line-container",{highlighted:e.isHighlighted(i)}]},[e.showLineNumbers?n("span",{staticClass:"code-number",attrs:{"data-line-number":e.lineNumberFor(i)}}):e._e(),n("span",{staticClass:"code-line",domProps:{innerHTML:e._s(t)}})]),e._v("\n")]}))],2)],1)])],1)},a=[],r=n("002d"),s=n("8649"),o=n("800b"),c=n("1020"),l=n.n(c);const u={objectivec:["objective-c"]},d={bash:["sh","zsh"],c:["h"],cpp:["cc","c++","h++","hpp","hh","hxx","cxx"],css:[],diff:["patch"],http:["https"],java:["jsp"],javascript:["js","jsx","mjs","cjs"],json:[],llvm:[],markdown:["md","mkdown","mkd"],objectivec:["mm","objc","obj-c"].concat(u.objectivec),perl:["pl","pm"],php:[],python:["py","gyp","ipython"],ruby:["rb","gemspec","podspec","thor","irb"],scss:[],shell:["console","shellsession"],swift:[],xml:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],...Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_HLJS_LANGUAGES?Object.fromEntries(Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_HLJS_LANGUAGES.split(",").map(e=>[e,[]])):void 0},p=new Set(["markdown","swift"]),h=Object.entries(d),m=new Set(Object.keys(d)),f=new Map;async function g(e){const t=[e];try{return await t.reduce(async(e,t)=>{let i;await e,i=p.has(t)?await n("1417")("./"+t):await n("b7b0")("./"+t),l.a.registerLanguage(t,i.default)},Promise.resolve()),!0}catch(i){return console.error(`Could not load ${e} file`),!1}}function b(e){if(m.has(e))return e;const t=h.find(([,t])=>t.includes(e));return t?t[0]:null}function v(e){if(f.has(e))return f.get(e);const t=b(e);return f.set(e,t),t}l.a.configure({classPrefix:"syntax-",languages:[...m]});const y=async e=>{const t=v(e);return!(!t||l.a.listLanguages().includes(t))&&g(t)},w=/\r\n|\r|\n/g,_=/syntax-/;function x(e){return 0===e.length?[]:e.split(w)}function k(e){return(e.trim().match(w)||[]).length}function C(e){const t=document.createElement("template");return t.innerHTML=e,t.content.childNodes}function S(e){const{className:t}=e;if(!_.test(t))return null;const n=x(e.innerHTML).reduce((e,n)=>`${e}${n}\n`,"");return C(n.trim())}function E(e){return Array.from(e.childNodes).forEach(e=>{if(k(e.textContent))try{const t=e.childNodes.length?E(e):S(e);t&&e.replaceWith(...t)}catch(t){console.error(t)}}),S(e)}function O(e,t){const n=b(t);if(!l.a.getLanguage(n))throw new Error("Unsupported language for syntax highlighting: "+t);return l.a.highlight(e,{language:n,ignoreIllegals:!0}).value}function I(e,t){const n=e.join("\n"),i=O(n,t),a=document.createElement("code");return a.innerHTML=i,E(a),x(a.innerHTML)}var j=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"filename"},[e.isActionable?n("a",{attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2):n("span",[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2)])},T=[],A=function(){var e=this,t=e.$createElement,n=e._self._c||t;return"swift"===e.fileType?n("SwiftFileIcon",{staticClass:"file-icon"}):n("GenericFileIcon",{staticClass:"file-icon"})},L=[],B=n("a88f"),$=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"generic-file-icon",attrs:{viewBox:"0 0 14 14",themeId:"generic-file"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},N=[],M=n("be08"),P={name:"GenericFileIcon",components:{SVGIcon:M["a"]}},R=P,V=n("2877"),D=Object(V["a"])(R,$,N,!1,null,null,null),G=D.exports,z={name:"CodeListingFileIcon",components:{SwiftFileIcon:B["a"],GenericFileIcon:G},props:{fileType:String}},q=z,F=(n("e6db"),Object(V["a"])(q,A,L,!1,null,"7c381064",null)),U=F.exports,W={name:"CodeListingFilename",components:{FileIcon:U},props:{isActionable:{type:Boolean,default:()=>!1},fileType:String}},H=W,K=(n("8608"),Object(V["a"])(H,j,T,!1,null,"c8c40662",null)),Z=K.exports,Y={name:"CodeListing",components:{Filename:Z,CodeBlock:o["a"]},data(){return{syntaxHighlightedLines:[]}},props:{fileName:String,isFileNameActionable:{type:Boolean,default:()=>!1},syntax:String,fileType:String,content:{type:Array,required:!0},startLineNumber:{type:Number,default:()=>1},highlights:{type:Array,default:()=>[]},showLineNumbers:{type:Boolean,default:()=>!1}},computed:{escapedContent:({content:e})=>e.map(r["c"]),highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},syntaxNameNormalized(){const e={occ:s["a"].objectiveC.key.url};return e[this.syntax]||this.syntax}},watch:{content:{handler:"syntaxHighlightLines",immediate:!0}},methods:{isHighlighted(e){return this.highlightedLineNumbers.has(this.lineNumberFor(e))},lineNumberFor(e){return this.startLineNumber+e},async syntaxHighlightLines(){let e;try{await y(this.syntaxNameNormalized),e=I(this.content,this.syntaxNameNormalized)}catch(t){e=this.escapedContent}this.syntaxHighlightedLines=e.map(e=>""===e?"\n":e)}}},X=Y,J=(n("7e3a"),Object(V["a"])(X,i,a,!1,null,"59f42f5b",null));t["a"]=J.exports},"7e3a":function(e,t,n){"use strict";n("f030")},"800b":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("code",{attrs:{tabindex:"0","data-before-code":e.$t("accessibility.code.start"),"data-after-code":e.$t("accessibility.code.end")}},[e._t("default")],2)},a=[],r={name:"CodeBlock"},s=r,o=(n("159b"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"08295b2f",null);t["a"]=c.exports},"80c8":function(e,t,n){},"80e4":function(e,t,n){"use strict";var i,a,r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"asset"},[n(e.assetComponent,e._g(e._b({tag:"component"},"component",e.assetProps,!1),e.assetListeners))],1)},s=[],o=n("8bd9"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ConditionalWrapper",{ref:"wrapper",attrs:{tag:e.DeviceFrameComponent,"should-wrap":!!e.deviceFrame,device:e.deviceFrame}},[n("video",{ref:"video",attrs:{controls:e.showsControls,autoplay:e.autoplays,poster:e.normalisedPosterPath,width:e.optimalWidth,playsinline:""},domProps:{muted:e.muted},on:{playing:function(t){return e.$emit("playing")},pause:function(t){return e.$emit("pause")},ended:function(t){return e.$emit("ended")}}},[n("source",{attrs:{src:e.normalizePath(e.videoAttributes.url)}})])])},l=[],u=n("748c"),d=n("e425"),p=n("821b"),h={functional:!0,name:"ConditionalWrapper",props:{tag:[Object,String],shouldWrap:Boolean},render(e,t){return t.props.shouldWrap?e(t.props.tag,t.data,t.children):t.children}},m=h,f=n("2877"),g=Object(f["a"])(m,i,a,!1,null,null,null),b=g.exports,v=n("5416"),y={name:"VideoAsset",components:{ConditionalWrapper:b},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},posterVariants:{type:Array,required:!1,default:()=>[]},muted:{type:Boolean,default:!0},deviceFrame:{type:String,required:!1}},data:()=>({appState:d["a"].state,optimalWidth:null}),computed:{DeviceFrameComponent:()=>v["a"],preferredColorScheme:({appState:e})=>e.preferredColorScheme,systemColorScheme:({appState:e})=>e.systemColorScheme,userPrefersDark:({preferredColorScheme:e,systemColorScheme:t})=>e===p["a"].dark||e===p["a"].auto&&t===p["a"].dark,shouldShowDarkVariant:({darkVideoVariantAttributes:e,userPrefersDark:t})=>e&&t,defaultVideoAttributes(){return this.videoVariantsGroupedByAppearance.light[0]||this.darkVideoVariantAttributes||{}},darkVideoVariantAttributes(){return this.videoVariantsGroupedByAppearance.dark[0]},videoVariantsGroupedByAppearance(){return Object(u["e"])(this.variants)},posterVariantsGroupedByAppearance(){const{light:e,dark:t}=Object(u["e"])(this.posterVariants);return{light:Object(u["a"])(e),dark:Object(u["a"])(t)}},defaultPosterAttributes:({posterVariantsGroupedByAppearance:e,userPrefersDark:t})=>t&&e.dark.length?e.dark[0]:e.light[0]||{},normalisedPosterPath:({defaultPosterAttributes:e})=>Object(u["c"])(e.src),videoAttributes:({darkVideoVariantAttributes:e,defaultVideoAttributes:t,shouldShowDarkVariant:n})=>n?e:t},watch:{normalisedPosterPath:{immediate:!0,handler:"getPosterDimensions"}},methods:{normalizePath:u["c"],async getPosterDimensions(e){if(!e)return void(this.optimalWidth=null);const{density:t}=this.defaultPosterAttributes,n=parseInt(t.match(/\d+/)[0],10),{width:i}=await Object(u["b"])(e);this.optimalWidth=i/n}}},w=y,_=Object(f["a"])(w,c,l,!1,null,null,null),x=_.exports,k=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"video-replay-container"},[n("VideoAsset",{ref:"asset",attrs:{variants:e.variants,autoplays:e.autoplays,showsControls:e.showsControls,muted:e.muted,posterVariants:e.posterVariants,deviceFrame:e.deviceFrame},on:{pause:e.onPause,playing:e.onVideoPlaying,ended:e.onVideoEnd}}),e.showsControls?e._e():n("a",{staticClass:"control-button",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.togglePlayStatus.apply(null,arguments)}}},[e._v(" "+e._s(e.text)+" "),e.videoEnded?n("InlineReplayIcon",{staticClass:"control-icon icon-inline"}):e.isPlaying?n("PauseIcon",{staticClass:"control-icon icon-inline"}):n("PlayIcon",{staticClass:"control-icon icon-inline"})],1)],1)},C=[],S=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-replay-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-replay"}},[n("path",{attrs:{d:"M2.254 10.201c-1.633-2.613-0.838-6.056 1.775-7.689 2.551-1.594 5.892-0.875 7.569 1.592l0.12 0.184-0.848 0.53c-1.34-2.145-4.166-2.797-6.311-1.457s-2.797 4.166-1.457 6.311 4.166 2.797 6.311 1.457c1.006-0.629 1.71-1.603 2.003-2.723l0.056-0.242 0.98 0.201c-0.305 1.487-1.197 2.792-2.51 3.612-2.613 1.633-6.056 0.838-7.689-1.775z"}}),n("path",{attrs:{d:"M10.76 1.355l0.984-0.18 0.851 4.651-4.56-1.196 0.254-0.967 3.040 0.796z"}})])},E=[],O=n("be08"),I={name:"InlineReplayIcon",components:{SVGIcon:O["a"]}},j=I,T=Object(f["a"])(j,S,E,!1,null,null,null),A=T.exports,L=n("c4dd"),B=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"pause-icon",attrs:{viewBox:"0 0 14 14",themeId:"pause"}},[n("path",{attrs:{d:"M5 4h1v6h-1z"}}),n("path",{attrs:{d:"M8 4h1v6h-1z"}}),n("path",{attrs:{d:"M7 0.5c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5zM7 12.5c-3 0-5.5-2.5-5.5-5.5s2.5-5.5 5.5-5.5 5.5 2.5 5.5 5.5-2.5 5.5-5.5 5.5z"}})])},$=[],N={name:"PauseIcon",components:{SVGIcon:O["a"]}},M=N,P=Object(f["a"])(M,B,$,!1,null,null,null),R=P.exports,V={name:"ReplayableVideoAsset",components:{PauseIcon:R,PlayIcon:L["a"],InlineReplayIcon:A,VideoAsset:x},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},muted:{type:Boolean,default:!0},posterVariants:{type:Array,default:()=>[]},deviceFrame:{type:String,required:!1}},computed:{text(){return this.videoEnded?this.$t("video.replay"):this.isPlaying?this.$t("video.pause"):this.$t("video.play")}},data(){return{isPlaying:!1,videoEnded:!1}},methods:{async togglePlayStatus(){const e=this.$refs.asset.$refs.video;e&&(this.isPlaying&&!this.videoEnded?await e.pause():await e.play())},onVideoEnd(){this.isPlaying=!1,this.videoEnded=!0},onVideoPlaying(){const{video:e}=this.$refs.asset.$refs;this.isPlaying=!e.paused,this.videoEnded=e.ended},onPause(){const{video:e}=this.$refs.asset.$refs;!this.showsControls&&this.isPlaying&&(this.isPlaying=!1),this.videoEnded=e.ended}}},D=V,G=(n("74ea"),Object(f["a"])(D,k,C,!1,null,"7653dfd0",null)),z=G.exports,q=n("2f34");const F={video:"video",image:"image"};var U={name:"Asset",components:{ImageAsset:o["a"],VideoAsset:x},constants:{AssetTypes:F},mixins:[q["a"]],props:{identifier:{type:String,required:!0},showsReplayButton:{type:Boolean,default:()=>!1},showsVideoControls:{type:Boolean,default:()=>!0},videoAutoplays:{type:Boolean,default:()=>!0},videoMuted:{type:Boolean,default:!0},deviceFrame:{type:String,required:!1}},computed:{rawAsset(){return this.references[this.identifier]||{}},isRawAssetVideo:({rawAsset:e})=>e.type===F.video,videoPoster(){return this.isRawAssetVideo&&this.references[this.rawAsset.poster]},asset(){return this.isRawAssetVideo&&this.prefersReducedMotion&&this.videoPoster||this.rawAsset},assetComponent(){switch(this.asset.type){case F.image:return o["a"];case F.video:return this.showsReplayButton?z:x;default:return}},prefersReducedMotion(){return window.matchMedia("(prefers-reduced-motion)").matches},assetProps(){return{[F.image]:this.imageProps,[F.video]:this.videoProps}[this.asset.type]},imageProps(){return{alt:this.asset.alt,variants:this.asset.variants}},videoProps(){return{variants:this.asset.variants,showsControls:this.showsVideoControls,muted:this.videoMuted,autoplays:!this.prefersReducedMotion&&this.videoAutoplays,posterVariants:this.videoPoster?this.videoPoster.variants:[],deviceFrame:this.deviceFrame}},assetListeners(){return{[F.image]:null,[F.video]:{ended:()=>this.$emit("videoEnded")}}[this.asset.type]}}},W=U,H=(n("5201"),Object(f["a"])(W,r,s,!1,null,"dcbc7b38",null));t["a"]=H.exports},"81c0":function(e,t,n){},8222:function(e,t,n){},"850e":function(e,t,n){"use strict";n("88d2")},8608:function(e,t,n){"use strict";n("a7f3")},"863d":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"nav-menu-item",class:{"nav-menu-item--animated":e.animate}},[e._t("default")],2)},a=[],r={name:"NavMenuItemBase",props:{animate:{type:Boolean,default:!0}}},s=r,o=(n("43fe"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"66cbfe4c",null);t["a"]=c.exports},8649:function(e,t,n){"use strict";t["a"]={objectiveC:{name:"Objective-C",key:{api:"occ",url:"objc"}},swift:{name:"Swift",key:{api:"swift",url:"swift"}}}},"86d8":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.refComponent,{tag:"component",attrs:{url:e.urlWithParams,"is-active":e.isActiveComputed}},[e._t("default")],2)},a=[],r=n("d26a"),s=n("66cd"),o=n("9895"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("a",{attrs:{href:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},l=[],u={name:"ReferenceExternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},d=u,p=n("2877"),h=Object(p["a"])(d,c,l,!1,null,null,null),m=h.exports,f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ReferenceInternal",e._b({},"ReferenceInternal",e.$props,!1),[n("CodeVoice",[e._t("default")],2)],1)},g=[],b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("router-link",{attrs:{to:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},v=[],y={name:"ReferenceInternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},w=y,_=Object(p["a"])(w,b,v,!1,null,null,null),x=_.exports,k=n("52e4"),C={name:"ReferenceInternalSymbol",props:x.props,components:{ReferenceInternal:x,CodeVoice:k["a"]}},S=C,E=Object(p["a"])(S,f,g,!1,null,null,null),O=E.exports,I={name:"Reference",computed:{isInternal({url:e}){if(!e.startsWith("/")&&!e.startsWith("#"))return!1;const{resolved:{name:t}={}}=this.$router.resolve(e)||{};return t!==o["b"]},isSymbolReference(){return"symbol"===this.kind&&!this.hasInlineFormatting&&(this.role===s["a"].symbol||this.role===s["a"].dictionarySymbol)},isDisplaySymbol({isSymbolReference:e,titleStyle:t,ideTitle:n}){return n?e&&"symbol"===t:e},refComponent(){return this.isInternal?this.isDisplaySymbol?O:x:m},urlWithParams({isInternal:e}){return e?Object(r["b"])(this.url,this.$route.query):this.url},isActiveComputed({url:e,isActive:t}){return!(!e||!t)}},props:{url:{type:String,required:!0},kind:{type:String,required:!1},role:{type:String,required:!1},isActive:{type:Boolean,required:!1,default:!0},ideTitle:{type:String,required:!1},titleStyle:{type:String,required:!1},hasInlineFormatting:{type:Boolean,default:!1}}},j=I,T=Object(p["a"])(j,i,a,!1,null,null,null);t["a"]=T.exports},"88d2":function(e,t,n){},"8a61":function(e,t,n){"use strict";var i=n("3908");t["a"]={methods:{async scrollToElement(e){await Object(i["b"])(8);const t=this.$router.resolve({hash:e}),{selector:n,offset:a}=await this.$router.options.scrollBehavior(t.route),r=document.querySelector(n);return r?(r.scrollIntoView(),window.scrollY+window.innerHeight`${Object(r["c"])(e.src)} ${e.density}`).join(", "),n=e[0],i={srcSet:t,src:Object(r["c"])(n.src)},{width:a}=n.size||{width:null};return a&&(i.width=a,i.height="auto"),i}var h={name:"ImageAsset",mixins:[s],inject:{imageLoadingStrategy:{default:null}},data:()=>({appState:o["a"].state,fallbackImageSrcSet:null,optimalWidth:null}),computed:{allVariants:({lightVariants:e=[],darkVariants:t=[]})=>e.concat(t),defaultAttributes:({lightVariantAttributes:e,darkVariantAttributes:t})=>e||t,darkVariantAttributes:({darkVariants:e})=>p(e),lightVariantAttributes:({lightVariants:e})=>p(e),loading:({appState:e,imageLoadingStrategy:t})=>t||e.imageLoadingStrategy,preferredColorScheme:({appState:e})=>e.preferredColorScheme,prefersAuto:({preferredColorScheme:e})=>e===c["a"].auto,prefersDark:({preferredColorScheme:e})=>e===c["a"].dark},props:{alt:{type:String,default:""},variants:{type:Array,required:!0},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},methods:{handleImageLoadError(){this.fallbackImageSrcSet=u.a+" 2x"},async calculateOptimalWidth(){const{$refs:{img:{currentSrc:e}},allVariants:t}=this,{density:n}=t.find(({src:t})=>e.endsWith(t)),i=parseInt(n.match(/\d+/)[0],d),a=await Object(r["b"])(e),s=a.width/i;return s},async optimizeImageSize(){if(!this.defaultAttributes.width&&this.$refs.img)try{this.optimalWidth=await this.calculateOptimalWidth()}catch{console.error("Unable to calculate optimal image width")}}},mounted(){this.shouldCalculateOptimalWidth&&this.$refs.img.addEventListener("load",this.optimizeImageSize)}},m=h,f=n("2877"),g=Object(f["a"])(m,i,a,!1,null,null,null);t["a"]=g.exports},"8c92":function(e,t,n){"use strict";n("80c8")},"8d2d":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"tutorial-icon",attrs:{viewBox:"0 0 14 14",themeId:"tutorial"}},[n("path",{attrs:{d:"M0.933 6.067h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M0.933 1.867h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M13.067 1.867v10.267h-7.467v-10.267zM12.133 2.8h-5.6v8.4h5.6z"}}),n("path",{attrs:{d:"M0.933 10.267h3.733v1.867h-3.733v-1.867z"}})])},a=[],r=n("be08"),s={name:"TutorialIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"8d90":function(e,t,n){},"8f26":function(e,t,n){"use strict";n("0444")},9034:function(e,t,n){},"95da":function(e,t,n){"use strict";var i=n("0cb0");const a="data-original-",r="aria-hidden",s="tabindex";function o(e,t){const n=a+t;if(e.getAttribute(n))return;const i=e.getAttribute(t)||"";e.setAttribute(n,i)}function c(e,t){const n=a+t;if(!e.hasAttribute(n))return;const i=e.getAttribute(n);e.removeAttribute(n),i.length?e.setAttribute(t,i):e.removeAttribute(t)}function l(e,t){const n=document.body;let i=e,a=e;while(i=i.previousElementSibling)t(i);while(a=a.nextElementSibling)t(a);e.parentElement&&e.parentElement!==n&&l(e.parentElement,t)}const u=e=>{o(e,r),o(e,s),e.setAttribute(r,"true"),e.setAttribute(s,"-1");const t=i["a"].getTabbableElements(e);let n=t.length-1;while(n>=0)o(t[n],s),t[n].setAttribute(s,"-1"),n-=1},d=e=>{c(e,r),c(e,s);const t=e.querySelectorAll(`[${a+s}]`);let n=t.length-1;while(n>=0)c(t[n],s),n-=1};t["a"]={hide(e){l(e,u)},show(e){l(e,d)}}},9649:function(e,t,n){},"9a61":function(e,t,n){"use strict";n("19cc")},"9b30":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"nav-menu-items",attrs:{"data-previous-menu-children-count":e.previousSiblingChildren}},[e._t("default")],2)},a=[],r={name:"NavMenuItems",props:{previousSiblingChildren:{type:Number,default:0}}},s=r,o=(n("517a"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"67c1c0a5",null);t["a"]=c.exports},"9ed5":function(e,t,n){"use strict";n("a5f5")},a295:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",themeId:"path"}},[n("path",{attrs:{d:"M0 0.948h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M11.2 10.252h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M6.533 1.852h0.933v10.267h-0.933z"}}),n("path",{attrs:{d:"M2.8 1.852h4.667v0.933h-4.667z"}}),n("path",{attrs:{d:"M6.533 11.186h4.667v0.933h-4.667z"}})])},a=[],r=n("be08"),s={name:"PathIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},a4f0:function(e,t,n){},a5f5:function(e,t,n){},a7a5:function(e,t,n){},a7d8:function(e,t,n){},a7f3:function(e,t,n){},a88f:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"swift-file-icon",attrs:{viewBox:"0 0 15 14",themeId:"swift-file"}},[n("path",{attrs:{d:"M14.93,13.56A2.15,2.15,0,0,0,15,13a5.37,5.37,0,0,0-1.27-3.24A6.08,6.08,0,0,0,14,7.91,9.32,9.32,0,0,0,9.21.31a8.51,8.51,0,0,1,1.78,5,6.4,6.4,0,0,1-.41,2.18A45.06,45.06,0,0,1,3.25,1.54,44.57,44.57,0,0,0,7.54,6.9,45.32,45.32,0,0,1,1.47,2.32,35.69,35.69,0,0,0,8.56,9.94a6.06,6.06,0,0,1-3.26.85A9.48,9.48,0,0,1,0,8.91a10,10,0,0,0,8.1,4.72c2.55,0,3.25-1.2,4.72-1.2a2.09,2.09,0,0,1,1.91,1.15C14.79,13.69,14.88,13.75,14.93,13.56Z"}})])},a=[],r=n("be08"),s={name:"SwiftFileIcon",components:{SVGIcon:r["a"]}},o=s,c=(n("c3e5"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"c01a6890",null);t["a"]=l.exports},a97e:function(e,t,n){"use strict";var i=n("63b8");const a=e=>e?`(max-width: ${e}px)`:"",r=e=>e?`(min-width: ${e}px)`:"";function s({minWidth:e,maxWidth:t}){return["only screen",r(e),a(t)].filter(Boolean).join(" and ")}function o({maxWidth:e,minWidth:t}){return window.matchMedia(s({minWidth:t,maxWidth:e}))}var c,l,u={name:"BreakpointEmitter",constants:{BreakpointAttributes:i["a"],BreakpointName:i["b"],BreakpointScopes:i["c"]},props:{scope:{type:String,default:()=>i["c"].default,validator:e=>e in i["c"]}},render(){return this.$scopedSlots.default?this.$scopedSlots.default({matchingBreakpoint:this.matchingBreakpoint}):null},data:()=>({matchingBreakpoint:null}),methods:{initMediaQuery(e,t){const n=o(t),i=t=>this.handleMediaQueryChange(t,e);n.addListener(i),this.$once("hook:beforeDestroy",()=>{n.removeListener(i)}),i(n)},handleMediaQueryChange(e,t){e.matches&&(this.matchingBreakpoint=t,this.$emit("change",t))}},mounted(){const e=i["a"][this.scope]||{};Object.entries(e).forEach(([e,t])=>{this.initMediaQuery(e,t)})}},d=u,p=n("2877"),h=Object(p["a"])(d,c,l,!1,null,null,null);t["a"]=h.exports},a9f1:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"article-icon",attrs:{viewBox:"0 0 14 14",themeId:"article"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},a=[],r=n("be08"),s={name:"ArticleIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},aea0:function(e,t,n){},b0e7:function(e,t,n){"use strict";n("8d90")},b0f5:function(e,t,n){"use strict";n("49e3")},b2da:function(e,t,n){"use strict";n("e529")},b392:function(e,t,n){},b7b0:function(e,t,n){var i={"./bash":["f0f8","highlight-js-bash"],"./c":["1fe5","highlight-js-c"],"./cpp":["0209","highlight-js-cpp"],"./css":["ee8c","highlight-js-css"],"./diff":["48b8","highlight-js-diff"],"./http":["c01d","highlight-js-http"],"./java":["332f","highlight-js-java"],"./javascript":["4dd1","highlight-js-javascript"],"./json":["5ad2","highlight-js-json"],"./llvm":["7c30","highlight-js-llvm"],"./markdown":["04b0","highlight-js-markdown"],"./objectivec":["9bf2","highlight-js-objectivec"],"./perl":["6a51","highlight-js-perl"],"./php":["2907","highlight-js-php"],"./python":["9510","highlight-js-python"],"./ruby":["82cb","highlight-js-ruby"],"./scss":["6113","highlight-js-scss"],"./shell":["b65b","highlight-js-shell"],"./swift":["2a39","highlight-js-swift"],"./xml":["8dcb","highlight-js-xml"]};function a(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],a=t[0];return n.e(t[1]).then((function(){return n.t(a,7)}))}a.keys=function(){return Object.keys(i)},a.id="b7b0",e.exports=a},b8f2:function(e,t,n){"use strict";n("a7a5")},bbe1:function(e,t,n){},bbf6:function(e,t,n){"use strict";n("63e6")},bf08:function(e,t,n){"use strict";var i=n("2788"),a=n("002d"),r=n("d26a"),s=n("5677");t["a"]={methods:{extractFirstParagraphText(e=[]){const t=s["default"].computed.plaintext.bind({...s["default"].methods,content:e})();return Object(a["e"])(t)}},computed:{pagePath:({$route:{path:e="/"}={}})=>e,pageURL:({pagePath:e="/"})=>Object(r["e"])(e),disableMetadata:()=>!1},mounted(){this.disableMetadata||Object(i["a"])({title:this.pageTitle,description:this.pageDescription,url:this.pageURL,currentLocale:this.$i18n.locale})}}},c081:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.action?n("DestinationDataProvider",{attrs:{destination:e.action},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.url,a=t.title;return n("ButtonLink",{attrs:{url:i,isDark:e.isDark}},[e._v(" "+e._s(a)+" ")])}}],null,!1,1264376715)}):e._e()},a=[],r=n("76ab"),s=n("c7ea"),o={name:"CallToActionButton",components:{DestinationDataProvider:s["a"],ButtonLink:r["a"]},props:{action:{type:Object,required:!0},isDark:{type:Boolean,default:!1}}},c=o,l=n("2877"),u=Object(l["a"])(c,i,a,!1,null,null,null);t["a"]=u.exports},c3da:function(e,t,n){"use strict";n("fda2")},c3e5:function(e,t,n){"use strict";n("aea0")},c4dd:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"play-icon",attrs:{viewBox:"0 0 14 14",themeId:"play"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M10.195 7.010l-5 3v-6l5 3z"}})])},a=[],r=n("be08"),s={name:"PlayIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},c7ea:function(e,t,n){"use strict";var i=n("2f34");const a={link:"link",reference:"reference",text:"text"};var r,s,o={name:"DestinationDataProvider",mixins:[i["a"]],props:{destination:{type:Object,required:!0,default:()=>({})}},inject:{isTargetIDE:{default:()=>!1}},constants:{DestinationType:a},computed:{isExternal:({reference:e,destination:t})=>e.type===a.link||t.type===a.link,shouldAppendOpensInBrowser:({isExternal:e,isTargetIDE:t})=>e&&t,reference:({references:e,destination:t})=>e[t.identifier]||{},linkUrl:({destination:e,reference:t})=>({[a.link]:e.destination,[a.reference]:t.url,[a.text]:e.text}[e.type]),linkTitle:({reference:e,destination:t})=>({[a.link]:t.title,[a.reference]:t.overridingTitle||e.title,[a.text]:""}[t.type])},methods:{formatAriaLabel(e){return this.shouldAppendOpensInBrowser?e+" (opens in browser)":e}},render(){return this.$scopedSlots.default({url:this.linkUrl||"",title:this.linkTitle||"",formatAriaLabel:this.formatAriaLabel,isExternal:this.isExternal})}},c=o,l=n("2877"),u=Object(l["a"])(c,r,s,!1,null,null,null);t["a"]=u.exports},cb92:function(e,t,n){"use strict";n("598a")},cbcf:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{ref:"nav",staticClass:"nav",class:e.rootClasses,attrs:{role:"navigation"}},[n("div",{ref:"wrapper",staticClass:"nav__wrapper"},[n("div",{staticClass:"nav__background"}),e.hasOverlay?n("div",{staticClass:"nav-overlay",on:{click:e.closeNav}}):e._e(),n("div",{staticClass:"nav-content"},[e._t("pre-title",null,{className:"pre-title"},{closeNav:e.closeNav,inBreakpoint:e.inBreakpoint,currentBreakpoint:e.currentBreakpoint,isOpen:e.isOpen}),e.$slots.default?n("div",{staticClass:"nav-title"},[e._t("default")],2):e._e(),e._t("after-title"),n("div",{staticClass:"nav-menu"},[n("a",{ref:"axToggle",staticClass:"nav-ax-toggle",attrs:{href:"#",role:"button"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"visuallyhidden"},[e.isOpen?[e._v(" "+e._s(e.$t("documentation.nav.close-menu"))+" ")]:[e._v(" "+e._s(e.$t("documentation.nav.open-menu"))+" ")]],2)]),n("div",{ref:"tray",staticClass:"nav-menu-tray",on:{transitionend:function(t){return t.target!==t.currentTarget?null:e.onTransitionEnd.apply(null,arguments)},click:e.handleTrayClick}},[e._t("tray",(function(){return[n("NavMenuItems",[e._t("menu-items")],2)]}),{closeNav:e.closeNav})],2)]),n("div",{staticClass:"nav-actions"},[n("a",{ref:"toggle",staticClass:"nav-menucta",attrs:{href:"#",tabindex:"-1","aria-hidden":"true"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"nav-menucta-chevron"})])])],2),e._t("after-content")],2),n("BreakpointEmitter",{attrs:{scope:e.BreakpointScopes.nav},on:{change:e.onBreakpointChange}})],1)},a=[],r=n("72e7"),s=n("9b30"),o=n("a97e"),c=n("f2af"),l=n("942d"),u=n("63b8"),d=n("95da"),p=n("3908");const{noClose:h}=l["a"],{BreakpointName:m,BreakpointScopes:f}=o["a"].constants,g=8,b={isDark:"theme-dark",isOpen:"nav--is-open",inBreakpoint:"nav--in-breakpoint-range",isTransitioning:"nav--is-transitioning",isSticking:"nav--is-sticking",hasSolidBackground:"nav--solid-background",hasNoBorder:"nav--noborder",hasFullWidthBorder:"nav--fullwidth-border",isWideFormat:"nav--is-wide-format",noBackgroundTransition:"nav--no-bg-transition"};var v={name:"NavBase",components:{NavMenuItems:s["a"],BreakpointEmitter:o["a"]},constants:{NavStateClasses:b,NoBGTransitionFrames:g},props:{breakpoint:{type:String,default:m.small},hasOverlay:{type:Boolean,default:!0},hasSolidBackground:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},hasFullWidthBorder:{type:Boolean,default:!1},isDark:{type:Boolean,default:!1},isWideFormat:{type:Boolean,default:!1}},mixins:[r["a"]],data(){return{isOpen:!1,isTransitioning:!1,isSticking:!1,noBackgroundTransition:!0,currentBreakpoint:m.large}},computed:{BreakpointScopes:()=>f,inBreakpoint:({currentBreakpoint:e,breakpoint:t})=>!Object(u["d"])(e,t),rootClasses:({isOpen:e,inBreakpoint:t,isTransitioning:n,isSticking:i,hasSolidBackground:a,hasNoBorder:r,hasFullWidthBorder:s,isDark:o,isWideFormat:c,noBackgroundTransition:l})=>({[b.isDark]:o,[b.isOpen]:e,[b.inBreakpoint]:t,[b.isTransitioning]:n,[b.isSticking]:i,[b.hasSolidBackground]:a,[b.hasNoBorder]:r,[b.hasFullWidthBorder]:s,[b.isWideFormat]:c,[b.noBackgroundTransition]:l})},watch:{isOpen(e){this.$emit("change",e),e?this.onExpand():this.onClose()}},async mounted(){window.addEventListener("keydown",this.onEscape),window.addEventListener("popstate",this.closeNav),window.addEventListener("orientationchange",this.closeNav),document.addEventListener("click",this.handleClickOutside),this.handleFlashOnMount(),await this.$nextTick()},beforeDestroy(){window.removeEventListener("keydown",this.onEscape),window.removeEventListener("popstate",this.closeNav),window.removeEventListener("orientationchange",this.closeNav),document.removeEventListener("click",this.handleClickOutside),this.isOpen&&this.toggleScrollLock(!1)},methods:{getIntersectionTargets(){return[document.getElementById(l["e"])||this.$el]},toggleNav(){this.isOpen=!this.isOpen,this.isTransitioning=!0},closeNav(){const e=this.isOpen;return this.isOpen=!1,this.resolveOnceTransitionsEnd(e)},resolveOnceTransitionsEnd(e){return e&&this.inBreakpoint?(this.isTransitioning=!0,new Promise(e=>{const t=this.$watch("isTransitioning",()=>{e(),t()})})):Promise.resolve()},async onTransitionEnd({propertyName:e}){"max-height"===e&&(this.$emit("changed",this.isOpen),this.isTransitioning=!1,this.isOpen?(this.$emit("opened"),this.toggleScrollLock(!0)):this.$emit("closed"))},onBreakpointChange(e){this.currentBreakpoint=e,this.inBreakpoint||this.closeNav()},onIntersect({intersectionRatio:e}){window.scrollY<0||(this.isSticking=1!==e)},onEscape({key:e}){"Escape"===e&&this.isOpen&&(this.closeNav(),this.$refs.axToggle.focus())},handleTrayClick({target:e}){e.href&&!e.classList.contains(h)&&this.closeNav()},handleClickOutside({target:e}){this.$refs.nav.contains(e)||this.closeNav()},toggleScrollLock(e){e?c["b"].lockScroll(this.$refs.tray):c["b"].unlockScroll(this.$refs.tray)},onExpand(){this.$emit("open"),d["a"].hide(this.$refs.wrapper),document.activeElement===this.$refs.toggle&&document.activeElement.blur()},onClose(){this.$emit("close"),this.toggleScrollLock(!1),d["a"].show(this.$refs.wrapper)},async handleFlashOnMount(){await Object(p["b"])(g),this.noBackgroundTransition=!1}}},y=v,w=(n("1f39"),n("2877")),_=Object(w["a"])(y,i,a,!1,null,"5c0521d3",null);t["a"]=_.exports},d0da:function(e,t,n){"use strict";n("64b5")},e3ab:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("aside",{class:e.kind,attrs:{"aria-label":e.kind}},[n("p",{staticClass:"label"},[e._v(e._s(e.name||e.$t(e.label)))]),e._t("default")],2)},a=[];const r={deprecated:"deprecated",experiment:"experiment",important:"important",note:"note",tip:"tip",warning:"warning"};var s={name:"Aside",props:{kind:{type:String,required:!0,validator:e=>Object.prototype.hasOwnProperty.call(r,e)},name:{type:String,required:!1}},computed:{label:({kind:e})=>"aside-kind."+e}},o=s,c=(n("b8f2"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"3ccce809",null);t["a"]=l.exports},e529:function(e,t,n){},e6db:function(e,t,n){"use strict";n("47cc")},ec71:function(e,t,n){"use strict";n("a4f0")},ee9e:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"row",class:{"with-columns":e.columns},style:e.style},[e._t("default")],2)},a=[],r=n("63b8"),s={name:"Row",props:{columns:{type:Object,required:!1,validator:e=>Object.entries(e).every(([e,t])=>r["b"][e]&&"number"===typeof t)},gap:{type:Number,required:!1}},computed:{style:({columns:e={},gap:t})=>({"--col-count-large":e.large,"--col-count-medium":e.medium,"--col-count-small":e.small||1,"--col-gap":t&&t+"px"})}},o=s,c=(n("17a4"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"1bcb2d0f",null);t["a"]=l.exports},efc1:function(e,t,n){"use strict";n("3b75")},f030:function(e,t,n){},f12c:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TopicTypeIcon",style:e.styles},[e.imageOverride?n("OverridableAsset",{staticClass:"icon-inline",attrs:{imageOverride:e.imageOverride,shouldCalculateOptimalWidth:e.shouldCalculateOptimalWidth}}):n(e.icon,e._b({tag:"component",staticClass:"icon-inline"},"component",e.iconProps,!1))],1)},a=[],r=n("a295"),s=n("3024"),o=n("a9f1"),c=n("8d2d"),l=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-func"}},[n("path",{attrs:{d:"M13 1v12h-12v-12zM12.077 1.923h-10.154v10.154h10.154z"}}),n("path",{attrs:{d:"M5.191 9.529c0.044 0.002 0.089 0.004 0.133 0.004 0.108 0 0.196-0.025 0.262-0.074s0.122-0.113 0.166-0.188c0.044-0.077 0.078-0.159 0.103-0.247s0.049-0.173 0.074-0.251l0.598-2.186h-0.709l0.207-0.702h0.702l0.288-1.086c0.083-0.384 0.256-0.667 0.517-0.849s0.591-0.273 0.99-0.273c0.108 0 0.212 0.007 0.314 0.022s0.203 0.027 0.306 0.037l-0.207 0.761c-0.054-0.006-0.106-0.011-0.155-0.018s-0.102-0.011-0.155-0.011c-0.108 0-0.196 0.016-0.262 0.048s-0.122 0.075-0.166 0.129-0.080 0.115-0.107 0.185c-0.028 0.068-0.055 0.14-0.085 0.214l-0.222 0.842h0.768l-0.192 0.702h-0.783l-0.628 2.319c-0.059 0.222-0.129 0.419-0.21 0.594s-0.182 0.322-0.303 0.443-0.269 0.214-0.443 0.281-0.385 0.1-0.631 0.1c-0.084 0-0.168-0.004-0.251-0.011s-0.168-0.014-0.251-0.018l0.207-0.768c0.040 0 0.081 0.001 0.126 0.004z"}})])},u=[],d=n("be08"),p={name:"TopicFuncIcon",components:{SVGIcon:d["a"]}},h=p,m=n("2877"),f=Object(m["a"])(h,l,u,!1,null,null,null),g=f.exports,b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"collection-icon",attrs:{viewBox:"0 0 14 14",themeId:"collection"}},[n("path",{attrs:{d:"m1 1v12h12v-12zm11 11h-10v-10h10z"}}),n("path",{attrs:{d:"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 4h8v1h-8z"}}),n("path",{attrs:{d:"m3 6.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 9h8v1h-8z"}})])},v=[],y={name:"CollectionIcon",components:{SVGIcon:d["a"]}},w=y,_=Object(m["a"])(w,b,v,!1,null,null,null),x=_.exports,k=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-func-op"}},[n("path",{attrs:{d:"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z"}}),n("path",{attrs:{d:"M5.098 4.968v-1.477h-0.738v1.477h-1.477v0.738h1.477v1.477h0.738v-1.477h1.477v-0.738z"}}),n("path",{attrs:{d:"M8.030 4.807l-2.031 5.538h0.831l2.031-5.538z"}}),n("path",{attrs:{d:"M8.894 8.805v0.923h2.215v-0.923z"}})])},C=[],S={name:"TopicFuncOpIcon",components:{SVGIcon:d["a"]}},E=S,O=Object(m["a"])(E,k,C,!1,null,null,null),I=O.exports,j=n("3b96"),T=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-subscript"}},[n("path",{attrs:{d:"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z"}}),n("path",{attrs:{d:"M4.133 3.633v6.738h1.938v-0.831h-0.923v-5.077h0.923v-0.831z"}}),n("path",{attrs:{d:"M9.856 10.371v-6.738h-1.938v0.831h0.923v5.077h-0.923v0.831z"}})])},A=[],L={name:"TopicSubscriptIcon",components:{SVGIcon:d["a"]}},B=L,$=Object(m["a"])(B,T,A,!1,null,null,null),N=$.exports,M=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"two-letter-icon",attrs:{width:"16px",height:"16px",viewBox:"0 0 16 16",themeId:"two-letter"}},[n("g",{attrs:{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[n("g",{attrs:{transform:"translate(1.000000, 1.000000)"}},[n("rect",{attrs:{stroke:"currentColor",x:"0.5",y:"0.5",width:"13",height:"13"}}),n("text",{attrs:{"font-size":"8","font-weight":"bold",fill:"currentColor"}},[n("tspan",{attrs:{x:"8.2",y:"11"}},[e._v(e._s(e.second))])]),n("text",{attrs:{"font-size":"11","font-weight":"bold",fill:"currentColor"}},[n("tspan",{attrs:{x:"1.7",y:"11"}},[e._v(e._s(e.first))])])])])])},P=[],R={name:"TwoLetterSymbolIcon",components:{SVGIcon:d["a"]},props:{first:{type:String,required:!0},second:{type:String,required:!0}}},V=R,D=Object(m["a"])(V,M,P,!1,null,null,null),G=D.exports,z=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"single-letter-icon",attrs:{width:"16px",height:"16px",viewBox:"0 0 16 16",themeId:"single-letter"}},[n("g",{attrs:{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[n("rect",{attrs:{stroke:"currentColor",x:"1",y:"1",width:"14",height:"14"}}),n("text",{attrs:{"font-size":"11","font-weight":"bold",fill:"currentColor",x:"49%",y:"12","text-anchor":"middle"}},[n("tspan",[e._v(e._s(e.symbol))])])])])},q=[],F={name:"SingleLetterSymbolIcon",components:{SVGIcon:d["a"]},props:{symbol:{type:String,required:!0}}},U=F,W=Object(m["a"])(U,z,q,!1,null,null,null),H=W.exports,K=n("31d4"),Z=n("2cae"),Y=n("fdd9");const X={[K["b"].article]:o["a"],[K["b"].associatedtype]:x,[K["b"].buildSetting]:x,[K["b"].class]:H,[K["b"].collection]:x,[K["b"].dictionarySymbol]:H,[K["b"].container]:x,[K["b"].enum]:H,[K["b"].extension]:G,[K["b"].func]:g,[K["b"].op]:I,[K["b"].httpRequest]:H,[K["b"].languageGroup]:x,[K["b"].learn]:r["a"],[K["b"].method]:H,[K["b"].macro]:H,[K["b"].module]:s["a"],[K["b"].overview]:r["a"],[K["b"].protocol]:G,[K["b"].property]:H,[K["b"].propertyListKey]:H,[K["b"].resources]:r["a"],[K["b"].sampleCode]:j["a"],[K["b"].struct]:H,[K["b"].subscript]:N,[K["b"].symbol]:x,[K["b"].tutorial]:c["a"],[K["b"].typealias]:H,[K["b"].union]:H,[K["b"].var]:H},J={[K["b"].class]:{symbol:"C"},[K["b"].dictionarySymbol]:{symbol:"O"},[K["b"].enum]:{symbol:"E"},[K["b"].extension]:{first:"E",second:"x"},[K["b"].httpRequest]:{symbol:"E"},[K["b"].method]:{symbol:"M"},[K["b"].macro]:{symbol:"#"},[K["b"].protocol]:{first:"P",second:"r"},[K["b"].property]:{symbol:"P"},[K["b"].propertyListKey]:{symbol:"K"},[K["b"].struct]:{symbol:"S"},[K["b"].typealias]:{symbol:"T"},[K["b"].union]:{symbol:"U"},[K["b"].var]:{symbol:"V"}};var Q={name:"TopicTypeIcon",components:{OverridableAsset:Y["a"],SVGIcon:d["a"],SingleLetterSymbolIcon:H},constants:{TopicTypeIcons:X,TopicTypeProps:J},props:{type:{type:String,required:!0},withColors:{type:Boolean,default:!1},imageOverride:{type:Object,default:null},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},computed:{normalisedType:({type:e})=>K["a"][e]||e,icon:({normalisedType:e})=>X[e]||x,iconProps:({normalisedType:e})=>J[e]||{},color:({normalisedType:e})=>Z["b"][e],styles:({color:e,withColors:t})=>t&&e?{"--icon-color":`var(--color-type-icon-${e})`}:{}}},ee=Q,te=(n("9a61"),Object(m["a"])(ee,i,a,!1,null,"18b61706",null));t["a"]=te.exports},f2af:function(e,t,n){"use strict";n.d(t,"a",(function(){return s}));let i=!1,a=-1,r=0;const s="data-scroll-lock-disable",o=()=>window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||"MacIntel"===window.navigator.platform&&window.navigator.maxTouchPoints>1);function c(e){e.touches.length>1||e.preventDefault()}const l=e=>!!e&&e.scrollHeight-e.scrollTop<=e.clientHeight;function u(){r=document.body.getBoundingClientRect().top,document.body.style.overflow="hidden scroll",document.body.style.top=r+"px",document.body.style.position="fixed",document.body.style.width="100%"}function d(e){e&&(e.ontouchstart=null,e.ontouchmove=null),document.removeEventListener("touchmove",c)}function p(e,t){const n=e.targetTouches[0].clientY-a,i=e.target.closest(`[${s}]`)||t;return 0===i.scrollTop&&n>0||l(i)&&n<0?c(e):(e.stopPropagation(),!0)}function h(e){document.addEventListener("touchmove",c,{passive:!1}),e&&(e.ontouchstart=e=>{1===e.targetTouches.length&&(a=e.targetTouches[0].clientY)},e.ontouchmove=t=>{1===t.targetTouches.length&&p(t,e)})}t["b"]={lockScroll(e){i||(o()?h(e):u(),i=!0)},unlockScroll(e){i&&(o()?d(e):(document.body.style.removeProperty("overflow"),document.body.style.removeProperty("top"),document.body.style.removeProperty("position"),document.body.style.removeProperty("width"),window.scrollTo(0,Math.abs(r))),i=!1)}}},fb8e:function(e,t,n){"use strict";n("6058")},fda2:function(e,t,n){},fdd9:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.shouldUseAsset?n("ImageAsset",e._b({},"ImageAsset",{variants:e.variants,loading:null,shouldCalculateOptimalWidth:e.shouldCalculateOptimalWidth,alt:e.alt},!1)):n("SVGIcon",{attrs:{"icon-url":e.iconUrl,themeId:e.themeId}})},a=[],r=n("8bd9"),s=n("be08"),o={name:"OverridableAsset",components:{SVGIcon:s["a"],ImageAsset:r["a"]},props:{imageOverride:{type:Object,default:null},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},computed:{variants:({imageOverride:e})=>e?e.variants:[],alt:({imageOverride:e})=>e.alt,firstVariant:({variants:e})=>e[0],iconUrl:({firstVariant:e})=>e&&e.url,themeId:({firstVariant:e})=>e&&e.svgID,isSameOrigin:({iconUrl:e,sameOrigin:t})=>t(e),shouldUseAsset:({isSameOrigin:e,themeId:t})=>!e||!t},methods:{sameOrigin(e){if(!e)return!1;const t=new URL(e,window.location),n=new URL(window.location);return t.origin===n.origin}}},c=o,l=n("2877"),u=Object(l["a"])(c,i,a,!1,null,null,null);t["a"]=u.exports},fe08:function(e,t,n){"use strict";n("a7d8")},fe1c:function(e,t,n){"use strict";n("81c0")}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-bash.1b52852f.js b/docs/js/highlight-js-bash.1b52852f.js deleted file mode 100644 index 6db177863..000000000 --- a/docs/js/highlight-js-bash.1b52852f.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-bash"],{f0f8:function(e,s){function t(e){const s=e.regex,t={},n={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]};Object.assign(t,{className:"variable",variants:[{begin:s.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},n]});const a={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},i={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,t,a]};a.contains.push(c);const o={className:"",begin:/\\"/},r={className:"string",begin:/'/,end:/'/},l={begin:/\$\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]},p=["fish","bash","zsh","sh","csh","ksh","tcsh","dash","scsh"],d=e.SHEBANG({binary:`(${p.join("|")})`,relevance:10}),h={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0},m=["if","then","else","elif","fi","for","while","in","do","done","case","esac","function"],u=["true","false"],b={match:/(\/[a-z._-]+)+/},g=["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset"],f=["alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias"],w=["autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp"],k=["chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"];return{name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z._-]+\b/,keyword:m,literal:u,built_in:[...g,...f,"set","shopt",...w,...k]},contains:[d,e.SHEBANG(),h,l,e.HASH_COMMENT_MODE,i,b,c,o,r,t]}}e.exports=t}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-c.d1db3f17.js b/docs/js/highlight-js-c.d1db3f17.js deleted file mode 100644 index 3bc41acb9..000000000 --- a/docs/js/highlight-js-c.d1db3f17.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-c"],{"1fe5":function(e,n){function s(e){const n=e.regex,s=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),t="decltype\\(auto\\)",a="[a-zA-Z_]\\w*::",i="<[^<>]+>",r="("+t+"|"+n.optional(a)+"[a-zA-Z_]\\w*"+n.optional(i)+")",l={className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{match:/\batomic_[a-z]{3,6}\b/}]},o="\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)",c={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+o+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(c,{className:"string"}),{className:"string",begin:/<.*?>/},s,e.C_BLOCK_COMMENT_MODE]},g={className:"title",begin:n.optional(a)+e.IDENT_RE,relevance:0},p=n.optional(a)+e.IDENT_RE+"\\s*\\(",m=["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],_=["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],f={keyword:m,type:_,literal:"true false NULL",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"},b=[u,l,s,e.C_BLOCK_COMMENT_MODE,d,c],w={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:f,contains:b.concat([{begin:/\(/,end:/\)/,keywords:f,contains:b.concat(["self"]),relevance:0}]),relevance:0},h={begin:"("+r+"[\\*&\\s]+)+"+p,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:t,keywords:f,relevance:0},{begin:p,returnBegin:!0,contains:[e.inherit(g,{className:"title.function"})],relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:f,relevance:0,contains:[s,e.C_BLOCK_COMMENT_MODE,c,d,l,{begin:/\(/,end:/\)/,keywords:f,relevance:0,contains:["self",s,e.C_BLOCK_COMMENT_MODE,c,d,l]}]},l,s,e.C_BLOCK_COMMENT_MODE,u]};return{name:"C",aliases:["h"],keywords:f,disableAutodetect:!0,illegal:"=]/,contains:[{beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:u,strings:c,keywords:f}}}e.exports=s}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-cpp.eaddddbe.js b/docs/js/highlight-js-cpp.eaddddbe.js deleted file mode 100644 index db9fd8205..000000000 --- a/docs/js/highlight-js-cpp.eaddddbe.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-cpp"],{"0209":function(e,t){function n(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),a="decltype\\(auto\\)",i="[a-zA-Z_]\\w*::",r="<[^<>]+>",s="(?!struct)("+a+"|"+t.optional(i)+"[a-zA-Z_]\\w*"+t.optional(r)+")",c={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},o="\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)",l={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+o+"|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},d={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(l,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},p={className:"title",begin:t.optional(i)+e.IDENT_RE,relevance:0},_=t.optional(i)+e.IDENT_RE+"\\s*\\(",m=["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],g=["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],f=["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"],b=["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"],h=["NULL","false","nullopt","nullptr","true"],w=["_Pragma"],y={type:g,keyword:m,literal:h,built_in:w,_type_hints:f},v={className:"function.dispatch",relevance:0,keywords:{_hint:b},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},k=[v,u,c,n,e.C_BLOCK_COMMENT_MODE,d,l],x={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:y,contains:k.concat([{begin:/\(/,end:/\)/,keywords:y,contains:k.concat(["self"]),relevance:0}]),relevance:0},E={className:"function",begin:"("+s+"[\\*&\\s]+)+"+_,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:y,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:a,keywords:y,relevance:0},{begin:_,returnBegin:!0,contains:[p],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[l,d]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:y,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,l,d,c,{begin:/\(/,end:/\)/,keywords:y,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,l,d,c]}]},c,n,e.C_BLOCK_COMMENT_MODE,u]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:y,illegal:"",keywords:y,contains:["self",c]},{begin:e.IDENT_RE+"::",keywords:y},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}}e.exports=n}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-css.75eab1fe.js b/docs/js/highlight-js-css.75eab1fe.js deleted file mode 100644 index 3d507d0bc..000000000 --- a/docs/js/highlight-js-css.75eab1fe.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-css"],{ee8c:function(e,t){const o=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}}),i=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],n=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],l=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();function s(e){const t=e.regex,s=o(e),d={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},c="and or not only",g=/@-?\w[\w]*(-\w+)*/,m="[a-zA-Z-][a-zA-Z0-9_-]*",p=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[s.BLOCK_COMMENT,d,s.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\."+m,relevance:0},s.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+a.join("|")+")"},{begin:":(:)?("+n.join("|")+")"}]},s.CSS_VARIABLE,{className:"attribute",begin:"\\b("+l.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[s.BLOCK_COMMENT,s.HEXCOLOR,s.IMPORTANT,s.CSS_NUMBER_MODE,...p,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},s.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:g},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:c,attribute:r.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...p,s.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+i.join("|")+")\\b"}]}}e.exports=s}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-custom-markdown.7cffc4b3.js b/docs/js/highlight-js-custom-markdown.7cffc4b3.js deleted file mode 100644 index 5271416ee..000000000 --- a/docs/js/highlight-js-custom-markdown.7cffc4b3.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-custom-markdown","highlight-js-markdown"],{"04b0":function(n,e){function a(n){const e=n.regex,a={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},i={begin:"^[-\\*]{3,}",end:"$"},s={className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},t={className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},c={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},d=/[A-Za-z][A-Za-z0-9+.-]*/,l={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:e.concat(/\[.+?\]\(/,d,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},g={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},o={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};g.contains.push(o),o.contains.push(g);let r=[a,l];g.contains=g.contains.concat(r),o.contains=o.contains.concat(r),r=r.concat(g,o);const b={className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:r},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:r}]}]},u={className:"quote",begin:"^>\\s+",contains:r,end:"$"};return{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[b,a,t,g,o,u,s,i,l,c]}}n.exports=a},"84cb":function(n,e,a){"use strict";a.r(e);var i=a("04b0"),s=a.n(i);const t={begin:"",returnBegin:!0,contains:[{className:"link",begin:"doc:",end:">",excludeEnd:!0}]},c={className:"link",begin:/`{2}(?!`)/,end:/`{2}(?!`)/,excludeBegin:!0,excludeEnd:!0},d={begin:"^>\\s+[Note:|Tip:|Important:|Experiment:|Warning:]",end:"$",returnBegin:!0,contains:[{className:"quote",begin:"^>",end:"\\s+"},{className:"type",begin:"Note|Tip|Important|Experiment|Warning",end:":"},{className:"quote",begin:".*",end:"$",endsParent:!0}]},l={begin:"@",end:"[{\\)\\s]",returnBegin:!0,contains:[{className:"title",begin:"@",end:"[\\s+(]",excludeEnd:!0},{begin:":",end:"[,\\)\n\t]",excludeBegin:!0,keywords:{literal:"true false null undefined"},contains:[{className:"number",begin:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",endsWithParent:!0,excludeEnd:!0},{className:"string",variants:[{begin:/"""/,end:/"""/},{begin:/"/,end:/"/}],endsParent:!0},{className:"link",begin:"http|https",endsWithParent:!0,excludeEnd:!0}]}]};e["default"]=function(n){const e=s()(n),a=e.contains.find(({className:n})=>"code"===n);a.variants=a.variants.filter(({begin:n})=>!n.includes("( {4}|\\t)"));const i=[...e.contains.filter(({className:n})=>"code"!==n),a];return{...e,contains:[c,t,d,l,...i]}}}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-custom-swift.5cda5c20.js b/docs/js/highlight-js-custom-swift.5cda5c20.js deleted file mode 100644 index d19f9880f..000000000 --- a/docs/js/highlight-js-custom-swift.5cda5c20.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-custom-swift","highlight-js-swift"],{"2a39":function(e,n){function t(e){return e?"string"===typeof e?e:e.source:null}function a(e){return i("(?=",e,")")}function i(...e){const n=e.map(e=>t(e)).join("");return n}function s(e){const n=e[e.length-1];return"object"===typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}}function c(...e){const n=s(e),a="("+(n.capture?"":"?:")+e.map(e=>t(e)).join("|")+")";return a}const u=e=>i(/\b/,e,/\w$/.test(e)?/\b/:/\B/),o=["Protocol","Type"].map(u),r=["init","self"].map(u),l=["Any","Self"],m=["actor","associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],d=["false","nil","true"],p=["assignment","associativity","higherThan","left","lowerThan","none","right"],F=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],b=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],f=c(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),h=c(f,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),w=i(f,h,"*"),y=c(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),g=c(y,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),E=i(y,g,"*"),v=i(/[A-Z]/,g,"*"),A=["autoclosure",i(/convention\(/,c("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",i(/objc\(/,E,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],N=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function k(e){const n={match:/\s+/,relevance:0},t=e.COMMENT("/\\*","\\*/",{contains:["self"]}),s=[e.C_LINE_COMMENT_MODE,t],f={match:[/\./,c(...o,...r)],className:{2:"keyword"}},y={match:i(/\./,c(...m)),relevance:0},k=m.filter(e=>"string"===typeof e).concat(["_|0"]),C=m.filter(e=>"string"!==typeof e).concat(l).map(u),D={variants:[{className:"keyword",match:c(...C,...r)}]},B={$pattern:c(/\b\w+/,/#\w+/),keyword:k.concat(F),literal:d},_=[f,y,D],S={match:i(/\./,c(...b)),relevance:0},x={className:"built_in",match:i(/\b/,c(...b),/(?=\()/)},M=[S,x],I={match:/->/,relevance:0},$={className:"operator",relevance:0,variants:[{match:w},{match:`\\.(\\.|${h})+`}]},O=[I,$],L="([0-9]_*)+",T="([0-9a-fA-F]_*)+",j={className:"number",relevance:0,variants:[{match:`\\b(${L})(\\.(${L}))?([eE][+-]?(${L}))?\\b`},{match:`\\b0x(${T})(\\.(${T}))?([pP][+-]?(${L}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},K=(e="")=>({className:"subst",variants:[{match:i(/\\/,e,/[0\\tnr"']/)},{match:i(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),P=(e="")=>({className:"subst",match:i(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),z=(e="")=>({className:"subst",label:"interpol",begin:i(/\\/,e,/\(/),end:/\)/}),q=(e="")=>({begin:i(e,/"""/),end:i(/"""/,e),contains:[K(e),P(e),z(e)]}),U=(e="")=>({begin:i(e,/"/),end:i(/"/,e),contains:[K(e),z(e)]}),Z={className:"string",variants:[q(),q("#"),q("##"),q("###"),U(),U("#"),U("##"),U("###")]},V={match:i(/`/,E,/`/)},W={className:"variable",match:/\$\d+/},G={className:"variable",match:`\\$${g}+`},J=[V,W,G],R={match:/(@|#)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:N,contains:[...O,j,Z]}]}},X={className:"keyword",match:i(/@/,c(...A))},H={className:"meta",match:i(/@/,E)},Q=[R,X,H],Y={match:a(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:i(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,g,"+")},{className:"type",match:v,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:i(/\s+&\s+/,a(v)),relevance:0}]},ee={begin://,keywords:B,contains:[...s,..._,...Q,I,Y]};Y.contains.push(ee);const ne={match:i(E,/\s*:/),keywords:"_|0",relevance:0},te={begin:/\(/,end:/\)/,relevance:0,keywords:B,contains:["self",ne,...s,..._,...M,...O,j,Z,...J,...Q,Y]},ae={begin://,contains:[...s,Y]},ie={begin:c(a(i(E,/\s*:/)),a(i(E,/\s+/,E,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:E}]},se={begin:/\(/,end:/\)/,keywords:B,contains:[ie,...s,..._,...O,j,Z,...Q,Y,te],endsParent:!0,illegal:/["']/},ce={match:[/func/,/\s+/,c(V.match,E,w)],className:{1:"keyword",3:"title.function"},contains:[ae,se,n],illegal:[/\[/,/%/]},ue={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[ae,se,n],illegal:/\[|%/},oe={match:[/operator/,/\s+/,w],className:{1:"keyword",3:"title"}},re={begin:[/precedencegroup/,/\s+/,v],className:{1:"keyword",3:"title"},contains:[Y],keywords:[...p,...d],end:/}/};for(const a of Z.variants){const e=a.contains.find(e=>"interpol"===e.label);e.keywords=B;const n=[..._,...M,...O,j,Z,...J];e.contains=[...n,{begin:/\(/,end:/\)/,contains:["self",...n]}]}return{name:"Swift",keywords:B,contains:[...s,ce,ue,{beginKeywords:"struct protocol class extension enum actor",end:"\\{",excludeEnd:!0,keywords:B,contains:[e.inherit(e.TITLE_MODE,{className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),..._]},oe,re,{beginKeywords:"import",end:/$/,contains:[...s],relevance:0},..._,...M,...O,j,Z,...J,...Q,Y,te]}}e.exports=k},"81c8":function(e,n,t){"use strict";t.r(n);var a=t("2a39"),i=t.n(a);n["default"]=function(e){const n=i()(e);n.keywords.keyword=[...n.keywords.keyword,"distributed"];const t=({beginKeywords:e=""})=>e.split(" ").includes("class"),a=n.contains.findIndex(t);if(a>=0){const{beginKeywords:e,...t}=n.contains[a];n.contains[a]={...t,begin:/\b(struct|protocol|extension|enum|actor|class\b(?!.*\bfunc))\b/}}return n}}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-diff.62d66733.js b/docs/js/highlight-js-diff.62d66733.js deleted file mode 100644 index 64337fa82..000000000 --- a/docs/js/highlight-js-diff.62d66733.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-http.163e45b6.js b/docs/js/highlight-js-http.163e45b6.js deleted file mode 100644 index 14f39a9f4..000000000 --- a/docs/js/highlight-js-http.163e45b6.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-java.8326d9d8.js b/docs/js/highlight-js-java.8326d9d8.js deleted file mode 100644 index f11ca2a2a..000000000 --- a/docs/js/highlight-js-java.8326d9d8.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-java"],{"332f":function(e,a){var n="[0-9](_*[0-9])*",s=`\\.(${n})`,i="[0-9a-fA-F](_*[0-9a-fA-F])*",t={className:"number",variants:[{begin:`(\\b(${n})((${s})|\\.)?|(${s}))[eE][+-]?(${n})[fFdD]?\\b`},{begin:`\\b(${n})((${s})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${s})[fFdD]?\\b`},{begin:`\\b(${n})[fFdD]\\b`},{begin:`\\b0[xX]((${i})\\.?|(${i})?\\.(${i}))[pP][+-]?(${n})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${i})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function r(e,a,n){return-1===n?"":e.replace(a,s=>r(e,a,n-1))}function c(e){e.regex;const a="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",n=a+r("(?:<"+a+"~~~(?:\\s*,\\s*"+a+"~~~)*>)?",/~~~/g,2),s=["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do"],i=["super","this"],c=["false","true","null"],l=["char","boolean","long","float","int","byte","short","double"],o={keyword:s,literal:c,type:l,built_in:i},b={className:"meta",begin:"@"+a,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},_={className:"params",begin:/\(/,end:/\)/,keywords:o,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:"Java",aliases:["jsp"],keywords:o,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:"string",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,a],className:{1:"keyword",3:"title.class"}},{begin:[a,/\s+/,a,/\s+/,/=/],className:{1:"type",3:"variable",5:"operator"}},{begin:[/record/,/\s+/,a],className:{1:"keyword",3:"title.class"},contains:[_,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"new throw return else",relevance:0},{begin:["(?:"+n+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:"title.function"},keywords:o,contains:[{className:"params",begin:/\(/,end:/\)/,keywords:o,relevance:0,contains:[b,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,t,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},t,b]}}e.exports=c}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-javascript.acb8a8eb.js b/docs/js/highlight-js-javascript.acb8a8eb.js deleted file mode 100644 index ac843fc04..000000000 --- a/docs/js/highlight-js-javascript.acb8a8eb.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-javascript"],{"4dd1":function(e,n){const a="[A-Za-z$_][0-9A-Za-z$_]*",t=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],s=["true","false","null","undefined","NaN","Infinity"],c=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],r=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],i=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],o=["arguments","this","super","console","window","document","localStorage","module","global"],l=[].concat(i,c,r);function b(e){const n=e.regex,b=(e,{after:n})=>{const a="",end:""},u=/<[A-Za-z0-9\\._:-]+\s*\/>/,m={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{const a=e[0].length+e.index,t=e.input[a];if("<"===t||","===t)return void n.ignoreMatch();let s;">"===t&&(b(e,{after:a})||n.ignoreMatch());const c=e.input.substr(a);(s=c.match(/^\s+extends\s+/))&&0===s.index&&n.ignoreMatch()}},E={$pattern:a,keyword:t,literal:s,built_in:l,"variable.language":o},A="[0-9](_?[0-9])*",y=`\\.(${A})`,N="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",f={className:"number",variants:[{begin:`(\\b(${N})((${y})|\\.)?|(${y}))[eE][+-]?(${A})\\b`},{begin:`\\b(${N})\\b((${y})\\b|\\.)?|(${y})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},h={className:"subst",begin:"\\$\\{",end:"\\}",keywords:E,contains:[]},_={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"xml"}},p={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:"css"}},v={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,h]},w=e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:d+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),S={className:"comment",variants:[w,e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},R=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,_,p,v,f];h.contains=R.concat({begin:/\{/,end:/\}/,keywords:E,contains:["self"].concat(R)});const k=[].concat(S,h.contains),O=k.concat([{begin:/\(/,end:/\)/,keywords:E,contains:["self"].concat(k)}]),I={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:E,contains:O},x={variants:[{match:[/class/,/\s+/,d,/\s+/,/extends/,/\s+/,n.concat(d,"(",n.concat(/\./,d),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,d],scope:{1:"keyword",3:"title.class"}}]},T={relevance:0,match:n.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]+|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+/),className:"title.class",keywords:{_:[...c,...r]}},C={label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},M={variants:[{match:[/function/,/\s+/,d,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[I],illegal:/%/},B={relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"};function $(e){return n.concat("(?!",e.join("|"),")")}const D={match:n.concat(/\b/,$([...i,"super"]),d,n.lookahead(/\(/)),className:"title.function",relevance:0},U={begin:n.concat(/\./,n.lookahead(n.concat(d,/(?![0-9A-Za-z$_(])/))),end:d,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},Z={match:[/get|set/,/\s+/,d,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},I]},z="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",F={match:[/const|var|let/,/\s+/,d,/\s*/,/=\s*/,n.lookahead(z)],className:{1:"keyword",3:"title.function"},contains:[I]};return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:E,exports:{PARAMS_CONTAINS:O,CLASS_REFERENCE:T},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),C,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,_,p,v,S,f,T,{className:"attr",begin:d+n.lookahead(":"),relevance:0},F,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[S,e.REGEXP_MODE,{className:"function",begin:z,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:E,contains:O}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:g.begin,end:g.end},{match:u},{begin:m.begin,"on:begin":m.isTrulyOpeningTag,end:m.end}],subLanguage:"xml",contains:[{begin:m.begin,end:m.end,skip:!0,contains:["self"]}]}]},M,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[I,e.inherit(e.TITLE_MODE,{begin:d,className:"title.function"})]},{match:/\.\.\./,relevance:0},U,{match:"\\$"+d,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[I]},D,B,x,Z,{match:/\$[(.]/}]}}e.exports=b}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-json.471128d2.js b/docs/js/highlight-js-json.471128d2.js deleted file mode 100644 index c87d3c3bc..000000000 --- a/docs/js/highlight-js-json.471128d2.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-llvm.6100b125.js b/docs/js/highlight-js-llvm.6100b125.js deleted file mode 100644 index 0beb806ec..000000000 --- a/docs/js/highlight-js-llvm.6100b125.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-llvm"],{"7c30":function(e,n){function a(e){const n=e.regex,a=/([-a-zA-Z$._][\w$.-]*)/,t={className:"type",begin:/\bi\d+(?=\s|\b)/},i={className:"operator",relevance:0,begin:/=/},c={className:"punctuation",relevance:0,begin:/,/},l={className:"number",variants:[{begin:/0[xX][a-fA-F0-9]+/},{begin:/-?\d+(?:[.]\d+)?(?:[eE][-+]?\d+(?:[.]\d+)?)?/}],relevance:0},r={className:"symbol",variants:[{begin:/^\s*[a-z]+:/}],relevance:0},s={className:"variable",variants:[{begin:n.concat(/%/,a)},{begin:/%\d+/},{begin:/#\d+/}]},o={className:"title",variants:[{begin:n.concat(/@/,a)},{begin:/@\d+/},{begin:n.concat(/!/,a)},{begin:n.concat(/!\d+/,a)},{begin:/!\d+/}]};return{name:"LLVM IR",keywords:"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double",contains:[t,e.COMMENT(/;\s*$/,null,{relevance:0}),e.COMMENT(/;/,/$/),e.QUOTE_STRING_MODE,{className:"string",variants:[{begin:/"/,end:/[^\\]"/}]},o,c,i,s,r,l]}}e.exports=a}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-markdown.90077643.js b/docs/js/highlight-js-markdown.90077643.js deleted file mode 100644 index dc8d097c0..000000000 --- a/docs/js/highlight-js-markdown.90077643.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-markdown"],{"04b0":function(n,e){function a(n){const e=n.regex,a={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},i={begin:"^[-\\*]{3,}",end:"$"},s={className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},c={className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},t={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},g=/[A-Za-z][A-Za-z0-9+.-]*/,d={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:e.concat(/\[.+?\]\(/,g,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},l={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},o={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};l.contains.push(o),o.contains.push(l);let b=[a,d];l.contains=l.contains.concat(b),o.contains=o.contains.concat(b),b=b.concat(l,o);const r={className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:b},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:b}]}]},m={className:"quote",begin:"^>\\s+",contains:b,end:"$"};return{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[r,a,c,l,o,m,s,i,d,t]}}n.exports=a}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-objectivec.bcdf5156.js b/docs/js/highlight-js-objectivec.bcdf5156.js deleted file mode 100644 index 2456ffc89..000000000 --- a/docs/js/highlight-js-objectivec.bcdf5156.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-objectivec"],{"9bf2":function(e,n){function _(e){const n={className:"built_in",begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},_=/[a-zA-Z@][a-zA-Z0-9_]*/,i=["int","float","while","char","export","sizeof","typedef","const","struct","for","union","unsigned","long","volatile","static","bool","mutable","if","do","return","goto","void","enum","else","break","extern","asm","case","short","default","double","register","explicit","signed","typename","this","switch","continue","wchar_t","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","super","unichar","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],t=["false","true","FALSE","TRUE","nil","YES","NO","NULL"],a=["BOOL","dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],o={$pattern:_,keyword:i,literal:t,built_in:a},s={$pattern:_,keyword:["@interface","@class","@protocol","@implementation"]};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:o,illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+s.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:s,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}e.exports=_}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-perl.757d7b6f.js b/docs/js/highlight-js-perl.757d7b6f.js deleted file mode 100644 index a4c74d111..000000000 --- a/docs/js/highlight-js-perl.757d7b6f.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-perl"],{"6a51":function(e,n){function t(e){const n=e.regex,t=["abs","accept","alarm","and","atan2","bind","binmode","bless","break","caller","chdir","chmod","chomp","chop","chown","chr","chroot","close","closedir","connect","continue","cos","crypt","dbmclose","dbmopen","defined","delete","die","do","dump","each","else","elsif","endgrent","endhostent","endnetent","endprotoent","endpwent","endservent","eof","eval","exec","exists","exit","exp","fcntl","fileno","flock","for","foreach","fork","format","formline","getc","getgrent","getgrgid","getgrnam","gethostbyaddr","gethostbyname","gethostent","getlogin","getnetbyaddr","getnetbyname","getnetent","getpeername","getpgrp","getpriority","getprotobyname","getprotobynumber","getprotoent","getpwent","getpwnam","getpwuid","getservbyname","getservbyport","getservent","getsockname","getsockopt","given","glob","gmtime","goto","grep","gt","hex","if","index","int","ioctl","join","keys","kill","last","lc","lcfirst","length","link","listen","local","localtime","log","lstat","lt","ma","map","mkdir","msgctl","msgget","msgrcv","msgsnd","my","ne","next","no","not","oct","open","opendir","or","ord","our","pack","package","pipe","pop","pos","print","printf","prototype","push","q|0","qq","quotemeta","qw","qx","rand","read","readdir","readline","readlink","readpipe","recv","redo","ref","rename","require","reset","return","reverse","rewinddir","rindex","rmdir","say","scalar","seek","seekdir","select","semctl","semget","semop","send","setgrent","sethostent","setnetent","setpgrp","setpriority","setprotoent","setpwent","setservent","setsockopt","shift","shmctl","shmget","shmread","shmwrite","shutdown","sin","sleep","socket","socketpair","sort","splice","split","sprintf","sqrt","srand","stat","state","study","sub","substr","symlink","syscall","sysopen","sysread","sysseek","system","syswrite","tell","telldir","tie","tied","time","times","tr","truncate","uc","ucfirst","umask","undef","unless","unlink","unpack","unshift","untie","until","use","utime","values","vec","wait","waitpid","wantarray","warn","when","while","write","x|0","xor","y|0"],s=/[dualxmsipngr]{0,12}/,r={$pattern:/[\w.]+/,keyword:t.join(" ")},i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:r},a={begin:/->\{/,end:/\}/},o={variants:[{begin:/\$\d/},{begin:n.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@][^\s\w{]/,relevance:0}]},c=[e.BACKSLASH_ESCAPE,i,o],g=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],l=(e,t,r="\\1")=>{const i="\\1"===r?r:n.concat(r,t);return n.concat(n.concat("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,i,/(?:\\.|[^\\\/])*?/,r,s)},d=(e,t,r)=>n.concat(n.concat("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,r,s),p=[o,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),a,{className:"string",contains:c,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:l("s|tr|y",n.either(...g,{capture:!0}))},{begin:l("s|tr|y","\\(","\\)")},{begin:l("s|tr|y","\\[","\\]")},{begin:l("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:d("(?:m|qr)?",/\//,/\//)},{begin:d("m|qr",n.either(...g,{capture:!0}),/\1/)},{begin:d("m|qr",/\(/,/\)/)},{begin:d("m|qr",/\[/,/\]/)},{begin:d("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return i.contains=p,a.contains=p,{name:"Perl",aliases:["pl","pm"],keywords:r,contains:p}}e.exports=t}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-php.cc8d6c27.js b/docs/js/highlight-js-php.cc8d6c27.js deleted file mode 100644 index 3d12a9c9e..000000000 --- a/docs/js/highlight-js-php.cc8d6c27.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-php"],{2907:function(e,r){function t(e){const r={className:"variable",begin:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*(?![A-Za-z0-9])(?![$])"},t={className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},a={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal:null}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(a)}),l={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[e.inherit(n,{begin:"b'",end:"'"}),e.inherit(i,{begin:'b"',end:'"'}),i,n,o]},c={className:"number",variants:[{begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?"}],relevance:0},s={keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield",literal:"false null true",built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"};return{case_insensitive:!0,keywords:s,contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t]}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,keywords:"__halt_compiler"}),t,{className:"keyword",begin:/\$this\b/},r,{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:s,contains:["self",r,e.C_BLOCK_COMMENT_MODE,l,c]}]},{className:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";",contains:[e.UNDERSCORE_TITLE_MODE]},l,c]}}e.exports=t}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-python.c214ed92.js b/docs/js/highlight-js-python.c214ed92.js deleted file mode 100644 index c8d2ed8d9..000000000 --- a/docs/js/highlight-js-python.c214ed92.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-python"],{9510:function(e,n){function a(e){const n=e.regex,a=/[\p{XID_Start}_]\p{XID_Continue}*/u,i=["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],s=["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],t=["__debug__","Ellipsis","False","None","NotImplemented","True"],r=["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"],l={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:i,built_in:s,literal:t,type:r},o={className:"meta",begin:/^(>>>|\.\.\.) /},b={className:"subst",begin:/\{/,end:/\}/,keywords:l,illegal:/#/},c={begin:/\{\{/,relevance:0},d={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,o],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,o],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,o,c,b]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,o,c,b]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,c,b]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,c,b]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},p="[0-9](_?[0-9])*",g=`(\\b(${p}))?\\.(${p})|\\b(${p})\\.`,m={className:"number",relevance:0,variants:[{begin:`(\\b(${p})|(${g}))[eE][+-]?(${p})[jJ]?\\b`},{begin:`(${g})[jJ]?`},{begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${p})[jJ]\\b`}]},_={className:"comment",begin:n.lookahead(/# type:/),end:/$/,keywords:l,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},u={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:["self",o,m,d,e.HASH_COMMENT_MODE]}]};return b.contains=[d,m,o],{name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:l,illegal:/(<\/|->|\?)|=>/,contains:[o,m,{begin:/\bself\b/},{beginKeywords:"if",relevance:0},d,_,e.HASH_COMMENT_MODE,{match:[/def/,/\s+/,a],scope:{1:"keyword",3:"title.function"},contains:[u]},{variants:[{match:[/class/,/\s+/,a,/\s*/,/\(\s*/,a,/\s*\)/]},{match:[/class/,/\s+/,a]}],scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[m,u,d]}]}}e.exports=a}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-ruby.f889d392.js b/docs/js/highlight-js-ruby.f889d392.js deleted file mode 100644 index a8355da1c..000000000 --- a/docs/js/highlight-js-ruby.f889d392.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-ruby"],{"82cb":function(e,n){function a(e){const n=e.regex,a="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__",built_in:"proc lambda",literal:"true false nil"},s={className:"doctag",begin:"@[A-Za-z]+"},b={begin:"#<",end:">"},c=[e.COMMENT("#","$",{contains:[s]}),e.COMMENT("^=begin","^=end",{contains:[s],relevance:10}),e.COMMENT("^__END__","\\n$")],r={className:"subst",begin:/#\{/,end:/\}/,keywords:i},d={className:"string",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:n.concat(/<<[-~]?'?/,n.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,r]})]}]},t="[1-9](_?[0-9])*|0",o="[0-9](_?[0-9])*",g={className:"number",relevance:0,variants:[{begin:`\\b(${t})(\\.(${o}))?([eE][+-]?(${o})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},l={className:"params",begin:"\\(",end:"\\)",endsParent:!0,keywords:i},_=[d,{className:"class",beginKeywords:"class module",end:"$|;",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{begin:"("+e.IDENT_RE+"::)?"+e.IDENT_RE,relevance:0}]}].concat(c)},{className:"function",begin:n.concat(/def\s+/,n.lookahead(a+"\\s*(\\(|;|$)")),relevance:0,keywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:a}),l].concat(c)},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[d,{begin:a}],relevance:0},g,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:i},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,r],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(b,c),relevance:0}].concat(b,c);r.contains=_,l.contains=_;const w="[>?]>",E="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>",N=[{begin:/^\s*=>/,starts:{end:"$",contains:_}},{className:"meta",begin:"^("+w+"|"+E+"|"+u+")(?=[ ])",starts:{end:"$",contains:_}}];return c.unshift(b),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:i,illegal:/\/\*/,contains:[e.SHEBANG({binary:"ruby"})].concat(N).concat(c).concat(_)}}e.exports=a}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-scss.62ee18da.js b/docs/js/highlight-js-scss.62ee18da.js deleted file mode 100644 index 8f46244fd..000000000 --- a/docs/js/highlight-js-scss.62ee18da.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-scss"],{6113:function(e,t){const i=e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}}),o=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],n=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],l=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();function s(e){const t=i(e),s=n,d=a,c="@[a-z-]+",p="and or not only",g="[a-zA-Z-][a-zA-Z0-9_-]*",m={className:"variable",begin:"(\\$"+g+")\\b"};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+o.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+d.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+s.join("|")+")"},m,{begin:/\(/,end:/\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+l.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:/:/,end:/[;}{]/,contains:[t.BLOCK_COMMENT,m,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT]},{begin:"@(page|font-face)",keywords:{$pattern:c,keyword:"@page @font-face"}},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:p,attribute:r.join(" ")},contains:[{begin:c,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},m,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}}e.exports=s}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-shell.dd7f411f.js b/docs/js/highlight-js-shell.dd7f411f.js deleted file mode 100644 index 999f4527c..000000000 --- a/docs/js/highlight-js-shell.dd7f411f.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-swift.84f3e88c.js b/docs/js/highlight-js-swift.84f3e88c.js deleted file mode 100644 index 89d1daf12..000000000 --- a/docs/js/highlight-js-swift.84f3e88c.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-swift"],{"2a39":function(e,n){function a(e){return e?"string"===typeof e?e:e.source:null}function t(e){return i("(?=",e,")")}function i(...e){const n=e.map(e=>a(e)).join("");return n}function s(e){const n=e[e.length-1];return"object"===typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}}function u(...e){const n=s(e),t="("+(n.capture?"":"?:")+e.map(e=>a(e)).join("|")+")";return t}const c=e=>i(/\b/,e,/\w$/.test(e)?/\b/:/\B/),o=["Protocol","Type"].map(c),r=["init","self"].map(c),l=["Any","Self"],m=["actor","associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],p=["false","nil","true"],d=["assignment","associativity","higherThan","left","lowerThan","none","right"],F=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],b=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],h=u(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),f=u(h,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),w=i(h,f,"*"),y=u(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),g=u(y,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),E=i(y,g,"*"),v=i(/[A-Z]/,g,"*"),A=["autoclosure",i(/convention\(/,u("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",i(/objc\(/,E,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],N=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function C(e){const n={match:/\s+/,relevance:0},a=e.COMMENT("/\\*","\\*/",{contains:["self"]}),s=[e.C_LINE_COMMENT_MODE,a],h={match:[/\./,u(...o,...r)],className:{2:"keyword"}},y={match:i(/\./,u(...m)),relevance:0},C=m.filter(e=>"string"===typeof e).concat(["_|0"]),k=m.filter(e=>"string"!==typeof e).concat(l).map(c),D={variants:[{className:"keyword",match:u(...k,...r)}]},B={$pattern:u(/\b\w+/,/#\w+/),keyword:C.concat(F),literal:p},_=[h,y,D],S={match:i(/\./,u(...b)),relevance:0},M={className:"built_in",match:i(/\b/,u(...b),/(?=\()/)},x=[S,M],$={match:/->/,relevance:0},I={className:"operator",relevance:0,variants:[{match:w},{match:`\\.(\\.|${f})+`}]},O=[$,I],L="([0-9]_*)+",T="([0-9a-fA-F]_*)+",j={className:"number",relevance:0,variants:[{match:`\\b(${L})(\\.(${L}))?([eE][+-]?(${L}))?\\b`},{match:`\\b0x(${T})(\\.(${T}))?([pP][+-]?(${L}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},P=(e="")=>({className:"subst",variants:[{match:i(/\\/,e,/[0\\tnr"']/)},{match:i(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),K=(e="")=>({className:"subst",match:i(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),z=(e="")=>({className:"subst",label:"interpol",begin:i(/\\/,e,/\(/),end:/\)/}),q=(e="")=>({begin:i(e,/"""/),end:i(/"""/,e),contains:[P(e),K(e),z(e)]}),U=(e="")=>({begin:i(e,/"/),end:i(/"/,e),contains:[P(e),z(e)]}),Z={className:"string",variants:[q(),q("#"),q("##"),q("###"),U(),U("#"),U("##"),U("###")]},V={match:i(/`/,E,/`/)},W={className:"variable",match:/\$\d+/},G={className:"variable",match:`\\$${g}+`},J=[V,W,G],R={match:/(@|#)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:N,contains:[...O,j,Z]}]}},X={className:"keyword",match:i(/@/,u(...A))},H={className:"meta",match:i(/@/,E)},Q=[R,X,H],Y={match:t(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:i(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,g,"+")},{className:"type",match:v,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:i(/\s+&\s+/,t(v)),relevance:0}]},ee={begin://,keywords:B,contains:[...s,..._,...Q,$,Y]};Y.contains.push(ee);const ne={match:i(E,/\s*:/),keywords:"_|0",relevance:0},ae={begin:/\(/,end:/\)/,relevance:0,keywords:B,contains:["self",ne,...s,..._,...x,...O,j,Z,...J,...Q,Y]},te={begin://,contains:[...s,Y]},ie={begin:u(t(i(E,/\s*:/)),t(i(E,/\s+/,E,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:E}]},se={begin:/\(/,end:/\)/,keywords:B,contains:[ie,...s,..._,...O,j,Z,...Q,Y,ae],endsParent:!0,illegal:/["']/},ue={match:[/func/,/\s+/,u(V.match,E,w)],className:{1:"keyword",3:"title.function"},contains:[te,se,n],illegal:[/\[/,/%/]},ce={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[te,se,n],illegal:/\[|%/},oe={match:[/operator/,/\s+/,w],className:{1:"keyword",3:"title"}},re={begin:[/precedencegroup/,/\s+/,v],className:{1:"keyword",3:"title"},contains:[Y],keywords:[...d,...p],end:/}/};for(const t of Z.variants){const e=t.contains.find(e=>"interpol"===e.label);e.keywords=B;const n=[..._,...x,...O,j,Z,...J];e.contains=[...n,{begin:/\(/,end:/\)/,contains:["self",...n]}]}return{name:"Swift",keywords:B,contains:[...s,ue,ce,{beginKeywords:"struct protocol class extension enum actor",end:"\\{",excludeEnd:!0,keywords:B,contains:[e.inherit(e.TITLE_MODE,{className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),..._]},oe,re,{beginKeywords:"import",end:/$/,contains:[...s],relevance:0},..._,...x,...O,j,Z,...J,...Q,Y,ae]}}e.exports=C}}]); \ No newline at end of file diff --git a/docs/js/highlight-js-xml.9c3688c7.js b/docs/js/highlight-js-xml.9c3688c7.js deleted file mode 100644 index 55cc1e274..000000000 --- a/docs/js/highlight-js-xml.9c3688c7.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-xml"],{"8dcb":function(e,n){function a(e){const n=e.regex,a=n.concat(/[A-Z_]/,n.optional(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),s=/[A-Za-z0-9._:-]+/,t={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},i={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},c=e.inherit(i,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{className:"string"}),r=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),g={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,contains:[{className:"meta",begin://,relevance:10,contains:[i,r,l,c,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin://,contains:[i,c,r,l]}]}]},e.COMMENT(//,{relevance:10}),{begin://,relevance:10},t,{className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",begin:/)/,end:/>/,keywords:{name:"style"},contains:[g],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/)/,end:/>/,keywords:{name:"script"},contains:[g],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:n.concat(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:a,relevance:0,starts:g}]},{className:"tag",begin:n.concat(/<\//,n.lookahead(n.concat(a,/>/))),contains:[{className:"name",begin:a,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}e.exports=a}}]); \ No newline at end of file diff --git a/docs/js/index.e8a5d294.js b/docs/js/index.e8a5d294.js deleted file mode 100644 index f24cc9e89..000000000 --- a/docs/js/index.e8a5d294.js +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */(function(e){function t(t){for(var i,o,s=t[0],c=t[1],l=t[2],u=0,h=[];u])/g,o=/^-+/,r=/["'&<>]/g;function a(e){return e.trim().replace(i,"-").replace(o,"").toLowerCase()}function s(e){const t=e=>({'"':""","'":"'","&":"&","<":"<",">":">"}[e]||e);return e.replace(r,t)}function c(e){return e.replace(/#(.*)/,(e,t)=>"#"+CSS.escape(t))}function l(e){return e.replace(/[.*+\-?^${}()|[\]\\]/g,"\\$&")}function u(e){let t,n;const i="\\s*",o=" ",r=e.trim(),a=r.length;if(!a)return o;const s=[];for(t=0;t[{name:"description",content:t},{property:"og:locale",content:i},{property:"og:site_name",content:r},{property:"og:type",content:"website"},{property:"og:title",content:e},{property:"og:description",content:t},{property:"og:url",content:n},{property:"og:image",content:Object(o["e"])("/developer-og.jpg")},{name:"twitter:image",content:Object(o["e"])("/developer-og-twitter.jpg")},{name:"twitter:card",content:"summary_large_image"},{name:"twitter:description",content:t},{name:"twitter:title",content:e},{name:"twitter:url",content:n}],s=e=>[e,r].filter(Boolean).join(" | "),c=e=>{const{content:t}=e,n=e.property?"property":"name",i=e[n],o=document.querySelector(`meta[${n}="${i}"]`);if(o&&t)o.setAttribute("content",t);else if(o&&!t)o.remove();else if(t){const t=document.createElement("meta");t.setAttribute(n,e[n]),t.setAttribute("content",e.content),document.getElementsByTagName("head")[0].appendChild(t)}},l=e=>{document.title=e};function u({title:e,description:t,url:n,currentLocale:i}){const o=s(e);l(o),a({title:o,description:t,url:n,currentLocale:i}).forEach(e=>c(e))}function h(e){document.querySelector("html").setAttribute("lang",e)}},"34b0":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-chevron-right-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-chevron-right"}},[n("path",{attrs:{d:"M2.964 1.366l0.649-0.76 7.426 6.343-7.423 6.445-0.655-0.755 6.545-5.683-6.542-5.59z"}})])},o=[],r=n("be08"),a={name:"InlineChevronRightIcon",components:{SVGIcon:r["a"]}},s=a,c=n("2877"),l=Object(c["a"])(s,i,o,!1,null,null,null);t["a"]=l.exports},3502:function(e,t,n){},3908:function(e,t,n){"use strict";function i(e){let t=null,n=e-1;const i=new Promise(e=>{t=e});return requestAnimationFrame((function e(){n-=1,n<=0?t():requestAnimationFrame(e)})),i}function o(e){return new Promise(t=>{setTimeout(t,e)})}n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}))},"3be4":function(e,t,n){},"3ca7":function(e){e.exports=JSON.parse('[{"code":"en-US","name":"English","slug":"en-US"},{"code":"zh-CN","name":"简体中文","slug":"zh-CN"},{"code":"ja-JP","name":"日本語","slug":"ja-JP"}]')},4009:function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i="app-top"},"48b1":function(e,t,n){"use strict";n("e487")},5522:function(e,t,n){"use strict";n("a3e8")},"5c0b":function(e,t,n){"use strict";n("9c0c")},"5d2d":function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"c",(function(){return c})),n.d(t,"b",(function(){return l}));const i="developer.setting.";function o(e=localStorage){return{getItem:t=>{try{return e.getItem(t)}catch(n){return null}},setItem:(t,n)=>{try{e.setItem(t,n)}catch(i){}},removeItem:t=>{try{e.removeItem(t)}catch(n){}}}}function r(e){return{get:(t,n)=>{const o=JSON.parse(e.getItem(i+t));return null!==o?o:n},set:(t,n)=>e.setItem(i+t,JSON.stringify(n)),remove:t=>e.removeItem(i+t)}}const a=o(window.localStorage),s=o(window.sessionStorage),c=r(a),l=r(s)},"63b8":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){return r})),n.d(t,"d",(function(){return s}));const i={large:"large",medium:"medium",small:"small"},o={default:"default",nav:"nav"},r={[o.default]:{[i.large]:{minWidth:1069,contentWidth:980},[i.medium]:{minWidth:736,maxWidth:1068,contentWidth:692},[i.small]:{minWidth:320,maxWidth:735,contentWidth:280}},[o.nav]:{[i.large]:{minWidth:1024},[i.medium]:{minWidth:768,maxWidth:1023},[i.small]:{minWidth:320,maxWidth:767}}},a={[i.small]:0,[i.medium]:1,[i.large]:2};function s(e,t){return a[e]>a[t]}},6842:function(e,t,n){"use strict";function i(e,t,n){let i,o=e,r=t;for("string"===typeof r&&(r=[r]),i=0;ie.json()).catch(()=>({}))}const c=(e,t)=>i(r,e,t)},"748c":function(e,t,n){"use strict";function i(e){return e.reduce((e,t)=>(t.traits.includes("dark")?e.dark.push(t):e.light.push(t),e),{light:[],dark:[]})}function o(e){const t=["1x","2x","3x"];return t.reduce((t,n)=>{const i=e.find(e=>e.traits.includes(n));return i?t.concat({density:n,src:i.url,size:i.size}):t},[])}function r(e){const t="/",n=new RegExp(t+"+","g");return e.join(t).replace(n,t)}function a(e){const{baseUrl:t}=window,n=Array.isArray(e)?r(e):e;return n&&"string"===typeof n&&!n.startsWith(t)&&n.startsWith("/")?r([t,n]):n}function s(e){return e?e.startsWith("/")?e:"/"+e:e}function c(e){return e?`url('${a(e)}')`:void 0}function l(e){return new Promise((t,n)=>{const i=new Image;i.src=e,i.onerror=n,i.onload=()=>t({width:i.width,height:i.height})})}n.d(t,"e",(function(){return i})),n.d(t,"a",(function(){return o})),n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return s})),n.d(t,"f",(function(){return c})),n.d(t,"b",(function(){return l}))},"7ac6":function(e,t,n){},"7d8d":function(e){e.exports=JSON.parse('{"view-in":"日本語で表示","continue-viewing":"日本語で表示を続ける","language":"言語","video":{"replay":"リプレイ","play":"再生","pause":"一時停止","watch":"概要のビデオを観る"},"tutorials":{"title":"チュートリアル | チュートリアル","step":"手順{number}","submit":"送信","next":"次へ","preview":{"title":"プレビューなし | プレビュー | プレビュー","no-preview-available-step":"この手順では利用可能なプレビューがありません。"},"nav":{"chapters":"章","current":"現在の{thing}"},"assessment":{"check-your-understanding":"理解度を確認する","success-message":"よくできました。このチュートリアルの問題にすべて回答しました。","answer-number-is":"問題番号{index}は","correct":"正解です","incorrect":"不正解です","next-question":"次の問題"},"project-files":"プロジェクトファイル","estimated-time":"予測時間","sections":{"chapter":"{number}章"},"question-of":"{total}問中の{index}問","section-of":"{total}件中の{number}件","overriding-title":"{title}の{newTitle}","time":{"format":"{number} {minutes}","minutes":{"full":"分 | 分 | {count}分","short":"分 | 分"},"hours":{"full":"時間 | 時間"}}},"documentation":{"title":"ドキュメント","nav":{"breadcrumbs":"パンくずリスト","menu":"メニュー","open-menu":"メニューを開く","close-menu":"メニューを閉じる"},"current-page":"現在のページは{title}です","card":{"learn-more":"詳しい情報","read-article":"記事を読む","start-tutorial":"チュートリアルを開始","view-api":"APIのコレクションを表示","view-symbol":"記号を表示","view-sample-code":"サンプルコードを表示"}},"aside-kind":{"beta":"ベータ版","experiment":"試験運用版","important":"重要","note":"注意","tip":"ヒント","warning":"警告","deprecated":"非推奨"},"change-type":{"added":"追加","modified":"変更","deprecated":"非推奨"},"verbs":{"hide":"非表示","show":"表示","close":"閉じる"},"sections":{"title":"セクション{number}","on-this-page":"このページの内容","topics":"トピック","default-implementations":"デフォルト実装","relationships":"関連項目","see-also":"参照","declaration":"宣言","details":"詳細","parameters":"パラメータ","possible-values":"使用できる値","parts":"パーツ","availability":"利用可能","resources":"リソース"},"metadata":{"details":{"name":"名前","key":"キー","type":"タイプ"},"beta":{"legal":"このドキュメントはベータ版のソフトウェアのもので、変更される可能性があります。","software":"ベータ版ソフトウェア"},"default-implementation":"デフォルト実装あり。| デフォルト実装あり。"},"availability":{"introduced-and-deprecated":"{name} {introducedAt}で導入され、{name} {deprecatedAt}で非推奨になりました","available-on":"{name} {introducedAt}以降で使用できます"},"more":"さらに表示","less":"表示を減らす","api-reference":"APIリファレンス","filter":{"title":"フィルタ","search-symbols":"{technology}でシンボルを検索","suggested-tags":"提案されたタグ | 提案されたタグ","selected-tags":"選択したタグ | 選択したタグ","add-tag":"タグを追加","tag-select-remove":"タグ。選択してリストから削除します。","navigate":"シンボルを移動するには、上下左右の矢印キーを押します。","siblings-label":"{total-siblings}個中{number-siblings}個のシンボルが{parent-siblings}の中にあります","parent-label":"{total-siblings}個中{number-siblings}個のシンボルが1個のシンボルを含む{parent-siblings}の中にあります | {total-siblings}個中{number-siblings}個のシンボルが{number-parent}個のシンボルを含む{parent-siblings}の中にあります","reset-filter":"フィルタをリセット"},"navigator":{"title":"ドキュメントナビゲータ","open-navigator":"ドキュメントナビゲータを開く","close-navigator":"ドキュメントナビゲータを閉じる","no-results":"結果が見つかりません。","no-children":"使用できるデータがありません。","error-fetching":"データを取得する際にエラーが起きました。","items-found":"項目が見つかりません | 1個の項目が見つかりました | {number}個の項目が見つかりましたTabキーを押すと項目をナビゲートできます。","navigator-is":"ナビゲータは{state}です","state":{"loading":"読み込み中","ready":"準備完了"},"tags":{"hide-deprecated":"非推奨の項目を非表示"}},"tab":{"request":"リクエスト","response":"レスポンス"},"required":"必須","parameters":{"default":"デフォルト","minimum":"最小","maximum":"最大","possible-types":"タイプ | 使用できるタイプ","possible-values":"値 | 使用できる値"},"content-type":"Content-Type: {value}","read-only":"読み出し専用","error":{"unknown":"原因不明のエラーが起きました。","image":"イメージを読み込めませんでした"},"color-scheme":{"select":"カラースキーム環境設定を選択","auto":"自動","dark":"ダーク","light":"ライト"},"accessibility":{"strike":{"start":"取り消し線テキストの開始","end":"取り消し線テキストの終了"},"code":{"start":"コードブロックの開始","end":"コードブロックの終了"},"skip-navigation":"ナビゲーションをスキップ"},"select-language":"このページの言語を選択","icons":{"clear":"消去","web-service-endpoint":"Webサービスのエンドポイント","search":"検索"},"formats":{"parenthesis":"({content})","colon":"{content}: "},"quicknav":{"button":{"label":"クイックナビゲーションを開く","title":"クリックするか「/」を入力すると素早く移動します"}}}')},"821b":function(e,t,n){"use strict";t["a"]={auto:"auto",dark:"dark",light:"light"}},"942d":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"e",(function(){return r})),n.d(t,"d",(function(){return a})),n.d(t,"a",(function(){return s}));const i=52,o=48,r="nav-sticky-anchor",a="nav-open-navigator",s={noClose:"noclose"}},"94a8":function(e){e.exports=JSON.parse('{"view-in":"View in English","continue-viewing":"Continue viewing in English","language":"Language","video":{"replay":"Replay","play":"Play","pause":"Pause","watch":"Watch intro video"},"tutorials":{"title":"Tutorial | Tutorials","step":"Step {number}","submit":"Submit","next":"Next","preview":{"title":"No Preview | Preview | Previews","no-preview-available-step":"No preview available for this step."},"nav":{"chapters":"Chapters","current":"Current {thing}"},"assessment":{"check-your-understanding":"Check Your Understanding","success-message":"Great job, you\'ve answered all the questions for this tutorial.","answer-number-is":"Answer number {index} is","correct":"correct","incorrect":"incorrect","next-question":"Next question"},"project-files":"Project files","estimated-time":"Estimated Time","sections":{"chapter":"Chapter {number}"},"question-of":"Question {index} of {total}","section-of":"{number} of {total}","overriding-title":"{newTitle} with {title}","time":{"format":"{number} {minutes}","minutes":{"full":"minute | minutes | {count} minutes","short":"min | mins"},"hours":{"full":"hour | hours"}}},"documentation":{"title":"Documentation","nav":{"breadcrumbs":"Breadcrumbs","menu":"Menu","open-menu":"Open Menu","close-menu":"Close Menu"},"current-page":"Current page is {title}","card":{"learn-more":"Learn More","read-article":"Read article","start-tutorial":"Start tutorial","view-api":"View API collection","view-symbol":"View symbol","view-sample-code":"View sample code"}},"aside-kind":{"beta":"Beta","experiment":"Experiment","important":"Important","note":"Note","tip":"Tip","warning":"Warning","deprecated":"Deprecated"},"change-type":{"added":"Added","modified":"Modified","deprecated":"Deprecated"},"verbs":{"hide":"Hide","show":"Show","close":"Close"},"sections":{"title":"Section {number}","on-this-page":"On this page","topics":"Topics","default-implementations":"Default Implementations","relationships":"Relationships","see-also":"See Also","declaration":"Declaration","details":"Details","parameters":"Parameters","possible-values":"Possible Values","parts":"Parts","availability":"Availability","resources":"Resources"},"metadata":{"details":{"name":"Name","key":"Key","type":"Type"},"beta":{"legal":"This documentation refers to beta software and may be changed.","software":"Beta Software"},"default-implementation":"Default implementation provided. | Default implementations provided."},"availability":{"introduced-and-deprecated":"Introduced in {name} {introducedAt} and deprecated in {name} {deprecatedAt}","available-on":"Available on {name} {introducedAt} and later"},"more":"More","less":"Less","api-reference":"API Reference","filter":{"title":"Filter","search-symbols":"Search symbols in {technology}","suggested-tags":"Suggested tag | Suggested tags","selected-tags":"Selected tag | Selected tags","add-tag":"Add tag","tag-select-remove":"Tag. Select to remove from list.","navigate":"To navigate the symbols, press Up Arrow, Down Arrow, Left Arrow or Right Arrow","siblings-label":"{number-siblings} of {total-siblings} symbols inside {parent-siblings}","parent-label":"{number-siblings} of {total-siblings} symbols inside {parent-siblings} containing one symbol | {number-siblings} of {total-siblings} symbols inside {parent-siblings} containing {number-parent} symbols","reset-filter":"Reset Filter"},"navigator":{"title":"Documentation Navigator","open-navigator":"Open Documentation Navigator","close-navigator":"Close Documentation Navigator","no-results":"No results found.","no-children":"No data available.","error-fetching":"There was an error fetching the data.","items-found":"No items were found | 1 item was found | {number} items were found. Tab back to navigate through them.","navigator-is":"Navigator is {state}","state":{"loading":"loading","ready":"ready"},"tags":{"hide-deprecated":"Hide Deprecated"}},"tab":{"request":"Request","response":"Response"},"required":"Required","parameters":{"default":"Default","minimum":"Minimum","maximum":"Maximum","possible-types":"Type | Possible types","possible-values":"Value | Possible Values"},"content-type":"Content-Type: {value}","read-only":"Read-only","error":{"unknown":"An unknown error occurred.","image":"Image failed to load","not-found":"The page you\'re looking for can\'t be found."},"color-scheme":{"select":"Select a color scheme preference","auto":"Auto","dark":"Dark","light":"Light"},"accessibility":{"strike":{"start":"start of stricken text","end":"end of stricken text"},"code":{"start":"start of code block","end":"end of code block"},"skip-navigation":"Skip Navigation","in-page-link":"in page link"},"select-language":"Select the language for this page","icons":{"clear":"Clear","web-service-endpoint":"Web Service Endpoint","search":"Search"},"formats":{"parenthesis":"({content})","colon":"{content}: "},"quicknav":{"button":{"label":"Open Quick Navigation","title":"Click or type / for quick navigation"}}}')},9895:function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}));const i="not-found",o="documentation-topic"},9923:function(e,t,n){"use strict";n.r(t),n.d(t,"defaultLocale",(function(){return a})),n.d(t,"messages",(function(){return s}));var i=n("94a8"),o=n("d9c4"),r=n("7d8d");const a="en-US",s={"en-US":i,"zh-CN":o,"ja-JP":r}},"9b56":function(e,t,n){"use strict";n.d(t,"a",(function(){return s})),n.d(t,"b",(function(){return l})),n.d(t,"c",(function(){return u}));var i=n("3ca7"),o=n("9923"),r=n("2788");const a=i.reduce((e,t)=>({...e,[t.slug]:t.code}),{});function s(e){return a[e]}function c(e){return!!a[e]}function l(e){return{params:{locale:e===o["defaultLocale"]?void 0:e}}}function u(e=o["defaultLocale"],t){if(!c(e))return;t.$i18n.locale=e;const n=s(e);Object(r["b"])(n)}},"9c0c":function(e,t,n){},"9dba":function(e,t,n){"use strict";n("3502")},a2be:function(e,t,n){"use strict";n("01da")},a3e8:function(e,t,n){},a919:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"close-icon",attrs:{viewBox:"0 0 14 14",themeId:"close"}},[n("path",{attrs:{d:"M12.73,0l1.27,1.27-5.74,5.73,5.72,5.72-1.27,1.27-5.72-5.72L1.28,13.99,.01,12.72,5.72,7.01,0,1.28,1.27,.01,6.99,5.73,12.73,0Z"}})])},o=[],r=n("be08"),a={name:"CloseIcon",components:{SVGIcon:r["a"]}},s=a,c=n("2877"),l=Object(c["a"])(s,i,o,!1,null,null,null);t["a"]=l.exports},be08:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("svg",{staticClass:"svg-icon",attrs:{"aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[e.themeOverrideURL?n("use",{attrs:{href:e.themeOverrideURL+"#"+e.themeId,width:"100%",height:"100%"}}):e._t("default")],2)},o=[],r=n("6842"),a={name:"SVGIcon",props:{themeId:{type:String,required:!1},iconUrl:{type:String,default:null}},computed:{themeOverrideURL:({iconUrl:e,themeId:t})=>e||Object(r["c"])(["theme","icons",t],void 0)}},s=a,c=(n("c2c4"),n("2877")),l=Object(c["a"])(s,i,o,!1,null,"33d3200a",null);t["a"]=l.exports},c2c4:function(e,t,n){"use strict";n("161e")},c83d:function(e,t,n){},d26a:function(e,t,n){"use strict";n.d(t,"d",(function(){return r})),n.d(t,"b",(function(){return a})),n.d(t,"a",(function(){return s})),n.d(t,"c",(function(){return c})),n.d(t,"e",(function(){return l}));var i=n("748c"),o={input:"input",tags:"tags"};function r(e={}){return Object.entries(e).reduce((e,[t,n])=>n?e.concat(`${encodeURIComponent(t)}=${encodeURIComponent(n)}`):e,[]).join("&")}function a(e,{changes:t,language:n,context:i}={}){const[o,a]=e.split("#"),s=o.match(/\?.*/),c=r({changes:t,language:n,context:i}),l=s?"&":"?",u=a?o:e,h=c?`${l}${c}`:"",d=a?"#"+a:"";return`${u}${h}${d}`}function s(e,t){const{query:{changes:n,[o.input]:i,[o.tags]:r,...a}={}}=e,{query:{changes:s,[o.input]:c,[o.tags]:l,...u}={}}=t;return e.name===t.name&&JSON.stringify({path:e.path,query:a})===JSON.stringify({path:t.path,query:u})}function c(e,t=window.location.href){return new URL(Object(i["c"])(e),t)}function l(e,t){return c(e,t).href}},d369:function(e,t,n){"use strict";var i=n("5d2d");const o={preferredColorScheme:"developer.setting.preferredColorScheme",preferredLocale:"developer.setting.preferredLocale",preferredLanguage:"docs.setting.preferredLanguage"},r={preferredColorScheme:"docs.setting.preferredColorScheme"};t["a"]=Object.defineProperties({},Object.keys(o).reduce((e,t)=>({...e,[t]:{get:()=>{const e=r[t],n=i["a"].getItem(o[t]);return e?n||i["a"].getItem(e):n},set:e=>i["a"].setItem(o[t],e)}}),{}))},d9c4:function(e){e.exports=JSON.parse('{"view-in":"以中文查看","continue-viewing":"继续以中文查看","language":"语言","video":{"replay":"重新播放","play":"播放","pause":"暂停","watch":"观看介绍视频"},"tutorials":{"title":"教程","step":"第 {number} 步","submit":"提交","next":"下一步","preview":{"title":"无预览 | 预览","no-preview-available-step":"这一步没有预览。"},"nav":{"chapters":"章节","current":"当前{thing}"},"assessment":{"check-your-understanding":"检查你的理解程度","success-message":"很棒,你回答了此教程的所有问题。","answer-number-is":"第 {index} 个答案","correct":"正确","incorrect":"错误","next-question":"下一个问题"},"project-files":"项目文件","estimated-time":"预计时间","sections":{"chapter":"第 {number} 章"},"question-of":"第 {index} 个问题(共 {total} 个)","section-of":"{number}/{total}","overriding-title":"{newTitle}{title}","time":{"format":"{number} {minutes}","minutes":{"full":"分钟 | {count} 分钟","short":"分钟"},"hours":{"full":"小时"}}},"documentation":{"title":"文档","nav":{"breadcrumbs":"面包屑导航","menu":"菜单","open-menu":"打开菜单","close-menu":"关闭菜单"},"current-page":"当前页面为:{title}","card":{"learn-more":"进一步了解","read-article":"阅读文章","start-tutorial":"开始教程","view-api":"查看 API 集合","view-symbol":"查看符号","view-sample-code":"查看示例代码"}},"aside-kind":{"beta":"Beta 版","experiment":"试验","important":"重要事项","note":"注","tip":"提示","warning":"警告","deprecated":"已弃用"},"change-type":{"added":"已添加","modified":"已修改","deprecated":"已弃用"},"verbs":{"hide":"隐藏","show":"显示","close":"关闭"},"sections":{"title":"第 {number} 部分","on-this-page":"在此页面上","topics":"主题","default-implementations":"默认实现","relationships":"关系","see-also":"另请参阅","declaration":"声明","details":"详细信息","parameters":"参数","possible-values":"可能值","parts":"部件","availability":"可用性","resources":"资源"},"metadata":{"details":{"name":"名称","key":"密钥","type":"类型"},"beta":{"legal":"此文档涉及 Beta 版软件且可能会改动。","software":"Beta 版软件"},"default-implementation":"提供默认实现。| 提供默认实现方法。"},"availability":{"introduced-and-deprecated":"{name} {introducedAt} 中引入,{name} {deprecatedAt} 中弃用","available-on":"{name} {introducedAt} 及更高版本中可用"},"more":"更多","less":"更少","api-reference":"API 参考","filter":{"title":"过滤","search-symbols":"在 {technology} 搜索符号","suggested-tags":"建议标签","selected-tags":"所选标签","add-tag":"添加标签","tag-select-remove":"标签。选择以从列表中移除。","navigate":"若要导航符号,请按下上箭头、下箭头、左箭头或右箭头。","siblings-label":"{parent-siblings} 内含 {number-siblings} 个符号(共 {total-siblings} 个)","parent-label":"{parent-siblings} 内含 {number-siblings} 个符号(共 {total-siblings} 个)包含一个符号 | {parent-siblings} 内含 {number-siblings} 个符号(共 {total-siblings} 个)包含 {number-parent} 个符号","reset-filter":"还原过滤条件"},"navigator":{"title":"文档导航器","open-navigator":"打开文档导航器","close-navigator":"关闭文档导航器","no-results":"未找到结果。","no-children":"无可用数据。","error-fetching":"获取数据时出错。","items-found":"未找到任何项目 | 找到 1 个项目 | 找到 {number} 个项目。按下 Tab 键导航。","navigator-is":"导航器{state}","state":{"loading":"正在载入","ready":"准备就绪"},"tags":{"hide-deprecated":"隐藏已弃用"}},"tab":{"request":"请求","response":"回复"},"required":"必需","parameters":{"default":"默认","minimum":"最小值","maximum":"最大值","possible-types":"类型 | 可能类型","possible-values":"值 | 可能值"},"content-type":"内容类型:{value}","read-only":"只读","error":{"unknown":"出现未知错误。","image":"图像无法载入"},"color-scheme":{"select":"选择首选颜色方案","auto":"自动","dark":"深色","light":"浅色"},"accessibility":{"strike":{"start":"删除线文本开始","end":"删除线文本结束"},"code":{"start":"代码块开头","end":"代码块结尾"},"skip-navigation":"跳过导航"},"select-language":"选择此页面的语言","icons":{"clear":"清除","web-service-endpoint":"网络服务端点","search":"搜索"},"formats":{"parenthesis":"({content})","colon":"{content}: "},"quicknav":{"button":{"label":"打开快速导航","title":"点按或键入 / 进行快速导航"}}}')},dd18:function(e,t,n){"use strict";t["a"]={eager:"eager",lazy:"lazy"}},e425:function(e,t,n){"use strict";var i=n("821b"),o=n("dd18"),r=n("d369"),a=n("3ca7");const s="undefined"!==typeof window.matchMedia&&[i["a"].light,i["a"].dark,"no-preference"].some(e=>window.matchMedia(`(prefers-color-scheme: ${e})`).matches),c=s?i["a"].auto:i["a"].light;t["a"]={state:{imageLoadingStrategy:"ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET?o["a"].eager:o["a"].lazy,preferredColorScheme:r["a"].preferredColorScheme||c,preferredLocale:r["a"].preferredLocale,supportsAutoColorScheme:s,systemColorScheme:i["a"].light,availableLocales:[]},reset(){this.state.imageLoadingStrategy="ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET?o["a"].eager:o["a"].lazy,this.state.preferredColorScheme=r["a"].preferredColorScheme||c,this.state.supportsAutoColorScheme=s,this.state.systemColorScheme=i["a"].light},setImageLoadingStrategy(e){this.state.imageLoadingStrategy=e},setPreferredColorScheme(e){this.state.preferredColorScheme=e,r["a"].preferredColorScheme=e},setAllLocalesAreAvailable(){const e=a.map(e=>e.code);this.state.availableLocales=e},setAvailableLocales(e=[]){this.state.availableLocales=e},setPreferredLocale(e){this.state.preferredLocale=e,r["a"].preferredLocale=this.state.preferredLocale},setSystemColorScheme(e){this.state.systemColorScheme=e},syncPreferredColorScheme(){r["a"].preferredColorScheme&&r["a"].preferredColorScheme!==this.state.preferredColorScheme&&(this.state.preferredColorScheme=r["a"].preferredColorScheme)}}},e487:function(e,t,n){},e759:function(e,t,n){"use strict";n("3be4")},e9e6:function(e,t,n){"use strict";n("7ac6")},ed78:function(e,t,n){"use strict";n("c83d")},ed96:function(e,t,n){n.p=window.baseUrl},f161:function(e,t,n){"use strict";n.r(t);n("ed96");var i=n("2b0e"),o=n("a925"),r=n("8c4f"),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:{fromkeyboard:e.fromKeyboard,hascustomheader:e.hasCustomHeader},attrs:{id:"app"}},[n("div",{attrs:{id:e.AppTopID}}),e.isTargetIDE?e._e():n("a",{attrs:{href:"#main",id:"skip-nav"}},[e._v(e._s(e.$t("accessibility.skip-navigation")))]),n("InitialLoadingPlaceholder"),e._t("header",(function(){return[e.enablei18n?n("SuggestLang"):e._e(),e.hasCustomHeader?n("custom-header",{attrs:{"data-color-scheme":e.preferredColorScheme}}):e._e()]}),{isTargetIDE:e.isTargetIDE}),n("div",{attrs:{id:e.baseNavStickyAnchorId}}),e._t("default",(function(){return[n("router-view",{staticClass:"router-content"}),e.hasCustomFooter?n("custom-footer",{attrs:{"data-color-scheme":e.preferredColorScheme}}):e.isTargetIDE?e._e():n("Footer",{scopedSlots:e._u([{key:"default",fn:function(t){var i=t.className;return[e.enablei18n?n("div",{class:i},[n("LocaleSelector")],1):e._e()]}}])})]}),{isTargetIDE:e.isTargetIDE}),e._t("footer",null,{isTargetIDE:e.isTargetIDE})],2)},s=[],c=n("e425"),l=n("821b"),u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("footer",{staticClass:"footer"},[n("div",{staticClass:"row"},[n("ColorSchemeToggle")],1),e._t("default",null,{className:"row"})],2)},h=[],d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"color-scheme-toggle",attrs:{"aria-label":e.$t("color-scheme.select"),role:"radiogroup"}},e._l(e.options,(function(t){return n("label",{key:t},[n("input",{attrs:{type:"radio"},domProps:{checked:t==e.preferredColorScheme,value:t},on:{input:e.setPreferredColorScheme}}),n("div",{staticClass:"text"},[e._v(e._s(e.$t("color-scheme."+t)))])])})),0)},g=[],m={name:"ColorSchemeToggle",data:()=>({appState:c["a"].state}),computed:{options:({supportsAutoColorScheme:e})=>[l["a"].light,l["a"].dark,...e?[l["a"].auto]:[]],preferredColorScheme:({appState:e})=>e.preferredColorScheme,supportsAutoColorScheme:({appState:e})=>e.supportsAutoColorScheme},methods:{setPreferredColorScheme:e=>{c["a"].setPreferredColorScheme(e.target.value)}},watch:{preferredColorScheme:{immediate:!0,handler(e){document.body.dataset.colorScheme=e}}}},p=m,f=(n("9dba"),n("2877")),b=Object(f["a"])(p,d,g,!1,null,"02a6f6ec",null),v=b.exports,w={name:"Footer",components:{ColorSchemeToggle:v}},y=w,j=(n("e9e6"),Object(f["a"])(y,u,h,!1,null,"4e049dbd",null)),S=j.exports,E=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.loaded?e._e():n("div",{staticClass:"InitialLoadingPlaceholder",attrs:{id:"loading-placeholder"}})},C=[],_={name:"InitialLoadingPlaceholder",data(){return{loaded:!1}},created(){const e=()=>{this.loaded=!0};this.$router.onReady(e,e)}},P=_,k=(n("48b1"),Object(f["a"])(P,E,C,!1,null,"35c356b6",null)),L=k.exports,A=n("942d"),T=n("6842");function x(e,t){return e&&"object"===typeof e&&Object.prototype.hasOwnProperty.call(e,t)&&"string"===typeof e[t]}function O(e,t,n,i){if(!t||"object"!==typeof t||i&&(x(t,"light")||x(t,"dark"))){let o=t;if(x(t,i)&&(o=t[i]),"object"===typeof o)return;n[e]=o}else Object.entries(t).forEach(([t,o])=>{const r=[e,t].join("-");O(r,o,n,i)})}function I(e,t="light"){const n={},i=e||{};return O("-",i,n,t),n}var $=n("4009"),D=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.displaySuggestLang?n("div",{staticClass:"suggest-lang"},[n("div",{staticClass:"suggest-lang__wrapper"},[n("router-link",{staticClass:"suggest-lang__link",attrs:{to:e.getLocaleParam(e.preferredLocale),lang:e.getCodeForSlug(e.preferredLocale)},nativeOn:{click:function(t){return e.setPreferredLocale(e.preferredLocale)}}},[e._v(e._s(e.$i18n.messages[e.preferredLocale]["view-in"])),n("InlineChevronRightIcon",{staticClass:"icon-inline"})],1),n("div",{staticClass:"suggest-lang__close-icon-wrapper"},[n("button",{staticClass:"suggest-lang__close-icon-button",attrs:{"aria-label":e.$t("continue-viewing")},on:{click:function(t){return e.setPreferredLocale(e.$i18n.locale)}}},[n("CloseIcon",{staticClass:"icon-inline"})],1)])],1)]):e._e()},N=[],R=n("34b0"),U=n("a919"),q=n("3ca7"),V=n("9b56"),B={name:"SuggestLang",components:{InlineChevronRightIcon:R["a"],CloseIcon:U["a"]},computed:{preferredLocale:()=>{const e=c["a"].state.preferredLocale;if(e)return e;const t=q.find(e=>{const t=e.code.split("-")[0],n=window.navigator.language.split("-")[0];return n===t});return t?t.slug:null},displaySuggestLang:({preferredLocale:e,$i18n:t})=>e&&t.locale!==e},methods:{setPreferredLocale:e=>{c["a"].setPreferredLocale(e)},getCodeForSlug:V["a"],getLocaleParam:V["b"]}},M=B,W=(n("ed78"),Object(f["a"])(M,D,N,!1,null,"ad72c62e",null)),F=W.exports,G=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"locale-selector"},[n("select",{attrs:{"aria-label":e.$t("select-language")},domProps:{value:e.$i18n.locale},on:{change:e.updateRouter}},e._l(e.locales,(function(t){var i=t.slug,o=t.name,r=t.code;return n("option",{key:i,attrs:{lang:r},domProps:{value:i}},[e._v(" "+e._s(o)+" ")])})),0),n("ChevronThickIcon",{staticClass:"icon-inline"})],1)},H=[],J=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"chevron-thick-icon",attrs:{viewBox:"0 0 14 10.5",themeId:"chevron-thick"}},[n("path",{attrs:{d:"M12.43,0l1.57,1.22L7,10.5,0,1.23,1.58,0,7,7,12.43,0Z"}})])},K=[],z=n("be08"),Y={name:"ChevronThickIcon",components:{SVGIcon:z["a"]}},Q=Y,Z=Object(f["a"])(Q,J,K,!1,null,null,null),X=Z.exports,ee={name:"LocaleSelector",components:{ChevronThickIcon:X},methods:{updateRouter({target:{value:e}}){this.$router.push(Object(V["b"])(e)),c["a"].setPreferredLocale(e),Object(V["c"])(e,this)}},computed:{availableLocales:()=>c["a"].state.availableLocales,locales:({availableLocales:e})=>q.filter(({code:t})=>e.includes(t))}},te=ee,ne=(n("e759"),Object(f["a"])(te,G,H,!1,null,"7e4d9b69",null)),ie=ne.exports,oe={name:"CoreApp",components:{Footer:S,InitialLoadingPlaceholder:L,SuggestLang:F,LocaleSelector:ie},provide(){return{isTargetIDE:this.isTargetIDE,performanceMetricsEnabled:"true"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_PERFORMANCE_ENABLED}},data(){return{AppTopID:$["a"],appState:c["a"].state,fromKeyboard:!1,isTargetIDE:"ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,themeSettings:T["d"],baseNavStickyAnchorId:A["e"]}},computed:{currentColorScheme:({appState:e})=>e.systemColorScheme,preferredColorScheme:({appState:e})=>e.preferredColorScheme,availableLocales:({appState:e})=>e.availableLocales,CSSCustomProperties:({currentColorScheme:e,preferredColorScheme:t,themeSettings:n})=>I(n.theme,t===l["a"].auto?e:t),hasCustomHeader:()=>!!window.customElements.get("custom-header"),hasCustomFooter:()=>!!window.customElements.get("custom-footer"),enablei18n:({availableLocales:e})=>Object(T["c"])(["features","docs","i18n","enable"],!1)&&e.length>1},props:{enableThemeSettings:{type:Boolean,default:!0}},watch:{CSSCustomProperties:{immediate:!0,handler(e){this.detachStylesFromRoot(e),this.attachStylesToRoot(e)}}},async created(){window.addEventListener("keydown",this.onKeyDown),this.$bridge.on("navigation",this.handleNavigationRequest),this.enableThemeSettings&&Object.assign(this.themeSettings,await Object(T["b"])()),window.addEventListener("pageshow",this.syncPreferredColorScheme),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("pageshow",this.syncPreferredColorScheme)})},mounted(){(document.querySelector(".footer-current-year")||{}).innerText=(new Date).getFullYear(),this.attachColorSchemeListeners()},beforeDestroy(){this.fromKeyboard?window.removeEventListener("mousedown",this.onMouseDown):window.removeEventListener("keydown",this.onKeyDown),this.$bridge.off("navigation",this.handleNavigationRequest),this.detachStylesFromRoot(this.CSSCustomProperties)},methods:{onKeyDown(){this.fromKeyboard=!0,window.addEventListener("mousedown",this.onMouseDown),window.removeEventListener("keydown",this.onKeyDown)},onMouseDown(){this.fromKeyboard=!1,window.addEventListener("keydown",this.onKeyDown),window.removeEventListener("mousedown",this.onMouseDown)},handleNavigationRequest(e){this.$router.push(e)},attachColorSchemeListeners(){if(!window.matchMedia)return;const e=window.matchMedia("(prefers-color-scheme: dark)");e.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{e.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(e)},onColorSchemePreferenceChange({matches:e}){const t=e?l["a"].dark:l["a"].light;c["a"].setSystemColorScheme(t)},attachStylesToRoot(e){const t=document.body;Object.entries(e).filter(([,e])=>Boolean(e)).forEach(([e,n])=>{t.style.setProperty(e,n)})},detachStylesFromRoot(e){const t=document.body;Object.entries(e).forEach(([e])=>{t.style.removeProperty(e)})},syncPreferredColorScheme(){c["a"].syncPreferredColorScheme()}}},re=oe,ae=(n("5c0b"),n("a2be"),Object(f["a"])(re,a,s,!1,null,"7d594ed9",null)),se=ae.exports;class ce{constructor(){this.$send=()=>{}}send(e){this.$send(e)}}class le{constructor(){const{webkit:{messageHandlers:{bridge:e={}}={}}={}}=window;this.bridge=e;const{postMessage:t=(()=>{})}=e;this.$send=t.bind(e)}send(e){this.$send(e)}}class ue{constructor(e=new ce){this.backend=e,this.listeners={}}send(e){this.backend.send(e)}receive(e){this.emit(e.type,e.data)}emit(e,t){this.listeners[e]&&this.listeners[e].forEach(e=>e(t))}on(e,t){this.listeners[e]||(this.listeners[e]=new Set),this.listeners[e].add(t)}off(e,t){this.listeners[e]&&this.listeners[e].delete(t)}}var he={install(e,t){let n;n=t.performanceMetricsEnabled||"ide"===t.appTarget?new le:new ce,e.prototype.$bridge=new ue(n)}};function de(e){return"custom-"+e}function ge(e){return class extends HTMLElement{constructor(){super();const t=this.attachShadow({mode:"open"}),n=e.content.cloneNode(!0);t.appendChild(n)}}}function me(e){const t=de(e),n=document.getElementById(t);n&&window.customElements.define(t,ge(n))}function pe(e,t={names:["header","footer"]}){const{names:n}=t;e.config.ignoredElements=/^custom-/,n.forEach(me)}function fe(e,t){const{value:n=!1}=t;e.style.display=n?"none":""}var be={hide:fe};function ve(e,{performanceMetrics:t=!1}={}){e.config.productionTip=!1,e.use(pe),e.directive("hide",be.hide),e.use(he,{appTarget:Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,performanceMetricsEnabled:t}),window.bridge=e.prototype.$bridge,e.config.performance=t}var we=n("9895"),ye=n("63b8"),je=n("3908"),Se=n("002d"),Ee=n("d26a");const Ce=10;function _e(e){const{name:t}=e,n=t.includes(we["a"]);return n?Ce:0}function Pe(){const{location:e}=window;return e.pathname+e.search+e.hash}function ke(){const e=Math.max(document.documentElement.clientWidth||0,window.innerWidth||0);return ePromise.all([n.e("documentation-topic~topic~tutorials-overview"),n.e("tutorials-overview")]).then(n.bind(null,"f025"))},{path:"/tutorials/:id/*",name:"topic",component:()=>Promise.all([n.e("documentation-topic~topic~tutorials-overview"),n.e("documentation-topic~topic"),n.e("topic")]).then(n.bind(null,"3213"))},{path:"/documentation/*",name:we["a"],component:()=>Promise.all([n.e("documentation-topic~topic~tutorials-overview"),n.e("chunk-c0335d80"),n.e("documentation-topic~topic"),n.e("documentation-topic")]).then(n.bind(null,"f8ac"))},{path:"*",name:we["b"],component:Ke},{path:"*",name:"server-error",component:Me}];const Ye=[{pathPrefix:"/:locale?",nameSuffix:"-locale"}];function Qe(e,t=[],n=Ye){return n.reduce((n,i)=>n.concat(e.filter(e=>!t.includes(e.name)).map(e=>({...e,path:i.pathPrefix+e.path,name:e.name+i.nameSuffix}))),[])}const Ze=[...Qe(ze,[we["b"]]),...ze];function Xe(e={}){const t=new r["a"]({mode:"history",base:T["a"],scrollBehavior:Le,...e,routes:e.routes||Ze});return t.onReady(()=>{"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual"),Ae()}),"ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET&&t.onError(e=>{const{route:n={path:"/"}}=e;t.replace({name:"server-error",params:[n.path]})}),window.addEventListener("unload",Te),t}var et=n("9923");function tt(e=et){const{defaultLocale:t,messages:n,dateTimeFormats:i={}}=e,r=new o["a"]({dateTimeFormats:i,locale:t,fallbackLocale:t,messages:n});return r}i["default"].use(ve),i["default"].use(r["a"]),i["default"].use(o["a"]),new i["default"]({router:Xe(),render:e=>e(se),i18n:tt()}).$mount("#app")}}); \ No newline at end of file diff --git a/docs/js/jazzy.js b/docs/js/jazzy.js new file mode 100755 index 000000000..198441660 --- /dev/null +++ b/docs/js/jazzy.js @@ -0,0 +1,74 @@ +// Jazzy - https://github.com/realm/jazzy +// Copyright Realm Inc. +// SPDX-License-Identifier: MIT + +window.jazzy = {'docset': false} +if (typeof window.dash != 'undefined') { + document.documentElement.className += ' dash' + window.jazzy.docset = true +} +if (navigator.userAgent.match(/xcode/i)) { + document.documentElement.className += ' xcode' + window.jazzy.docset = true +} + +function toggleItem($link, $content) { + var animationDuration = 300; + $link.toggleClass('token-open'); + $content.slideToggle(animationDuration); +} + +function itemLinkToContent($link) { + return $link.parent().parent().next(); +} + +// On doc load + hash-change, open any targetted item +function openCurrentItemIfClosed() { + if (window.jazzy.docset) { + return; + } + var $link = $(`a[name="${location.hash.substring(1)}"]`).nextAll('.token'); + $content = itemLinkToContent($link); + if ($content.is(':hidden')) { + toggleItem($link, $content); + } +} + +$(openCurrentItemIfClosed); +$(window).on('hashchange', openCurrentItemIfClosed); + +// On item link ('token') click, toggle its discussion +$('.token').on('click', function(event) { + if (window.jazzy.docset) { + return; + } + var $link = $(this); + toggleItem($link, itemLinkToContent($link)); + + // Keeps the document from jumping to the hash. + var href = $link.attr('href'); + if (history.pushState) { + history.pushState({}, '', href); + } else { + location.hash = href; + } + event.preventDefault(); +}); + +// Clicks on links to the current, closed, item need to open the item +$("a:not('.token')").on('click', function() { + if (location == this.href) { + openCurrentItemIfClosed(); + } +}); + +// KaTeX rendering +if ("katex" in window) { + $($('.math').each( (_, element) => { + katex.render(element.textContent, element, { + displayMode: $(element).hasClass('m-block'), + throwOnError: false, + trust: true + }); + })) +} diff --git a/docs/js/jazzy.search.js b/docs/js/jazzy.search.js new file mode 100644 index 000000000..359cdbb8b --- /dev/null +++ b/docs/js/jazzy.search.js @@ -0,0 +1,74 @@ +// Jazzy - https://github.com/realm/jazzy +// Copyright Realm Inc. +// SPDX-License-Identifier: MIT + +$(function(){ + var $typeahead = $('[data-typeahead]'); + var $form = $typeahead.parents('form'); + var searchURL = $form.attr('action'); + + function displayTemplate(result) { + return result.name; + } + + function suggestionTemplate(result) { + var t = '
'; + t += '' + result.name + ''; + if (result.parent_name) { + t += '' + result.parent_name + ''; + } + t += '
'; + return t; + } + + $typeahead.one('focus', function() { + $form.addClass('loading'); + + $.getJSON(searchURL).then(function(searchData) { + const searchIndex = lunr(function() { + this.ref('url'); + this.field('name'); + this.field('abstract'); + for (const [url, doc] of Object.entries(searchData)) { + this.add({url: url, name: doc.name, abstract: doc.abstract}); + } + }); + + $typeahead.typeahead( + { + highlight: true, + minLength: 3, + autoselect: true + }, + { + limit: 10, + display: displayTemplate, + templates: { suggestion: suggestionTemplate }, + source: function(query, sync) { + const lcSearch = query.toLowerCase(); + const results = searchIndex.query(function(q) { + q.term(lcSearch, { boost: 100 }); + q.term(lcSearch, { + boost: 10, + wildcard: lunr.Query.wildcard.TRAILING + }); + }).map(function(result) { + var doc = searchData[result.ref]; + doc.url = result.ref; + return doc; + }); + sync(results); + } + } + ); + $form.removeClass('loading'); + $typeahead.trigger('focus'); + }); + }); + + var baseURL = searchURL.slice(0, -"search.json".length); + + $typeahead.on('typeahead:select', function(e, result) { + window.location = baseURL + result.url; + }); +}); diff --git a/docs/js/jquery.min.js b/docs/js/jquery.min.js new file mode 100644 index 000000000..7f37b5d99 --- /dev/null +++ b/docs/js/jquery.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 00){var c=e.utils.clone(r)||{};c.position=[a,l],c.index=s.length,s.push(new e.Token(i.slice(a,o),c))}a=o+1}}return s},e.tokenizer.separator=/[\s\-]+/,e.Pipeline=function(){this._stack=[]},e.Pipeline.registeredFunctions=Object.create(null),e.Pipeline.registerFunction=function(t,r){r in this.registeredFunctions&&e.utils.warn("Overwriting existing registered function: "+r),t.label=r,e.Pipeline.registeredFunctions[t.label]=t},e.Pipeline.warnIfFunctionNotRegistered=function(t){var r=t.label&&t.label in this.registeredFunctions;r||e.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",t)},e.Pipeline.load=function(t){var r=new e.Pipeline;return t.forEach(function(t){var i=e.Pipeline.registeredFunctions[t];if(!i)throw new Error("Cannot load unregistered function: "+t);r.add(i)}),r},e.Pipeline.prototype.add=function(){var t=Array.prototype.slice.call(arguments);t.forEach(function(t){e.Pipeline.warnIfFunctionNotRegistered(t),this._stack.push(t)},this)},e.Pipeline.prototype.after=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");i+=1,this._stack.splice(i,0,r)},e.Pipeline.prototype.before=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");this._stack.splice(i,0,r)},e.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);t!=-1&&this._stack.splice(t,1)},e.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=n),s!=e);)i=r-t,n=t+Math.floor(i/2),s=this.elements[2*n];return s==e?2*n:s>e?2*n:sa?l+=2:o==a&&(t+=r[u+1]*i[l+1],u+=2,l+=2);return t},e.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},e.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var o,a=s.str.charAt(0);a in s.node.edges?o=s.node.edges[a]:(o=new e.TokenSet,s.node.edges[a]=o),1==s.str.length&&(o["final"]=!0),n.push({node:o,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(0!=s.editsRemaining){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new e.TokenSet;s.node.edges["*"]=u}if(0==s.str.length&&(u["final"]=!0),n.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&n.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),1==s.str.length&&(s.node["final"]=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new e.TokenSet;s.node.edges["*"]=l}1==s.str.length&&(l["final"]=!0),n.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var c,h=s.str.charAt(0),d=s.str.charAt(1);d in s.node.edges?c=s.node.edges[d]:(c=new e.TokenSet,s.node.edges[d]=c),1==s.str.length&&(c["final"]=!0),n.push({node:c,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return i},e.TokenSet.fromString=function(t){for(var r=new e.TokenSet,i=r,n=0,s=t.length;n=e;t--){var r=this.uncheckedNodes[t],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r["char"]]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}},e.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},e.Index.prototype.search=function(t){return this.query(function(r){var i=new e.QueryParser(t,r);i.parse()})},e.Index.prototype.query=function(t){for(var r=new e.Query(this.fields),i=Object.create(null),n=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},e.Builder.prototype.k1=function(e){this._k1=e},e.Builder.prototype.add=function(t,r){var i=t[this._ref],n=Object.keys(this._fields);this._documents[i]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return e.QueryLexer.EOS;var t=this.str.charAt(this.pos);return this.pos+=1,t},e.QueryLexer.prototype.width=function(){return this.pos-this.start},e.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},e.QueryLexer.prototype.backup=function(){this.pos-=1},e.QueryLexer.prototype.acceptDigitRun=function(){var t,r;do t=this.next(),r=t.charCodeAt(0);while(r>47&&r<58);t!=e.QueryLexer.EOS&&this.backup()},e.QueryLexer.prototype.more=function(){return this.pos1&&(t.backup(),t.emit(e.QueryLexer.TERM)),t.ignore(),t.more())return e.QueryLexer.lexText},e.QueryLexer.lexEditDistance=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.EDIT_DISTANCE),e.QueryLexer.lexText},e.QueryLexer.lexBoost=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.BOOST),e.QueryLexer.lexText},e.QueryLexer.lexEOS=function(t){t.width()>0&&t.emit(e.QueryLexer.TERM)},e.QueryLexer.termSeparator=e.tokenizer.separator,e.QueryLexer.lexText=function(t){for(;;){var r=t.next();if(r==e.QueryLexer.EOS)return e.QueryLexer.lexEOS;if(92!=r.charCodeAt(0)){if(":"==r)return e.QueryLexer.lexField;if("~"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexEditDistance;if("^"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexBoost;if("+"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if("-"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if(r.match(e.QueryLexer.termSeparator))return e.QueryLexer.lexTerm}else t.escapeCharacter()}},e.QueryParser=function(t,r){this.lexer=new e.QueryLexer(t),this.query=r,this.currentClause={},this.lexemeIdx=0},e.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var t=e.QueryParser.parseClause;t;)t=t(this);return this.query},e.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},e.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},e.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},e.QueryParser.parseClause=function(t){var r=t.peekLexeme();if(void 0!=r)switch(r.type){case e.QueryLexer.PRESENCE:return e.QueryParser.parsePresence;case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(i+=" with value '"+r.str+"'"),new e.QueryParseError(i,r.start,r.end)}},e.QueryParser.parsePresence=function(t){var r=t.consumeLexeme();if(void 0!=r){switch(r.str){case"-":t.currentClause.presence=e.Query.presence.PROHIBITED;break;case"+":t.currentClause.presence=e.Query.presence.REQUIRED;break;default:var i="unrecognised presence operator'"+r.str+"'";throw new e.QueryParseError(i,r.start,r.end)}var n=t.peekLexeme();if(void 0==n){var i="expecting term or field, found nothing";throw new e.QueryParseError(i,r.start,r.end)}switch(n.type){case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expecting term or field, found '"+n.type+"'";throw new e.QueryParseError(i,n.start,n.end)}}},e.QueryParser.parseField=function(t){var r=t.consumeLexeme();if(void 0!=r){if(t.query.allFields.indexOf(r.str)==-1){var i=t.query.allFields.map(function(e){return"'"+e+"'"}).join(", "),n="unrecognised field '"+r.str+"', possible fields: "+i;throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.fields=[r.str];var s=t.peekLexeme();if(void 0==s){var n="expecting term, found nothing";throw new e.QueryParseError(n,r.start,r.end)}switch(s.type){case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var n="expecting term, found '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseTerm=function(t){var r=t.consumeLexeme();if(void 0!=r){t.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(t.currentClause.usePipeline=!1);var i=t.peekLexeme();if(void 0==i)return void t.nextClause();switch(i.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+i.type+"'";throw new e.QueryParseError(n,i.start,i.end)}}},e.QueryParser.parseEditDistance=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="edit distance must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.editDistance=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseBoost=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="boost must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.boost=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.lunr=t()}(this,function(){return e})}(); diff --git a/docs/js/topic.8cd0c0c4.js b/docs/js/topic.8cd0c0c4.js deleted file mode 100644 index af0651e0f..000000000 --- a/docs/js/topic.8cd0c0c4.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["topic"],{"0466":function(e,t,n){},"0503":function(e,t,n){"use strict";n("e38e")},"0c11":function(e,t,n){},"0c14":function(e,t,n){},1006:function(e,t,n){"use strict";n("a95e")},"1dd5":function(e,t,n){"use strict";n("7b17")},"257c":function(e,t,n){"use strict";n("7748")},"2a05":function(e,t,n){},"2f9d":function(e,t,n){"use strict";n("525c")},3213:function(e,t,n){"use strict";n.r(t);var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[e.topicData?n(e.componentFor(e.topicData),e._b({key:e.topicKey,tag:"component",attrs:{hierarchy:e.hierarchy}},"component",e.propsFor(e.topicData),!1)):e._e()],1)},i=[],r=n("25a9"),o=n("a97e");const{BreakpointName:a}=o["a"].constants;var c,l,u={state:{linkableSections:[],breakpoint:a.large,references:{}},addLinkableSection(e){const t={...e,visibility:0};t.sectionNumber=this.state.linkableSections.length,this.state.linkableSections.push(t)},reset(){this.state.linkableSections=[],this.state.breakpoint=a.large,this.state.references={}},updateLinkableSection(e){this.state.linkableSections=this.state.linkableSections.map(t=>e.anchor===t.anchor?{...t,visibility:e.visibility}:t)},updateBreakpoint(e){this.state.breakpoint=e},setReferences(e){this.state.references=e}},d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"article"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{chapters:e.hierarchy.modules,technology:e.metadata.category,topic:e.heroTitle||"",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._t("above-hero"),e._l(e.sections,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component"},"component",e.propsFor(t),!1))}))],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},p=[],h=n("2b88"),m=n("e425"),f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{attrs:{id:"nav","aria-label":e.technology,hasSolidBackground:""}},[n("template",{slot:"default"},[n("ReferenceUrlProvider",{attrs:{reference:e.rootReference},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.urlWithParams;return n("NavTitleContainer",{attrs:{to:s}},[n("template",{slot:"default"},[e._v(e._s(e.technology))]),n("template",{slot:"subhead"},[e._v(e._s(e.$tc("tutorials.title",2)))])],2)}}])})],1),n("template",{slot:"after-title"},[n("div",{staticClass:"separator"})]),n("template",{slot:"tray"},[n("div",{staticClass:"mobile-dropdown-container"},[n("MobileDropdown",{attrs:{options:e.chapters,sections:e.optionsForSections,currentOption:e.currentSection?e.currentSection.title:""},on:{"select-section":e.onSelectSection}})],1),n("div",{staticClass:"dropdown-container"},[n("PrimaryDropdown",{staticClass:"primary-dropdown",attrs:{options:e.chapters,currentOption:e.topic}}),n("ChevronIcon",{staticClass:"icon-inline"}),e.currentSection?n("SecondaryDropdown",{staticClass:"secondary-dropdown",attrs:{options:e.optionsForSections,currentOption:e.currentSection.title,sectionTracker:e.sectionIndicatorText},on:{"select-section":e.onSelectSection}}):e._e()],1),e._t("tray",null,{siblings:e.chapters.length+e.optionsForSections.length})],2)],2)},v=[],b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"chevron-icon",attrs:{viewBox:"0 0 14 14",themeId:"chevron"}},[n("path",{attrs:{d:"M3.22 1.184l0.325-0.38 7.235 6.201-7.235 6.19-0.325-0.38 6.792-5.811-6.792-5.82z"}})])},g=[],y=n("be08"),C={name:"ChevronIcon",components:{SVGIcon:y["a"]}},w=C,_=n("2877"),k=Object(_["a"])(w,b,g,!1,null,null,null),S=k.exports,x=n("d26a"),T=n("2f34"),I={name:"ReferenceUrlProvider",mixins:[T["a"]],props:{reference:{type:String,required:!0}},computed:{resolvedReference:({references:e,reference:t})=>e[t]||{},url:({resolvedReference:e})=>e.url,title:({resolvedReference:e})=>e.title},render(){return this.$scopedSlots.default({url:this.url,urlWithParams:Object(x["b"])(this.url,this.$route.query),title:this.title,reference:this.resolvedReference})}},A=I,$=Object(_["a"])(A,c,l,!1,null,null,null),O=$.exports,N=n("8a61"),P=n("cbcf"),q=n("653a"),D=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"mobile-dropdown"},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(s){var i=s.title;return n("NavMenuItemBase",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(i))]),n("ul",{staticClass:"tutorial-list"},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.url,i=t.urlWithParams,r=t.title;return n("li",{staticClass:"tutorial-list-item"},[n("router-link",{staticClass:"option tutorial",attrs:{to:i,value:r}},[e._v(" "+e._s(r)+" ")]),s===e.$route.path?n("ul",{staticClass:"section-list",attrs:{role:"listbox"}},e._l(e.sections,(function(t){return n("li",{key:t.title},[n("router-link",{class:e.classesFor(t),attrs:{to:{path:t.path,query:e.$route.query},value:t.title},nativeOn:{click:function(n){return e.onClick(t)}}},[e._v(" "+e._s(t.title)+" ")])],1)})),0):e._e()],1)}}],null,!0)})})),1)])}}],null,!0)})})),1)},j=[],R=n("863d"),M=n("9b30"),B={name:"MobileDropdown",components:{NavMenuItems:M["a"],NavMenuItemBase:R["a"],ReferenceUrlProvider:O},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sections:{type:Array,required:!1,default:()=>[]}},methods:{classesFor(e){return["option","section",{active:this.currentOption===e.title},this.depthClass(e)]},depthClass(e){const{depth:t=0}=e;return"depth"+t},onClick(e){this.$emit("select-section",e.path)}}},L=B,E=(n("e688"),Object(_["a"])(L,D,j,!1,null,"154acfbd",null)),F=E.exports,V=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":e.$t("tutorials.nav.current",{thing:e.$t("sections.title")}),isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.navigateOverOptions,o=t.OptionClass,a=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:i,attrs:{role:"listbox",tabindex:"0"}},e._l(e.options,(function(t){return n("router-link",{key:t.title,attrs:{to:{path:t.path,query:e.$route.query},custom:""},scopedSlots:e._u([{key:"default",fn:function(i){var c,l=i.navigate;return[n("li",{class:[o,(c={},c[a]=e.currentOption===t.title,c)],attrs:{role:"option",value:t.title,"aria-selected":e.currentOption===t.title,"aria-current":e.ariaCurrent(t.title),tabindex:-1},on:{click:function(n){return e.setActive(t,l,s,n)},keydown:[function(n){return!n.type.indexOf("key")&&e._k(n.keyCode,"enter",13,n.key,"Enter")?null:e.setActive(t,l,s,n)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),r(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),r(t,-1))}]}},[e._v(" "+e._s(t.title)+" ")])]}}],null,!0)})})),1)]}}])},[n("template",{slot:"toggle-post-content"},[n("span",{staticClass:"section-tracker"},[e._v(e._s(e.sectionTracker))])])],2)},U=[],H=function(){var e,t=this,n=t.$createElement,s=t._self._c||n;return s("BaseDropdown",{staticClass:"dropdown-custom",class:(e={},e[t.OpenedClass]=t.isOpen,e["dropdown-small"]=t.isSmall,e),attrs:{value:t.value},scopedSlots:t._u([{key:"dropdown",fn:function(e){var n=e.dropdownClasses;return[s("span",{staticClass:"visuallyhidden",attrs:{id:"DropdownLabel_"+t._uid}},[t._v(t._s(t.ariaLabel))]),s("button",{ref:"dropdownToggle",staticClass:"form-dropdown-toggle",class:n,attrs:{role:"button",id:"DropdownToggle_"+t._uid,"aria-labelledby":"DropdownLabel_"+t._uid+" DropdownToggle_"+t._uid,"aria-expanded":t.isOpen?"true":"false","aria-haspopup":"true"},on:{click:t.toggleDropdown,keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.closeAndFocusToggler.apply(null,arguments)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))}]}},[s("span",{staticClass:"form-dropdown-title"},[t._v(t._s(t.value))]),t._t("toggle-post-content")],2)]}}],null,!0)},[s("template",{slot:"eyebrow"},[t._t("eyebrow")],2),s("template",{slot:"after"},[t._t("default",null,null,{value:t.value,isOpen:t.isOpen,contentClasses:["form-dropdown-content",{"is-open":t.isOpen}],closeDropdown:t.closeDropdown,onChangeAction:t.onChangeAction,closeAndFocusToggler:t.closeAndFocusToggler,navigateOverOptions:t.navigateOverOptions,OptionClass:t.OptionClass,ActiveOptionClass:t.ActiveOptionClass})],2)],2)},z=[],G=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"form-element"},[e._t("dropdown",(function(){return[n("select",e._b({directives:[{name:"model",rawName:"v-model",value:e.modelValue,expression:"modelValue"}],class:e.dropdownClasses,on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t="_value"in e?e._value:e.value;return t}));e.modelValue=t.target.multiple?n:n[0]}}},"select",e.$attrs,!1),[e._t("default")],2)]}),{dropdownClasses:e.dropdownClasses,value:e.value}),n("InlineChevronDownIcon",{staticClass:"form-icon",attrs:{"aria-hidden":"true"}}),e.$slots.eyebrow?n("span",{staticClass:"form-label",attrs:{"aria-hidden":"true"}},[e._t("eyebrow")],2):e._e(),e._t("after")],2)},W=[],Q=n("7948"),K={name:"BaseDropdown",inheritAttrs:!1,props:{value:{type:String,default:""}},components:{InlineChevronDownIcon:Q["a"]},computed:{modelValue:{get:({value:e})=>e,set(e){this.$emit("input",e)}},dropdownClasses({value:e}){return["form-dropdown",{"form-dropdown-selectnone":""===e,"no-eyebrow":!this.$slots.eyebrow}]}}},X=K,J=(n("ed71"),Object(_["a"])(X,G,W,!1,null,"998803d8",null)),Y=J.exports;const Z="is-open",ee="option",te="option-active";var ne={name:"DropdownCustom",components:{BaseDropdown:Y},constants:{OpenedClass:Z,OptionClass:ee,ActiveOptionClass:te},props:{value:{type:String,default:""},ariaLabel:{type:String,default:""},isSmall:{type:Boolean,default:!1}},data(){return{isOpen:!1,OpenedClass:Z,OptionClass:ee,ActiveOptionClass:te}},mounted(){document.addEventListener("click",this.closeOnLoseFocus)},beforeDestroy(){document.removeEventListener("click",this.closeOnLoseFocus)},methods:{onChangeAction(e){this.$emit("input",e)},toggleDropdown(){this.isOpen?this.closeDropdown():this.openDropdown()},async closeAndFocusToggler(){this.closeDropdown(),await this.$nextTick(),this.$refs.dropdownToggle.focus({preventScroll:!0})},closeDropdown(){this.isOpen=!1,this.$emit("close")},openDropdown(){this.isOpen=!0,this.$emit("open"),this.focusActiveLink()},closeOnLoseFocus(e){!this.$el.contains(e.target)&&this.isOpen&&this.closeDropdown()},navigateOverOptions({target:e},t){const n=this.$el.querySelectorAll("."+ee),s=Array.from(n),i=s.indexOf(e),r=s[i+t];r&&r.focus({preventScroll:!0})},async focusActiveLink(){const e=this.$el.querySelector("."+te);e&&(await this.$nextTick(),e.focus({preventScroll:!0}))}}},se=ne,ie=(n("e84c"),Object(_["a"])(se,H,z,!1,null,"12dd746a",null)),re=ie.exports,oe={name:"SecondaryDropdown",components:{DropdownCustom:re},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sectionTracker:{type:String,required:!1}},methods:{ariaCurrent(e){return this.currentOption===e&&"section"},setActive(e,t,n,s){t(s),this.$emit("select-section",e.path),n()}}},ae=oe,ce=(n("7f7b"),Object(_["a"])(ae,V,U,!1,null,"554d62b6",null)),le=ce.exports,ue=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":e.$t("tutorials.nav.current",{thing:e.$tc("tutorials.title",1)}),isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.closeDropdown,o=t.navigateOverOptions,a=t.OptionClass,c=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:i,attrs:{tabindex:"0"}},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(i){var l=i.title;return n("li",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(l))]),n("ul",{attrs:{role:"listbox"}},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.urlWithParams,l=t.title;return[n("router-link",{attrs:{to:i,custom:""},scopedSlots:e._u([{key:"default",fn:function(t){var i,u=t.navigate,d=t.isActive;return[n("li",{class:(i={},i[a]=!0,i[c]=d,i),attrs:{role:"option",value:l,"aria-selected":d,"aria-current":!!d&&"tutorial",tabindex:-1},on:{click:function(t){return e.setActive(u,r,t)},keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.setActive(u,r,t)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),o(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),o(t,-1))}]}},[e._v(" "+e._s(l)+" ")])]}}],null,!0)})]}}],null,!0)})})),1)])}}],null,!0)})})),1)]}}])})},de=[],pe={name:"PrimaryDropdown",components:{DropdownCustom:re,ReferenceUrlProvider:O},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0}},methods:{setActive(e,t,n){e(n),t()}}},he=pe,me=(n("9938"),Object(_["a"])(he,ue,de,!1,null,"4bddb6e6",null)),fe=me.exports;const ve={title:"Introduction",url:"#introduction",reference:"introduction",sectionNumber:0,depth:0};var be={name:"NavigationBar",components:{NavTitleContainer:q["a"],NavBase:P["a"],ReferenceUrlProvider:O,PrimaryDropdown:fe,SecondaryDropdown:le,MobileDropdown:F,ChevronIcon:S},mixins:[N["a"],T["a"]],props:{chapters:{type:Array,required:!0},technology:{type:String,required:!0},topic:{type:String,required:!0},rootReference:{type:String,required:!0},identifierUrl:{type:String,required:!0}},data(){return{currentSection:ve,tutorialState:this.store.state}},watch:{pageSectionWithHighestVisibility(e){e&&(this.currentSection=e)}},computed:{currentProject(){return this.chapters.reduce((e,{projects:t})=>e.concat(t),[]).find(e=>e.reference===this.identifierUrl)},pageSections(){if(!this.currentProject)return[];const e=[ve].concat(this.currentProject.sections);return this.tutorialState.linkableSections.map((t,n)=>{const s=e[n],i=this.references[s.reference],{url:r,title:o}=i||s;return{...t,title:o,path:r}})},optionsForSections(){return this.pageSections.map(({depth:e,path:t,title:n})=>({depth:e,path:t,title:n}))},pageSectionWithHighestVisibility(){return[...this.pageSections].sort((e,t)=>t.visibility-e.visibility).find(e=>e.visibility>0)},sectionIndicatorText(){const e=this.tutorialState.linkableSections.length-1,{sectionNumber:t}=this.currentSection||{};if(0!==t)return this.$t("tutorials.section-of",{number:t,total:e})}},methods:{onSelectSection(e){const t=e.split("#")[1];this.handleFocusAndScroll(t)}}},ge=be,ye=(n("ea88"),Object(_["a"])(ge,f,v,!1,null,"717bc942",null)),Ce=ye.exports,we=n("bf08"),_e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"body"},[n("BodyContent",{attrs:{content:e.content}})],1)},ke=[],Se=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("article",{staticClass:"body-content"},e._l(e.content,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component",staticClass:"layout"},"component",e.propsFor(t),!1))})),1)},xe=[],Te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"columns",class:e.classes},[e._l(e.columns,(function(t,s){return[n("Asset",{key:t.media,attrs:{identifier:t.media,videoAutoplays:!1}}),t.content?n("ContentNode",{key:s,attrs:{content:t.content}}):e._e()]}))],2)},Ie=[],Ae=n("80e4"),$e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",{attrs:{content:e.articleContent}})},Oe=[],Ne=n("5677"),Pe={name:"ContentNode",components:{BaseContentNode:Ne["default"]},props:Ne["default"].props,computed:{articleContent(){return this.map(e=>{switch(e.type){case Ne["default"].BlockType.codeListing:return{...e,showLineNumbers:!0};case Ne["default"].BlockType.heading:{const{anchor:t,...n}=e;return n}default:return e}})}},methods:Ne["default"].methods,BlockType:Ne["default"].BlockType,InlineType:Ne["default"].InlineType},qe=Pe,De=(n("cb8d"),Object(_["a"])(qe,$e,Oe,!1,null,"3cfe1c35",null)),je=De.exports,Re={name:"Columns",components:{Asset:Ae["a"],ContentNode:je},props:{columns:{type:Array,required:!0}},computed:{classes(){return{"cols-2":2===this.columns.length,"cols-3":3===this.columns.length}}}},Me=Re,Be=(n("e9b0"),Object(_["a"])(Me,Te,Ie,!1,null,"30edf911",null)),Le=Be.exports,Ee=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"content-and-media",class:e.classes},[n("ContentNode",{attrs:{content:e.content}}),n("Asset",{attrs:{identifier:e.media}})],1)},Fe=[];const Ve={leading:"leading",trailing:"trailing"};var Ue={name:"ContentAndMedia",components:{Asset:Ae["a"],ContentNode:je},props:{content:je.props.content,media:Ae["a"].props.identifier,mediaPosition:{type:String,default:()=>Ve.trailing,validator:e=>Object.prototype.hasOwnProperty.call(Ve,e)}},computed:{classes(){return{"media-leading":this.mediaPosition===Ve.leading,"media-trailing":this.mediaPosition===Ve.trailing}}},MediaPosition:Ve},He=Ue,ze=(n("1006"),Object(_["a"])(He,Ee,Fe,!1,null,"3fa44f9e",null)),Ge=ze.exports,We=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"full-width"},e._l(e.groups,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component",staticClass:"group"},"component",e.propsFor(t),!1),[n("ContentNode",{attrs:{content:t.content}})],1)})),1)},Qe=[],Ke=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.tag,{tag:"component",attrs:{id:e.anchor}},[e._t("default")],2)},Xe=[],Je=n("72e7"),Ye={name:"LinkableElement",mixins:[Je["a"]],inject:{navigationBarHeight:{default(){}},store:{default(){return{addLinkableSection(){},updateLinkableSection(){}}}}},props:{anchor:{type:String,required:!0},depth:{type:Number,default:()=>0},tag:{type:String,default:()=>"div"},title:{type:String,required:!0}},computed:{intersectionRootMargin(){const e=this.navigationBarHeight?`-${this.navigationBarHeight}px`:"0%";return e+" 0% -50% 0%"}},created(){this.store.addLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:0})},methods:{onIntersect(e){const t=Math.min(1,e.intersectionRatio);this.store.updateLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:t})}}},Ze=Ye,et=Object(_["a"])(Ze,Ke,Xe,!1,null,null,null),tt=et.exports;const{BlockType:nt}=je;var st={name:"FullWidth",components:{ContentNode:je,LinkableElement:tt},props:je.props,computed:{groups:({content:e})=>e.reduce((e,t)=>0===e.length||t.type===nt.heading?[...e,{heading:t.type===nt.heading?t:null,content:[t]}]:[...e.slice(0,e.length-1),{heading:e[e.length-1].heading,content:e[e.length-1].content.concat(t)}],[])},methods:{componentFor(e){return e.heading?tt:"div"},depthFor(e){switch(e.level){case 1:case 2:return 0;default:return 1}},propsFor(e){return e.heading?{anchor:e.heading.anchor,depth:this.depthFor(e.heading),title:e.heading.text}:{}}}},it=st,rt=(n("aece"),Object(_["a"])(it,We,Qe,!1,null,"1f2be54b",null)),ot=rt.exports;const at={columns:"columns",contentAndMedia:"contentAndMedia",fullWidth:"fullWidth"};var ct={name:"BodyContent",props:{content:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(at,e))}},methods:{componentFor(e){return{[at.columns]:Le,[at.contentAndMedia]:Ge,[at.fullWidth]:ot}[e.kind]},propsFor(e){const{content:t,kind:n,media:s,mediaPosition:i}=e;return{[at.columns]:{columns:t},[at.contentAndMedia]:{content:t,media:s,mediaPosition:i},[at.fullWidth]:{content:t}}[n]}},LayoutKind:at},lt=ct,ut=(n("1dd5"),Object(_["a"])(lt,Se,xe,!1,null,"4d5a806e",null)),dt=ut.exports,pt={name:"Body",components:{BodyContent:dt},props:dt.props},ht=pt,mt=(n("5237"),Object(_["a"])(ht,_e,ke,!1,null,"6499e2f2",null)),ft=mt.exports,vt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialCTA",e._b({},"TutorialCTA",e.$props,!1))},bt=[],gt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseCTA",e._b({attrs:{label:e.$t("tutorials.next")}},"BaseCTA",e.baseProps,!1))},yt=[],Ct=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"call-to-action"},[n("Row",[n("LeftColumn",[n("span",{staticClass:"label"},[e._v(e._s(e.label))]),n("h2",[e._v(" "+e._s(e.title)+" ")]),e.abstract?n("ContentNode",{staticClass:"description",attrs:{content:[e.abstractParagraph]}}):e._e(),e.action?n("Button",{attrs:{action:e.action}}):e._e()],1),n("RightColumn",{staticClass:"right-column"},[e.media?n("Asset",{staticClass:"media",attrs:{identifier:e.media}}):e._e()],1)],1)],1)},wt=[],_t=n("0f00"),kt=n("620a"),St=n("c081"),xt={name:"CallToAction",components:{Asset:Ae["a"],Button:St["a"],ContentNode:Ne["default"],LeftColumn:{render(e){return e(kt["a"],{props:{span:{large:5,small:12}}},this.$slots.default)}},RightColumn:{render(e){return e(kt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}},Row:_t["a"]},props:{title:{type:String,required:!0},label:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}},computed:{abstractParagraph(){return{type:"paragraph",inlineContent:this.abstract}}}},Tt=xt,It=(n("c7dd"),Object(_["a"])(Tt,Ct,wt,!1,null,"042a0474",null)),At=It.exports,$t={name:"CallToAction",components:{BaseCTA:At},computed:{baseProps(){return{title:this.title,abstract:this.abstract,action:this.action,media:this.media}}},props:{title:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}}},Ot=$t,Nt=Object(_["a"])(Ot,gt,yt,!1,null,null,null),Pt=Nt.exports,qt={name:"CallToAction",components:{TutorialCTA:Pt},props:Pt.props},Dt=qt,jt=(n("3e1b"),Object(_["a"])(Dt,vt,bt,!1,null,"426a965c",null)),Rt=jt.exports,Mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialHero",e._b({},"TutorialHero",e.$props,!1))},Bt=[],Lt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"tutorial-hero",attrs:{anchor:"introduction",title:e.sectionTitle}},[n("div",{staticClass:"hero dark"},[e.backgroundImageUrl?n("div",{staticClass:"bg",style:e.bgStyle}):e._e(),e._t("above-title"),n("Row",[n("Column",[n("Headline",{attrs:{level:1}},[e.chapter?n("template",{slot:"eyebrow"},[e._v(e._s(e.chapter))]):e._e(),e._v(" "+e._s(e.title)+" ")],2),e.content||e.video?n("div",{staticClass:"intro"},[e.content?n("ContentNode",{attrs:{content:e.content}}):e._e(),e.video?[n("p",[n("a",{staticClass:"call-to-action",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.toggleCallToActionModal.apply(null,arguments)}}},[e._v(" Watch intro video "),n("PlayIcon",{staticClass:"cta-icon icon-inline"})],1)]),n("GenericModal",{attrs:{visible:e.callToActionModalVisible,isFullscreen:"",theme:"dark"},on:{"update:visible":function(t){e.callToActionModalVisible=t}}},[n("Asset",{directives:[{name:"show",rawName:"v-show",value:e.callToActionModalVisible,expression:"callToActionModalVisible"}],ref:"asset",staticClass:"video-asset",attrs:{identifier:e.video},on:{videoEnded:e.handleVideoEnd}})],1)]:e._e()],2):e._e(),n("Metadata",{staticClass:"metadata",attrs:{projectFilesUrl:e.projectFilesUrl,estimatedTimeInMinutes:e.estimatedTimeInMinutes,xcodeRequirement:e.xcodeRequirementData}})],1)],1)],2)])},Et=[],Ft=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"headline"},[e.$slots.eyebrow?n("span",{staticClass:"eyebrow"},[e._t("eyebrow")],2):e._e(),n("Heading",{staticClass:"heading",attrs:{level:e.level}},[e._t("default")],2)],1)},Vt=[];const Ut=1,Ht=6,zt={type:Number,required:!0,validator:e=>e>=Ut&&e<=Ht},Gt={name:"Heading",render:function(e){return e("h"+this.level,this.$slots.default)},props:{level:zt}};var Wt={name:"Headline",components:{Heading:Gt},props:{level:zt}},Qt=Wt,Kt=(n("3976"),Object(_["a"])(Qt,Ft,Vt,!1,null,"d46a1474",null)),Xt=Kt.exports,Jt=n("c161"),Yt=n("c4dd"),Zt=n("748c"),en=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"metadata"},[e.estimatedTimeInMinutes?n("div",{staticClass:"item",attrs:{"aria-label":"\n "+e.$tc("tutorials.time.minutes.full",e.estimatedTimeInMinutes,{count:e.estimatedTimeInMinutes})+"\n "+e.$t("tutorials.estimated-time")+"\n "}},[n("div",{staticClass:"content",attrs:{"aria-hidden":"true"}},[n("i18n",{staticClass:"duration",attrs:{path:"tutorials.time.format",tag:"div"},scopedSlots:e._u([{key:"number",fn:function(){return[e._v(" "+e._s(e.estimatedTimeInMinutes)+" ")]},proxy:!0},{key:"minutes",fn:function(){return[n("div",{staticClass:"minutes"},[e._v(e._s(e.$tc("tutorials.time.minutes.short",e.estimatedTimeInMinutes))+" ")])]},proxy:!0}],null,!1,3313752798)})],1),n("div",{staticClass:"bottom",attrs:{"aria-hidden":"true"}},[e._v(e._s(e.$t("tutorials.estimated-time")))])]):e._e(),e.projectFilesUrl?n("div",{staticClass:"item"},[n("DownloadIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[n("a",{staticClass:"content-link project-download",attrs:{href:e.projectFilesUrl}},[e._v(" "+e._s(e.$t("tutorials.project-files"))+" "),n("InlineDownloadIcon",{staticClass:"small-icon icon-inline"})],1)])],1):e._e(),e.xcodeRequirement?n("div",{staticClass:"item"},[n("XcodeIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[e.isTargetIDE?n("span",[e._v(e._s(e.xcodeRequirement.title))]):n("a",{staticClass:"content-link",attrs:{href:e.xcodeRequirement.url}},[e._v(" "+e._s(e.xcodeRequirement.title)+" "),n("InlineChevronRightIcon",{staticClass:"icon-inline small-icon xcode-icon"})],1)])],1):e._e()])},tn=[],nn=n("de60"),sn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"xcode-icon",attrs:{viewBox:"0 0 14 14",themeId:"xcode"}},[n("path",{attrs:{d:"M2.668 4.452l-1.338-2.229 0.891-0.891 2.229 1.338 1.338 2.228 3.667 3.666 0.194-0.194 2.933 2.933c0.13 0.155 0.209 0.356 0.209 0.576 0 0.497-0.403 0.9-0.9 0.9-0.22 0-0.421-0.079-0.577-0.209l0.001 0.001-2.934-2.933 0.181-0.181-3.666-3.666z"}}),n("path",{attrs:{d:"M11.824 1.277l-0.908 0.908c-0.091 0.091-0.147 0.216-0.147 0.354 0 0.106 0.033 0.205 0.090 0.286l-0.001-0.002 0.058 0.069 0.185 0.185c0.090 0.090 0.215 0.146 0.353 0.146 0.107 0 0.205-0.033 0.286-0.090l-0.002 0.001 0.069-0.057 0.909-0.908c0.118 0.24 0.187 0.522 0.187 0.82 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.577-0.068-0.826-0.189l0.011 0.005-5.5 5.5c0.116 0.238 0.184 0.518 0.184 0.813 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.576-0.068-0.826-0.189l0.011 0.005 0.908-0.909c0.090-0.090 0.146-0.215 0.146-0.353 0-0.107-0.033-0.205-0.090-0.286l0.001 0.002-0.057-0.069-0.185-0.185c-0.091-0.091-0.216-0.147-0.354-0.147-0.106 0-0.205 0.033-0.286 0.090l0.002-0.001-0.069 0.058-0.908 0.908c-0.116-0.238-0.184-0.518-0.184-0.813 0-1.045 0.847-1.892 1.892-1.892 0.293 0 0.571 0.067 0.819 0.186l-0.011-0.005 5.5-5.5c-0.116-0.238-0.184-0.519-0.184-0.815 0-1.045 0.847-1.892 1.892-1.892 0.296 0 0.577 0.068 0.827 0.19l-0.011-0.005z"}})])},rn=[],on={name:"XcodeIcon",components:{SVGIcon:y["a"]}},an=on,cn=Object(_["a"])(an,sn,rn,!1,null,null,null),ln=cn.exports,un=n("34b0"),dn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-download-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},pn=[],hn={name:"InlineDownloadIcon",components:{SVGIcon:y["a"]}},mn=hn,fn=Object(_["a"])(mn,dn,pn,!1,null,null,null),vn=fn.exports,bn={name:"HeroMetadata",components:{InlineDownloadIcon:vn,InlineChevronRightIcon:un["a"],DownloadIcon:nn["a"],XcodeIcon:ln},inject:["isTargetIDE"],props:{projectFilesUrl:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:Object,required:!1}}},gn=bn,yn=(n("33ff"),Object(_["a"])(gn,en,tn,!1,null,"94ff76c0",null)),Cn=yn.exports,wn={name:"Hero",components:{PlayIcon:Yt["a"],GenericModal:Jt["a"],Column:{render(e){return e(kt["a"],{props:{span:{large:7,medium:9,small:12}}},this.$slots.default)}},ContentNode:Ne["default"],Headline:Xt,Metadata:Cn,Row:_t["a"],Asset:Ae["a"],LinkableSection:tt},mixins:[T["a"]],props:{title:{type:String,required:!0},chapter:{type:String},content:{type:Array},projectFiles:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:String,required:!1},video:{type:String},backgroundImage:{type:String}},computed:{backgroundImageUrl(){const e=this.references[this.backgroundImage]||{},{variants:t=[]}=e,n=t.find(e=>e.traits.includes("light"));return Object(Zt["c"])((n||{}).url)},projectFilesUrl(){return this.projectFiles?Object(Zt["c"])(this.references[this.projectFiles].url):null},bgStyle(){return{backgroundImage:Object(Zt["f"])(this.backgroundImageUrl)}},xcodeRequirementData(){return this.references[this.xcodeRequirement]},sectionTitle(){return"Introduction"}},data(){return{callToActionModalVisible:!1}},methods:{async toggleCallToActionModal(){this.callToActionModalVisible=!0,await this.$nextTick();const e=this.$refs.asset.$el.querySelector("video");if(e)try{await e.play(),e.muted=!1}catch(t){}},handleVideoEnd(){this.callToActionModalVisible=!1}}},_n=wn,kn=(n("7fae"),Object(_["a"])(_n,Lt,Et,!1,null,"55543c5a",null)),Sn=kn.exports,xn={name:"Hero",components:{TutorialHero:Sn},props:Sn.props},Tn=xn,In=(n("2f9d"),Object(_["a"])(Tn,Mt,Bt,!1,null,"35a9482f",null)),An=In.exports,$n=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialAssessments",e._b({},"TutorialAssessments",e.$props,!1),[n("p",{attrs:{slot:"success"},slot:"success"},[e._v("Great job, you've answered all the questions for this article.")])])},On=[],Nn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"assessments-wrapper",attrs:{anchor:e.anchor,title:e.title}},[n("Row",{ref:"assessments",staticClass:"assessments"},[n("MainColumn",[n("Row",{staticClass:"banner"},[n("HeaderColumn",[n("h2",{staticClass:"title"},[e._v(e._s(e.title))])])],1),e.completed?n("div",{staticClass:"success"},[e._t("success",(function(){return[n("p",[e._v(e._s(e.SuccessMessage))])]}))],2):n("div",[n("Progress",e._b({ref:"progress"},"Progress",e.progress,!1)),n("Quiz",{key:e.activeIndex,attrs:{choices:e.activeAssessment.choices,content:e.activeAssessment.content,isLast:e.isLast,title:e.activeAssessment.title},on:{submit:e.onSubmit,advance:e.onAdvance,"see-results":e.onSeeResults}})],1),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"assertive"}},[e.completed?e._t("success",(function(){return[e._v(" "+e._s(e.SuccessMessage)+" ")]})):e._e()],2)],1)],1)],1)},Pn=[],qn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",[n("p",{staticClass:"title"},[e._v(e._s(e.$t("tutorials.question-of",{index:e.index,total:e.total})))])])},Dn=[],jn={name:"AssessmentsProgress",components:{Row:_t["a"]},props:{index:{type:Number,required:!0},total:{type:Number,required:!0}}},Rn=jn,Mn=(n("6866"),Object(_["a"])(Rn,qn,Dn,!1,null,"28135d78",null)),Bn=Mn.exports,Ln=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"quiz"},[n("ContentNode",{staticClass:"title",attrs:{content:e.title}}),e.content?n("ContentNode",{staticClass:"question-content",attrs:{content:e.content}}):e._e(),n("div",{staticClass:"choices"},[e._l(e.choices,(function(t,s){return n("label",{key:s,class:e.choiceClasses[s]},[n(e.getIconComponent(s),{tag:"component",staticClass:"choice-icon"}),n("input",{directives:[{name:"model",rawName:"v-model",value:e.selectedIndex,expression:"selectedIndex"}],attrs:{type:"radio",name:"assessment"},domProps:{value:s,checked:e._q(e.selectedIndex,s)},on:{change:function(t){e.selectedIndex=s}}}),n("ContentNode",{staticClass:"question",attrs:{content:t.content}}),e.userChoices[s].checked?[n("ContentNode",{staticClass:"answer",attrs:{content:t.justification}}),t.reaction?n("p",{staticClass:"answer"},[e._v(e._s(t.reaction))]):e._e()]:e._e()],2)})),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"assertive"}},[e._v(" "+e._s(e.ariaLiveText)+" ")])],2),n("div",{staticClass:"controls"},[n("ButtonLink",{staticClass:"check",attrs:{disabled:null===e.selectedIndex||e.showNextQuestion},nativeOn:{click:function(t){return e.submit.apply(null,arguments)}}},[e._v(" "+e._s(e.$t("tutorials.submit"))+" ")]),e.isLast?n("ButtonLink",{staticClass:"results",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.seeResults.apply(null,arguments)}}},[e._v(" "+e._s(e.$t("tutorials.next"))+" ")]):n("ButtonLink",{staticClass:"next",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.advance.apply(null,arguments)}}},[e._v(" "+e._s(e.$t("tutorials.assessment.next-question"))+" ")])],1)],1)},En=[],Fn=n("76ab"),Vn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"reset-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"reset-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M3.828 4.539l0.707-0.707 5.657 5.657-0.707 0.707-5.657-5.657z"}}),n("path",{attrs:{d:"M3.828 9.489l5.657-5.657 0.707 0.707-5.657 5.657-0.707-0.707z"}})])},Un=[],Hn={name:"ResetCircleIcon",components:{SVGIcon:y["a"]}},zn=Hn,Gn=Object(_["a"])(zn,Vn,Un,!1,null,null,null),Wn=Gn.exports,Qn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"check-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"check-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M9.626 3.719l0.866 0.5-3.5 6.062-3.464-2 0.5-0.866 2.6 1.5z"}})])},Kn=[],Xn={name:"CheckCircleIcon",components:{SVGIcon:y["a"]}},Jn=Xn,Yn=Object(_["a"])(Jn,Qn,Kn,!1,null,null,null),Zn=Yn.exports,es={name:"Quiz",components:{CheckCircleIcon:Zn,ResetCircleIcon:Wn,ContentNode:Ne["default"],ButtonLink:Fn["a"]},props:{content:{type:Array,required:!1},choices:{type:Array,required:!0},isLast:{type:Boolean,default:!1},title:{type:Array,required:!0}},data(){return{userChoices:this.choices.map(()=>({checked:!1})),selectedIndex:null,checkedIndex:null}},computed:{correctChoices(){return this.choices.reduce((e,t,n)=>t.isCorrect?e.add(n):e,new Set)},choiceClasses(){return this.userChoices.map((e,t)=>({choice:!0,active:this.selectedIndex===t,disabled:e.checked||this.showNextQuestion,correct:e.checked&&this.choices[t].isCorrect,incorrect:e.checked&&!this.choices[t].isCorrect}))},showNextQuestion(){return Array.from(this.correctChoices).every(e=>this.userChoices[e].checked)},ariaLiveText(){if(null===this.checkedIndex)return"";const{isCorrect:e}=this.choices[this.checkedIndex];return`${this.$t("tutorials.assessment.answer-number-is",{index:this.checkedIndex+1})} ${e?this.$t("tutorials.assessment.correct"):this.$t("tutorials.assessment.incorrect")}\n `}},methods:{getIconComponent(e){const t=this.userChoices[e];if(t&&t.checked)return this.choices[e].isCorrect?Zn:Wn},submit(){this.$set(this.userChoices,this.selectedIndex,{checked:!0}),this.checkedIndex=this.selectedIndex,this.$emit("submit")},advance(){this.$emit("advance")},seeResults(){this.$emit("see-results")}}},ts=es,ns=(n("0503"),Object(_["a"])(ts,Ln,En,!1,null,"19ed40e2",null)),ss=ns.exports;const is=12,rs="tutorials.assessment.success-message";var os={name:"Assessments",constants:{SuccessMessage:rs},components:{LinkableSection:tt,Quiz:ss,Progress:Bn,Row:_t["a"],HeaderColumn:{render(e){return e(kt["a"],{props:{isCentered:{large:!0},span:{large:10}}},this.$slots.default)}},MainColumn:{render(e){return e(kt["a"],{props:{isCentered:{large:!0},span:{large:10,medium:10,small:12}}},this.$slots.default)}}},props:{assessments:{type:Array,required:!0},anchor:{type:String,required:!0}},inject:["navigationBarHeight"],data(){return{activeIndex:0,completed:!1,SuccessMessage:this.$t(rs)}},computed:{activeAssessment(){return this.assessments[this.activeIndex]},isLast(){return this.activeIndex===this.assessments.length-1},progress(){return{index:this.activeIndex+1,total:this.assessments.length}},title(){return this.$t("tutorials.assessment.check-your-understanding")}},methods:{scrollTo(e,t=0){e.scrollIntoView(!0),window.scrollBy(0,-this.navigationBarHeight-t)},onSubmit(){this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,is)})},onAdvance(){this.activeIndex+=1,this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,is)})},onSeeResults(){this.completed=!0,this.$nextTick(()=>{this.scrollTo(this.$refs.assessments.$el,is)})}}},as=os,cs=(n("da20"),Object(_["a"])(as,Nn,Pn,!1,null,"65e3c02c",null)),ls=cs.exports,us={name:"Assessments",components:{TutorialAssessments:ls},props:ls.props},ds=us,ps=(n("f264"),Object(_["a"])(ds,$n,On,!1,null,"3c94366b",null)),hs=ps.exports;const ms={articleBody:"articleBody",callToAction:"callToAction",hero:"hero",assessments:"assessments"};var fs={name:"Article",components:{NavigationBar:Ce,PortalTarget:h["PortalTarget"]},mixins:[we["a"]],inject:{isTargetIDE:{default:!1},store:{default(){return{reset(){},setReferences(){}}}}},props:{hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},references:{type:Object,required:!0},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(ms,e))},identifierUrl:{type:String,required:!0}},computed:{heroSection(){return this.sections.find(this.isHero)},heroTitle(){return(this.heroSection||{}).title},pageTitle(){return this.heroTitle?`${this.heroTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},methods:{componentFor(e){const{kind:t}=e;return{[ms.articleBody]:ft,[ms.callToAction]:Rt,[ms.hero]:An,[ms.assessments]:hs}[t]},isHero(e){return e.kind===ms.hero},propsFor(e){const{abstract:t,action:n,anchor:s,assessments:i,backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:c,kind:l,media:u,projectFiles:d,title:p,video:h,xcodeRequirement:m}=e;return{[ms.articleBody]:{content:a},[ms.callToAction]:{abstract:t,action:n,media:u,title:p},[ms.hero]:{backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:c,projectFiles:d,title:p,video:h,xcodeRequirement:m},[ms.assessments]:{anchor:s,assessments:i}}[l]}},created(){m["a"].setAvailableLocales(this.metadata.availableLocales),this.store.reset(),this.store.setReferences(this.references)},watch:{references(e){this.store.setReferences(e)},"metadata.availableLocales":function(e){m["a"].setAvailableLocales(e)}},SectionKind:ms},vs=fs,bs=(n("79ef"),Object(_["a"])(vs,d,p,!1,null,"7d4562ea",null)),gs=bs.exports,ys=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"tutorial"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{technology:e.metadata.category,chapters:e.hierarchy.modules,topic:e.tutorialTitle||"",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._l(e.sections,(function(e,t){return n("Section",{key:t,attrs:{section:e}})})),n("BreakpointEmitter",{on:{change:e.handleBreakpointChange}})],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},Cs=[],ws=n("66c9"),_s=n("7689"),ks=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"sections"},e._l(e.tasks,(function(t,s){return n("Section",e._b({key:s,attrs:{id:t.anchor,sectionNumber:s+1,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},"Section",t,!1))})),1)},Ss=[],xs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"section",attrs:{anchor:e.anchor,title:e.introProps.title}},[n("Intro",e._b({},"Intro",e.introProps,!1)),e.stepsSection.length>0?n("Steps",{attrs:{content:e.stepsSection,isRuntimePreviewVisible:e.isRuntimePreviewVisible,sectionNumber:e.sectionNumber},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}}):e._e()],1)},Ts=[],Is=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"intro-container"},[n("Row",{class:["intro","intro-"+e.sectionNumber,{ide:e.isTargetIDE}]},[n("Column",{staticClass:"left"},[n("Headline",{attrs:{level:2}},[n("router-link",{attrs:{slot:"eyebrow",to:e.sectionLink},slot:"eyebrow"},[e._v(" "+e._s(e.$t("sections.title",{number:e.sectionNumber}))+" ")]),e._v(" "+e._s(e.title)+" ")],1),n("ContentNode",{attrs:{content:e.content}})],1),n("Column",{staticClass:"right"},[n("div",{staticClass:"media"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e()],1)])],1),e.expandedSections.length>0?n("ExpandedIntro",{staticClass:"expanded-intro",attrs:{content:e.expandedSections}}):e._e()],1)},As=[],$s={name:"SectionIntro",inject:{isClientMobile:{default:()=>!1},isTargetIDE:{default:()=>!1}},components:{Asset:Ae["a"],ContentNode:Ne["default"],ExpandedIntro:dt,Headline:Xt,Row:_t["a"],Column:{render(e){return e(kt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}}},props:{sectionAnchor:{type:String,required:!0},content:{type:Array,required:!0},media:{type:String,required:!0},title:{type:String,required:!0},sectionNumber:{type:Number,required:!0},expandedSections:{type:Array,default:()=>[]}},methods:{focus(){this.$emit("focus",this.media)}},computed:{sectionLink(){return{path:this.$route.path,hash:this.sectionAnchor,query:this.$route.query}}}},Os=$s,Ns=(n("257c"),Object(_["a"])(Os,Is,As,!1,null,"7f9a8f65",null)),Ps=Ns.exports,qs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"steps"},[n("div",{staticClass:"content-container"},e._l(e.contentNodes,(function(t,s){return n(t.component,e._b({key:s,ref:"contentNodes",refInFor:!0,tag:"component",class:e.contentClass(s),attrs:{currentIndex:e.activeStep}},"component",t.props,!1))})),1),e.isBreakpointSmall?e._e():n("BackgroundTheme",{staticClass:"asset-container",class:e.assetContainerClasses},[n("transition",{attrs:{name:"fade"}},[e.visibleAsset.media?n("div",{key:e.visibleAsset.media,class:["asset-wrapper",{ide:e.isTargetIDE}]},[n("Asset",{ref:"asset",staticClass:"step-asset",attrs:{identifier:e.visibleAsset.media,showsReplayButton:"",showsVideoControls:!1}})],1):e._e(),e.visibleAsset.code?n("CodePreview",{attrs:{code:e.visibleAsset.code,preview:e.visibleAsset.runtimePreview,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},[e.visibleAsset.runtimePreview?n("transition",{attrs:{name:"fade"}},[n("Asset",{key:e.visibleAsset.runtimePreview,attrs:{identifier:e.visibleAsset.runtimePreview}})],1):e._e()],1):e._e()],1)],1)],1)},Ds=[],js=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["code-preview",{ide:e.isTargetIDE}]},[n("CodeTheme",[e.code?n("CodeListing",e._b({attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1)):e._e()],1),n("div",{staticClass:"runtime-preview",class:e.runtimePreviewClasses,style:e.previewStyles},[n("div",{staticClass:"runtimve-preview__container"},[n("button",{staticClass:"header",attrs:{disabled:!e.hasRuntimePreview,title:e.runtimePreviewTitle},on:{click:e.togglePreview}},[n("span",{staticClass:"runtime-preview-label",attrs:{"aria-label":e.textAriaLabel}},[e._v(e._s(e.togglePreviewText))]),n("DiagonalArrowIcon",{staticClass:"icon-inline preview-icon",class:[e.shouldDisplayHideLabel?"preview-hide":"preview-show"]})],1),n("transition",{on:{leave:e.handleLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.shouldDisplayHideLabel,expression:"shouldDisplayHideLabel"}],staticClass:"runtime-preview-asset"},[e._t("default")],2)])],1)])],1)},Rs=[],Ms=n("7b69"),Bs=n("6667"),Ls=n("8590");const{BreakpointName:Es}=o["a"].constants;function Fs({width:e,height:t},n=1){const s=400,i=e<=s?1.75:3;return{width:e/(i/n),height:t/(i/n)}}var Vs={name:"CodePreview",inject:{isTargetIDE:{default:!1},store:{default(){return{state:{references:{}}}}}},components:{DiagonalArrowIcon:Bs["a"],CodeListing:Ms["a"],CodeTheme:Ls["a"]},props:{code:{type:String,required:!0},preview:{type:String,required:!1},isRuntimePreviewVisible:{type:Boolean,required:!0}},data(){return{tutorialState:this.store.state}},computed:{references:({tutorialState:e})=>e.references,currentBreakpoint(){return this.tutorialState.breakpoint},hasRuntimePreview(){return!!this.preview},previewAssetSize(){const e=this.hasRuntimePreview?this.references[this.preview]:{},t=(e.variants||[{}])[0]||{},n={width:900};let s=t.size||{};s.width||s.height||(s=n);const i=this.currentBreakpoint===Es.medium?.8:1;return Fs(s,i)},previewSize(){const e={width:102};return this.shouldDisplayHideLabel&&this.previewAssetSize?{width:this.previewAssetSize.width}:e},previewStyles(){const{width:e}=this.previewSize;return{width:e+"px"}},codeProps(){return this.references[this.code]},runtimePreviewClasses(){return{collapsed:!this.shouldDisplayHideLabel,disabled:!this.hasRuntimePreview,"runtime-preview-ide":this.isTargetIDE}},shouldDisplayHideLabel(){return this.hasRuntimePreview&&this.isRuntimePreviewVisible},runtimePreviewTitle(){return this.hasRuntimePreview?null:this.$t("tutorials.preview.no-preview-available-step")},togglePreviewText(){return this.$tc("tutorials.preview.title",this.hasRuntimePreview?1:0)},textAriaLabel(){return`${this.togglePreviewText}, ${this.shouldDisplayHideLabel?this.$t("verbs.hide"):this.$t("verbs.show")}`}},methods:{handleLeave(e,t){setTimeout(t,200)},togglePreview(){this.hasRuntimePreview&&this.$emit("runtime-preview-toggle",!this.isRuntimePreviewVisible)}}},Us=Vs,Hs=(n("b27b"),Object(_["a"])(Us,js,Rs,!1,null,"4f53426a",null)),zs=Hs.exports,Gs=n("3908"),Ws=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{style:e.backgroundStyle},[e._t("default")],2)},Qs=[],Ks={name:"BackgroundTheme",data(){return{codeThemeState:ws["a"].state}},computed:{backgroundStyle(){const{codeColors:e}=this.codeThemeState;return e?{"--background":e.background}:null}}},Xs=Ks,Js=Object(_["a"])(Xs,Ws,Qs,!1,null,null,null),Ys=Js.exports,Zs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["step-container","step-"+e.stepNumber]},[n("div",{ref:"step",staticClass:"step",class:{focused:e.isActive},attrs:{"data-index":e.index}},[n("p",{staticClass:"step-label"},[e._v(e._s(e.$t("tutorials.step",{number:e.stepNumber})))]),n("ContentNode",{attrs:{content:e.content}}),e.caption&&e.caption.length>0?n("ContentNode",{staticClass:"caption",attrs:{content:e.caption}}):e._e()],1),e.isBreakpointSmall||!e.isTargetIDE?n("div",{staticClass:"media-container"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e(),e.code?n("MobileCodePreview",{attrs:{code:e.code}},[e.runtimePreview?n("Asset",{staticClass:"preview",attrs:{identifier:e.runtimePreview}}):e._e()],1):e._e()],1):e._e()])},ei=[],ti=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BackgroundTheme",{staticClass:"mobile-code-preview"},[e.code?n("GenericModal",{staticClass:"full-code-listing-modal",attrs:{theme:e.isTargetIDE?"code":"light",codeBackgroundColorOverride:e.modalBackgroundColor,isFullscreen:"",visible:e.fullCodeIsVisible},on:{"update:visible":function(t){e.fullCodeIsVisible=t}}},[n("div",{staticClass:"full-code-listing-modal-content"},[n("CodeTheme",[n("CodeListing",e._b({staticClass:"full-code-listing",attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1))],1)],1)]):e._e(),n("CodeTheme",[e.code?n("MobileCodeListing",e._b({attrs:{showLineNumbers:""},on:{"file-name-click":e.toggleFullCode}},"MobileCodeListing",e.codeProps,!1)):e._e()],1),n("CodeTheme",{staticClass:"preview-toggle-container"},[n("PreviewToggle",{attrs:{isActionable:!!e.$slots.default},on:{click:e.togglePreview}})],1),e.$slots.default?n("GenericModal",{staticClass:"runtime-preview-modal",attrs:{theme:e.isTargetIDE?"dynamic":"light",isFullscreen:"",visible:e.previewIsVisible},on:{"update:visible":function(t){e.previewIsVisible=t}}},[n("div",{staticClass:"runtime-preview-modal-content"},[n("span",{staticClass:"runtime-preview-label"},[e._v(e._s(e.$tc("tutorials.preview.title",1)))]),e._t("default")],2)]):e._e()],1)},ni=[],si=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing-preview",attrs:{"data-syntax":e.syntax}},[n("CodeListing",{attrs:{fileName:e.fileName,syntax:e.syntax,fileType:e.fileType,content:e.previewedLines,startLineNumber:e.displayedRange.start,highlights:e.highlights,showLineNumbers:"",isFileNameActionable:""},on:{"file-name-click":function(t){return e.$emit("file-name-click")}}})],1)},ii=[],ri={name:"MobileCodeListing",components:{CodeListing:Ms["a"]},props:{fileName:String,syntax:String,fileType:String,content:{type:Array,required:!0},highlights:{type:Array,default:()=>[]}},computed:{highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},firstHighlightRange(){if(0===this.highlightedLineNumbers.size)return{start:1,end:this.content.length};const e=Math.min(...this.highlightedLineNumbers.values());let t=e;while(this.highlightedLineNumbers.has(t+1))t+=1;return{start:e,end:t}},displayedRange(){const e=this.firstHighlightRange,t=e.start-2<1?1:e.start-2,n=e.end+3>=this.content.length+1?this.content.length+1:e.end+3;return{start:t,end:n}},previewedLines(){return this.content.slice(this.displayedRange.start-1,this.displayedRange.end-1)}}},oi=ri,ai=(n("fae5"),Object(_["a"])(oi,si,ii,!1,null,"5ad4e037",null)),ci=ai.exports,li=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"toggle-preview"},[e.isActionable?n("a",{staticClass:"toggle-text",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._v(" "+e._s(e.$tc("tutorials.preview.title",1))+" "),n("InlinePlusCircleIcon",{staticClass:"toggle-icon icon-inline"})],1):n("span",{staticClass:"toggle-text"},[e._v(" "+e._s(e.$tc("tutorials.preview.title",0))+" ")])])},ui=[],di=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-plus-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M4 6.52h6v1h-6v-1z"}}),n("path",{attrs:{d:"M6.5 4.010h1v6h-1v-6z"}})])},pi=[],hi={name:"InlinePlusCircleIcon",components:{SVGIcon:y["a"]}},mi=hi,fi=Object(_["a"])(mi,di,pi,!1,null,null,null),vi=fi.exports,bi={name:"MobileCodePreviewToggle",components:{InlinePlusCircleIcon:vi},props:{isActionable:{type:Boolean,required:!0}}},gi=bi,yi=(n("bf0a"),Object(_["a"])(gi,li,ui,!1,null,"78763c14",null)),Ci=yi.exports,wi={name:"MobileCodePreview",inject:["isTargetIDE"],mixins:[T["a"]],components:{GenericModal:Jt["a"],CodeListing:Ms["a"],MobileCodeListing:ci,PreviewToggle:Ci,CodeTheme:Ls["a"],BackgroundTheme:Ys},props:{code:{type:String,required:!0}},computed:{codeProps(){return this.references[this.code]},modalBackgroundColor(){const{codeColors:e}=this.store.state;return e?e.background:null}},data(){return{previewIsVisible:!1,fullCodeIsVisible:!1}},methods:{togglePreview(){this.previewIsVisible=!this.previewIsVisible},toggleFullCode(){this.fullCodeIsVisible=!this.fullCodeIsVisible}}},_i=wi,ki=(n("3fcc"),Object(_["a"])(_i,ti,ni,!1,null,"1aed4baa",null)),Si=ki.exports;const{BreakpointName:xi}=o["a"].constants;var Ti={name:"Step",components:{Asset:Ae["a"],MobileCodePreview:Si,ContentNode:Ne["default"]},inject:["isTargetIDE","isClientMobile","store"],props:{code:{type:String,required:!1},content:{type:Array,required:!0},caption:{type:Array,required:!1},media:{type:String,required:!1},runtimePreview:{type:String,required:!1},sectionNumber:{type:Number,required:!0},stepNumber:{type:Number,required:!0},numberOfSteps:{type:Number,required:!0},index:{type:Number,required:!0},currentIndex:{type:Number,required:!0}},data(){return{tutorialState:this.store.state}},computed:{isBreakpointSmall(){return this.tutorialState.breakpoint===xi.small},isActive:({index:e,currentIndex:t})=>e===t}},Ii=Ti,Ai=(n("c643"),Object(_["a"])(Ii,Zs,ei,!1,null,"eb45ec92",null)),$i=Ai.exports;const{BreakpointName:Oi}=o["a"].constants,{IntersectionDirections:Ni}=Je["a"].constants,Pi="-35% 0% -65% 0%";var qi={name:"SectionSteps",components:{ContentNode:Ne["default"],Step:$i,Asset:Ae["a"],CodePreview:zs,BackgroundTheme:Ys},mixins:[Je["a"]],constants:{IntersectionMargins:Pi},inject:["isTargetIDE","store"],data(){const e=this.content.findIndex(this.isStepNode),{code:t,media:n,runtimePreview:s}=this.content[e]||{};return{tutorialState:this.store.state,visibleAsset:{media:n,code:t,runtimePreview:s},activeStep:e}},computed:{assetContainerClasses(){return{"for-step-code":!!this.visibleAsset.code,ide:this.isTargetIDE}},numberOfSteps(){return this.content.filter(this.isStepNode).length},contentNodes(){return this.content.reduce(({stepCounter:e,nodes:t},n,s)=>{const{type:i,...r}=n,o=this.isStepNode(n),a=o?e+1:e;return o?{stepCounter:e+1,nodes:t.concat({component:$i,type:i,props:{...r,stepNumber:a,index:s,numberOfSteps:this.numberOfSteps,sectionNumber:this.sectionNumber}})}:{stepCounter:e,nodes:t.concat({component:Ne["default"],type:i,props:{content:[n]}})}},{stepCounter:0,nodes:[]}).nodes},isBreakpointSmall(){return this.tutorialState.breakpoint===Oi.small},stepNodes:({contentNodes:e,isStepNode:t})=>e.filter(t),intersectionRootMargin:()=>Pi},async mounted(){await Object(Gs["b"])(8),this.findClosestStepNode()},methods:{isStepNode({type:e}){return"step"===e},contentClass(e){return{["interstitial interstitial-"+(e+1)]:!this.isStepNode(this.content[e])}},onReverseIntoLastStep(){const{asset:e}=this.$refs;if(e){const t=e.$el.querySelector("video");t&&(t.currentTime=0,t.play().catch(()=>{}))}},onFocus(e){const{code:t,media:n,runtimePreview:s}=this.content[e];this.activeStep=e,this.visibleAsset={code:t,media:n,runtimePreview:s}},onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)},findClosestStepNode(){const e=.333*window.innerHeight;let t=null,n=0;this.stepNodes.forEach(s=>{const{index:i}=s.props,r=this.$refs.contentNodes[i].$refs.step;if(!r)return;const{top:o,bottom:a}=r.getBoundingClientRect(),c=o-e,l=a-e,u=Math.abs(c+l);(0===n||u<=n)&&(n=u,t=i)}),null!==t&&this.onFocus(t)},getIntersectionTargets(){const{stepNodes:e,$refs:t}=this;return e.map(({props:{index:e}})=>t.contentNodes[e].$refs.step)},onIntersect(e){const{target:t,isIntersecting:n}=e;if(!n)return;const s=parseFloat(t.getAttribute("data-index"));this.intersectionScrollDirection===Ni.down&&s===this.stepNodes[this.stepNodes.length-1].props.index&&this.onReverseIntoLastStep(),this.onFocus(s)}},props:{content:{type:Array,required:!0},isRuntimePreviewVisible:{type:Boolean,require:!0},sectionNumber:{type:Number,required:!0}}},Di=qi,ji=(n("d4f3"),Object(_["a"])(Di,qs,Ds,!1,null,"2786be2a",null)),Ri=ji.exports,Mi={name:"Section",components:{Intro:Ps,LinkableSection:tt,Steps:Ri},computed:{introProps(){const[{content:e,media:t},...n]=this.contentSection;return{content:e,expandedSections:n,media:t,sectionAnchor:this.anchor,sectionNumber:this.sectionNumber,title:this.title}}},props:{anchor:{type:String,required:!0},title:{type:String,required:!0},contentSection:{type:Array,required:!0},stepsSection:{type:Array,required:!0},sectionNumber:{type:Number,required:!0},isRuntimePreviewVisible:{type:Boolean,required:!0}},methods:{onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)}}},Bi=Mi,Li=(n("9dc4"),Object(_["a"])(Bi,xs,Ts,!1,null,"6b3a0b3a",null)),Ei=Li.exports,Fi={name:"SectionList",components:{Section:Ei},data(){return{isRuntimePreviewVisible:!0}},props:{tasks:{type:Array,required:!0}},methods:{onRuntimePreviewToggle(e){this.isRuntimePreviewVisible=e}}},Vi=Fi,Ui=(n("4d07"),Object(_["a"])(Vi,ks,Ss,!1,null,"79a75e9e",null)),Hi=Ui.exports;const zi={assessments:ls,hero:Sn,tasks:Hi,callToAction:Pt},Gi=new Set(Object.keys(zi)),Wi={name:"TutorialSection",render:function(e){const{kind:t,...n}=this.section,s=zi[t];return s?e(s,{props:n}):null},props:{section:{type:Object,required:!0,validator:e=>Gi.has(e.kind)}}};var Qi={name:"Tutorial",mixins:[we["a"],_s["a"]],components:{NavigationBar:Ce,Section:Wi,PortalTarget:h["PortalTarget"],BreakpointEmitter:o["a"]},inject:["isTargetIDE","store"],computed:{heroSection(){return this.sections.find(({kind:e})=>"hero"===e)},tutorialTitle(){return(this.heroSection||{}).title},pageTitle(){return this.tutorialTitle?`${this.tutorialTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},props:{sections:{type:Array,required:!0},references:{type:Object,required:!0},hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},identifierUrl:{type:String,required:!0}},methods:{handleBreakpointChange(e){this.store.updateBreakpoint(e)},handleCodeColorsChange(e){ws["a"].updateCodeColors(e)}},created(){m["a"].setAvailableLocales(this.metadata.availableLocales),this.store.reset(),this.store.setReferences(this.references)},watch:{references(e){this.store.setReferences(e)},"metadata.availableLocales":function(e){m["a"].setAvailableLocales(e)}},mounted(){this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"})},provide(){return{isClientMobile:this.isClientMobile}},beforeDestroy(){this.$bridge.off("codeColors",this.handleCodeColorsChange)}},Ki=Qi,Xi=(n("424f"),Object(_["a"])(Ki,ys,Cs,!1,null,"611d0574",null)),Ji=Xi.exports,Yi=n("0caf"),Zi=n("146e");const er={article:"article",tutorial:"project"};var tr={name:"Topic",inject:{isTargetIDE:{default:!1}},mixins:[Yi["a"],Zi["a"]],data(){return{topicData:null}},computed:{navigationBarHeight(){return this.isTargetIDE?0:52},store(){return u},hierarchy(){const{hierarchy:e={}}=this.topicData,{technologyNavigation:t=["overview","tutorials","resources"]}=e||{};return{...e,technologyNavigation:t}},topicKey:({$route:e,topicData:t})=>[e.path,t.identifier.interfaceLanguage].join()},beforeRouteEnter(e,t,n){e.meta.skipFetchingData?n(e=>e.newContentMounted()):Object(r["c"])(e,t,n).then(e=>n(t=>{t.topicData=e})).catch(n)},beforeRouteUpdate(e,t,n){Object(r["e"])(e,t)?Object(r["c"])(e,t,n).then(e=>{this.topicData=e,n()}).catch(n):n()},created(){this.store.reset()},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge)},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge)},methods:{componentFor(e){const{kind:t}=e;return{[er.article]:gs,[er.tutorial]:Ji}[t]},propsFor(e){const{hierarchy:t,kind:n,metadata:s,references:i,sections:r,identifier:o}=e;return{[er.article]:{hierarchy:t,metadata:s,references:i,sections:r,identifierUrl:o.url},[er.tutorial]:{hierarchy:t,metadata:s,references:i,sections:r,identifierUrl:o.url}}[n]}},provide(){return{navigationBarHeight:this.navigationBarHeight,store:this.store}},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},nr=tr,sr=Object(_["a"])(nr,s,i,!1,null,null,null);t["default"]=sr.exports},"32b1":function(e,t,n){},"33ff":function(e,t,n){"use strict";n("4e3e")},3976:function(e,t,n){"use strict";n("0c11")},"3e1b":function(e,t,n){"use strict";n("c5c1")},"3fcc":function(e,t,n){"use strict";n("0c14")},"424f":function(e,t,n){"use strict";n("99b6")},4718:function(e,t,n){},"4b4a":function(e,t,n){},"4d07":function(e,t,n){"use strict";n("b52e")},"4e3e":function(e,t,n){},5237:function(e,t,n){"use strict";n("4b4a")},"525c":function(e,t,n){},5892:function(e,t,n){},5913:function(e,t,n){},"63a8":function(e,t,n){},"653a":function(e,t,n){"use strict";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("router-link",{staticClass:"nav-title-content",attrs:{to:e.to}},[n("span",{staticClass:"title"},[e._t("default")],2),n("span",{staticClass:"subhead"},[e._v(" "),e._t("subhead")],2)])},i=[],r={name:"NavTitleContainer",props:{to:{type:[String,Object],required:!0}}},o=r,a=(n("f1e6"),n("2877")),c=Object(a["a"])(o,s,i,!1,null,"854b4dd6",null);t["a"]=c.exports},6866:function(e,t,n){"use strict";n("5892")},7096:function(e,t,n){},"735b":function(e,t,n){},7748:function(e,t,n){},"79ef":function(e,t,n){"use strict";n("bcaa")},"7b17":function(e,t,n){},"7f7b":function(e,t,n){"use strict";n("735b")},"7fae":function(e,t,n){"use strict";n("a53d")},9924:function(e,t,n){},9938:function(e,t,n){"use strict";n("d513")},"99b6":function(e,t,n){},"9dc4":function(e,t,n){"use strict";n("fe9d")},a0d4:function(e,t,n){},a40c:function(e,t,n){},a53d:function(e,t,n){},a95e:function(e,t,n){},aa4c:function(e,t,n){},aece:function(e,t,n){"use strict";n("c0df")},b27b:function(e,t,n){"use strict";n("2a05")},b52e:function(e,t,n){},bcaa:function(e,t,n){},bf0a:function(e,t,n){"use strict";n("4718")},c0df:function(e,t,n){},c5c1:function(e,t,n){},c643:function(e,t,n){"use strict";n("9924")},c7dd:function(e,t,n){"use strict";n("aa4c")},cb8d:function(e,t,n){"use strict";n("0466")},d4f3:function(e,t,n){"use strict";n("fc13")},d513:function(e,t,n){},d86f:function(e,t,n){},da20:function(e,t,n){"use strict";n("a40c")},de60:function(e,t,n){"use strict";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"download-icon",attrs:{viewBox:"0 0 14 14",themeId:"download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},i=[],r=n("be08"),o={name:"DownloadIcon",components:{SVGIcon:r["a"]}},a=o,c=n("2877"),l=Object(c["a"])(a,s,i,!1,null,null,null);t["a"]=l.exports},e38e:function(e,t,n){},e688:function(e,t,n){"use strict";n("5913")},e84c:function(e,t,n){"use strict";n("d86f")},e9b0:function(e,t,n){"use strict";n("ee09")},ea88:function(e,t,n){"use strict";n("ed98")},ed71:function(e,t,n){"use strict";n("7096")},ed98:function(e,t,n){},ee09:function(e,t,n){},f1e6:function(e,t,n){"use strict";n("a0d4")},f264:function(e,t,n){"use strict";n("63a8")},fae5:function(e,t,n){"use strict";n("32b1")},fc13:function(e,t,n){},fe9d:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/tutorials-overview.2a32cd6f.js b/docs/js/tutorials-overview.2a32cd6f.js deleted file mode 100644 index 3025a8afc..000000000 --- a/docs/js/tutorials-overview.2a32cd6f.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["tutorials-overview"],{"032c":function(t,e,n){"use strict";n("9b79")},"0b61":function(t,e,n){},"13d5":function(t,e,n){},"15ac":function(t,e,n){"use strict";n("ddf1")},"17d2":function(t,e,n){},"202a":function(t,e,n){"use strict";n("5899")},"277b":function(t,e,n){"use strict";n("60ca")},"29e3":function(t,e,n){"use strict";n("0b61")},3233:function(t,e,n){"use strict";n("8d8f")},4230:function(t,e,n){"use strict";n("52f5")},"441c":function(t,e,n){},"52f5":function(t,e,n){},5899:function(t,e,n){},"60ca":function(t,e,n){},"653a":function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("router-link",{staticClass:"nav-title-content",attrs:{to:t.to}},[n("span",{staticClass:"title"},[t._t("default")],2),n("span",{staticClass:"subhead"},[t._v(" "),t._t("subhead")],2)])},s=[],a={name:"NavTitleContainer",props:{to:{type:[String,Object],required:!0}}},o=a,r=(n("f1e6"),n("2877")),c=Object(r["a"])(o,i,s,!1,null,"854b4dd6",null);e["a"]=c.exports},6899:function(t,e,n){"use strict";n("441c")},"6fb0":function(t,e,n){"use strict";n("eec8")},"7c60":function(t,e,n){},"8d8f":function(t,e,n){},"8f86":function(t,e,n){},9359:function(t,e,n){"use strict";n("9e08")},9792:function(t,e,n){"use strict";n("c8c8")},"9b79":function(t,e,n){},"9e08":function(t,e,n){},a0d4:function(t,e,n){},a975:function(t,e,n){"use strict";n("7c60")},aebc:function(t,e,n){"use strict";n("c0c9")},b9bf:function(t,e,n){"use strict";n("13d5")},c0c9:function(t,e,n){},c8c8:function(t,e,n){},ca4e:function(t,e,n){"use strict";n("17d2")},ddf1:function(t,e,n){},de60:function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"download-icon",attrs:{viewBox:"0 0 14 14",themeId:"download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},s=[],a=n("be08"),o={name:"DownloadIcon",components:{SVGIcon:a["a"]}},r=o,c=n("2877"),l=Object(c["a"])(r,i,s,!1,null,null,null);e["a"]=l.exports},dfc1:function(t,e,n){},ed64:function(t,e,n){"use strict";n("dfc1")},eec8:function(t,e,n){},f025:function(t,e,n){"use strict";n.r(e);var i,s,a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.topicData?n("Overview",t._b({key:t.topicKey},"Overview",t.overviewProps,!1)):t._e()},o=[],r=n("25a9"),c=n("0caf"),l=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-overview"},[t.isTargetIDE?t._e():n("Nav",{staticClass:"theme-dark",attrs:{sections:t.otherSections}},[t._v(" "+t._s(t.title)+" ")]),n("main",{staticClass:"main",attrs:{id:"main",role:"main",tabindex:"0"}},[n("div",{staticClass:"radial-gradient"},[t._t("above-hero"),t.heroSection?n("Hero",{attrs:{action:t.heroSection.action,content:t.heroSection.content,estimatedTime:t.metadata.estimatedTime,image:t.heroSection.image,title:t.heroSection.title}}):t._e()],2),t.otherSections.length>0?n("LearningPath",{attrs:{sections:t.otherSections}}):t._e()],1)],1)},u=[],m=n("e425"),d={state:{activeTutorialLink:null,activeVolume:null,references:{}},reset(){this.state.activeTutorialLink=null,this.state.activeVolume=null,this.state.references={}},setActiveSidebarLink(t){this.state.activeTutorialLink=t},setActiveVolume(t){this.state.activeVolume=t},setReferences(t){this.state.references=t}},p=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("NavBase",[n("NavTitleContainer",{attrs:{to:t.buildUrl(t.$route.path,t.$route.query)}},[n("template",{slot:"default"},[t._t("default")],2),n("template",{slot:"subhead"},[t._v(t._s(t.$tc("tutorials.title",2)))])],2),n("template",{slot:"menu-items"},[n("NavMenuItemBase",{staticClass:"in-page-navigation"},[n("TutorialsNavigation",{attrs:{sections:t.sections}})],1),t._t("menu-items")],2)],2)},h=[],v=n("cbcf"),f=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("nav",{staticClass:"tutorials-navigation"},[n("TutorialsNavigationList",t._l(t.sections,(function(e,i){return n("li",{key:e.name+"_"+i,class:t.sectionClasses(e)},[t.isVolume(e)?n(t.componentForVolume(e),t._b({tag:"component",on:{"select-menu":t.onSelectMenu,"deselect-menu":t.onDeselectMenu}},"component",t.propsForVolume(e),!1),t._l(e.chapters,(function(e){return n("li",{key:e.name},[n("TutorialsNavigationLink",[t._v(" "+t._s(e.name)+" ")])],1)})),0):t.isResources(e)?n("TutorialsNavigationLink",[t._v(" "+t._s(t.$t("sections.resources"))+" ")]):t._e()],1)})),0)],1)},b=[],_=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("router-link",{staticClass:"tutorials-navigation-link",class:{active:t.active},attrs:{to:t.fragment},nativeOn:{click:function(e){return t.handleFocusAndScroll(t.fragment.hash)}}},[t._t("default")],2)},g=[],C=n("002d"),y=n("8a61"),T={name:"TutorialsNavigationLink",mixins:[y["a"]],inject:{store:{default:()=>({state:{}})}},data(){return{state:this.store.state}},computed:{active:({state:{activeTutorialLink:t},text:e})=>e===t,fragment:({text:t,$route:e})=>({hash:Object(C["a"])(t),query:e.query}),text:({$slots:{default:[{text:t}]}})=>t.trim()}},S=T,V=(n("6fb0"),n("2877")),k=Object(V["a"])(S,_,g,!1,null,"e9f9b59c",null),I=k.exports,x=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"tutorials-navigation-list",attrs:{role:"list"}},[t._t("default")],2)},N=[],O={name:"TutorialsNavigationList"},$=O,j=(n("202a"),Object(V["a"])($,x,N,!1,null,"6f2800d1",null)),A=j.exports,w=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-navigation-menu",class:{collapsed:t.collapsed}},[n("button",{staticClass:"toggle",attrs:{"aria-expanded":t.collapsed?"false":"true",type:"button"},on:{click:function(e){return e.stopPropagation(),t.onClick.apply(null,arguments)}}},[n("span",{staticClass:"text"},[t._v(t._s(t.title))]),n("InlineCloseIcon",{staticClass:"toggle-icon icon-inline"})],1),n("transition-expand",[t.collapsed?t._e():n("div",{staticClass:"tutorials-navigation-menu-content"},[n("TutorialsNavigationList",{attrs:{"aria-label":t.$t("tutorials.nav.chapters")}},[t._t("default")],2)],1)])],1)},q=[],L=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-close-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-close"}},[n("path",{attrs:{d:"M11.91 1l1.090 1.090-4.917 4.915 4.906 4.905-1.090 1.090-4.906-4.905-4.892 4.894-1.090-1.090 4.892-4.894-4.903-4.904 1.090-1.090 4.903 4.904z"}})])},E=[],M=n("be08"),D={name:"InlineCloseIcon",components:{SVGIcon:M["a"]}},F=D,R=Object(V["a"])(F,L,E,!1,null,null,null),B=R.exports,G={name:"TransitionExpand",functional:!0,render(t,e){const n={props:{name:"expand"},on:{afterEnter(t){t.style.height="auto"},enter(t){const{width:e}=getComputedStyle(t);t.style.width=e,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const{height:n}=getComputedStyle(t);t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=n})},leave(t){const{height:e}=getComputedStyle(t);t.style.height=e,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}};return t("transition",n,e.children)}},z=G,P=(n("032c"),Object(V["a"])(z,i,s,!1,null,null,null)),H=P.exports,K={name:"TutorialsNavigationMenu",components:{InlineCloseIcon:B,TransitionExpand:H,TutorialsNavigationList:A},props:{collapsed:{type:Boolean,default:!0},title:{type:String,required:!0}},methods:{onClick(){this.collapsed?this.$emit("select-menu",this.title):this.$emit("deselect-menu")}}},U=K,Z=(n("277b"),Object(V["a"])(U,w,q,!1,null,"489416f8",null)),J=Z.exports;const Q={resources:"resources",volume:"volume"};var W={name:"TutorialsNavigation",components:{TutorialsNavigationLink:I,TutorialsNavigationList:A,TutorialsNavigationMenu:J},constants:{SectionKind:Q},inject:{store:{default:()=>({setActiveVolume(){}})}},data(){return{state:this.store.state}},props:{sections:{type:Array,required:!0}},computed:{activeVolume:({state:t})=>t.activeVolume},methods:{sectionClasses(t){return{volume:this.isVolume(t),"volume--named":this.isNamedVolume(t),resource:this.isResources(t)}},componentForVolume:({name:t})=>t?J:A,isResources:({kind:t})=>t===Q.resources,isVolume:({kind:t})=>t===Q.volume,activateFirstNamedVolume(){const{isNamedVolume:t,sections:e}=this,n=e.find(t);n&&this.store.setActiveVolume(n.name)},isNamedVolume(t){return this.isVolume(t)&&t.name},onDeselectMenu(){this.store.setActiveVolume(null)},onSelectMenu(t){this.store.setActiveVolume(t)},propsForVolume({name:t}){const{activeVolume:e}=this;return t?{collapsed:t!==e,title:t}:{"aria-label":"Chapters"}}},created(){this.activateFirstNamedVolume()}},X=W,Y=(n("a975"),Object(V["a"])(X,f,b,!1,null,"79093ed6",null)),tt=Y.exports,et=n("653a"),nt=n("d26a"),it=n("863d");const st={resources:"resources",volume:"volume"};var at={name:"Nav",constants:{SectionKind:st},components:{NavMenuItemBase:it["a"],NavTitleContainer:et["a"],TutorialsNavigation:tt,NavBase:v["a"]},props:{sections:{type:Array,require:!0}},methods:{buildUrl:nt["b"]}},ot=at,rt=(n("9359"),Object(V["a"])(ot,p,h,!1,null,"b806ee20",null)),ct=rt.exports,lt=n("bf08"),ut=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"hero"},[n("div",{staticClass:"copy-container"},[n("h1",{staticClass:"title"},[t._v(t._s(t.title))]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e(),t.estimatedTime?n("p",{staticClass:"meta"},[n("TimerIcon"),n("span",{staticClass:"meta-content"},[n("strong",{staticClass:"time"},[t._v(t._s(t.estimatedTime))]),n("span",[t._v(" "+t._s(t.$t("tutorials.estimated-time")))])])],1):t._e(),t.action?n("CallToActionButton",{attrs:{action:t.action,"aria-label":t.$t("tutorials.overriding-title",{newTitle:t.action.overridingTitle,title:t.title}),isDark:""}}):t._e()],1),t.image?n("Asset",{attrs:{identifier:t.image}}):t._e()],1)},mt=[],dt=n("80e4"),pt=n("c081"),ht=n("5677"),vt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"timer-icon",attrs:{viewBox:"0 0 14 14",themeId:"timer"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 2c-2.761 0-5 2.239-5 5s2.239 5 5 5c2.761 0 5-2.239 5-5v0c0-2.761-2.239-5-5-5v0z"}}),n("path",{attrs:{d:"M6.51 3.51h1.5v3.5h-1.5v-3.5z"}}),n("path",{attrs:{d:"M6.51 7.010h4v1.5h-4v-1.5z"}})])},ft=[],bt={name:"TimerIcon",components:{SVGIcon:M["a"]}},_t=bt,gt=Object(V["a"])(_t,vt,ft,!1,null,null,null),Ct=gt.exports,yt={name:"Hero",components:{Asset:dt["a"],CallToActionButton:pt["a"],ContentNode:ht["default"],TimerIcon:Ct},props:{action:{type:Object,required:!1},content:{type:Array,required:!1},estimatedTime:{type:String,required:!1},image:{type:String,required:!1},title:{type:String,required:!0}}},Tt=yt,St=(n("29e3"),Object(V["a"])(Tt,ut,mt,!1,null,"383dab71",null)),Vt=St.exports,kt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"learning-path",class:t.classes},[n("div",{staticClass:"main-container"},[t.isTargetIDE?t._e():n("div",{staticClass:"secondary-content-container"},[n("TutorialsNavigation",{attrs:{sections:t.sections,"aria-label":t.$t("sections.on-this-page")}})],1),n("div",{staticClass:"primary-content-container"},[n("div",{staticClass:"content-sections-container"},[t._l(t.volumes,(function(e,i){return n("Volume",t._b({key:"volume_"+i,staticClass:"content-section"},"Volume",t.propsFor(e),!1))})),t._l(t.otherSections,(function(e,i){return n(t.componentFor(e),t._b({key:"resource_"+i,tag:"component",staticClass:"content-section"},"component",t.propsFor(e),!1))}))],2)])])])},It=[],xt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"resources",attrs:{id:"resources",tabindex:"-1"}},[n("VolumeName",{attrs:{name:t.$t("sections.resources"),content:t.content}}),n("TileGroup",{attrs:{tiles:t.tiles}})],1)},Nt=[],Ot=n("72e7");const $t={topOneThird:"-30% 0% -70% 0%",center:"-50% 0% -50% 0%"};var jt={mixins:[Ot["a"]],computed:{intersectionRoot(){return null},intersectionRootMargin(){return $t.center}},methods:{onIntersect(t){if(!t.isIntersecting)return;const e=this.onIntersectViewport;e?e():console.warn("onIntersectViewportCenter not implemented")}}},At=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"volume-name"},[t.image?n("Asset",{staticClass:"image",attrs:{identifier:t.image,"aria-hidden":"true"}}):t._e(),n("h2",{staticClass:"name"},[t._v(" "+t._s(t.name)+" ")]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)},wt=[],qt={name:"VolumeName",components:{ContentNode:ht["default"],Asset:dt["a"]},props:{image:{type:String,required:!1},content:{type:Array,required:!1},name:{type:String,required:!1}}},Lt=qt,Et=(n("ca4e"),Object(V["a"])(Lt,At,wt,!1,null,"569db166",null)),Mt=Et.exports,Dt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile-group",class:t.countClass},t._l(t.tiles,(function(e){return n("Tile",t._b({key:e.title},"Tile",t.propsFor(e),!1))})),1)},Ft=[],Rt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile"},[t.identifier?n("div",{staticClass:"icon"},[n(t.iconComponent,{tag:"component"})],1):t._e(),n("div",{staticClass:"title"},[t._v(t._s(t.title))]),n("ContentNode",{attrs:{content:t.content}}),t.action?n("DestinationDataProvider",{attrs:{destination:t.action},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.url,s=e.title;return n("Reference",{staticClass:"link",attrs:{url:i}},[t._v(" "+t._s(s)+" "),n("InlineChevronRightIcon",{staticClass:"link-icon icon-inline"})],1)}}],null,!1,3874201962)}):t._e()],1)},Bt=[],Gt=n("3b96"),zt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"document-icon",attrs:{viewBox:"0 0 14 14",themeId:"document"}},[n("path",{attrs:{d:"M11.2,5.3,8,2l-.1-.1H2.8V12.1h8.5V6.3l-.1-1ZM8,3.2l2,2.1H8Zm2.4,8H3.6V2.8H7V6.3h3.4Z"}})])},Pt=[],Ht={name:"DocumentIcon",components:{SVGIcon:M["a"]}},Kt=Ht,Ut=(n("3233"),Object(V["a"])(Kt,zt,Pt,!1,null,"3a80772b",null)),Zt=Ut.exports,Jt=n("de60"),Qt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"forum-icon",attrs:{viewBox:"0 0 14 14",themeId:"forum"}},[n("path",{attrs:{d:"M13 1v9h-7l-1.5 3-1.5-3h-2v-9zM12 2h-10v7h1.616l0.884 1.763 0.88-1.763h6.62z"}}),n("path",{attrs:{d:"M3 4h8.001v1h-8.001v-1z"}}),n("path",{attrs:{d:"M3 6h8.001v1h-8.001v-1z"}})])},Wt=[],Xt={name:"ForumIcon",components:{SVGIcon:M["a"]}},Yt=Xt,te=Object(V["a"])(Yt,Qt,Wt,!1,null,null,null),ee=te.exports,ne=n("c4dd"),ie=n("86d8"),se=n("34b0"),ae=n("c7ea");const oe={documentation:"documentation",downloads:"downloads",featured:"featured",forums:"forums",sampleCode:"sampleCode",videos:"videos"};var re={name:"Tile",constants:{Identifier:oe},components:{DestinationDataProvider:ae["a"],InlineChevronRightIcon:se["a"],ContentNode:ht["default"],CurlyBracketsIcon:Gt["a"],DocumentIcon:Zt,DownloadIcon:Jt["a"],ForumIcon:ee,PlayIcon:ne["a"],Reference:ie["a"]},props:{action:{type:Object,required:!1},content:{type:Array,required:!0},identifier:{type:String,required:!1},title:{type:String,require:!0}},computed:{iconComponent:({identifier:t})=>({[oe.documentation]:Zt,[oe.downloads]:Jt["a"],[oe.forums]:ee,[oe.sampleCode]:Gt["a"],[oe.videos]:ne["a"]}[t])}},ce=re,le=(n("6899"),Object(V["a"])(ce,Rt,Bt,!1,null,"96abac22",null)),ue=le.exports,me={name:"TileGroup",components:{Tile:ue},props:{tiles:{type:Array,required:!0}},computed:{countClass:({tiles:t})=>"count-"+t.length},methods:{propsFor:({action:t,content:e,identifier:n,title:i})=>({action:t,content:e,identifier:n,title:i})}},de=me,pe=(n("f0ca"),Object(V["a"])(de,Dt,Ft,!1,null,"015f9f13",null)),he=pe.exports,ve={name:"Resources",mixins:[jt],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{VolumeName:Mt,TileGroup:he},computed:{intersectionRootMargin:()=>$t.topOneThird},props:{content:{type:Array,required:!1},tiles:{type:Array,required:!0}},methods:{onIntersectViewport(){this.store.setActiveSidebarLink("Resources"),this.store.setActiveVolume(null)}}},fe=ve,be=(n("ed64"),Object(V["a"])(fe,xt,Nt,!1,null,"7f8022c1",null)),_e=be.exports,ge=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"volume"},[t.name?n("VolumeName",t._b({},"VolumeName",{name:t.name,image:t.image,content:t.content},!1)):t._e(),t._l(t.chapters,(function(e,i){return n("Chapter",{key:e.name,staticClass:"tile",attrs:{content:e.content,image:e.image,name:e.name,number:i+1,topics:t.lookupTopics(e.tutorials),volumeHasName:!!t.name}})}))],2)},Ce=[],ye=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"chapter",attrs:{id:t.anchor,tabindex:"-1"}},[n("div",{staticClass:"info"},[n("Asset",{attrs:{identifier:t.image,"aria-hidden":"true"}}),n("div",{staticClass:"intro"},[n(t.volumeHasName?"h3":"h2",{tag:"component",staticClass:"name",attrs:{"aria-label":t.name+" - "+t.$tc("tutorials.sections.chapter",{number:t.number})}},[n("span",{staticClass:"eyebrow",attrs:{"aria-hidden":"true"}},[t._v(" "+t._s(t.$t("tutorials.sections.chapter",{number:t.number}))+" ")]),n("span",{staticClass:"name-text",attrs:{"aria-hidden":"true"}},[t._v(t._s(t.name))])]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)],1),n("TopicList",{attrs:{topics:t.topics}})],1)},Te=[],Se=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"topic-list"},t._l(t.topics,(function(e){return n("li",{key:e.url,staticClass:"topic",class:[t.kindClassFor(e),{"no-time-estimate":!e.estimatedTime}]},[n("div",{staticClass:"topic-icon"},[n(t.iconComponent(e),{tag:"component"})],1),n("router-link",{staticClass:"container",attrs:{to:t.buildUrl(e.url,t.$route.query),"aria-label":t.ariaLabelFor(e)}},[n("div",{staticClass:"link"},[t._v(t._s(e.title))]),e.estimatedTime?n("div",{staticClass:"time"},[n("TimerIcon"),n("span",{staticClass:"time-label"},[t._v(t._s(e.estimatedTime))])],1):t._e()])],1)})),0)},Ve=[],ke=n("a9f1"),Ie=n("8d2d");const xe={article:"article",tutorial:"project"},Ne={article:"article",tutorial:"tutorial"},Oe={[xe.article]:"Article",[xe.tutorial]:"Tutorial"};var $e={name:"ChapterTopicList",components:{TimerIcon:Ct},constants:{TopicKind:xe,TopicKindClass:Ne,TopicKindIconLabel:Oe},props:{topics:{type:Array,required:!0}},methods:{buildUrl:nt["b"],iconComponent:({kind:t})=>({[xe.article]:ke["a"],[xe.tutorial]:Ie["a"]}[t]),kindClassFor:({kind:t})=>({[xe.article]:Ne.article,[xe.tutorial]:Ne.tutorial}[t]),formatTime(t){return t.replace("min"," "+this.$t("tutorials.time.minutes.full")).replace("hrs"," "+this.$t("tutorials.time.hours.full"))},ariaLabelFor(t){const{title:e,estimatedTime:n,kind:i}=t,s=[e,Oe[i]];return n&&s.push(`${this.formatTime(n)} ${this.$t("tutorials.estimated-time")}`),s.join(" - ")}}},je=$e,Ae=(n("9792"),Object(V["a"])(je,Se,Ve,!1,null,"45ec37c5",null)),we=Ae.exports,qe={name:"Chapter",mixins:[jt],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{Asset:dt["a"],ContentNode:ht["default"],TopicList:we},props:{content:{type:Array,required:!1},image:{type:String,required:!0},name:{type:String,required:!0},number:{type:Number,required:!0},topics:{type:Array,required:!0},volumeHasName:{type:Boolean,default:!1}},computed:{anchor:({name:t})=>Object(C["a"])(t),intersectionRootMargin:()=>$t.topOneThird},methods:{onIntersectViewport(){this.store.setActiveSidebarLink(this.name),this.volumeHasName||this.store.setActiveVolume(null)}}},Le=qe,Ee=(n("4230"),Object(V["a"])(Le,ye,Te,!1,null,"7468bc5e",null)),Me=Ee.exports,De={name:"Volume",mixins:[jt],components:{VolumeName:Mt,Chapter:Me},computed:{references:({store:t})=>t.state.references,intersectionRootMargin:()=>$t.topOneThird},inject:{store:{default:()=>({setActiveVolume(){},state:{references:{}}})}},props:{chapters:{type:Array,required:!0},content:{type:Array,required:!1},image:{type:String,required:!1},name:{type:String,required:!1}},methods:{lookupTopics(t){return t.reduce((t,e)=>t.concat(this.references[e]||[]),[])},onIntersectViewport(){this.name&&this.store.setActiveVolume(this.name)}}},Fe=De,Re=(n("b9bf"),Object(V["a"])(Fe,ge,Ce,!1,null,"540dbf10",null)),Be=Re.exports;const Ge={resources:"resources",volume:"volume"};var ze={name:"LearningPath",components:{Resources:_e,TutorialsNavigation:tt,Volume:Be},constants:{SectionKind:Ge},inject:{isTargetIDE:{default:!1}},props:{sections:{type:Array,required:!0,validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Ge,t.kind))}},computed:{classes:({isTargetIDE:t})=>({ide:t}),partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Ge.volume?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),volumes:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1]},methods:{componentFor:({kind:t})=>({[Ge.resources]:_e,[Ge.volume]:Be}[t]),propsFor:({chapters:t,content:e,image:n,kind:i,name:s,tiles:a})=>({[Ge.resources]:{content:e,tiles:a},[Ge.volume]:{chapters:t,content:e,image:n,name:s}}[i])}},Pe=ze,He=(n("aebc"),Object(V["a"])(Pe,kt,It,!1,null,"69a72bbc",null)),Ke=He.exports;const Ue={hero:"hero",resources:"resources",volume:"volume"};var Ze={name:"TutorialsOverview",components:{Hero:Vt,LearningPath:Ke,Nav:ct},mixins:[lt["a"]],constants:{SectionKind:Ue},inject:{isTargetIDE:{default:!1}},props:{metadata:{type:Object,default:()=>({})},references:{type:Object,default:()=>({})},sections:{type:Array,default:()=>[],validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Ue,t.kind))}},computed:{pageTitle:({title:t})=>[t,"Tutorials"].filter(Boolean).join(" "),pageDescription:({heroSection:t,extractFirstParagraphText:e})=>t?e(t.content):null,partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Ue.hero?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),heroSections:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1],heroSection:({heroSections:t})=>t[0],store:()=>d,title:({metadata:{category:t=""}})=>t},provide(){return{store:this.store}},created(){m["a"].setAvailableLocales(this.metadata.availableLocales),this.store.reset(),this.store.setReferences(this.references)},watch:{references(t){this.store.setReferences(t)},"metadata.availableLocales":function(t){m["a"].setAvailableLocales(t)}}},Je=Ze,Qe=(n("15ac"),Object(V["a"])(Je,l,u,!1,null,"29ed9b58",null)),We=Qe.exports,Xe=n("146e"),Ye={name:"TutorialsOverview",components:{Overview:We},mixins:[c["a"],Xe["a"]],data(){return{topicData:null}},computed:{overviewProps:({topicData:{metadata:t,references:e,sections:n}})=>({metadata:t,references:e,sections:n}),topicKey:({$route:t,topicData:e})=>[t.path,e.identifier.interfaceLanguage].join()},beforeRouteEnter(t,e,n){t.meta.skipFetchingData?n(t=>t.newContentMounted()):Object(r["c"])(t,e,n).then(t=>n(e=>{e.topicData=t})).catch(n)},beforeRouteUpdate(t,e,n){Object(r["e"])(t,e)?Object(r["c"])(t,e,n).then(t=>{this.topicData=t,n()}).catch(n):n()},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge)},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge)},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},tn=Ye,en=Object(V["a"])(tn,a,o,!1,null,null,null);e["default"]=en.exports},f0ca:function(t,e,n){"use strict";n("8f86")},f1e6:function(t,e,n){"use strict";n("a0d4")}}]); \ No newline at end of file diff --git a/docs/js/typeahead.jquery.js b/docs/js/typeahead.jquery.js new file mode 100644 index 000000000..3a2d2ab03 --- /dev/null +++ b/docs/js/typeahead.jquery.js @@ -0,0 +1,1694 @@ +/*! + * typeahead.js 1.3.1 + * https://github.com/corejavascript/typeahead.js + * Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT + */ + + +(function(root, factory) { + if (typeof define === "function" && define.amd) { + define([ "jquery" ], function(a0) { + return factory(a0); + }); + } else if (typeof module === "object" && module.exports) { + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +})(this, function($) { + var _ = function() { + "use strict"; + return { + isMsie: function() { + return /(msie|trident)/i.test(navigator.userAgent) ? navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2] : false; + }, + isBlankString: function(str) { + return !str || /^\s*$/.test(str); + }, + escapeRegExChars: function(str) { + return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); + }, + isString: function(obj) { + return typeof obj === "string"; + }, + isNumber: function(obj) { + return typeof obj === "number"; + }, + isArray: $.isArray, + isFunction: $.isFunction, + isObject: $.isPlainObject, + isUndefined: function(obj) { + return typeof obj === "undefined"; + }, + isElement: function(obj) { + return !!(obj && obj.nodeType === 1); + }, + isJQuery: function(obj) { + return obj instanceof $; + }, + toStr: function toStr(s) { + return _.isUndefined(s) || s === null ? "" : s + ""; + }, + bind: $.proxy, + each: function(collection, cb) { + $.each(collection, reverseArgs); + function reverseArgs(index, value) { + return cb(value, index); + } + }, + map: $.map, + filter: $.grep, + every: function(obj, test) { + var result = true; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (!(result = test.call(null, val, key, obj))) { + return false; + } + }); + return !!result; + }, + some: function(obj, test) { + var result = false; + if (!obj) { + return result; + } + $.each(obj, function(key, val) { + if (result = test.call(null, val, key, obj)) { + return false; + } + }); + return !!result; + }, + mixin: $.extend, + identity: function(x) { + return x; + }, + clone: function(obj) { + return $.extend(true, {}, obj); + }, + getIdGenerator: function() { + var counter = 0; + return function() { + return counter++; + }; + }, + templatify: function templatify(obj) { + return $.isFunction(obj) ? obj : template; + function template() { + return String(obj); + } + }, + defer: function(fn) { + setTimeout(fn, 0); + }, + debounce: function(func, wait, immediate) { + var timeout, result; + return function() { + var context = this, args = arguments, later, callNow; + later = function() { + timeout = null; + if (!immediate) { + result = func.apply(context, args); + } + }; + callNow = immediate && !timeout; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + if (callNow) { + result = func.apply(context, args); + } + return result; + }; + }, + throttle: function(func, wait) { + var context, args, timeout, result, previous, later; + previous = 0; + later = function() { + previous = new Date(); + timeout = null; + result = func.apply(context, args); + }; + return function() { + var now = new Date(), remaining = wait - (now - previous); + context = this; + args = arguments; + if (remaining <= 0) { + clearTimeout(timeout); + timeout = null; + previous = now; + result = func.apply(context, args); + } else if (!timeout) { + timeout = setTimeout(later, remaining); + } + return result; + }; + }, + stringify: function(val) { + return _.isString(val) ? val : JSON.stringify(val); + }, + guid: function() { + function _p8(s) { + var p = (Math.random().toString(16) + "000000000").substr(2, 8); + return s ? "-" + p.substr(0, 4) + "-" + p.substr(4, 4) : p; + } + return "tt-" + _p8() + _p8(true) + _p8(true) + _p8(); + }, + noop: function() {} + }; + }(); + var WWW = function() { + "use strict"; + var defaultClassNames = { + wrapper: "twitter-typeahead", + input: "tt-input", + hint: "tt-hint", + menu: "tt-menu", + dataset: "tt-dataset", + suggestion: "tt-suggestion", + selectable: "tt-selectable", + empty: "tt-empty", + open: "tt-open", + cursor: "tt-cursor", + highlight: "tt-highlight" + }; + return build; + function build(o) { + var www, classes; + classes = _.mixin({}, defaultClassNames, o); + www = { + css: buildCss(), + classes: classes, + html: buildHtml(classes), + selectors: buildSelectors(classes) + }; + return { + css: www.css, + html: www.html, + classes: www.classes, + selectors: www.selectors, + mixin: function(o) { + _.mixin(o, www); + } + }; + } + function buildHtml(c) { + return { + wrapper: '', + menu: '
' + }; + } + function buildSelectors(classes) { + var selectors = {}; + _.each(classes, function(v, k) { + selectors[k] = "." + v; + }); + return selectors; + } + function buildCss() { + var css = { + wrapper: { + position: "relative", + display: "inline-block" + }, + hint: { + position: "absolute", + top: "0", + left: "0", + borderColor: "transparent", + boxShadow: "none", + opacity: "1" + }, + input: { + position: "relative", + verticalAlign: "top", + backgroundColor: "transparent" + }, + inputWithNoHint: { + position: "relative", + verticalAlign: "top" + }, + menu: { + position: "absolute", + top: "100%", + left: "0", + zIndex: "100", + display: "none" + }, + ltr: { + left: "0", + right: "auto" + }, + rtl: { + left: "auto", + right: " 0" + } + }; + if (_.isMsie()) { + _.mixin(css.input, { + backgroundImage: "url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)" + }); + } + return css; + } + }(); + var EventBus = function() { + "use strict"; + var namespace, deprecationMap; + namespace = "typeahead:"; + deprecationMap = { + render: "rendered", + cursorchange: "cursorchanged", + select: "selected", + autocomplete: "autocompleted" + }; + function EventBus(o) { + if (!o || !o.el) { + $.error("EventBus initialized without el"); + } + this.$el = $(o.el); + } + _.mixin(EventBus.prototype, { + _trigger: function(type, args) { + var $e = $.Event(namespace + type); + this.$el.trigger.call(this.$el, $e, args || []); + return $e; + }, + before: function(type) { + var args, $e; + args = [].slice.call(arguments, 1); + $e = this._trigger("before" + type, args); + return $e.isDefaultPrevented(); + }, + trigger: function(type) { + var deprecatedType; + this._trigger(type, [].slice.call(arguments, 1)); + if (deprecatedType = deprecationMap[type]) { + this._trigger(deprecatedType, [].slice.call(arguments, 1)); + } + } + }); + return EventBus; + }(); + var EventEmitter = function() { + "use strict"; + var splitter = /\s+/, nextTick = getNextTick(); + return { + onSync: onSync, + onAsync: onAsync, + off: off, + trigger: trigger + }; + function on(method, types, cb, context) { + var type; + if (!cb) { + return this; + } + types = types.split(splitter); + cb = context ? bindContext(cb, context) : cb; + this._callbacks = this._callbacks || {}; + while (type = types.shift()) { + this._callbacks[type] = this._callbacks[type] || { + sync: [], + async: [] + }; + this._callbacks[type][method].push(cb); + } + return this; + } + function onAsync(types, cb, context) { + return on.call(this, "async", types, cb, context); + } + function onSync(types, cb, context) { + return on.call(this, "sync", types, cb, context); + } + function off(types) { + var type; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + while (type = types.shift()) { + delete this._callbacks[type]; + } + return this; + } + function trigger(types) { + var type, callbacks, args, syncFlush, asyncFlush; + if (!this._callbacks) { + return this; + } + types = types.split(splitter); + args = [].slice.call(arguments, 1); + while ((type = types.shift()) && (callbacks = this._callbacks[type])) { + syncFlush = getFlush(callbacks.sync, this, [ type ].concat(args)); + asyncFlush = getFlush(callbacks.async, this, [ type ].concat(args)); + syncFlush() && nextTick(asyncFlush); + } + return this; + } + function getFlush(callbacks, context, args) { + return flush; + function flush() { + var cancelled; + for (var i = 0, len = callbacks.length; !cancelled && i < len; i += 1) { + cancelled = callbacks[i].apply(context, args) === false; + } + return !cancelled; + } + } + function getNextTick() { + var nextTickFn; + if (window.setImmediate) { + nextTickFn = function nextTickSetImmediate(fn) { + setImmediate(function() { + fn(); + }); + }; + } else { + nextTickFn = function nextTickSetTimeout(fn) { + setTimeout(function() { + fn(); + }, 0); + }; + } + return nextTickFn; + } + function bindContext(fn, context) { + return fn.bind ? fn.bind(context) : function() { + fn.apply(context, [].slice.call(arguments, 0)); + }; + } + }(); + var highlight = function(doc) { + "use strict"; + var defaults = { + node: null, + pattern: null, + tagName: "strong", + className: null, + wordsOnly: false, + caseSensitive: false, + diacriticInsensitive: false + }; + var accented = { + A: "[AaªÀ-Åà-åĀ-ąǍǎȀ-ȃȦȧᴬᵃḀḁẚẠ-ảₐ℀℁℻⒜Ⓐⓐ㍱-㍴㎀-㎄㎈㎉㎩-㎯㏂㏊㏟㏿Aa]", + B: "[BbᴮᵇḂ-ḇℬ⒝Ⓑⓑ㍴㎅-㎇㏃㏈㏔㏝Bb]", + C: "[CcÇçĆ-čᶜ℀ℂ℃℅℆ℭⅭⅽ⒞Ⓒⓒ㍶㎈㎉㎝㎠㎤㏄-㏇Cc]", + D: "[DdĎďDŽ-džDZ-dzᴰᵈḊ-ḓⅅⅆⅮⅾ⒟Ⓓⓓ㋏㍲㍷-㍹㎗㎭-㎯㏅㏈Dd]", + E: "[EeÈ-Ëè-ëĒ-ěȄ-ȇȨȩᴱᵉḘ-ḛẸ-ẽₑ℡ℯℰⅇ⒠Ⓔⓔ㉐㋍㋎Ee]", + F: "[FfᶠḞḟ℉ℱ℻⒡Ⓕⓕ㎊-㎌㎙ff-fflFf]", + G: "[GgĜ-ģǦǧǴǵᴳᵍḠḡℊ⒢Ⓖⓖ㋌㋍㎇㎍-㎏㎓㎬㏆㏉㏒㏿Gg]", + H: "[HhĤĥȞȟʰᴴḢ-ḫẖℋ-ℎ⒣Ⓗⓗ㋌㍱㎐-㎔㏊㏋㏗Hh]", + I: "[IiÌ-Ïì-ïĨ-İIJijǏǐȈ-ȋᴵᵢḬḭỈ-ịⁱℐℑℹⅈⅠ-ⅣⅥ-ⅨⅪⅫⅰ-ⅳⅵ-ⅸⅺⅻ⒤Ⓘⓘ㍺㏌㏕fiffiIi]", + J: "[JjIJ-ĵLJ-njǰʲᴶⅉ⒥ⒿⓙⱼJj]", + K: "[KkĶķǨǩᴷᵏḰ-ḵK⒦Ⓚⓚ㎄㎅㎉㎏㎑㎘㎞㎢㎦㎪㎸㎾㏀㏆㏍-㏏Kk]", + L: "[LlĹ-ŀLJ-ljˡᴸḶḷḺ-ḽℒℓ℡Ⅼⅼ⒧Ⓛⓛ㋏㎈㎉㏐-㏓㏕㏖㏿flfflLl]", + M: "[MmᴹᵐḾ-ṃ℠™ℳⅯⅿ⒨Ⓜⓜ㍷-㍹㎃㎆㎎㎒㎖㎙-㎨㎫㎳㎷㎹㎽㎿㏁㏂㏎㏐㏔-㏖㏘㏙㏞㏟Mm]", + N: "[NnÑñŃ-ʼnNJ-njǸǹᴺṄ-ṋⁿℕ№⒩Ⓝⓝ㎁㎋㎚㎱㎵㎻㏌㏑Nn]", + O: "[OoºÒ-Öò-öŌ-őƠơǑǒǪǫȌ-ȏȮȯᴼᵒỌ-ỏₒ℅№ℴ⒪Ⓞⓞ㍵㏇㏒㏖Oo]", + P: "[PpᴾᵖṔ-ṗℙ⒫Ⓟⓟ㉐㍱㍶㎀㎊㎩-㎬㎰㎴㎺㏋㏗-㏚Pp]", + Q: "[Qqℚ⒬Ⓠⓠ㏃Qq]", + R: "[RrŔ-řȐ-ȓʳᴿᵣṘ-ṛṞṟ₨ℛ-ℝ⒭Ⓡⓡ㋍㍴㎭-㎯㏚㏛Rr]", + S: "[SsŚ-šſȘșˢṠ-ṣ₨℁℠⒮Ⓢⓢ㎧㎨㎮-㎳㏛㏜stSs]", + T: "[TtŢ-ťȚțᵀᵗṪ-ṱẗ℡™⒯Ⓣⓣ㉐㋏㎔㏏ſtstTt]", + U: "[UuÙ-Üù-üŨ-ųƯưǓǔȔ-ȗᵁᵘᵤṲ-ṷỤ-ủ℆⒰Ⓤⓤ㍳㍺Uu]", + V: "[VvᵛᵥṼ-ṿⅣ-Ⅷⅳ-ⅷ⒱Ⓥⓥⱽ㋎㍵㎴-㎹㏜㏞Vv]", + W: "[WwŴŵʷᵂẀ-ẉẘ⒲Ⓦⓦ㎺-㎿㏝Ww]", + X: "[XxˣẊ-ẍₓ℻Ⅸ-Ⅻⅸ-ⅻ⒳Ⓧⓧ㏓Xx]", + Y: "[YyÝýÿŶ-ŸȲȳʸẎẏẙỲ-ỹ⒴Ⓨⓨ㏉Yy]", + Z: "[ZzŹ-žDZ-dzᶻẐ-ẕℤℨ⒵Ⓩⓩ㎐-㎔Zz]" + }; + return function hightlight(o) { + var regex; + o = _.mixin({}, defaults, o); + if (!o.node || !o.pattern) { + return; + } + o.pattern = _.isArray(o.pattern) ? o.pattern : [ o.pattern ]; + regex = getRegex(o.pattern, o.caseSensitive, o.wordsOnly, o.diacriticInsensitive); + traverse(o.node, hightlightTextNode); + function hightlightTextNode(textNode) { + var match, patternNode, wrapperNode; + if (match = regex.exec(textNode.data)) { + wrapperNode = doc.createElement(o.tagName); + o.className && (wrapperNode.className = o.className); + patternNode = textNode.splitText(match.index); + patternNode.splitText(match[0].length); + wrapperNode.appendChild(patternNode.cloneNode(true)); + textNode.parentNode.replaceChild(wrapperNode, patternNode); + } + return !!match; + } + function traverse(el, hightlightTextNode) { + var childNode, TEXT_NODE_TYPE = 3; + for (var i = 0; i < el.childNodes.length; i++) { + childNode = el.childNodes[i]; + if (childNode.nodeType === TEXT_NODE_TYPE) { + i += hightlightTextNode(childNode) ? 1 : 0; + } else { + traverse(childNode, hightlightTextNode); + } + } + } + }; + function accent_replacer(chr) { + return accented[chr.toUpperCase()] || chr; + } + function getRegex(patterns, caseSensitive, wordsOnly, diacriticInsensitive) { + var escapedPatterns = [], regexStr; + for (var i = 0, len = patterns.length; i < len; i++) { + var escapedWord = _.escapeRegExChars(patterns[i]); + if (diacriticInsensitive) { + escapedWord = escapedWord.replace(/\S/g, accent_replacer); + } + escapedPatterns.push(escapedWord); + } + regexStr = wordsOnly ? "\\b(" + escapedPatterns.join("|") + ")\\b" : "(" + escapedPatterns.join("|") + ")"; + return caseSensitive ? new RegExp(regexStr) : new RegExp(regexStr, "i"); + } + }(window.document); + var Input = function() { + "use strict"; + var specialKeyCodeMap; + specialKeyCodeMap = { + 9: "tab", + 27: "esc", + 37: "left", + 39: "right", + 13: "enter", + 38: "up", + 40: "down" + }; + function Input(o, www) { + var id; + o = o || {}; + if (!o.input) { + $.error("input is missing"); + } + www.mixin(this); + this.$hint = $(o.hint); + this.$input = $(o.input); + this.$menu = $(o.menu); + id = this.$input.attr("id") || _.guid(); + this.$menu.attr("id", id + "_listbox"); + this.$hint.attr({ + "aria-hidden": true + }); + this.$input.attr({ + "aria-owns": id + "_listbox", + role: "combobox", + "aria-autocomplete": "list", + "aria-expanded": false + }); + this.query = this.$input.val(); + this.queryWhenFocused = this.hasFocus() ? this.query : null; + this.$overflowHelper = buildOverflowHelper(this.$input); + this._checkLanguageDirection(); + if (this.$hint.length === 0) { + this.setHint = this.getHint = this.clearHint = this.clearHintIfInvalid = _.noop; + } + this.onSync("cursorchange", this._updateDescendent); + } + Input.normalizeQuery = function(str) { + return _.toStr(str).replace(/^\s*/g, "").replace(/\s{2,}/g, " "); + }; + _.mixin(Input.prototype, EventEmitter, { + _onBlur: function onBlur() { + this.resetInputValue(); + this.trigger("blurred"); + }, + _onFocus: function onFocus() { + this.queryWhenFocused = this.query; + this.trigger("focused"); + }, + _onKeydown: function onKeydown($e) { + var keyName = specialKeyCodeMap[$e.which || $e.keyCode]; + this._managePreventDefault(keyName, $e); + if (keyName && this._shouldTrigger(keyName, $e)) { + this.trigger(keyName + "Keyed", $e); + } + }, + _onInput: function onInput() { + this._setQuery(this.getInputValue()); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + _managePreventDefault: function managePreventDefault(keyName, $e) { + var preventDefault; + switch (keyName) { + case "up": + case "down": + preventDefault = !withModifier($e); + break; + + default: + preventDefault = false; + } + preventDefault && $e.preventDefault(); + }, + _shouldTrigger: function shouldTrigger(keyName, $e) { + var trigger; + switch (keyName) { + case "tab": + trigger = !withModifier($e); + break; + + default: + trigger = true; + } + return trigger; + }, + _checkLanguageDirection: function checkLanguageDirection() { + var dir = (this.$input.css("direction") || "ltr").toLowerCase(); + if (this.dir !== dir) { + this.dir = dir; + this.$hint.attr("dir", dir); + this.trigger("langDirChanged", dir); + } + }, + _setQuery: function setQuery(val, silent) { + var areEquivalent, hasDifferentWhitespace; + areEquivalent = areQueriesEquivalent(val, this.query); + hasDifferentWhitespace = areEquivalent ? this.query.length !== val.length : false; + this.query = val; + if (!silent && !areEquivalent) { + this.trigger("queryChanged", this.query); + } else if (!silent && hasDifferentWhitespace) { + this.trigger("whitespaceChanged", this.query); + } + }, + _updateDescendent: function updateDescendent(event, id) { + this.$input.attr("aria-activedescendant", id); + }, + bind: function() { + var that = this, onBlur, onFocus, onKeydown, onInput; + onBlur = _.bind(this._onBlur, this); + onFocus = _.bind(this._onFocus, this); + onKeydown = _.bind(this._onKeydown, this); + onInput = _.bind(this._onInput, this); + this.$input.on("blur.tt", onBlur).on("focus.tt", onFocus).on("keydown.tt", onKeydown); + if (!_.isMsie() || _.isMsie() > 9) { + this.$input.on("input.tt", onInput); + } else { + this.$input.on("keydown.tt keypress.tt cut.tt paste.tt", function($e) { + if (specialKeyCodeMap[$e.which || $e.keyCode]) { + return; + } + _.defer(_.bind(that._onInput, that, $e)); + }); + } + return this; + }, + focus: function focus() { + this.$input.focus(); + }, + blur: function blur() { + this.$input.blur(); + }, + getLangDir: function getLangDir() { + return this.dir; + }, + getQuery: function getQuery() { + return this.query || ""; + }, + setQuery: function setQuery(val, silent) { + this.setInputValue(val); + this._setQuery(val, silent); + }, + hasQueryChangedSinceLastFocus: function hasQueryChangedSinceLastFocus() { + return this.query !== this.queryWhenFocused; + }, + getInputValue: function getInputValue() { + return this.$input.val(); + }, + setInputValue: function setInputValue(value) { + this.$input.val(value); + this.clearHintIfInvalid(); + this._checkLanguageDirection(); + }, + resetInputValue: function resetInputValue() { + this.setInputValue(this.query); + }, + getHint: function getHint() { + return this.$hint.val(); + }, + setHint: function setHint(value) { + this.$hint.val(value); + }, + clearHint: function clearHint() { + this.setHint(""); + }, + clearHintIfInvalid: function clearHintIfInvalid() { + var val, hint, valIsPrefixOfHint, isValid; + val = this.getInputValue(); + hint = this.getHint(); + valIsPrefixOfHint = val !== hint && hint.indexOf(val) === 0; + isValid = val !== "" && valIsPrefixOfHint && !this.hasOverflow(); + !isValid && this.clearHint(); + }, + hasFocus: function hasFocus() { + return this.$input.is(":focus"); + }, + hasOverflow: function hasOverflow() { + var constraint = this.$input.width() - 2; + this.$overflowHelper.text(this.getInputValue()); + return this.$overflowHelper.width() >= constraint; + }, + isCursorAtEnd: function() { + var valueLength, selectionStart, range; + valueLength = this.$input.val().length; + selectionStart = this.$input[0].selectionStart; + if (_.isNumber(selectionStart)) { + return selectionStart === valueLength; + } else if (document.selection) { + range = document.selection.createRange(); + range.moveStart("character", -valueLength); + return valueLength === range.text.length; + } + return true; + }, + destroy: function destroy() { + this.$hint.off(".tt"); + this.$input.off(".tt"); + this.$overflowHelper.remove(); + this.$hint = this.$input = this.$overflowHelper = $("
"); + }, + setAriaExpanded: function setAriaExpanded(value) { + this.$input.attr("aria-expanded", value); + } + }); + return Input; + function buildOverflowHelper($input) { + return $('').css({ + position: "absolute", + visibility: "hidden", + whiteSpace: "pre", + fontFamily: $input.css("font-family"), + fontSize: $input.css("font-size"), + fontStyle: $input.css("font-style"), + fontVariant: $input.css("font-variant"), + fontWeight: $input.css("font-weight"), + wordSpacing: $input.css("word-spacing"), + letterSpacing: $input.css("letter-spacing"), + textIndent: $input.css("text-indent"), + textRendering: $input.css("text-rendering"), + textTransform: $input.css("text-transform") + }).insertAfter($input); + } + function areQueriesEquivalent(a, b) { + return Input.normalizeQuery(a) === Input.normalizeQuery(b); + } + function withModifier($e) { + return $e.altKey || $e.ctrlKey || $e.metaKey || $e.shiftKey; + } + }(); + var Dataset = function() { + "use strict"; + var keys, nameGenerator; + keys = { + dataset: "tt-selectable-dataset", + val: "tt-selectable-display", + obj: "tt-selectable-object" + }; + nameGenerator = _.getIdGenerator(); + function Dataset(o, www) { + o = o || {}; + o.templates = o.templates || {}; + o.templates.notFound = o.templates.notFound || o.templates.empty; + if (!o.source) { + $.error("missing source"); + } + if (!o.node) { + $.error("missing node"); + } + if (o.name && !isValidName(o.name)) { + $.error("invalid dataset name: " + o.name); + } + www.mixin(this); + this.highlight = !!o.highlight; + this.name = _.toStr(o.name || nameGenerator()); + this.limit = o.limit || 5; + this.displayFn = getDisplayFn(o.display || o.displayKey); + this.templates = getTemplates(o.templates, this.displayFn); + this.source = o.source.__ttAdapter ? o.source.__ttAdapter() : o.source; + this.async = _.isUndefined(o.async) ? this.source.length > 2 : !!o.async; + this._resetLastSuggestion(); + this.$el = $(o.node).attr("role", "presentation").addClass(this.classes.dataset).addClass(this.classes.dataset + "-" + this.name); + } + Dataset.extractData = function extractData(el) { + var $el = $(el); + if ($el.data(keys.obj)) { + return { + dataset: $el.data(keys.dataset) || "", + val: $el.data(keys.val) || "", + obj: $el.data(keys.obj) || null + }; + } + return null; + }; + _.mixin(Dataset.prototype, EventEmitter, { + _overwrite: function overwrite(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (this.async && this.templates.pending) { + this._renderPending(query); + } else if (!this.async && this.templates.notFound) { + this._renderNotFound(query); + } else { + this._empty(); + } + this.trigger("rendered", suggestions, false, this.name); + }, + _append: function append(query, suggestions) { + suggestions = suggestions || []; + if (suggestions.length && this.$lastSuggestion.length) { + this._appendSuggestions(query, suggestions); + } else if (suggestions.length) { + this._renderSuggestions(query, suggestions); + } else if (!this.$lastSuggestion.length && this.templates.notFound) { + this._renderNotFound(query); + } + this.trigger("rendered", suggestions, true, this.name); + }, + _renderSuggestions: function renderSuggestions(query, suggestions) { + var $fragment; + $fragment = this._getSuggestionsFragment(query, suggestions); + this.$lastSuggestion = $fragment.children().last(); + this.$el.html($fragment).prepend(this._getHeader(query, suggestions)).append(this._getFooter(query, suggestions)); + }, + _appendSuggestions: function appendSuggestions(query, suggestions) { + var $fragment, $lastSuggestion; + $fragment = this._getSuggestionsFragment(query, suggestions); + $lastSuggestion = $fragment.children().last(); + this.$lastSuggestion.after($fragment); + this.$lastSuggestion = $lastSuggestion; + }, + _renderPending: function renderPending(query) { + var template = this.templates.pending; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _renderNotFound: function renderNotFound(query) { + var template = this.templates.notFound; + this._resetLastSuggestion(); + template && this.$el.html(template({ + query: query, + dataset: this.name + })); + }, + _empty: function empty() { + this.$el.empty(); + this._resetLastSuggestion(); + }, + _getSuggestionsFragment: function getSuggestionsFragment(query, suggestions) { + var that = this, fragment; + fragment = document.createDocumentFragment(); + _.each(suggestions, function getSuggestionNode(suggestion) { + var $el, context; + context = that._injectQuery(query, suggestion); + $el = $(that.templates.suggestion(context)).data(keys.dataset, that.name).data(keys.obj, suggestion).data(keys.val, that.displayFn(suggestion)).addClass(that.classes.suggestion + " " + that.classes.selectable); + fragment.appendChild($el[0]); + }); + this.highlight && highlight({ + className: this.classes.highlight, + node: fragment, + pattern: query + }); + return $(fragment); + }, + _getFooter: function getFooter(query, suggestions) { + return this.templates.footer ? this.templates.footer({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _getHeader: function getHeader(query, suggestions) { + return this.templates.header ? this.templates.header({ + query: query, + suggestions: suggestions, + dataset: this.name + }) : null; + }, + _resetLastSuggestion: function resetLastSuggestion() { + this.$lastSuggestion = $(); + }, + _injectQuery: function injectQuery(query, obj) { + return _.isObject(obj) ? _.mixin({ + _query: query + }, obj) : obj; + }, + update: function update(query) { + var that = this, canceled = false, syncCalled = false, rendered = 0; + this.cancel(); + this.cancel = function cancel() { + canceled = true; + that.cancel = $.noop; + that.async && that.trigger("asyncCanceled", query, that.name); + }; + this.source(query, sync, async); + !syncCalled && sync([]); + function sync(suggestions) { + if (syncCalled) { + return; + } + syncCalled = true; + suggestions = (suggestions || []).slice(0, that.limit); + rendered = suggestions.length; + that._overwrite(query, suggestions); + if (rendered < that.limit && that.async) { + that.trigger("asyncRequested", query, that.name); + } + } + function async(suggestions) { + suggestions = suggestions || []; + if (!canceled && rendered < that.limit) { + that.cancel = $.noop; + var idx = Math.abs(rendered - that.limit); + rendered += idx; + that._append(query, suggestions.slice(0, idx)); + that.async && that.trigger("asyncReceived", query, that.name); + } + } + }, + cancel: $.noop, + clear: function clear() { + this._empty(); + this.cancel(); + this.trigger("cleared"); + }, + isEmpty: function isEmpty() { + return this.$el.is(":empty"); + }, + destroy: function destroy() { + this.$el = $("
"); + } + }); + return Dataset; + function getDisplayFn(display) { + display = display || _.stringify; + return _.isFunction(display) ? display : displayFn; + function displayFn(obj) { + return obj[display]; + } + } + function getTemplates(templates, displayFn) { + return { + notFound: templates.notFound && _.templatify(templates.notFound), + pending: templates.pending && _.templatify(templates.pending), + header: templates.header && _.templatify(templates.header), + footer: templates.footer && _.templatify(templates.footer), + suggestion: templates.suggestion ? userSuggestionTemplate : suggestionTemplate + }; + function userSuggestionTemplate(context) { + var template = templates.suggestion; + return $(template(context)).attr("id", _.guid()); + } + function suggestionTemplate(context) { + return $('
').attr("id", _.guid()).text(displayFn(context)); + } + } + function isValidName(str) { + return /^[_a-zA-Z0-9-]+$/.test(str); + } + }(); + var Menu = function() { + "use strict"; + function Menu(o, www) { + var that = this; + o = o || {}; + if (!o.node) { + $.error("node is required"); + } + www.mixin(this); + this.$node = $(o.node); + this.query = null; + this.datasets = _.map(o.datasets, initializeDataset); + function initializeDataset(oDataset) { + var node = that.$node.find(oDataset.node).first(); + oDataset.node = node.length ? node : $("
").appendTo(that.$node); + return new Dataset(oDataset, www); + } + } + _.mixin(Menu.prototype, EventEmitter, { + _onSelectableClick: function onSelectableClick($e) { + this.trigger("selectableClicked", $($e.currentTarget)); + }, + _onRendered: function onRendered(type, dataset, suggestions, async) { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetRendered", dataset, suggestions, async); + }, + _onCleared: function onCleared() { + this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty()); + this.trigger("datasetCleared"); + }, + _propagate: function propagate() { + this.trigger.apply(this, arguments); + }, + _allDatasetsEmpty: function allDatasetsEmpty() { + return _.every(this.datasets, _.bind(function isDatasetEmpty(dataset) { + var isEmpty = dataset.isEmpty(); + this.$node.attr("aria-expanded", !isEmpty); + return isEmpty; + }, this)); + }, + _getSelectables: function getSelectables() { + return this.$node.find(this.selectors.selectable); + }, + _removeCursor: function _removeCursor() { + var $selectable = this.getActiveSelectable(); + $selectable && $selectable.removeClass(this.classes.cursor); + }, + _ensureVisible: function ensureVisible($el) { + var elTop, elBottom, nodeScrollTop, nodeHeight; + elTop = $el.position().top; + elBottom = elTop + $el.outerHeight(true); + nodeScrollTop = this.$node.scrollTop(); + nodeHeight = this.$node.height() + parseInt(this.$node.css("paddingTop"), 10) + parseInt(this.$node.css("paddingBottom"), 10); + if (elTop < 0) { + this.$node.scrollTop(nodeScrollTop + elTop); + } else if (nodeHeight < elBottom) { + this.$node.scrollTop(nodeScrollTop + (elBottom - nodeHeight)); + } + }, + bind: function() { + var that = this, onSelectableClick; + onSelectableClick = _.bind(this._onSelectableClick, this); + this.$node.on("click.tt", this.selectors.selectable, onSelectableClick); + this.$node.on("mouseover", this.selectors.selectable, function() { + that.setCursor($(this)); + }); + this.$node.on("mouseleave", function() { + that._removeCursor(); + }); + _.each(this.datasets, function(dataset) { + dataset.onSync("asyncRequested", that._propagate, that).onSync("asyncCanceled", that._propagate, that).onSync("asyncReceived", that._propagate, that).onSync("rendered", that._onRendered, that).onSync("cleared", that._onCleared, that); + }); + return this; + }, + isOpen: function isOpen() { + return this.$node.hasClass(this.classes.open); + }, + open: function open() { + this.$node.scrollTop(0); + this.$node.addClass(this.classes.open); + }, + close: function close() { + this.$node.attr("aria-expanded", false); + this.$node.removeClass(this.classes.open); + this._removeCursor(); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.attr("dir", dir); + }, + selectableRelativeToCursor: function selectableRelativeToCursor(delta) { + var $selectables, $oldCursor, oldIndex, newIndex; + $oldCursor = this.getActiveSelectable(); + $selectables = this._getSelectables(); + oldIndex = $oldCursor ? $selectables.index($oldCursor) : -1; + newIndex = oldIndex + delta; + newIndex = (newIndex + 1) % ($selectables.length + 1) - 1; + newIndex = newIndex < -1 ? $selectables.length - 1 : newIndex; + return newIndex === -1 ? null : $selectables.eq(newIndex); + }, + setCursor: function setCursor($selectable) { + this._removeCursor(); + if ($selectable = $selectable && $selectable.first()) { + $selectable.addClass(this.classes.cursor); + this._ensureVisible($selectable); + } + }, + getSelectableData: function getSelectableData($el) { + return $el && $el.length ? Dataset.extractData($el) : null; + }, + getActiveSelectable: function getActiveSelectable() { + var $selectable = this._getSelectables().filter(this.selectors.cursor).first(); + return $selectable.length ? $selectable : null; + }, + getTopSelectable: function getTopSelectable() { + var $selectable = this._getSelectables().first(); + return $selectable.length ? $selectable : null; + }, + update: function update(query) { + var isValidUpdate = query !== this.query; + if (isValidUpdate) { + this.query = query; + _.each(this.datasets, updateDataset); + } + return isValidUpdate; + function updateDataset(dataset) { + dataset.update(query); + } + }, + empty: function empty() { + _.each(this.datasets, clearDataset); + this.query = null; + this.$node.addClass(this.classes.empty); + function clearDataset(dataset) { + dataset.clear(); + } + }, + destroy: function destroy() { + this.$node.off(".tt"); + this.$node = $("
"); + _.each(this.datasets, destroyDataset); + function destroyDataset(dataset) { + dataset.destroy(); + } + } + }); + return Menu; + }(); + var Status = function() { + "use strict"; + function Status(options) { + this.$el = $("", { + role: "status", + "aria-live": "polite" + }).css({ + position: "absolute", + padding: "0", + border: "0", + height: "1px", + width: "1px", + "margin-bottom": "-1px", + "margin-right": "-1px", + overflow: "hidden", + clip: "rect(0 0 0 0)", + "white-space": "nowrap" + }); + options.$input.after(this.$el); + _.each(options.menu.datasets, _.bind(function(dataset) { + if (dataset.onSync) { + dataset.onSync("rendered", _.bind(this.update, this)); + dataset.onSync("cleared", _.bind(this.cleared, this)); + } + }, this)); + } + _.mixin(Status.prototype, { + update: function update(event, suggestions) { + var length = suggestions.length; + var words; + if (length === 1) { + words = { + result: "result", + is: "is" + }; + } else { + words = { + result: "results", + is: "are" + }; + } + this.$el.text(length + " " + words.result + " " + words.is + " available, use up and down arrow keys to navigate."); + }, + cleared: function() { + this.$el.text(""); + } + }); + return Status; + }(); + var DefaultMenu = function() { + "use strict"; + var s = Menu.prototype; + function DefaultMenu() { + Menu.apply(this, [].slice.call(arguments, 0)); + } + _.mixin(DefaultMenu.prototype, Menu.prototype, { + open: function open() { + !this._allDatasetsEmpty() && this._show(); + return s.open.apply(this, [].slice.call(arguments, 0)); + }, + close: function close() { + this._hide(); + return s.close.apply(this, [].slice.call(arguments, 0)); + }, + _onRendered: function onRendered() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onRendered.apply(this, [].slice.call(arguments, 0)); + }, + _onCleared: function onCleared() { + if (this._allDatasetsEmpty()) { + this._hide(); + } else { + this.isOpen() && this._show(); + } + return s._onCleared.apply(this, [].slice.call(arguments, 0)); + }, + setLanguageDirection: function setLanguageDirection(dir) { + this.$node.css(dir === "ltr" ? this.css.ltr : this.css.rtl); + return s.setLanguageDirection.apply(this, [].slice.call(arguments, 0)); + }, + _hide: function hide() { + this.$node.hide(); + }, + _show: function show() { + this.$node.css("display", "block"); + } + }); + return DefaultMenu; + }(); + var Typeahead = function() { + "use strict"; + function Typeahead(o, www) { + var onFocused, onBlurred, onEnterKeyed, onTabKeyed, onEscKeyed, onUpKeyed, onDownKeyed, onLeftKeyed, onRightKeyed, onQueryChanged, onWhitespaceChanged; + o = o || {}; + if (!o.input) { + $.error("missing input"); + } + if (!o.menu) { + $.error("missing menu"); + } + if (!o.eventBus) { + $.error("missing event bus"); + } + www.mixin(this); + this.eventBus = o.eventBus; + this.minLength = _.isNumber(o.minLength) ? o.minLength : 1; + this.input = o.input; + this.menu = o.menu; + this.enabled = true; + this.autoselect = !!o.autoselect; + this.active = false; + this.input.hasFocus() && this.activate(); + this.dir = this.input.getLangDir(); + this._hacks(); + this.menu.bind().onSync("selectableClicked", this._onSelectableClicked, this).onSync("asyncRequested", this._onAsyncRequested, this).onSync("asyncCanceled", this._onAsyncCanceled, this).onSync("asyncReceived", this._onAsyncReceived, this).onSync("datasetRendered", this._onDatasetRendered, this).onSync("datasetCleared", this._onDatasetCleared, this); + onFocused = c(this, "activate", "open", "_onFocused"); + onBlurred = c(this, "deactivate", "_onBlurred"); + onEnterKeyed = c(this, "isActive", "isOpen", "_onEnterKeyed"); + onTabKeyed = c(this, "isActive", "isOpen", "_onTabKeyed"); + onEscKeyed = c(this, "isActive", "_onEscKeyed"); + onUpKeyed = c(this, "isActive", "open", "_onUpKeyed"); + onDownKeyed = c(this, "isActive", "open", "_onDownKeyed"); + onLeftKeyed = c(this, "isActive", "isOpen", "_onLeftKeyed"); + onRightKeyed = c(this, "isActive", "isOpen", "_onRightKeyed"); + onQueryChanged = c(this, "_openIfActive", "_onQueryChanged"); + onWhitespaceChanged = c(this, "_openIfActive", "_onWhitespaceChanged"); + this.input.bind().onSync("focused", onFocused, this).onSync("blurred", onBlurred, this).onSync("enterKeyed", onEnterKeyed, this).onSync("tabKeyed", onTabKeyed, this).onSync("escKeyed", onEscKeyed, this).onSync("upKeyed", onUpKeyed, this).onSync("downKeyed", onDownKeyed, this).onSync("leftKeyed", onLeftKeyed, this).onSync("rightKeyed", onRightKeyed, this).onSync("queryChanged", onQueryChanged, this).onSync("whitespaceChanged", onWhitespaceChanged, this).onSync("langDirChanged", this._onLangDirChanged, this); + } + _.mixin(Typeahead.prototype, { + _hacks: function hacks() { + var $input, $menu; + $input = this.input.$input || $("
"); + $menu = this.menu.$node || $("
"); + $input.on("blur.tt", function($e) { + var active, isActive, hasActive; + active = document.activeElement; + isActive = $menu.is(active); + hasActive = $menu.has(active).length > 0; + if (_.isMsie() && (isActive || hasActive)) { + $e.preventDefault(); + $e.stopImmediatePropagation(); + _.defer(function() { + $input.focus(); + }); + } + }); + $menu.on("mousedown.tt", function($e) { + $e.preventDefault(); + }); + }, + _onSelectableClicked: function onSelectableClicked(type, $el) { + this.select($el); + }, + _onDatasetCleared: function onDatasetCleared() { + this._updateHint(); + }, + _onDatasetRendered: function onDatasetRendered(type, suggestions, async, dataset) { + this._updateHint(); + if (this.autoselect) { + var cursorClass = this.selectors.cursor.substr(1); + this.menu.$node.find(this.selectors.suggestion).first().addClass(cursorClass); + } + this.eventBus.trigger("render", suggestions, async, dataset); + }, + _onAsyncRequested: function onAsyncRequested(type, dataset, query) { + this.eventBus.trigger("asyncrequest", query, dataset); + }, + _onAsyncCanceled: function onAsyncCanceled(type, dataset, query) { + this.eventBus.trigger("asynccancel", query, dataset); + }, + _onAsyncReceived: function onAsyncReceived(type, dataset, query) { + this.eventBus.trigger("asyncreceive", query, dataset); + }, + _onFocused: function onFocused() { + this._minLengthMet() && this.menu.update(this.input.getQuery()); + }, + _onBlurred: function onBlurred() { + if (this.input.hasQueryChangedSinceLastFocus()) { + this.eventBus.trigger("change", this.input.getQuery()); + } + }, + _onEnterKeyed: function onEnterKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + if (this.select($selectable)) { + $e.preventDefault(); + $e.stopPropagation(); + } + } else if (this.autoselect) { + if (this.select(this.menu.getTopSelectable())) { + $e.preventDefault(); + $e.stopPropagation(); + } + } + }, + _onTabKeyed: function onTabKeyed(type, $e) { + var $selectable; + if ($selectable = this.menu.getActiveSelectable()) { + this.select($selectable) && $e.preventDefault(); + } else if (this.autoselect) { + if ($selectable = this.menu.getTopSelectable()) { + this.autocomplete($selectable) && $e.preventDefault(); + } + } + }, + _onEscKeyed: function onEscKeyed() { + this.close(); + }, + _onUpKeyed: function onUpKeyed() { + this.moveCursor(-1); + }, + _onDownKeyed: function onDownKeyed() { + this.moveCursor(+1); + }, + _onLeftKeyed: function onLeftKeyed() { + if (this.dir === "rtl" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onRightKeyed: function onRightKeyed() { + if (this.dir === "ltr" && this.input.isCursorAtEnd()) { + this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable()); + } + }, + _onQueryChanged: function onQueryChanged(e, query) { + this._minLengthMet(query) ? this.menu.update(query) : this.menu.empty(); + }, + _onWhitespaceChanged: function onWhitespaceChanged() { + this._updateHint(); + }, + _onLangDirChanged: function onLangDirChanged(e, dir) { + if (this.dir !== dir) { + this.dir = dir; + this.menu.setLanguageDirection(dir); + } + }, + _openIfActive: function openIfActive() { + this.isActive() && this.open(); + }, + _minLengthMet: function minLengthMet(query) { + query = _.isString(query) ? query : this.input.getQuery() || ""; + return query.length >= this.minLength; + }, + _updateHint: function updateHint() { + var $selectable, data, val, query, escapedQuery, frontMatchRegEx, match; + $selectable = this.menu.getTopSelectable(); + data = this.menu.getSelectableData($selectable); + val = this.input.getInputValue(); + if (data && !_.isBlankString(val) && !this.input.hasOverflow()) { + query = Input.normalizeQuery(val); + escapedQuery = _.escapeRegExChars(query); + frontMatchRegEx = new RegExp("^(?:" + escapedQuery + ")(.+$)", "i"); + match = frontMatchRegEx.exec(data.val); + match && this.input.setHint(val + match[1]); + } else { + this.input.clearHint(); + } + }, + isEnabled: function isEnabled() { + return this.enabled; + }, + enable: function enable() { + this.enabled = true; + }, + disable: function disable() { + this.enabled = false; + }, + isActive: function isActive() { + return this.active; + }, + activate: function activate() { + if (this.isActive()) { + return true; + } else if (!this.isEnabled() || this.eventBus.before("active")) { + return false; + } else { + this.active = true; + this.eventBus.trigger("active"); + return true; + } + }, + deactivate: function deactivate() { + if (!this.isActive()) { + return true; + } else if (this.eventBus.before("idle")) { + return false; + } else { + this.active = false; + this.close(); + this.eventBus.trigger("idle"); + return true; + } + }, + isOpen: function isOpen() { + return this.menu.isOpen(); + }, + open: function open() { + if (!this.isOpen() && !this.eventBus.before("open")) { + this.input.setAriaExpanded(true); + this.menu.open(); + this._updateHint(); + this.eventBus.trigger("open"); + } + return this.isOpen(); + }, + close: function close() { + if (this.isOpen() && !this.eventBus.before("close")) { + this.input.setAriaExpanded(false); + this.menu.close(); + this.input.clearHint(); + this.input.resetInputValue(); + this.eventBus.trigger("close"); + } + return !this.isOpen(); + }, + setVal: function setVal(val) { + this.input.setQuery(_.toStr(val)); + }, + getVal: function getVal() { + return this.input.getQuery(); + }, + select: function select($selectable) { + var data = this.menu.getSelectableData($selectable); + if (data && !this.eventBus.before("select", data.obj, data.dataset)) { + this.input.setQuery(data.val, true); + this.eventBus.trigger("select", data.obj, data.dataset); + this.close(); + return true; + } + return false; + }, + autocomplete: function autocomplete($selectable) { + var query, data, isValid; + query = this.input.getQuery(); + data = this.menu.getSelectableData($selectable); + isValid = data && query !== data.val; + if (isValid && !this.eventBus.before("autocomplete", data.obj, data.dataset)) { + this.input.setQuery(data.val); + this.eventBus.trigger("autocomplete", data.obj, data.dataset); + return true; + } + return false; + }, + moveCursor: function moveCursor(delta) { + var query, $candidate, data, suggestion, datasetName, cancelMove, id; + query = this.input.getQuery(); + $candidate = this.menu.selectableRelativeToCursor(delta); + data = this.menu.getSelectableData($candidate); + suggestion = data ? data.obj : null; + datasetName = data ? data.dataset : null; + id = $candidate ? $candidate.attr("id") : null; + this.input.trigger("cursorchange", id); + cancelMove = this._minLengthMet() && this.menu.update(query); + if (!cancelMove && !this.eventBus.before("cursorchange", suggestion, datasetName)) { + this.menu.setCursor($candidate); + if (data) { + if (typeof data.val === "string") { + this.input.setInputValue(data.val); + } + } else { + this.input.resetInputValue(); + this._updateHint(); + } + this.eventBus.trigger("cursorchange", suggestion, datasetName); + return true; + } + return false; + }, + destroy: function destroy() { + this.input.destroy(); + this.menu.destroy(); + } + }); + return Typeahead; + function c(ctx) { + var methods = [].slice.call(arguments, 1); + return function() { + var args = [].slice.call(arguments); + _.each(methods, function(method) { + return ctx[method].apply(ctx, args); + }); + }; + } + }(); + (function() { + "use strict"; + var old, keys, methods; + old = $.fn.typeahead; + keys = { + www: "tt-www", + attrs: "tt-attrs", + typeahead: "tt-typeahead" + }; + methods = { + initialize: function initialize(o, datasets) { + var www; + datasets = _.isArray(datasets) ? datasets : [].slice.call(arguments, 1); + o = o || {}; + www = WWW(o.classNames); + return this.each(attach); + function attach() { + var $input, $wrapper, $hint, $menu, defaultHint, defaultMenu, eventBus, input, menu, status, typeahead, MenuConstructor; + _.each(datasets, function(d) { + d.highlight = !!o.highlight; + }); + $input = $(this); + $wrapper = $(www.html.wrapper); + $hint = $elOrNull(o.hint); + $menu = $elOrNull(o.menu); + defaultHint = o.hint !== false && !$hint; + defaultMenu = o.menu !== false && !$menu; + defaultHint && ($hint = buildHintFromInput($input, www)); + defaultMenu && ($menu = $(www.html.menu).css(www.css.menu)); + $hint && $hint.val(""); + $input = prepInput($input, www); + if (defaultHint || defaultMenu) { + $wrapper.css(www.css.wrapper); + $input.css(defaultHint ? www.css.input : www.css.inputWithNoHint); + $input.wrap($wrapper).parent().prepend(defaultHint ? $hint : null).append(defaultMenu ? $menu : null); + } + MenuConstructor = defaultMenu ? DefaultMenu : Menu; + eventBus = new EventBus({ + el: $input + }); + input = new Input({ + hint: $hint, + input: $input, + menu: $menu + }, www); + menu = new MenuConstructor({ + node: $menu, + datasets: datasets + }, www); + status = new Status({ + $input: $input, + menu: menu + }); + typeahead = new Typeahead({ + input: input, + menu: menu, + eventBus: eventBus, + minLength: o.minLength, + autoselect: o.autoselect + }, www); + $input.data(keys.www, www); + $input.data(keys.typeahead, typeahead); + } + }, + isEnabled: function isEnabled() { + var enabled; + ttEach(this.first(), function(t) { + enabled = t.isEnabled(); + }); + return enabled; + }, + enable: function enable() { + ttEach(this, function(t) { + t.enable(); + }); + return this; + }, + disable: function disable() { + ttEach(this, function(t) { + t.disable(); + }); + return this; + }, + isActive: function isActive() { + var active; + ttEach(this.first(), function(t) { + active = t.isActive(); + }); + return active; + }, + activate: function activate() { + ttEach(this, function(t) { + t.activate(); + }); + return this; + }, + deactivate: function deactivate() { + ttEach(this, function(t) { + t.deactivate(); + }); + return this; + }, + isOpen: function isOpen() { + var open; + ttEach(this.first(), function(t) { + open = t.isOpen(); + }); + return open; + }, + open: function open() { + ttEach(this, function(t) { + t.open(); + }); + return this; + }, + close: function close() { + ttEach(this, function(t) { + t.close(); + }); + return this; + }, + select: function select(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.select($el); + }); + return success; + }, + autocomplete: function autocomplete(el) { + var success = false, $el = $(el); + ttEach(this.first(), function(t) { + success = t.autocomplete($el); + }); + return success; + }, + moveCursor: function moveCursoe(delta) { + var success = false; + ttEach(this.first(), function(t) { + success = t.moveCursor(delta); + }); + return success; + }, + val: function val(newVal) { + var query; + if (!arguments.length) { + ttEach(this.first(), function(t) { + query = t.getVal(); + }); + return query; + } else { + ttEach(this, function(t) { + t.setVal(_.toStr(newVal)); + }); + return this; + } + }, + destroy: function destroy() { + ttEach(this, function(typeahead, $input) { + revert($input); + typeahead.destroy(); + }); + return this; + } + }; + $.fn.typeahead = function(method) { + if (methods[method]) { + return methods[method].apply(this, [].slice.call(arguments, 1)); + } else { + return methods.initialize.apply(this, arguments); + } + }; + $.fn.typeahead.noConflict = function noConflict() { + $.fn.typeahead = old; + return this; + }; + function ttEach($els, fn) { + $els.each(function() { + var $input = $(this), typeahead; + (typeahead = $input.data(keys.typeahead)) && fn(typeahead, $input); + }); + } + function buildHintFromInput($input, www) { + return $input.clone().addClass(www.classes.hint).removeData().css(www.css.hint).css(getBackgroundStyles($input)).prop({ + readonly: true, + required: false + }).removeAttr("id name placeholder").removeClass("required").attr({ + spellcheck: "false", + tabindex: -1 + }); + } + function prepInput($input, www) { + $input.data(keys.attrs, { + dir: $input.attr("dir"), + autocomplete: $input.attr("autocomplete"), + spellcheck: $input.attr("spellcheck"), + style: $input.attr("style") + }); + $input.addClass(www.classes.input).attr({ + spellcheck: false + }); + try { + !$input.attr("dir") && $input.attr("dir", "auto"); + } catch (e) {} + return $input; + } + function getBackgroundStyles($el) { + return { + backgroundAttachment: $el.css("background-attachment"), + backgroundClip: $el.css("background-clip"), + backgroundColor: $el.css("background-color"), + backgroundImage: $el.css("background-image"), + backgroundOrigin: $el.css("background-origin"), + backgroundPosition: $el.css("background-position"), + backgroundRepeat: $el.css("background-repeat"), + backgroundSize: $el.css("background-size") + }; + } + function revert($input) { + var www, $wrapper; + www = $input.data(keys.www); + $wrapper = $input.parent().filter(www.selectors.wrapper); + _.each($input.data(keys.attrs), function(val, key) { + _.isUndefined(val) ? $input.removeAttr(key) : $input.attr(key, val); + }); + $input.removeData(keys.typeahead).removeData(keys.www).removeData(keys.attr).removeClass(www.classes.input); + if ($wrapper.length) { + $input.detach().insertAfter($wrapper); + $wrapper.remove(); + } + } + function $elOrNull(obj) { + var isValid, $el; + isValid = _.isJQuery(obj) || _.isElement(obj); + $el = isValid ? $(obj).first() : []; + return $el.length ? $el : null; + } + })(); +}); \ No newline at end of file diff --git a/docs/metadata.json b/docs/metadata.json deleted file mode 100644 index af0c25d5a..000000000 --- a/docs/metadata.json +++ /dev/null @@ -1 +0,0 @@ -{"bundleDisplayName":"HaishinKit","bundleIdentifier":"HaishinKit","schemaVersion":{"major":0,"minor":1,"patch":0}} \ No newline at end of file diff --git a/docs/search.json b/docs/search.json new file mode 100644 index 000000000..884ac867a --- /dev/null +++ b/docs/search.json @@ -0,0 +1 @@ +{"Typealiases.html#/s:10HaishinKit8ASObjecta":{"name":"ASObject","abstract":"

The ASObject typealias represents an object for AcrionScript.

"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11msTimeStamps5Int64Vvp":{"name":"msTimeStamp","abstract":"

The time since the UDT entity is started, in milliseconds.

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12pktSentTotals5Int64Vvp":{"name":"pktSentTotal","abstract":"

The total number of sent data packets, including retransmissions.

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12pktRecvTotals5Int64Vvp":{"name":"pktRecvTotal","abstract":"

The total number of received packets.

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSndLossTotals5Int32Vvp":{"name":"pktSndLossTotal","abstract":"

The total number of lost packets (sender side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRcvLossTotals5Int32Vvp":{"name":"pktRcvLossTotal","abstract":"

The total number of lost packets (receiver side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRetransTotals5Int32Vvp":{"name":"pktRetransTotal","abstract":"

The total number of retransmitted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSentACKTotals5Int32Vvp":{"name":"pktSentACKTotal","abstract":"

The total number of sent ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRecvACKTotals5Int32Vvp":{"name":"pktRecvACKTotal","abstract":"

The total number of received ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSentNAKTotals5Int32Vvp":{"name":"pktSentNAKTotal","abstract":"

The total number of sent NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRecvNAKTotals5Int32Vvp":{"name":"pktRecvNAKTotal","abstract":"

The total number of received NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV18usSndDurationTotals5Int64Vvp":{"name":"usSndDurationTotal","abstract":"

The total time duration when UDT is sending data (idle time exclusive)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktSndDropTotals5Int32Vvp":{"name":"pktSndDropTotal","abstract":"

The number of too-late-to-send dropped packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRcvDropTotals5Int32Vvp":{"name":"pktRcvDropTotal","abstract":"

The number of too-late-to play missing packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV20pktRcvUndecryptTotals5Int32Vvp":{"name":"pktRcvUndecryptTotal","abstract":"

The number of undecrypted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13byteSentTotals6UInt64Vvp":{"name":"byteSentTotal","abstract":"

The total number of sent data bytes, including retransmissions

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13byteRecvTotals6UInt64Vvp":{"name":"byteRecvTotal","abstract":"

The total number of received bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRcvLossTotals6UInt64Vvp":{"name":"byteRcvLossTotal","abstract":"

The total number of lost bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRetransTotals6UInt64Vvp":{"name":"byteRetransTotal","abstract":"

The total number of retransmitted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteSndDropTotals6UInt64Vvp":{"name":"byteSndDropTotal","abstract":"

The number of too-late-to-send dropped bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRcvDropTotals6UInt64Vvp":{"name":"byteRcvDropTotal","abstract":"

The number of too-late-to play missing bytes (estimate based on average packet size)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV21byteRcvUndecryptTotals6UInt64Vvp":{"name":"byteRcvUndecryptTotal","abstract":"

The number of undecrypted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV7pktSents5Int64Vvp":{"name":"pktSent","abstract":"

The number of sent data packets, including retransmissions

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV7pktRecvs5Int64Vvp":{"name":"pktRecv","abstract":"

The number of received packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSndLosss5Int32Vvp":{"name":"pktSndLoss","abstract":"

The number of lost packets (sender side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRcvLosss5Int32Vvp":{"name":"pktRcvLoss","abstract":"

The number of lost packets (receiver side)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRetranss5Int32Vvp":{"name":"pktRetrans","abstract":"

The number of retransmitted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktRcvRetranss5Int32Vvp":{"name":"pktRcvRetrans","abstract":"

The number of retransmitted packets received

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSentACKs5Int32Vvp":{"name":"pktSentACK","abstract":"

The number of sent ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRecvACKs5Int32Vvp":{"name":"pktRecvACK","abstract":"

The number of received ACK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSentNAKs5Int32Vvp":{"name":"pktSentNAK","abstract":"

The number of sent NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRecvNAKs5Int32Vvp":{"name":"pktRecvNAK","abstract":"

The number of received NAK packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12mbpsSendRateSdvp":{"name":"mbpsSendRate","abstract":"

The sending rate in Mb/s

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV12mbpsRecvRateSdvp":{"name":"mbpsRecvRate","abstract":"

The receiving rate in Mb/s

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13usSndDurations5Int64Vvp":{"name":"usSndDuration","abstract":"

The busy sending time (i.e., idle time exclusive)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV18pktReorderDistances5Int32Vvp":{"name":"pktReorderDistance","abstract":"

The size of order discrepancy in received sequences

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV20pktRcvAvgBelatedTimeSdvp":{"name":"pktRcvAvgBelatedTime","abstract":"

The average time of packet delay for belated packets (packets with sequence past the ACK)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktRcvBelateds5Int64Vvp":{"name":"pktRcvBelated","abstract":"

The number of received AND IGNORED packets due to having come too late

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktSndDrops5Int32Vvp":{"name":"pktSndDrop","abstract":"

The number of too-late-to-send dropped packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10pktRcvDrops5Int32Vvp":{"name":"pktRcvDrop","abstract":"

The number of too-late-to play missing packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15pktRcvUndecrypts5Int32Vvp":{"name":"pktRcvUndecrypt","abstract":"

The number of undecrypted packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8byteSents6UInt64Vvp":{"name":"byteSent","abstract":"

The number of sent data bytes, including retransmissions

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8byteRecvs6UInt64Vvp":{"name":"byteRecv","abstract":"

The number of received bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteRcvLosss6UInt64Vvp":{"name":"byteRcvLoss","abstract":"

The number of retransmitted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteRetranss6UInt64Vvp":{"name":"byteRetrans","abstract":"

The number of retransmitted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteSndDrops6UInt64Vvp":{"name":"byteSndDrop","abstract":"

The number of too-late-to-send dropped bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV11byteRcvDrops6UInt64Vvp":{"name":"byteRcvDrop","abstract":"

The number of too-late-to play missing bytes (estimate based on average packet size)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16byteRcvUndecrypts6UInt64Vvp":{"name":"byteRcvUndecrypt","abstract":"

The number of undecrypted bytes

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV14usPktSndPeriodSdvp":{"name":"usPktSndPeriod","abstract":"

The packet sending period, in microseconds

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktFlowWindows5Int32Vvp":{"name":"pktFlowWindow","abstract":"

The flow window size, in number of packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV19pktCongestionWindows5Int32Vvp":{"name":"pktCongestionWindow","abstract":"

The congestion window size, in number of packets

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13pktFlightSizes5Int32Vvp":{"name":"pktFlightSize","abstract":"

The number of packets on flight

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV5msRTTSdvp":{"name":"msRTT","abstract":"

The RTT, in milliseconds

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV13mbpsBandwidthSdvp":{"name":"mbpsBandwidth","abstract":"

The estimated bandwidth, in Mb/s

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15byteAvailSndBufs5Int32Vvp":{"name":"byteAvailSndBuf","abstract":"

The available UDT sender buffer size

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15byteAvailRcvBufs5Int32Vvp":{"name":"byteAvailRcvBuf","abstract":"

The available UDT receiver buffer size

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV9mbpsMaxBWSdvp":{"name":"mbpsMaxBW","abstract":"

The transmit Bandwidth ceiling (Mbps)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV7byteMSSs5Int32Vvp":{"name":"byteMSS","abstract":"

The MTU

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV9pktSndBufs5Int32Vvp":{"name":"pktSndBuf","abstract":"

The UnACKed packets in UDT sender

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10byteSndBufs5Int32Vvp":{"name":"byteSndBuf","abstract":"

The UnACKed bytes in UDT sender

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8msSndBufs5Int32Vvp":{"name":"msSndBuf","abstract":"

The UnACKed timespan (msec) of UDT sender

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15msSndTsbPdDelays5Int32Vvp":{"name":"msSndTsbPdDelay","abstract":"

Timestamp-based Packet Delivery Delay

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV9pktRcvBufs5Int32Vvp":{"name":"pktRcvBuf","abstract":"

Undelivered packets in UDT receiver

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV10byteRcvBufs5Int32Vvp":{"name":"byteRcvBuf","abstract":"

The undelivered bytes of UDT receiver

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV8msRcvBufs5Int32Vvp":{"name":"msRcvBuf","abstract":"

The undelivered timespan (msec) of UDT receiver

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV15msRcvTsbPdDelays5Int32Vvp":{"name":"msRcvTsbPdDelay","abstract":"

The Timestamp-based Packet Delivery Delay

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV22pktSndFilterExtraTotals5Int32Vvp":{"name":"pktSndFilterExtraTotal","abstract":"

The number of control packets supplied by packet filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV22pktRcvFilterExtraTotals5Int32Vvp":{"name":"pktRcvFilterExtraTotal","abstract":"

The number of control packets received and not supplied back

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV23pktRcvFilterSupplyTotals5Int32Vvp":{"name":"pktRcvFilterSupplyTotal","abstract":"

The number of packets that the filter supplied extra (e.g. FEC rebuilt)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV21pktRcvFilterLossTotals5Int32Vvp":{"name":"pktRcvFilterLossTotal","abstract":"

The number of packet loss not coverable by filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV17pktSndFilterExtras5Int32Vvp":{"name":"pktSndFilterExtra","abstract":"

The number of control packets supplied by packet filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV17pktRcvFilterExtras5Int32Vvp":{"name":"pktRcvFilterExtra","abstract":"

The number of control packets received and not supplied back

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV18pktRcvFilterSupplys5Int32Vvp":{"name":"pktRcvFilterSupply","abstract":"

The number of packets that the filter supplied extra (e.g. FEC rebuilt)

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV16pktRcvFilterLosss5Int32Vvp":{"name":"pktRcvFilterLoss","abstract":"

The number of packet loss not coverable by filter

","parent_name":"SRTPerformanceData"},"Structs/SRTPerformanceData.html#/s:13SRTHaishinKit18SRTPerformanceDataV19pktReorderTolerances5Int32Vvp":{"name":"pktReorderTolerance","abstract":"

The packet reorder tolerance value

","parent_name":"SRTPerformanceData"},"Structs/Atomic.html#/s:10HaishinKit6AtomicV5valuexvp":{"name":"value","abstract":"

Getter for the value.

","parent_name":"Atomic"},"Structs/Atomic.html#/s:10HaishinKit6AtomicVyACyxGxcfc":{"name":"init(_:)","abstract":"

Creates an instance of value.

","parent_name":"Atomic"},"Structs/Atomic.html#/s:10HaishinKit6AtomicV6mutateyyyxzXEF":{"name":"mutate(_:)","abstract":"

Setter for the value.

","parent_name":"Atomic"},"Structs/RTMPStreamInfo.html#/s:10HaishinKit14RTMPStreamInfoV9byteCountAA6AtomicVys5Int64VGvp":{"name":"byteCount","abstract":"

Undocumented

","parent_name":"RTMPStreamInfo"},"Structs/RTMPStreamInfo.html#/s:10HaishinKit14RTMPStreamInfoV12resourceNameSSSgvp":{"name":"resourceName","abstract":"

Undocumented

","parent_name":"RTMPStreamInfo"},"Structs/RTMPStreamInfo.html#/s:10HaishinKit14RTMPStreamInfoV21currentBytesPerSeconds5Int32Vvp":{"name":"currentBytesPerSecond","abstract":"

Undocumented

","parent_name":"RTMPStreamInfo"},"Structs/RTMPStreamInfo.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"RTMPStreamInfo"},"Structs/ASXML.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ASXML"},"Structs/ASXML.html#/s:10HaishinKit5ASXMLV4dataACSS_tcfc":{"name":"init(data:)","abstract":"

Creates a new instance of string.

","parent_name":"ASXML"},"Structs/ASXML.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ASXML"},"Structs/ASXMLDocument.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ASXMLDocument"},"Structs/ASXMLDocument.html#/s:10HaishinKit13ASXMLDocumentV4dataACSS_tcfc":{"name":"init(data:)","abstract":"

Creates a new instance of string.

","parent_name":"ASXMLDocument"},"Structs/ASXMLDocument.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ASXMLDocument"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayV6lengthSivp":{"name":"length","abstract":"

The length of an array.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayV5countACSi_tcfc":{"name":"init(count:)","abstract":"

Creates a new instance containing the specified number of a single.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayV4dataACSayypSgG_tcfc":{"name":"init(data:)","abstract":"

Creates a new instance of data.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:s25ExpressibleByArrayLiteralP05arrayD0x0cD7ElementQzd_tcfc":{"name":"init(arrayLiteral:)","parent_name":"ASArray"},"Structs/ASArray.html#/s:10HaishinKit7ASArrayVyypSgypcip":{"name":"subscript(_:)","abstract":"

Accesses the element at the specified position.

","parent_name":"ASArray"},"Structs/ASArray.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"ASArray"},"Structs/ASArray.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ASArray"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV05TypedD7Decodera":{"name":"TypedObjectDecoder","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV8register9typeNamed7decoderySS_ypSS_SDySSypSgGtKctFZ":{"name":"register(typeNamed:decoder:)","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV8register4type5namedyxm_SStSeRzlFZ":{"name":"register(type:named:)","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASTypedObject.html#/s:10HaishinKit13ASTypedObjectV10unregister9typeNamedySS_tFZ":{"name":"unregister(typeNamed:)","abstract":"

Undocumented

","parent_name":"ASTypedObject"},"Structs/ASUndefined.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ASUndefined"},"Structs/NetBitRateStats.html#/s:10HaishinKit15NetBitRateStatsV20currentQueueBytesOuts5Int64Vvp":{"name":"currentQueueBytesOut","abstract":"

The statistics of outgoing queue bytes per second.

","parent_name":"NetBitRateStats"},"Structs/NetBitRateStats.html#/s:10HaishinKit15NetBitRateStatsV23currentBytesInPerSeconds5Int32Vvp":{"name":"currentBytesInPerSecond","abstract":"

The statistics of incoming bytes per second.

","parent_name":"NetBitRateStats"},"Structs/NetBitRateStats.html#/s:10HaishinKit15NetBitRateStatsV24currentBytesOutPerSeconds5Int32Vvp":{"name":"currentBytesOutPerSecond","abstract":"

The statistics of outgoing bytes per second.

","parent_name":"NetBitRateStats"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV13defaultVolumeSfvpZ":{"name":"defaultVolume","abstract":"

Undocumented

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV10defaultPanSfvpZ":{"name":"defaultPan","abstract":"

Undocumented

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV6volumeSfvp":{"name":"volume","abstract":"

The volume, ranging from 0 (silent) to 1 (full volume)

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:10HaishinKit14SoundTransformV3panSfvp":{"name":"pan","abstract":"

The panning of the sound

","parent_name":"SoundTransform"},"Structs/SoundTransform.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"SoundTransform"},"Structs/MultiCamCaptureSettings/Mode.html#/s:10HaishinKit23MultiCamCaptureSettingsV4ModeO3pipyA2EmF":{"name":"pip","abstract":"

The picture in picture mode means video stream playing within an inset window, freeing the rest of the screen for other tasks.

","parent_name":"Mode"},"Structs/MultiCamCaptureSettings/Mode.html#/s:10HaishinKit23MultiCamCaptureSettingsV4ModeO9splitViewyA2EmF":{"name":"splitView","abstract":"

The split view means video stream playing within two individual windows.

","parent_name":"Mode"},"Structs/MultiCamCaptureSettings/Mode.html":{"name":"Mode","abstract":"

The type of image display mode.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV7defaultACvpZ":{"name":"default","abstract":"

The default setting for the stream.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV4modeAC4ModeOvp":{"name":"mode","abstract":"

The image display mode.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV12cornerRadius14CoreFoundation7CGFloatVvp":{"name":"cornerRadius","abstract":"

The cornerRadius of the picture in picture image.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV16regionOfInterestSo6CGRectVvp":{"name":"regionOfInterest","abstract":"

The region of the picture in picture image.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV9directionAA14ImageTransformOvp":{"name":"direction","abstract":"

The direction of the splitView position.

","parent_name":"MultiCamCaptureSettings"},"Structs/MultiCamCaptureSettings.html#/s:10HaishinKit23MultiCamCaptureSettingsV4mode12cornerRadius16regionOfInterest9directionA2C4ModeO_14CoreFoundation7CGFloatVSo6CGRectVAA14ImageTransformOtcfc":{"name":"init(mode:cornerRadius:regionOfInterest:direction:)","abstract":"

Create a new MultiCamCaptureSetting.

","parent_name":"MultiCamCaptureSettings"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO6normalyA2EmF":{"name":"normal","abstract":"

kVTScalingMode_Normal

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO9letterboxyA2EmF":{"name":"letterbox","abstract":"

kVTScalingMode_Letterbox

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO25cropSourceToCleanApertureyA2EmF":{"name":"cropSourceToCleanAperture","abstract":"

kVTScalingMode_CropSourceToCleanAperture

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/ScalingMode.html#/s:10HaishinKit18VideoCodecSettingsV11ScalingModeO4trimyA2EmF":{"name":"trim","abstract":"

kVTScalingMode_Trim

","parent_name":"ScalingMode"},"Structs/VideoCodecSettings/BitRateMode.html#/s:10HaishinKit18VideoCodecSettingsV11BitRateModeO7averageyA2EmF":{"name":"average","abstract":"

The average bit rate.

","parent_name":"BitRateMode"},"Structs/VideoCodecSettings/BitRateMode.html#/s:10HaishinKit18VideoCodecSettingsV11BitRateModeO8constantyA2EmF":{"name":"constant","abstract":"

The constant bit rate.

","parent_name":"BitRateMode"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval30SdvpZ":{"name":"frameInterval30","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval10SdvpZ":{"name":"frameInterval10","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval05SdvpZ":{"name":"frameInterval05","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV15frameInterval01SdvpZ":{"name":"frameInterval01","abstract":"

Undocumented

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV7defaultACvpZ":{"name":"default","abstract":"

The defulat value.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings/BitRateMode.html":{"name":"BitRateMode","abstract":"

A bitRate mode that affectes how to encode the video source.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings/ScalingMode.html":{"name":"ScalingMode","abstract":"

The scaling mode.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV9videoSizeSo6CGSizeVvp":{"name":"videoSize","abstract":"

Specifies the video size of encoding video.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV7bitRateSivp":{"name":"bitRate","abstract":"

Specifies the bitrate.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV13frameIntervalSdvp":{"name":"frameInterval","abstract":"

Specifies the video frame interval.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV12profileLevelSSvp":{"name":"profileLevel","abstract":"

Specifies the H264 profileLevel.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV11scalingModeAC07ScalingG0Ovp":{"name":"scalingMode","abstract":"

Specifies the scalingMode.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV11bitRateModeAC03BitgH0Ovp":{"name":"bitRateMode","abstract":"

Specifies the bitRateMode.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV27maxKeyFrameIntervalDurations5Int32Vvp":{"name":"maxKeyFrameIntervalDuration","abstract":"

Specifies the keyframeInterval.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV20allowFrameReorderingSbSgvp":{"name":"allowFrameReordering","abstract":"

Specifies the allowFrameRecording.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV24isHardwareEncoderEnabledSbvp":{"name":"isHardwareEncoderEnabled","abstract":"

Specifies the HardwareEncoder is enabled(TRUE), or not(FALSE) for macOS.

","parent_name":"VideoCodecSettings"},"Structs/VideoCodecSettings.html#/s:10HaishinKit18VideoCodecSettingsV9videoSize7bitRate13frameInterval12profileLevel11scalingMode0hiO0011maxKeyFrameK8Duration05allowR10Reordering24isHardwareEncoderEnabledACSo6CGSizeV_SiSdSSAC07ScalingO0OAC03BitiO0Os5Int32VSbSgSbtcfc":{"name":"init(videoSize:bitRate:frameInterval:profileLevel:scalingMode:bitRateMode:maxKeyFrameIntervalDuration:allowFrameReordering:isHardwareEncoderEnabled:)","abstract":"

Creates a new VideoCodecSettings instance.

","parent_name":"VideoCodecSettings"},"Structs/VTSessionOption.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"VTSessionOption"},"Structs/VTSessionOption.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"VTSessionOption"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7defaultACvpZ":{"name":"default","abstract":"

The default value.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV23maximumNumberOfChannelss6UInt32VvpZ":{"name":"maximumNumberOfChannels","abstract":"

Maximum number of channels supported by the system

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV17mamimumSampleRateSdvpZ":{"name":"mamimumSampleRate","abstract":"

Maximum sampleRate supported by the system

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7bitRateSivp":{"name":"bitRate","abstract":"

Specifies the bitRate of audio output.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV10sampleRateSdvp":{"name":"sampleRate","abstract":"

Specifies the sampleRate of audio output.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV8channelss6UInt32Vvp":{"name":"channels","abstract":"

Specifies the channels of audio output.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7downmixSbvp":{"name":"downmix","abstract":"

Specifies the mixes the channels or not. Currently, it supports input sources with 4, 5, 6, and 8 channels.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV10channelMapSaySiGSgvp":{"name":"channelMap","abstract":"

Specifies the map of the output to input channels.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html#/s:10HaishinKit18AudioCodecSettingsV7bitRate06sampleG08channels7downmix10channelMapACSi_Sds6UInt32VSbSaySiGSgtcfc":{"name":"init(bitRate:sampleRate:channels:downmix:channelMap:)","abstract":"

Create an new AudioCodecSettings instance. A value of 0 will use the same value as the input source.

","parent_name":"AudioCodecSettings"},"Structs/AudioCodecSettings.html":{"name":"AudioCodecSettings","abstract":"

The AudioCodecSettings class specifying audio compression settings.

"},"Structs/VTSessionOption.html":{"name":"VTSessionOption","abstract":"

A structure that represents Key-Value-Object for the VideoToolbox option.

"},"Structs/VideoCodecSettings.html":{"name":"VideoCodecSettings","abstract":"

The VideoCodecSettings class specifying video compression settings.

"},"Structs/MultiCamCaptureSettings.html":{"name":"MultiCamCaptureSettings","abstract":"

The MultiCamCaptureSetting represents the pip capture settings for the video capture.

"},"Structs/SoundTransform.html":{"name":"SoundTransform","abstract":"

The SoundTransform class

"},"Structs/NetBitRateStats.html":{"name":"NetBitRateStats","abstract":"

A structure that represents a NetStream’s bitRate statics.

"},"Structs/ASUndefined.html":{"name":"ASUndefined","abstract":"

The ASUndefined structure represents an undefined for ActionScript.

"},"Structs/ASTypedObject.html":{"name":"ASTypedObject","abstract":"

The ASTypedObject structure represents a typed object for ActionScript.

"},"Structs/ASArray.html":{"name":"ASArray","abstract":"

The ASArray structure represents an array value for ActionScript.

"},"Structs/ASXMLDocument.html":{"name":"ASXMLDocument","abstract":"

ActionScript 1.0 and 2.0 and flash.xml.XMLDocument in ActionScript 3.0

"},"Structs/ASXML.html":{"name":"ASXML","abstract":"

ActionScript 3.0 introduces a new XML type.

"},"Structs/RTMPStreamInfo.html":{"name":"RTMPStreamInfo","abstract":"

flash.net.NetStreamInfo for Swift

"},"Structs/Atomic.html":{"name":"Atomic","abstract":"

Atomic class

"},"Structs/SRTPerformanceData.html":{"name":"SRTPerformanceData","abstract":"

The SRTPerformanceData represents the SRT’s performance statistics. This struct is wrapper for an CBytePerfMon.

"},"Protocols/Running.html#/s:10HaishinKit7RunningP02isC0AA6AtomicVySbGvp":{"name":"isRunning","abstract":"

Indicates whether the receiver is running.

","parent_name":"Running"},"Protocols/Running.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","abstract":"

Tells the receiver to start running.

","parent_name":"Running"},"Protocols/Running.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","abstract":"

Tells the receiver to stop running.

","parent_name":"Running"},"Protocols/RTMPConnectionDelegate.html#/s:10HaishinKit22RTMPConnectionDelegateP10connection_28publishInsufficientBWOccuredyAA0C0C_AA10RTMPStreamCtF":{"name":"connection(_:publishInsufficientBWOccured:)","abstract":"

Tells the receiver to publish insufficient bandwidth occured.

","parent_name":"RTMPConnectionDelegate"},"Protocols/RTMPConnectionDelegate.html#/s:10HaishinKit22RTMPConnectionDelegateP10connection_26publishSufficientBWOccuredyAA0C0C_AA10RTMPStreamCtF":{"name":"connection(_:publishSufficientBWOccured:)","abstract":"

Tells the receiver to publish sufficient bandwidth occured.

","parent_name":"RTMPConnectionDelegate"},"Protocols/RTMPConnectionDelegate.html#/s:10HaishinKit22RTMPConnectionDelegateP10connection_11updateStatsyAA0C0C_AA10RTMPStreamCtF":{"name":"connection(_:updateStats:)","abstract":"

Tells the receiver to update statistics.

","parent_name":"RTMPConnectionDelegate"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"addEventListener(_:selector:observer:useCapture:)","abstract":"

Registers the event listeners on the event target.

","parent_name":"EventDispatcherConvertible"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"removeEventListener(_:selector:observer:useCapture:)","abstract":"

Unregister the event listeners on the event target.

","parent_name":"EventDispatcherConvertible"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch5eventyAA0C0C_tF":{"name":"dispatch(event:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcherConvertible"},"Protocols/EventDispatcherConvertible.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF":{"name":"dispatch(_:bubbles:data:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcherConvertible"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP16videoOrientationSo014AVCaptureVideoG0Vvp":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP28isCaptureVideoPreviewEnabledSbvp":{"name":"isCaptureVideoPreviewEnabled","abstract":"

Specifies the capture video preview enabled or not.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP06attachD0yyAA0cD0CSgF":{"name":"attachStream(_:)","abstract":"

Attaches a drawable to a new NetStream object.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDrawable.html#/s:10HaishinKit17NetStreamDrawableP7enqueueyySo17CMSampleBufferRefaSgF":{"name":"enqueue(_:)","abstract":"

Enqueue a CMSampleBuffer? to draw.

","parent_name":"NetStreamDrawable"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_9didOutput4whenyAA0cD0C_So13AVAudioBufferCSo0J4TimeCtF":{"name":"stream(_:didOutput:when:)","abstract":"

Tells the receiver an audio packet incoming.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_9didOutputyAA0cD0C_So17CMSampleBufferRefatF":{"name":"stream(_:didOutput:)","abstract":"

Tells the receiver to playback a video incoming.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_18videoErrorOccurredyAA0cD0C_AA011IOVideoUnitH0OtF":{"name":"stream(_:videoErrorOccurred:)","abstract":"

Tells the receiver to video error occured.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP6stream_18audioErrorOccurredyAA0cD0C_AA011IOAudioUnitH0OtF":{"name":"stream(_:audioErrorOccurred:)","abstract":"

Tells the receiver to audio error occured.

","parent_name":"NetStreamDelegate"},"Protocols/NetStreamDelegate.html#/s:10HaishinKit17NetStreamDelegateP13streamDidOpenyyAA0cD0CF":{"name":"streamDidOpen(_:)","abstract":"

Tells the receiver to the stream opened.

","parent_name":"NetStreamDelegate"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP6streamAA0C6StreamCSgvp":{"name":"stream","abstract":"

Specifies the stream instance.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumVideodE0Sivp":{"name":"mamimumVideoBitRate","abstract":"

The mamimum video bitRate.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumAudiodE0Sivp":{"name":"mamimumAudioBitRate","abstract":"

The mamimum audio bitRate.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP5setUpyyF":{"name":"setUp()","abstract":"

SetUps the NetBitRateStrategy instance.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP19sufficientBWOccuredyyAA0cdE5StatsVF":{"name":"sufficientBWOccured(_:)","abstract":"

Invoke sufficientBWOccured.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/NetBitRateStrategyConvertible.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP21insufficientBWOccuredyyAA0cdE5StatsVF":{"name":"insufficientBWOccured(_:)","abstract":"

Invoke insufficientBWOccured.

","parent_name":"NetBitRateStrategyConvertible"},"Protocols/IOScreenCaptureUnit.html#/s:10HaishinKit19IOScreenCaptureUnitP10attributesSDySo8NSStringCSo8NSObjectCGvp":{"name":"attributes","abstract":"

Specifies the CVPixelBufferPool’s attributes.

","parent_name":"IOScreenCaptureUnit"},"Protocols/IOScreenCaptureUnit.html#/s:10HaishinKit19IOScreenCaptureUnitP8delegateAA0cdE8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate.

","parent_name":"IOScreenCaptureUnit"},"Protocols/IOScreenCaptureUnitDelegate.html#/s:10HaishinKit27IOScreenCaptureUnitDelegateP7session_9didOutput16presentationTimeyAA0cdE0_p_So11CVBufferRefaSo6CMTimeatF":{"name":"session(_:didOutput:presentationTime:)","abstract":"

Tells the receiver to output a pixel buffer.

","parent_name":"IOScreenCaptureUnitDelegate"},"Protocols/IORecorderDelegate.html#/s:10HaishinKit18IORecorderDelegateP8recorder_12errorOccuredyAA0C0C_AG5ErrorOtF":{"name":"recorder(_:errorOccured:)","abstract":"

Tells the receiver to recorder error occured.

","parent_name":"IORecorderDelegate"},"Protocols/IORecorderDelegate.html#/s:10HaishinKit18IORecorderDelegateP8recorder_13finishWritingyAA0C0C_So13AVAssetWriterCtF":{"name":"recorder(_:finishWriting:)","abstract":"

Tells the receiver to finish writing.

","parent_name":"IORecorderDelegate"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP11audioFormatSo07AVAudioE0CSgvp":{"name":"audioFormat","abstract":"

Specifies the audioFormat.

","parent_name":"IOMuxer"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP11videoFormatSo22CMFormatDescriptionRefaSgvp":{"name":"videoFormat","abstract":"

Specifies the videoFormat.

","parent_name":"IOMuxer"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP6append_4whenySo13AVAudioBufferC_So0F4TimeCtF":{"name":"append(_:when:)","abstract":"

Appends an audio.

","parent_name":"IOMuxer"},"Protocols/IOMuxer.html#/s:10HaishinKit7IOMuxerP6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","abstract":"

Appends a video or an audio.

","parent_name":"IOMuxer"},"Protocols/TSWriterDelegate.html#/s:10HaishinKit16TSWriterDelegateP6writer_19didRotateFileHandleyAA0C0C_So6CMTimeatF":{"name":"writer(_:didRotateFileHandle:)","abstract":"

Undocumented

","parent_name":"TSWriterDelegate"},"Protocols/TSWriterDelegate.html#/s:10HaishinKit16TSWriterDelegateP6writer_9didOutputyAA0C0C_10Foundation4DataVtF":{"name":"writer(_:didOutput:)","abstract":"

Undocumented

","parent_name":"TSWriterDelegate"},"Protocols/TSReaderDelegate.html#/s:10HaishinKit16TSReaderDelegateP6reader_2id7didReadyAA0C0C_s6UInt16VSo22CMFormatDescriptionRefatF":{"name":"reader(_:id:didRead:)","abstract":"

Undocumented

","parent_name":"TSReaderDelegate"},"Protocols/TSReaderDelegate.html#/s:10HaishinKit16TSReaderDelegateP6reader_2id7didReadyAA0C0C_s6UInt16VSo17CMSampleBufferRefatF":{"name":"reader(_:id:didRead:)","abstract":"

Undocumented

","parent_name":"TSReaderDelegate"},"Protocols/TSReaderDelegate.html":{"name":"TSReaderDelegate","abstract":"

The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates.

"},"Protocols/TSWriterDelegate.html":{"name":"TSWriterDelegate","abstract":"

The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates.

"},"Protocols/IOMuxer.html":{"name":"IOMuxer","abstract":"

A type that multiplexer for streaming.

"},"Protocols/IORecorderDelegate.html":{"name":"IORecorderDelegate","abstract":"

The interface an IORecorder uses to inform its delegate.

"},"Protocols/IOScreenCaptureUnitDelegate.html":{"name":"IOScreenCaptureUnitDelegate","abstract":"

The interface a capture session uses to inform its delegate.

"},"Protocols/IOScreenCaptureUnit.html":{"name":"IOScreenCaptureUnit","abstract":"

The interface that provides methods to screen capture.

"},"Protocols/NetBitRateStrategyConvertible.html":{"name":"NetBitRateStrategyConvertible","abstract":"

A type with a NetStream’s bitrate strategy representation.

"},"Protocols/NetStreamDelegate.html":{"name":"NetStreamDelegate","abstract":"

The interface a NetStream uses to inform its delegate.

"},"Protocols/NetStreamDrawable.html":{"name":"NetStreamDrawable","abstract":"

An interface that manages the NetStream content on the screen.

"},"Protocols/EventDispatcherConvertible.html":{"name":"EventDispatcherConvertible","abstract":"

The EventDispatcherConvertible interface is in implementation which supports the DOM Event Model.

"},"Protocols/RTMPConnectionDelegate.html":{"name":"RTMPConnectionDelegate","abstract":"

The interface a RTMPConnectionDelegate uses to inform its delegate.

"},"Protocols/Running.html":{"name":"Running","abstract":"

A type that methods for running.

"},"Extensions/AudioStreamBasicDescription.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"AudioStreamBasicDescription"},"Extensions/AudioFormatID.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"AudioFormatID"},"Extensions/AVAudioCommonFormat.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"AVAudioCommonFormat"},"Extensions/AVAudioCommonFormat.html":{"name":"AVAudioCommonFormat"},"Extensions/AudioFormatID.html":{"name":"AudioFormatID"},"Extensions/AudioStreamBasicDescription.html":{"name":"AudioStreamBasicDescription"},"Extensions.html#/IOMixer":{"name":"IOMixer"},"Extensions.html#/s:13SRTHaishinKit9SRTSocketC":{"name":"SRTSocket"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO3mssyA2CmF":{"name":"mss","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6sndsynyA2CmF":{"name":"sndsyn","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6rcvsynyA2CmF":{"name":"rcvsyn","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO3isnyA2CmF":{"name":"isn","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO2fcyA2CmF":{"name":"fc","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6sndbufyA2CmF":{"name":"sndbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6rcvbufyA2CmF":{"name":"rcvbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6lingeryA2CmF":{"name":"linger","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9udpsndbufyA2CmF":{"name":"udpsndbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9udprcvbufyA2CmF":{"name":"udprcvbuf","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10rendezvousyA2CmF":{"name":"rendezvous","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8sndtimeoyA2CmF":{"name":"sndtimeo","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8rcvtimeoyA2CmF":{"name":"rcvtimeo","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9reuseaddryA2CmF":{"name":"reuseaddr","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5maxbwyA2CmF":{"name":"maxbw","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5stateyA2CmF":{"name":"state","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5eventyA2CmF":{"name":"event","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7snddatayA2CmF":{"name":"snddata","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7rcvdatayA2CmF":{"name":"rcvdata","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6senderyA2CmF":{"name":"sender","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8tsbdmodeyA2CmF":{"name":"tsbdmode","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7latencyyA2CmF":{"name":"latency","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7inputbwyA2CmF":{"name":"inputbw","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7oheadbwyA2CmF":{"name":"oheadbw","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10passphraseyA2CmF":{"name":"passphrase","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8pbkeylenyA2CmF":{"name":"pbkeylen","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO7kmstateyA2CmF":{"name":"kmstate","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5ipttlyA2CmF":{"name":"ipttl","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO5iptosyA2CmF":{"name":"iptos","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9tlpktdropyA2CmF":{"name":"tlpktdrop","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO12snddropdelayyA2CmF":{"name":"snddropdelay","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9nakreportyA2CmF":{"name":"nakreport","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9conntimeoyA2CmF":{"name":"conntimeo","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10sndkmstateyA2CmF":{"name":"sndkmstate","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10lossmaxttlyA2CmF":{"name":"lossmaxttl","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10rcvlatencyyA2CmF":{"name":"rcvlatency","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO11peerlatencyyA2CmF":{"name":"peerlatency","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10minversionyA2CmF":{"name":"minversion","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO8streamidyA2CmF":{"name":"streamid","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO10messageapiyA2CmF":{"name":"messageapi","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO11payloadsizeyA2CmF":{"name":"payloadsize","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO9transtypeyA2CmF":{"name":"transtype","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO13kmrefreshrateyA2CmF":{"name":"kmrefreshrate","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO13kmpreannounceyA2CmF":{"name":"kmpreannounce","parent_name":"SRTSocketOption"},"Enums/SRTSocketOption.html#/s:13SRTHaishinKit15SRTSocketOptionO6symbolSo11SRT_SOCKOPTVvp":{"name":"symbol","parent_name":"SRTSocketOption"},"Enums/SRTMode.html#/s:13SRTHaishinKit7SRTModeO6calleryA2CmF":{"name":"caller","abstract":"

The caller mode.

","parent_name":"SRTMode"},"Enums/SRTMode.html#/s:13SRTHaishinKit7SRTModeO8listeneryA2CmF":{"name":"listener","abstract":"

The listener mode.

","parent_name":"SRTMode"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7generalyA2CmF":{"name":"general","abstract":"

General uncategorized log, for serious issues only

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO6bstatsyA2CmF":{"name":"bstats","abstract":"

Socket create/open/close/configure activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7controlyA2CmF":{"name":"control","abstract":"

Connection establishment and handshake

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO4datayA2CmF":{"name":"data","abstract":"

The checkTimer and around activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO5tsbpdyA2CmF":{"name":"tsbpd","abstract":"

The TsBPD thread

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO4rsrcyA2CmF":{"name":"rsrc","abstract":"

System resource allocation and management

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8haicryptyA2CmF":{"name":"haicrypt","abstract":"

Haicrypt module area

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7congestyA2CmF":{"name":"congest","abstract":"

Congestion control module

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7pfilteryA2CmF":{"name":"pfilter","abstract":"

Packet filter module

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO6applogyA2CmF":{"name":"applog","abstract":"

Applications

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7apiCtrlyA2CmF":{"name":"apiCtrl","abstract":"

API part for socket and library managmenet

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queCtrlyA2CmF":{"name":"queCtrl","abstract":"

Queue control activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8epollUpdyA2CmF":{"name":"epollUpd","abstract":"

EPoll, internal update activities

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7apiRecvyA2CmF":{"name":"apiRecv","abstract":"

API part for receiving

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7bufRecvyA2CmF":{"name":"bufRecv","abstract":"

Buffer, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queRecvyA2CmF":{"name":"queRecv","abstract":"

Queue, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8chanRecvyA2CmF":{"name":"chanRecv","abstract":"

CChannel, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7grpRecvyA2CmF":{"name":"grpRecv","abstract":"

Group, receiving side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7apiSendyA2CmF":{"name":"apiSend","abstract":"

API part for sending

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7bufSendyA2CmF":{"name":"bufSend","abstract":"

Buffer, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queSendyA2CmF":{"name":"queSend","abstract":"

Queue, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7chnSendyA2CmF":{"name":"chnSend","abstract":"

CChannel, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7grpSendyA2CmF":{"name":"grpSend","abstract":"

Group, sending side

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8internalyA2CmF":{"name":"internal","abstract":"

Internal activities not connected directly to a socket

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7queMgmtyA2CmF":{"name":"queMgmt","abstract":"

Queue, management part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7chnMgmtyA2CmF":{"name":"chnMgmt","abstract":"

CChannel, management part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO7grpMgmtyA2CmF":{"name":"grpMgmt","abstract":"

Group, management part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogFunctionalArea.html#/s:13SRTHaishinKit20SRTLogFunctionalAreaO8epollApiyA2CmF":{"name":"epollApi","abstract":"

EPoll, API part

","parent_name":"SRTLogFunctionalArea"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO5debugyA2CmF":{"name":"debug","abstract":"

Highly detailed and very frequent messages.

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO6noticeyA2CmF":{"name":"notice","abstract":"

Occasionally displayed information.

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO7warningyA2CmF":{"name":"warning","abstract":"

Unusual behavior.

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO5erroryA2CmF":{"name":"error","abstract":"

Abnormal behavior

","parent_name":"SRTLogLevel"},"Enums/SRTLogLevel.html#/s:13SRTHaishinKit11SRTLogLevelO4crityA2CmF":{"name":"crit","abstract":"

Error that makes the current socket unusabl

","parent_name":"SRTLogLevel"},"Enums/DeviceUtil.html#/s:10HaishinKit10DeviceUtilO6device17withLocalizedName9mediaTypeSo09AVCaptureC0CSgSS_So07AVMediaJ0atFZ":{"name":"device(withLocalizedName:mediaType:)","abstract":"

Lookup device by localizedName and mediaType.

","parent_name":"DeviceUtil"},"Enums/DeviceUtil.html#/videoOrientation(by:)":{"name":"videoOrientation(by:)","abstract":"

Looks up the AVCaptureVideoOrientation by a Notification.

","parent_name":"DeviceUtil"},"Enums/DeviceUtil.html#/isHeadphoneConnected(_:)":{"name":"isHeadphoneConnected(_:)","abstract":"

Device is connected a headphone or not.

","parent_name":"DeviceUtil"},"Enums/DeviceUtil.html#/isHeadphoneDisconnected(_:ports:)":{"name":"isHeadphoneDisconnected(_:ports:)","abstract":"

Device is disconnected a headphone or not.

","parent_name":"DeviceUtil"},"Enums/RTMPObjectEncoding.html#/s:10HaishinKit18RTMPObjectEncodingO4amf0yA2CmF":{"name":"amf0","abstract":"

The AMF0 Encoding.

","parent_name":"RTMPObjectEncoding"},"Enums/RTMPObjectEncoding.html#/s:10HaishinKit18RTMPObjectEncodingO4amf3yA2CmF":{"name":"amf3","abstract":"

The AMF3 Encoding.

","parent_name":"RTMPObjectEncoding"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO5northyA2CmF":{"name":"north","abstract":"

The north direction.

","parent_name":"ImageTransform"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO5southyA2CmF":{"name":"south","abstract":"

The south direction.

","parent_name":"ImageTransform"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO4eastyA2CmF":{"name":"east","abstract":"

The east direciton.

","parent_name":"ImageTransform"},"Enums/ImageTransform.html#/s:10HaishinKit14ImageTransformO4westyA2CmF":{"name":"west","abstract":"

The west direction.

","parent_name":"ImageTransform"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO14failedToCreateyACs5Int32V_tcACmF":{"name":"failedToCreate(status:)","abstract":"

The IO video unit failed to create the VTSession.

","parent_name":"IOVideoUnitError"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO15failedToPrepareyACs5Int32V_tcACmF":{"name":"failedToPrepare(status:)","abstract":"

The IO video unit failed to prepare the VTSession.

","parent_name":"IOVideoUnitError"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO13failedToFlameyACs5Int32V_tcACmF":{"name":"failedToFlame(status:)","abstract":"

The IO video unit failed to encode or decode a flame.

","parent_name":"IOVideoUnitError"},"Enums/IOVideoUnitError.html#/s:10HaishinKit16IOVideoUnitErrorO17failedToSetOptionyACs5Int32V_AA09VTSessionI0VtcACmF":{"name":"failedToSetOption(status:option:)","abstract":"

The IO video unit failed to set an option.

","parent_name":"IOVideoUnitError"},"Enums/IOAudioUnitError.html#/s:10HaishinKit16IOAudioUnitErrorO14failedToCreateyACSo13AVAudioFormatCSg_AGtcACmF":{"name":"failedToCreate(from:to:)","abstract":"

The IO audio unit failed to create the AVAudioConverter..

","parent_name":"IOAudioUnitError"},"Enums/IOAudioUnitError.html#/s:10HaishinKit16IOAudioUnitErrorO15failedToConvertyACSo7NSErrorC_tcACmF":{"name":"failedToConvert(error:)","abstract":"

The IO audio unit faild to convert the an audio buffer.

","parent_name":"IOAudioUnitError"},"Enums/IOAudioUnitError.html":{"name":"IOAudioUnitError","abstract":"

The IO audio unit error domain codes.

"},"Enums/IOVideoUnitError.html":{"name":"IOVideoUnitError","abstract":"

The IO video unit error domain codes.

"},"Enums/ImageTransform.html":{"name":"ImageTransform","abstract":"

The type of image transform direction.

"},"Enums/RTMPObjectEncoding.html":{"name":"RTMPObjectEncoding","abstract":"

Constans that defines the RTMPObject encoding type.

"},"Enums/DeviceUtil.html":{"name":"DeviceUtil","abstract":"

The namespace of DeviceUtil.

"},"Enums/SRTLogLevel.html":{"name":"SRTLogLevel"},"Enums/SRTLogFunctionalArea.html":{"name":"SRTLogFunctionalArea"},"Enums/SRTMode.html":{"name":"SRTMode","abstract":"

The type of SRTHaishinKit supports srt modes.

"},"Enums/SRTSocketOption.html":{"name":"SRTSocketOption"},"Global%20Variables.html#/s:10HaishinKit12kASUndefinedAA0C0Vvp":{"name":"kASUndefined","abstract":"

The singleton ASUndefined object.

"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC10connectionAcA13SRTConnectionC_tcfc":{"name":"init(connection:)","abstract":"

Creates a new SRTStream object.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC7publishyySSSgF":{"name":"publish(_:)","abstract":"

Sends streaming audio, vidoe and data message from client.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC4playyySSSgF":{"name":"play(_:)","abstract":"

Playback streaming audio and video message from server.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC5closeyyF":{"name":"close()","abstract":"

Stops playing or publishing and makes available other uses.

","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC19readyStateDidChange2toy07HaishinB09NetStreamC05ReadyE0O_tF":{"name":"readyStateDidChange(to:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6writer_9didOutputy07HaishinB08TSWriterC_10Foundation4DataVtF":{"name":"writer(_:didOutput:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6writer_19didRotateFileHandley07HaishinB08TSWriterC_So6CMTimeatF":{"name":"writer(_:didRotateFileHandle:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6reader_2id7didReady07HaishinB08TSReaderC_s6UInt16VSo22CMFormatDescriptionRefatF":{"name":"reader(_:id:didRead:)","parent_name":"SRTStream"},"Classes/SRTStream.html#/s:13SRTHaishinKit9SRTStreamC6reader_2id7didReady07HaishinB08TSReaderC_s6UInt16VSo17CMSampleBufferRefatF":{"name":"reader(_:id:didRead:)","parent_name":"SRTStream"},"Classes/SRTLogger.html#/s:13SRTHaishinKit9SRTLoggerC6sharedACvpZ":{"name":"shared","parent_name":"SRTLogger"},"Classes/SRTLogger.html#/s:13SRTHaishinKit9SRTLoggerC5levelAA11SRTLogLevelOvp":{"name":"level","abstract":"

Specifies the current logging level.

","parent_name":"SRTLogger"},"Classes/SRTLogger.html#/s:13SRTHaishinKit9SRTLoggerC15functionalAreasShyAA20SRTLogFunctionalAreaOGvp":{"name":"functionalAreas","abstract":"

Specifies the current logging functional areas.

","parent_name":"SRTLogger"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC7versionSSvpZ":{"name":"version","abstract":"

SRT Library version

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC3uri10Foundation3URLVSgvp":{"name":"uri","abstract":"

The URI passed to the SRTConnection.connect() method.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/c:@M@SRTHaishinKit@objc(cs)SRTConnection(py)connected":{"name":"connected","abstract":"

This instance connect to server(true) or not(false)

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC15performanceDataAA014SRTPerformanceE0Vvp":{"name":"performanceData","abstract":"

The SRT’s performance data.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/c:@M@SRTHaishinKit@objc(cs)SRTConnection(im)init":{"name":"init()","abstract":"

Creates a new SRTConnection.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC4open_4modey10Foundation3URLVSg_AA7SRTModeOtF":{"name":"open(_:mode:)","abstract":"

Open a two-way connection to an application on SRT Server.

","parent_name":"SRTConnection"},"Classes/SRTConnection.html#/s:13SRTHaishinKit13SRTConnectionC5closeyyF":{"name":"close()","abstract":"

Closes the connection from the server.

","parent_name":"SRTConnection"},"Classes/InstanceHolder.html#/s:10HaishinKit14InstanceHolderC7factoryACyxGxyc_tcfc":{"name":"init(factory:)","abstract":"

Creates a new InstanceHolder.

","parent_name":"InstanceHolder"},"Classes/InstanceHolder.html#/s:10HaishinKit14InstanceHolderC6retainxSgyF":{"name":"retain()","abstract":"

Retains an instance object if needed.

","parent_name":"InstanceHolder"},"Classes/InstanceHolder.html#/s:10HaishinKit14InstanceHolderC7releaseyyxSgF":{"name":"release(_:)","abstract":"

Releases an instance object if needed.

","parent_name":"InstanceHolder"},"Classes/ByteArray/Error.html#/s:10HaishinKit9ByteArrayC5ErrorO3eofyA2EmF":{"name":"eof","abstract":"

Error cause end of data.

","parent_name":"Error"},"Classes/ByteArray/Error.html#/s:10HaishinKit9ByteArrayC5ErrorO5parseyA2EmF":{"name":"parse","abstract":"

Failed to parse

","parent_name":"Error"},"Classes/ByteArray/Error.html":{"name":"Error","abstract":"

The ByteArray error domain codes.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayCACycfc":{"name":"init()","abstract":"

Creates an empty ByteArray.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC4dataAC10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"

Creates a ByteArray with data.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC6lengthSivp":{"name":"length","abstract":"

Specifies the length of buffer.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC8positionSivp":{"name":"position","abstract":"

Specifies the position of buffer.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC14bytesAvailableSivp":{"name":"bytesAvailable","abstract":"

The bytesAvalibale or not.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayCys5UInt8VSicip":{"name":"subscript(_:)","abstract":"

Undocumented

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readUInt8s0F0VyKF":{"name":"readUInt8()","abstract":"

Reading an UInt8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeUInt8yACXDs0F0VF":{"name":"writeUInt8(_:)","abstract":"

Writing an UInt8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC8readInt8s0F0VyKF":{"name":"readInt8()","abstract":"

Readning an Int8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9writeInt8yACXDs0F0VF":{"name":"writeInt8(_:)","abstract":"

Writing an Int8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt16s0F0VyKF":{"name":"readUInt16()","abstract":"

Readning an UInt16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt16yACXDs0F0VF":{"name":"writeUInt16(_:)","abstract":"

Writing an UInt16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readInt16s0F0VyKF":{"name":"readInt16()","abstract":"

Reading an Int16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeInt16yACXDs0F0VF":{"name":"writeInt16(_:)","abstract":"

Reading an Int16 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt24s6UInt32VyKF":{"name":"readUInt24()","abstract":"

Reading an UInt24 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt24yACXDs6UInt32VF":{"name":"writeUInt24(_:)","abstract":"

Writing an UInt24 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt32s0F0VyKF":{"name":"readUInt32()","abstract":"

Reading an UInt32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt32yACXDs0F0VF":{"name":"writeUInt32(_:)","abstract":"

Writing an UInt32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readInt32s0F0VyKF":{"name":"readInt32()","abstract":"

Reading an Int32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeInt32yACXDs0F0VF":{"name":"writeInt32(_:)","abstract":"

Writing an Int32 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeUInt64yACXDs0F0VF":{"name":"writeUInt64(_:)","abstract":"

Writing an UInt64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readUInt64s0F0VyKF":{"name":"readUInt64()","abstract":"

Reading an UInt64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeInt64yACXDs0F0VF":{"name":"writeInt64(_:)","abstract":"

Writing an Int64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readInt64s0F0VyKF":{"name":"readInt64()","abstract":"

Reading an Int64 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10readDoubleSdyKF":{"name":"readDouble()","abstract":"

Reading a Double value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC11writeDoubleyACXDSdF":{"name":"writeDouble(_:)","abstract":"

Writing a Double value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9readFloatSfyKF":{"name":"readFloat()","abstract":"

Reading a Float value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC10writeFloatyACXDSfF":{"name":"writeFloat(_:)","abstract":"

Writeing a Float value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC8readUTF8SSyKF":{"name":"readUTF8()","abstract":"

Reading a string as UTF8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC9writeUTF8yACXDSSKF":{"name":"writeUTF8(_:)","abstract":"

Writing a string as UTF8 value.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:10HaishinKit9ByteArrayC5clearACXDyF":{"name":"clear()","abstract":"

Clear the buffer.

","parent_name":"ByteArray"},"Classes/ByteArray.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"ByteArray"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO6recordyA2EmF":{"name":"record","abstract":"

Publish with server-side recording.

","parent_name":"HowToPublish"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO6appendyA2EmF":{"name":"append","abstract":"

Publish with server-side recording which is to append file if exists.

","parent_name":"HowToPublish"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO13appendWithGapyA2EmF":{"name":"appendWithGap","abstract":"

Publish with server-side recording which is to append and ajust time file if exists.

","parent_name":"HowToPublish"},"Classes/RTMPStream/HowToPublish.html#/s:10HaishinKit10RTMPStreamC12HowToPublishO4liveyA2EmF":{"name":"live","abstract":"

Publish.

","parent_name":"HowToPublish"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11bufferEmptyyA2EmF":{"name":"bufferEmpty","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11bufferFlushyA2EmF":{"name":"bufferFlush","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10bufferFullyA2EmF":{"name":"bufferFull","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO13connectClosedyA2EmF":{"name":"connectClosed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO13connectFailedyA2EmF":{"name":"connectFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO15connectRejectedyA2EmF":{"name":"connectRejected","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14connectSuccessyA2EmF":{"name":"connectSuccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO15drmUpdateNeededyA2EmF":{"name":"drmUpdateNeeded","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO6failedyA2EmF":{"name":"failed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO20multicastStreamResetyA2EmF":{"name":"multicastStreamReset","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11pauseNotifyyA2EmF":{"name":"pauseNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10playFailedyA2EmF":{"name":"playFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO24playFileStructureInvalidyA2EmF":{"name":"playFileStructureInvalid","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO18playInsufficientBWyA2EmF":{"name":"playInsufficientBW","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO25playNoSupportedTrackFoundyA2EmF":{"name":"playNoSupportedTrackFound","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO9playResetyA2EmF":{"name":"playReset","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO9playStartyA2EmF":{"name":"playStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO8playStopyA2EmF":{"name":"playStop","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO18playStreamNotFoundyA2EmF":{"name":"playStreamNotFound","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14playTransitionyA2EmF":{"name":"playTransition","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO19playUnpublishNotifyyA2EmF":{"name":"playUnpublishNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14publishBadNameyA2EmF":{"name":"publishBadName","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11publishIdleyA2EmF":{"name":"publishIdle","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO12publishStartyA2EmF":{"name":"publishStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO19recordAlreadyExistsyA2EmF":{"name":"recordAlreadyExists","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO12recordFailedyA2EmF":{"name":"recordFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO14recordNoAccessyA2EmF":{"name":"recordNoAccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO11recordStartyA2EmF":{"name":"recordStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10recordStopyA2EmF":{"name":"recordStop","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO23recordDiskQuotaExceededyA2EmF":{"name":"recordDiskQuotaExceeded","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO17secondScreenStartyA2EmF":{"name":"secondScreenStart","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO16secondScreenStopyA2EmF":{"name":"secondScreenStop","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10seekFailedyA2EmF":{"name":"seekFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO15seekInvalidTimeyA2EmF":{"name":"seekInvalidTime","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10seekNotifyyA2EmF":{"name":"seekNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO10stepNotifyyA2EmF":{"name":"stepNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO13unpauseNotifyyA2EmF":{"name":"unpauseNotify","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO16unpublishSuccessyA2EmF":{"name":"unpublishSuccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO20videoDimensionChangeyA2EmF":{"name":"videoDimensionChange","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html#/s:10HaishinKit10RTMPStreamC4CodeO5levelSSvp":{"name":"level","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPStream/Code.html":{"name":"Code","abstract":"

NetStatusEvent#info.code for NetStream

","parent_name":"RTMPStream"},"Classes/RTMPStream/HowToPublish.html":{"name":"HowToPublish","abstract":"

The type of publish options.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4infoAA0C4InfoVvp":{"name":"info","abstract":"

The NetStreamInfo object whose properties contain data.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC14objectEncodingAA010RTMPObjectE0Ovp":{"name":"objectEncoding","abstract":"

The object encoding (AMF). Framework supports AMF0 only.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC12receiveAudioSbvp":{"name":"receiveAudio","abstract":"

Incoming audio plays on the stream or not.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC12receiveVideoSbvp":{"name":"receiveVideo","abstract":"

Incoming video plays on the stream or not.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC6pausedSbvp":{"name":"paused","abstract":"

Pauses playback or publish of a video stream or not.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC10connectionAcA14RTMPConnectionC_tcfc":{"name":"init(connection:)","abstract":"

Creates a new stream.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4playyyypSgd_tF":{"name":"play(_:)","abstract":"

Plays a live stream from RTMPServer.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4seekyySdF":{"name":"seek(_:)","abstract":"

Seeks the keyframe.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC7publish_4typeySSSg_AC12HowToPublishOtF":{"name":"publish(_:type:)","abstract":"

Sends streaming audio, vidoe and data message from client.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC5closeyyF":{"name":"close()","abstract":"

Stops playing or publishing and makes available other uses.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC4send11handlerName9argumentsySS_ypSgdtF":{"name":"send(handlerName:arguments:)","abstract":"

Sends a message on a published stream to all subscribing clients.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC12makeMetaDataSDySSypSgGyF":{"name":"makeMetaData()","abstract":"

Creates flv metadata for a stream.

","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC20readyStateWillChange2toyAA9NetStreamC05ReadyE0O_tF":{"name":"readyStateWillChange(to:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit10RTMPStreamC19readyStateDidChange2toyAA9NetStreamC05ReadyE0O_tF":{"name":"readyStateDidChange(to:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"addEventListener(_:selector:observer:useCapture:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"removeEventListener(_:selector:observer:useCapture:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch5eventyAA0C0C_tF":{"name":"dispatch(event:)","parent_name":"RTMPStream"},"Classes/RTMPStream.html#/s:10HaishinKit26EventDispatcherConvertibleP8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF":{"name":"dispatch(_:bubbles:data:)","parent_name":"RTMPStream"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC9getRemote8withName10remotePath11persistenceACSS_SSSbtFZ":{"name":"getRemote(withName:remotePath:persistence:)","abstract":"

Returns a reference to a shared object on a server.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC14objectEncodingAA010RTMPObjectF0Ovp":{"name":"objectEncoding","abstract":"

The AMF object encoding type.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC4dataSDySSypSgGvp":{"name":"data","abstract":"

The current data storage.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC11setPropertyyySS_ypSgtF":{"name":"setProperty(_:_:)","abstract":"

Updates the value of a property in shared object.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC7connectyyAA14RTMPConnectionCF":{"name":"connect(_:)","abstract":"

Connects to a remove shared object on a server.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC5clearyyF":{"name":"clear()","abstract":"

Purges all of the data.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:10HaishinKit16RTMPSharedObjectC5closeyyF":{"name":"close()","abstract":"

Closes the connection a server.

","parent_name":"RTMPSharedObject"},"Classes/RTMPSharedObject.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"RTMPSharedObject"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO14callBadVersionyA2EmF":{"name":"callBadVersion","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO10callFailedyA2EmF":{"name":"callFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO14callProhibitedyA2EmF":{"name":"callProhibited","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO18connectAppshutdownyA2EmF":{"name":"connectAppshutdown","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO13connectClosedyA2EmF":{"name":"connectClosed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO13connectFailedyA2EmF":{"name":"connectFailed","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO18connectIdleTimeOutyA2EmF":{"name":"connectIdleTimeOut","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO17connectInvalidAppyA2EmF":{"name":"connectInvalidApp","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO20connectNetworkChangeyA2EmF":{"name":"connectNetworkChange","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO15connectRejectedyA2EmF":{"name":"connectRejected","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO14connectSuccessyA2EmF":{"name":"connectSuccess","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection/Code.html#/s:10HaishinKit14RTMPConnectionC4CodeO5levelSSvp":{"name":"level","abstract":"

Undocumented

","parent_name":"Code"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC18defaultWindowSizeSs5Int64VvpZ":{"name":"defaultWindowSizeS","abstract":"

The default network’s window size for RTMPConnection.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC18supportedProtocolsShySSGvpZ":{"name":"supportedProtocols","abstract":"

The supported protocols are rtmp, rtmps, rtmpt and rtmps.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC11defaultPortSivpZ":{"name":"defaultPort","abstract":"

The default RTMP port is 1935.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC17defaultSecurePortSivpZ":{"name":"defaultSecurePort","abstract":"

The default RTMPS port is 443.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC15defaultFlashVerSSvpZ":{"name":"defaultFlashVer","abstract":"

The default flashVer is FMLE/3.0 (compatible; FMSc/1.0).

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC17defaultChunkSizeSSivpZ":{"name":"defaultChunkSizeS","abstract":"

The default chunk size for RTMPConnection.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC19defaultCapabilitiesSivpZ":{"name":"defaultCapabilities","abstract":"

The default capabilities for RTMPConneciton.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC21defaultObjectEncodingAA010RTMPObjectF0OvpZ":{"name":"defaultObjectEncoding","abstract":"

The default object encoding for RTMPConnection class.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection/Code.html":{"name":"Code","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC6swfUrlSSSgvp":{"name":"swfUrl","abstract":"

Specifies the URL of .swf.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC7pageUrlSSSgvp":{"name":"pageUrl","abstract":"

Specifies the URL of an HTTP referer.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC7timeoutSivp":{"name":"timeout","abstract":"

Specifies the time to wait for TCP/IP Handshake done.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC16qualityOfService8Dispatch0G3QoSVvp":{"name":"qualityOfService","abstract":"

Specifies the dispatchQos for socket.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC8flashVerSSvp":{"name":"flashVer","abstract":"

Specifies the name of application.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC9chunkSizeSivp":{"name":"chunkSize","abstract":"

Specifies theoutgoing RTMPChunkSize.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC3uri10Foundation3URLVSgvp":{"name":"uri","abstract":"

Specifies the URI passed to the Self.connect() method.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC9connectedSbvp":{"name":"connected","abstract":"

Specifies the instance connected to server(true) or not(false).

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC23requireNetworkFrameworkSbvp":{"name":"requireNetworkFramework","abstract":"

Specifies the instance requires Network.framework if possible.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC10parametersypSgvp":{"name":"parameters","abstract":"

Specifies the socket optional parameters.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC14objectEncodingAA010RTMPObjectE0Ovp":{"name":"objectEncoding","abstract":"

Specifies the object encoding for this RTMPConnection instance.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC12totalBytesIns5Int64Vvp":{"name":"totalBytesIn","abstract":"

The statistics of total incoming bytes.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC13totalBytesOuts5Int64Vvp":{"name":"totalBytesOut","abstract":"

The statistics of total outgoing bytes.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC17totalStreamsCountSivp":{"name":"totalStreamsCount","abstract":"

The statistics of total RTMPStream counts.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate of the NetStream.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC21previousQueueBytesOutSays5Int64VGvp":{"name":"previousQueueBytesOut","abstract":"

The statistics of outgoing queue bytes per second.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC23currentBytesInPerSeconds5Int32Vvp":{"name":"currentBytesInPerSecond","abstract":"

The statistics of incoming bytes per second.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC24currentBytesOutPerSeconds5Int32Vvp":{"name":"currentBytesOutPerSecond","abstract":"

The statistics of outgoing bytes per second.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionCACycfc":{"name":"init()","abstract":"

Creates a new connection.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC4call_9responder9argumentsySS_AA13RTMPResponderCSgypSgdtF":{"name":"call(_:responder:arguments:)","abstract":"

Calls a command or method on RTMP Server.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC7connect_9argumentsySS_ypSgdtF":{"name":"connect(_:arguments:)","abstract":"

Creates a two-way connection to an application on RTMP Server.

","parent_name":"RTMPConnection"},"Classes/RTMPConnection.html#/s:10HaishinKit14RTMPConnectionC5closeyyF":{"name":"close()","abstract":"

Closes the connection from the server.

","parent_name":"RTMPConnection"},"Classes/RTMPResponder.html#/s:10HaishinKit13RTMPResponderC7Handlera":{"name":"Handler","abstract":"

A Handler represents RTMPResponder’s callback function.

","parent_name":"RTMPResponder"},"Classes/RTMPResponder.html#/s:10HaishinKit13RTMPResponderC6result6statusACySayypSgGc_yAGcSgtcfc":{"name":"init(result:status:)","abstract":"

Creates a new RTMPResponder object.

","parent_name":"RTMPResponder"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherCACycfc":{"name":"init()","abstract":"

Creates a new event dispatcher.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC6targetACyXl_tcfc":{"name":"init(target:)","abstract":"

Creates a new event dispatcher to proxy target.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC03addC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"addEventListener(_:selector:observer:useCapture:)","abstract":"

Registers the event listeners on the event target.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC06removeC8Listener_8selector8observer10useCaptureyAA0C0C4NameV_10ObjectiveC8SelectorVyXlSgSbtF":{"name":"removeEventListener(_:selector:observer:useCapture:)","abstract":"

Unregister the event listeners on the event target.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC8dispatch5eventyAA0C0C_tF":{"name":"dispatch(event:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcher"},"Classes/EventDispatcher.html#/s:10HaishinKit15EventDispatcherC8dispatch_7bubbles4datayAA0C0C4NameV_SbypSgtF":{"name":"dispatch(_:bubbles:data:)","abstract":"

Dispatches the events into the implementations event model.

","parent_name":"EventDispatcher"},"Classes/Event/Name.html#/s:SY8RawValueQa":{"name":"RawValue","parent_name":"Name"},"Classes/Event/Name.html#/s:s26ExpressibleByStringLiteralP0cD4TypeQa":{"name":"StringLiteralType","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV4syncAEvpZ":{"name":"sync","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV5eventAEvpZ":{"name":"event","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV7ioErrorAEvpZ":{"name":"ioError","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:10HaishinKit5EventC4NameV10rtmpStatusAEvpZ":{"name":"rtmpStatus","abstract":"

Undocumented

","parent_name":"Name"},"Classes/Event/Name.html#/s:SY8rawValue03RawB0Qzvp":{"name":"rawValue","parent_name":"Name"},"Classes/Event/Name.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"Name"},"Classes/Event/Name.html#/s:s26ExpressibleByStringLiteralP06stringD0x0cD4TypeQz_tcfc":{"name":"init(stringLiteral:)","parent_name":"Name"},"Classes/Event/Name.html":{"name":"Name","abstract":"

A structure that defines the name of an event.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4fromyAC10Foundation12NotificationVFZ":{"name":"from(_:)","abstract":"

Undocumented

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4typeAC4NameVvp":{"name":"type","abstract":"

The type represents the event name.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC7bubblesSbvp":{"name":"bubbles","abstract":"

The isBubbles indicates whether ot not an event is a bubbling event.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4dataypSgvp":{"name":"data","abstract":"

The data indicates the to provide information.

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC6targetyXlSgvp":{"name":"target","abstract":"

The target indicates the [IEventDispatcher].

","parent_name":"Event"},"Classes/Event.html#/s:10HaishinKit5EventC4type7bubbles4dataA2C4NameV_SbypSgtcfc":{"name":"init(type:bubbles:data:)","abstract":"

Creates a new event.

","parent_name":"Event"},"Classes/Event.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"Event"},"Classes/NetStream/ReadyState.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO11initializedyA2EmF":{"name":"initialized","abstract":"

NetStream has been created.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO4openyA2EmF":{"name":"open","abstract":"

NetStream waiting for new method.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO4playyA2EmF":{"name":"play","abstract":"

NetStream play() has been called.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO7playingyA2EmF":{"name":"playing","abstract":"

NetStream play and server was accepted as playing

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO7publishyA2EmF":{"name":"publish","abstract":"

NetStream publish() has been called

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO10publishingyAeA7IOMuxer_p_tcAEmF":{"name":"publishing(muxer:)","abstract":"

NetStream publish and server accpted as publising.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html#/s:10HaishinKit9NetStreamC10ReadyStateO6closedyA2EmF":{"name":"closed","abstract":"

NetStream close() has been called.

","parent_name":"ReadyState"},"Classes/NetStream/ReadyState.html":{"name":"ReadyState","abstract":"

The enumeration defines the state a ReadyState NetStream is in.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC9lockQueueSo17OS_dispatch_queueCvp":{"name":"lockQueue","abstract":"

The lockQueue.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC15bitrateStrategyAA0c7BitRateF11Convertible_pvp":{"name":"bitrateStrategy","abstract":"

Specifies the adaptibe bitrate strategy.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC19isMonitoringEnabledSbvp":{"name":"isMonitoringEnabled","abstract":"

Specifies the audio monitoring enabled or not.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC7contextSo9CIContextCvp":{"name":"context","abstract":"

Specifies the context object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC5torchSbvp":{"name":"torch","abstract":"

Specifiet the device torch indicating wheter the turn on(TRUE) or not(FALSE).

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC9frameRateSdvp":{"name":"frameRate","abstract":"

Specifies the frame rate of a device capture.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13sessionPresetSo016AVCaptureSessionF0avp":{"name":"sessionPreset","abstract":"

Specifies the sessionPreset for the AVCaptureSession.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC16videoOrientationSo014AVCaptureVideoF0Vvp":{"name":"videoOrientation","abstract":"

Specifies the video orientation for stream.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC23multiCamCaptureSettingsAA05MultifgH0Vvp":{"name":"multiCamCaptureSettings","abstract":"

Specifies the multi camera capture properties.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC8hasAudioSbvp":{"name":"hasAudio","abstract":"

Specifies the hasAudio indicies whether no signal audio or not.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC8hasVideoSbvp":{"name":"hasVideo","abstract":"

Specifies the hasVideo indicies whether freeze video signal or not.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13audioSettingsAA010AudioCodecF0Vvp":{"name":"audioSettings","abstract":"

Specifies the audio compression properties.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13videoSettingsAA010VideoCodecF0Vvp":{"name":"videoSettings","abstract":"

Specifies the video compression properties.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC16videoInputFormatSo22CMFormatDescriptionRefaSgvp":{"name":"videoInputFormat","abstract":"

The video input format.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC16audioInputFormatSo07AVAudioG0CSgvp":{"name":"audioInputFormat","abstract":"

The audio input format.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC14soundTransformAA05SoundF0Vvp":{"name":"soundTransform","abstract":"

Specifies the controls sound.

","parent_name":"NetStream"},"Classes/NetStream.html#/c:@M@HaishinKit@objc(cs)NetStream(py)currentFPS":{"name":"currentFPS","abstract":"

The number of frames per second being displayed.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC8delegateAA0cD8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate..

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC10readyStateAC05ReadyF0Ovp":{"name":"readyState","abstract":"

The current state of the stream.

","parent_name":"NetStream"},"Classes/NetStream.html#/c:@M@HaishinKit@objc(cs)NetStream(im)init":{"name":"init()","abstract":"

Creates a NetStream object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC12attachCamera_7onErrorySo15AVCaptureDeviceCSg_ys0H0_pcSgtF":{"name":"attachCamera(_:onError:)","abstract":"

Attaches the primary camera object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC17attachMultiCamera_7onErrorySo15AVCaptureDeviceCSg_ys0I0_pcSgtF":{"name":"attachMultiCamera(_:onError:)","abstract":"

Attaches the 2ndary camera object for picture in picture.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC11attachAudio_034automaticallyConfiguresApplicationF7Session7onErrorySo15AVCaptureDeviceCSg_Sbys0L0_pcSgtF":{"name":"attachAudio(_:automaticallyConfiguresApplicationAudioSession:onError:)","abstract":"

Attaches the audio capture object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC12videoCapture3forAA07IOVideoF4UnitCSgSi_tF":{"name":"videoCapture(for:)","abstract":"

Returns the IOVideoCaptureUnit by index.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC12attachScreenyySo09AVCaptureF5InputCSgF":{"name":"attachScreen(_:)","abstract":"

Attaches the screen input object.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","abstract":"

Append a CMSampleBuffer.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC6append_4whenySo13AVAudioBufferC_So0G4TimeCtF":{"name":"append(_:when:)","abstract":"

Append an AVAudioBuffer.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC19registerVideoEffectySbAA0fG0CF":{"name":"registerVideoEffect(_:)","abstract":"

Register a video effect.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC21unregisterVideoEffectySbAA0fG0CF":{"name":"unregisterVideoEffect(_:)","abstract":"

Unregister a video effect.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC14startRecording_8settingsyAA18IORecorderDelegate_p_SDySo11AVMediaTypeaSDySSypGGtF":{"name":"startRecording(_:settings:)","abstract":"

Starts recording.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC13stopRecordingyyF":{"name":"stopRecording()","abstract":"

Stop recording.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC20readyStateWillChange2toyAC05ReadyF0O_tF":{"name":"readyStateWillChange(to:)","abstract":"

A handler that receives stream readyState will update.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit9NetStreamC19readyStateDidChange2toyAC05ReadyF0O_tF":{"name":"readyStateDidChange(to:)","abstract":"

A handler that receives stream readyState updated.

","parent_name":"NetStream"},"Classes/NetStream.html#/s:10HaishinKit27IOScreenCaptureUnitDelegateP7session_9didOutput16presentationTimeyAA0cdE0_p_So11CVBufferRefaSo6CMTimeatF":{"name":"session(_:didOutput:presentationTime:)","parent_name":"NetStream"},"Classes/NetStream.html#/c:@CM@HaishinKit@objc(cs)NetStream(im)stream:didOutputSampleBuffer:ofType:":{"name":"stream(_:didOutputSampleBuffer:of:)","abstract":"

Undocumented

","parent_name":"NetStream"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC14defaultTimeoutSivpZ":{"name":"defaultTimeout","abstract":"

The default time to wait for TCP/IP Handshake done.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC18defaultWindowSizeCSivpZ":{"name":"defaultWindowSizeC","abstract":"

The defulat stream’s TCP window size.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC11inputBuffer10Foundation4DataVvp":{"name":"inputBuffer","abstract":"

The current incoming data buffer.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC7timeoutSivp":{"name":"timeout","abstract":"

Specifies time to wait for TCP/IP Handshake done.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC9connectedSbvp":{"name":"connected","abstract":"

Specifies instance connected to server(true) or not(false).

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC11windowSizeCSivp":{"name":"windowSizeC","abstract":"

Specifies the output buffer size in bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC12totalBytesInAA6AtomicVys5Int64VGvp":{"name":"totalBytesIn","abstract":"

Specifies statistics of total incoming bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC16qualityOfService8Dispatch0H3QoSVvp":{"name":"qualityOfService","abstract":"

Specifies instance’s quality of service for a Socket IO.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC13securityLevelSo08NSStreamd8SecurityF0avp":{"name":"securityLevel","abstract":"

Specifies instance determine to use the secure-socket layer (SSL) security level.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC16outputBufferSizeSivp":{"name":"outputBufferSize","abstract":"

Specifies the output buffer size in bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC13totalBytesOutAA6AtomicVys5Int64VGvp":{"name":"totalBytesOut","abstract":"

Specifies statistics of total outgoing bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC13queueBytesOutAA6AtomicVys5Int64VGvp":{"name":"queueBytesOut","abstract":"

Specifies statistics of total outgoing queued bytes.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC7connect8withName4portySS_SitF":{"name":"connect(withName:port:)","abstract":"

Creates a two-way connection to a server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC8doOutput4data6lockedSi10Foundation4DataV_Spys6UInt32VGSgtF":{"name":"doOutput(data:locked:)","abstract":"

Does output data buffer to the server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC5closeyyF":{"name":"close()","abstract":"

Closes the connection from the server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/s:10HaishinKit9NetSocketC6listenyyF":{"name":"listen()","abstract":"

Listen incoming data buffer from the server.

","parent_name":"NetSocket"},"Classes/NetSocket.html#/c:@CM@HaishinKit@objc(cs)NetSocket(im)stream:handleEvent:":{"name":"stream(_:handle:)","abstract":"

Undocumented

","parent_name":"NetSocket"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC7txtData10Foundation0F0VSgvp":{"name":"txtData","abstract":"

The TXT record for the receiver.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC6domainSSvp":{"name":"domain","abstract":"

The domain for the service.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC4typeSSvp":{"name":"type","abstract":"

The network service type.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC4nameSSvp":{"name":"name","abstract":"

The name of service.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC4ports5Int32Vvp":{"name":"port","abstract":"

The port.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC9isRunningAA6AtomicVySbGvp":{"name":"isRunning","abstract":"

The service is running or not.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC7clientsSayAA0C6ClientCGvp":{"name":"clients","abstract":"

The current connected client objects.

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit10NetServiceC6domain4type4name4portACSS_S2Ss5Int32Vtcfc":{"name":"init(domain:type:name:port:)","abstract":"

Create a new NetService object.

","parent_name":"NetService"},"Classes/NetService.html#/c:@CM@HaishinKit@objc(cs)NetService(im)netService:didAcceptConnectionWithInputStream:outputStream:":{"name":"netService(_:didAcceptConnectionWith:outputStream:)","abstract":"

Undocumented

","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","parent_name":"NetService"},"Classes/NetService.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","parent_name":"NetService"},"Classes/NetClient.html#/s:10HaishinKit9NetClientC6listenyyF":{"name":"listen()","parent_name":"NetClient"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit31VideoAdaptiveNetBitRateStrategyC27sufficientBWCountsThresholdSivpZ":{"name":"sufficientBWCountsThreshold","abstract":"

Undocumented

","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP6streamAA0C6StreamCSgvp":{"name":"stream","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumVideodE0Sivp":{"name":"mamimumVideoBitRate","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumAudiodE0Sivp":{"name":"mamimumAudioBitRate","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit31VideoAdaptiveNetBitRateStrategyC07mamimumC7BitrateACSi_tcfc":{"name":"init(mamimumVideoBitrate:)","abstract":"

Undocumented

","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP5setUpyyF":{"name":"setUp()","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP19sufficientBWOccuredyyAA0cdE5StatsVF":{"name":"sufficientBWOccured(_:)","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/VideoAdaptiveNetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP21insufficientBWOccuredyyAA0cdE5StatsVF":{"name":"insufficientBWOccured(_:)","parent_name":"VideoAdaptiveNetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit18NetBitRateStrategyC6sharedACvpZ":{"name":"shared","abstract":"

Undocumented

","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP6streamAA0C6StreamCSgvp":{"name":"stream","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumVideodE0Sivp":{"name":"mamimumVideoBitRate","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP012mamimumAudiodE0Sivp":{"name":"mamimumAudioBitRate","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP5setUpyyF":{"name":"setUp()","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP19sufficientBWOccuredyyAA0cdE5StatsVF":{"name":"sufficientBWOccured(_:)","parent_name":"NetBitRateStrategy"},"Classes/NetBitRateStrategy.html#/s:10HaishinKit29NetBitRateStrategyConvertibleP21insufficientBWOccuredyyAA0cdE5StatsVF":{"name":"insufficientBWOccured(_:)","parent_name":"NetBitRateStrategy"},"Classes/VideoEffect.html#/s:10HaishinKit11VideoEffectC9ciContextSo9CIContextCSgvp":{"name":"ciContext","abstract":"

Specifies the ciContext object.

","parent_name":"VideoEffect"},"Classes/VideoEffect.html#/s:10HaishinKit11VideoEffectC7execute_4infoSo7CIImageCAG_So17CMSampleBufferRefaSgtF":{"name":"execute(_:info:)","abstract":"

Executes to apply a video effect.

","parent_name":"VideoEffect"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC22defaultBackgroundColorSo7NSColorCvpZ":{"name":"defaultBackgroundColor","abstract":"

The view’s background color.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC12videoGravitySo012AVLayerVideoF0avp":{"name":"videoGravity","abstract":"

A value that specifies how the video is displayed within a player layer’s bounds.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC16videoOrientationSo014AVCaptureVideoF0Vvp":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit9PiPHKViewC28isCaptureVideoPreviewEnabledSbvp":{"name":"isCaptureVideoPreviewEnabled","abstract":"

Specifies the capture video preview enabled or not.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/c:@M@HaishinKit@objc(cs)PiPHKView(im)initWithFrame:":{"name":"init(frame:)","abstract":"

Initializes and returns a newly allocated view object with the specified frame rectangle.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/c:@M@HaishinKit@objc(cs)PiPHKView(im)initWithCoder:":{"name":"init(coder:)","abstract":"

Returns an object initialized from data in a given unarchiver.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/c:@M@HaishinKit@objc(cs)PiPHKView(im)awakeFromNib":{"name":"awakeFromNib()","abstract":"

Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit17NetStreamDrawableP06attachD0yyAA0cD0CSgF":{"name":"attachStream(_:)","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/s:10HaishinKit17NetStreamDrawableP7enqueueyySo17CMSampleBufferRefaSgF":{"name":"enqueue(_:)","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/defaultBackgroundColor":{"name":"defaultBackgroundColor","abstract":"

The view’s background color.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/layerClass":{"name":"layerClass","abstract":"

Returns the class used to create the layer for instances of this class.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/layer":{"name":"layer","abstract":"

The view’s Core Animation layer used for rendering.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/videoGravity":{"name":"videoGravity","abstract":"

A value that specifies how the video is displayed within a player layer’s bounds.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/videoOrientation":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/init(frame:)":{"name":"init(frame:)","abstract":"

Initializes and returns a newly allocated view object with the specified frame rectangle.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/init(coder:)":{"name":"init(coder:)","abstract":"

Returns an object initialized from data in a given unarchiver.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/awakeFromNib()":{"name":"awakeFromNib()","abstract":"

Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/attachStream(_:)":{"name":"attachStream(_:)","parent_name":"PiPHKView"},"Classes/PiPHKView.html#/enqueue(_:)":{"name":"enqueue(_:)","parent_name":"PiPHKView"},"Classes/MTHKView.html#/s:10HaishinKit8MTHKViewC12videoGravitySo012AVLayerVideoE0avp":{"name":"videoGravity","abstract":"

Specifies how the video is displayed within a player layer’s bounds.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit8MTHKViewC16videoOrientationSo014AVCaptureVideoE0Vvp":{"name":"videoOrientation","abstract":"

Specifies the orientation of AVCaptureVideoOrientation.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit8MTHKViewC28isCaptureVideoPreviewEnabledSbvp":{"name":"isCaptureVideoPreviewEnabled","abstract":"

Specifies the capture video preview enabled or not.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@M@HaishinKit@objc(cs)MTHKView(im)initWithFrame:":{"name":"init(frame:)","abstract":"

Initializes and returns a newly allocated view object with the specified frame rectangle.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@M@HaishinKit@objc(cs)MTHKView(im)initWithCoder:":{"name":"init(coder:)","abstract":"

Returns an object initialized from data in a given unarchiver.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@M@HaishinKit@objc(cs)MTHKView(im)awakeFromNib":{"name":"awakeFromNib()","abstract":"

Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit17NetStreamDrawableP06attachD0yyAA0cD0CSgF":{"name":"attachStream(_:)","parent_name":"MTHKView"},"Classes/MTHKView.html#/s:10HaishinKit17NetStreamDrawableP7enqueueyySo17CMSampleBufferRefaSgF":{"name":"enqueue(_:)","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@CM@HaishinKit@objc(cs)MTHKView(im)mtkView:drawableSizeWillChange:":{"name":"mtkView(_:drawableSizeWillChange:)","abstract":"

Undocumented

","parent_name":"MTHKView"},"Classes/MTHKView.html#/c:@CM@HaishinKit@objc(cs)MTHKView(im)drawInMTKView:":{"name":"draw(in:)","abstract":"

Undocumented

","parent_name":"MTHKView"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC20defaultVideoSettingsSDySo8NSStringCyXlGvpZ":{"name":"defaultVideoSettings","abstract":"

The default videoSettings for a device.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC6deviceSo15AVCaptureDeviceCSgvp":{"name":"device","abstract":"

The current video device object.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC16videoOrientationSo014AVCaptureVideoG0Vvp":{"name":"videoOrientation","abstract":"

Specifies the videoOrientation indicates whether to rotate the video flowing through the connection to a given orientation.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/s:10HaishinKit18IOVideoCaptureUnitC15isVideoMirroredSbvp":{"name":"isVideoMirrored","abstract":"

Spcifies the video mirroed indicates whether the video flowing through the connection should be mirrored about its vertical axis.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOVideoCaptureUnit.html#/preferredVideoStabilizationMode":{"name":"preferredVideoStabilizationMode","abstract":"

Specifies the preferredVideoStabilizationMode most appropriate for use with the connection.

","parent_name":"IOVideoCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/enabledScale":{"name":"enabledScale","abstract":"

Specifies the boolean value that indicates whether the snapshot image downsize or not.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/afterScreenUpdates":{"name":"afterScreenUpdates","abstract":"

Specifies the boolean value that indicates whether the snapshot should be rendered after recent changes have been incorporated.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/preferredFramesPerSecond":{"name":"preferredFramesPerSecond","abstract":"

Specifies the number of shaphot that must pass before the display link notifies the target again.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/attributes":{"name":"attributes","abstract":"

Specifies the CVPixelBufferPool’s attrivutes.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/delegate":{"name":"delegate","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/isRunning":{"name":"isRunning","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/init(shared:)":{"name":"init(shared:)","abstract":"

Creates an IOUIScreenCaptureUnit object to capture UIApplication.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/init(viewToCapture:)":{"name":"init(viewToCapture:)","abstract":"

Create an IOUIScreenCaptureUnit object to capture UIView.

","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/onScreen(_:)":{"name":"onScreen(_:)","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/startRunning()":{"name":"startRunning()","parent_name":"IOUIScreenCaptureUnit"},"Classes/IOUIScreenCaptureUnit.html#/stopRunning()":{"name":"stopRunning()","parent_name":"IOUIScreenCaptureUnit"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO25failedToCreateAssetWriteryAEsAD_p_tcAEmF":{"name":"failedToCreateAssetWriter(error:)","abstract":"

Failed to create the AVAssetWriter.

","parent_name":"Error"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO30failedToCreateAssetWriterInputyAESo11NSExceptionC_tcAEmF":{"name":"failedToCreateAssetWriterInput(error:)","abstract":"

Failed to create the AVAssetWriterInput.

","parent_name":"Error"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO14failedToAppendyAEsAD_pSg_tcAEmF":{"name":"failedToAppend(error:)","abstract":"

Failed to append the PixelBuffer or SampleBuffer.

","parent_name":"Error"},"Classes/IORecorder/Error.html#/s:10HaishinKit10IORecorderC5ErrorO21failedToFinishWritingyAEsAD_pSg_tcAEmF":{"name":"failedToFinishWriting(error:)","abstract":"

Failed to finish writing the AVAssetWriter.

","parent_name":"Error"},"Classes/IORecorder/Error.html":{"name":"Error","abstract":"

The IORecorder error domain codes.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC21defaultOutputSettingsSDySo11AVMediaTypeaSDySSypGGvpZ":{"name":"defaultOutputSettings","abstract":"

The default output settings for an IORecorder.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC14outputSettingsSDySo11AVMediaTypeaSDySSypGGvp":{"name":"outputSettings","abstract":"

Specifies the recorder settings.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC9isRunningAA6AtomicVySbGvp":{"name":"isRunning","abstract":"

The running indicies whether recording or not.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","abstract":"

Append a sample buffer for recording.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit10IORecorderC6append_20withPresentationTimeySo11CVBufferRefa_So6CMTimeatF":{"name":"append(_:withPresentationTime:)","abstract":"

Append a pixel buffer for recording.

","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","parent_name":"IORecorder"},"Classes/IORecorder.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","parent_name":"IORecorder"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC13defaultPATPIDs6UInt16VvpZ":{"name":"defaultPATPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC13defaultPMTPIDs6UInt16VvpZ":{"name":"defaultPMTPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC15defaultVideoPIDs6UInt16VvpZ":{"name":"defaultVideoPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC15defaultAudioPIDs6UInt16VvpZ":{"name":"defaultAudioPID","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC22defaultSegmentDurationSdvpZ":{"name":"defaultSegmentDuration","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

The delegate instance.

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC9isRunningAA6AtomicVySbGvp":{"name":"isRunning","abstract":"

This instance is running to process(true) or not(false).

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC14expectedMediasShySo11AVMediaTypeaGvp":{"name":"expectedMedias","abstract":"

The exptected medias = [.video, .audio].

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP11audioFormatSo07AVAudioE0CSgvp":{"name":"audioFormat","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP11videoFormatSo22CMFormatDescriptionRefaSgvp":{"name":"videoFormat","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit8TSWriterC15segmentDurationACSd_tcfc":{"name":"init(segmentDuration:)","abstract":"

Undocumented

","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP6append_4whenySo13AVAudioBufferC_So0F4TimeCtF":{"name":"append(_:when:)","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7IOMuxerP6appendyySo17CMSampleBufferRefaF":{"name":"append(_:)","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7RunningP05startC0yyF":{"name":"startRunning()","parent_name":"TSWriter"},"Classes/TSWriter.html#/s:10HaishinKit7RunningP04stopC0yyF":{"name":"stopRunning()","parent_name":"TSWriter"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderC8delegateAA0C8Delegate_pSgvp":{"name":"delegate","abstract":"

Specifies the delegate object.

","parent_name":"TSReader"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderCACycfc":{"name":"init()","abstract":"

Create a new TSReader instance.

","parent_name":"TSReader"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderC4readySi10Foundation4DataVF":{"name":"read(_:)","abstract":"

Reads transport-stream data.

","parent_name":"TSReader"},"Classes/TSReader.html#/s:10HaishinKit8TSReaderC5clearyyF":{"name":"clear()","abstract":"

Clears the reader object for new transport stream.

","parent_name":"TSReader"},"Classes/TSReader.html":{"name":"TSReader","abstract":"

The TSReader class represents read MPEG-2 transport stream data.

"},"Classes/TSWriter.html":{"name":"TSWriter","abstract":"

The TSWriter class represents writes MPEG-2 transport stream data.

"},"Classes/IORecorder.html":{"name":"IORecorder","abstract":"

The IORecorder class represents video and audio recorder.

"},"Classes/IOUIScreenCaptureUnit.html":{"name":"IOUIScreenCaptureUnit","abstract":"

The IOUIScreenCaptureUnit class captures the UIView.

"},"Classes/IOVideoCaptureUnit.html":{"name":"IOVideoCaptureUnit","abstract":"

An object that provides the interface to control the AVCaptureDevice’s transport behavior.

"},"Classes/MTHKView.html":{"name":"MTHKView","abstract":"

A view that displays a video content of a NetStream object which uses Metal api.

"},"Classes/PiPHKView.html":{"name":"PiPHKView","abstract":"

A view that displays a video content of a NetStream object which uses AVSampleBufferDisplayLayer api.

"},"Classes/VideoEffect.html":{"name":"VideoEffect","abstract":"

An object that apply a video effect.

"},"Classes/NetBitRateStrategy.html":{"name":"NetBitRateStrategy","abstract":"

The NetBitRateStrategy class provides a no operative bitrate storategy.

"},"Classes/VideoAdaptiveNetBitRateStrategy.html":{"name":"VideoAdaptiveNetBitRateStrategy","abstract":"

The VideoAdaptiveNetBitRateStrategy class provides an algorithm that focuses on video bitrate control.

"},"Classes/NetClient.html":{"name":"NetClient","abstract":"

The NetClient class creates a two-way connection between a NetService.

"},"Classes/NetService.html":{"name":"NetService","abstract":"

The NetService class creates a two-way connection between a client and a server as a server.

"},"Classes/NetSocket.html":{"name":"NetSocket","abstract":"

The NetSocket class creates a two-way connection between a client and a server as a client. This class is wrapper for a InputStream and an OutputStream.

"},"Classes/NetStream.html":{"name":"NetStream","abstract":"

The NetStream class is the foundation of a RTMPStream.

"},"Classes/Event.html":{"name":"Event","abstract":"

The Event interface is used to provide information.

"},"Classes/EventDispatcher.html":{"name":"EventDispatcher","abstract":"

The EventDispatcher interface is in implementation which supports the DOM Event Model.

"},"Classes/RTMPResponder.html":{"name":"RTMPResponder","abstract":"

The RTMPResponder class provides to use handle RTMPConnection’s callback.

"},"Classes/RTMPConnection.html":{"name":"RTMPConnection","abstract":"

The RTMPConneciton class create a two-way RTMP connection.

"},"Classes/RTMPSharedObject.html":{"name":"RTMPSharedObject","abstract":"

The RTMPSharedObject class is used to read and write data on a server.

"},"Classes/RTMPStream.html":{"name":"RTMPStream","abstract":"

An object that provides the interface to control a one-way channel over a RtmpConnection.

"},"Classes/ByteArray.html":{"name":"ByteArray","abstract":"

The ByteArray class provides methods and properties the reading or writing with binary data.

"},"Classes/InstanceHolder.html":{"name":"InstanceHolder","abstract":"

The InstanceHolder class provides a shared instance memory management.

"},"Classes/SRTConnection.html":{"name":"SRTConnection","abstract":"

The SRTConnection class create a two-way SRT connection.

"},"Classes/SRTLogger.html":{"name":"SRTLogger","abstract":"

An object for writing interpolated string messages to srt logging system.

"},"Classes/SRTStream.html":{"name":"SRTStream","abstract":"

An object that provides the interface to control a one-way channel over a SRTConnection.

"},"Classes.html":{"name":"Classes","abstract":"

The following classes are available globally.

"},"Global%20Variables.html":{"name":"Global Variables","abstract":"

The following global variables are available globally.

"},"Enums.html":{"name":"Enumerations","abstract":"

The following enumerations are available globally.

"},"Extensions.html":{"name":"Extensions","abstract":"

The following extensions are available globally.

"},"Protocols.html":{"name":"Protocols","abstract":"

The following protocols are available globally.

"},"Structs.html":{"name":"Structures","abstract":"

The following structures are available globally.

"},"Typealiases.html":{"name":"Type Aliases","abstract":"

The following type aliases are available globally.

"}} \ No newline at end of file