Structures
The following structures are available globally.
-
An uninhabited type conforming to
See moreAsyncBlockPerformer
which dispatches toDispatchQueue.main
Declaration
Swift
public struct MainDispatchQueue : AsyncBlockPerformer
-
An uninhabited type conforming to
See moreAsyncBlockPerformer
which dispatches toDispatchQueue.global()
Declaration
Swift
public struct DefaultDispatchQueue : AsyncBlockPerformer
-
An uninhabited type conforming to
See moreAsyncBlockPerformer
which dispatches toDispatchQueue.global(qos: .background)
Declaration
Swift
public struct BackgroundDispatchQueue : AsyncBlockPerformer
-
An uninhabited type conforming to
See moreAsyncBlockPerformer
which dispatches toDispatchQueue.global(qos: .utility)
Declaration
Swift
public struct UtilityDispatchQueue : AsyncBlockPerformer
-
An uninhabited type conforming to
See moreAsyncBlockPerformer
which dispatches toDispatchQueue.global(qos: .userInitiated)
Declaration
Swift
public struct UserInitiatedDispatchQueue : AsyncBlockPerformer
-
An uninhabited type conforming to
See moreAsyncBlockPerformer
which dispatches toDispatchQueue.global(qos: .userInteractive)
Declaration
Swift
public struct UserInteractiveDispatchQueue : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct AsyncTrace : CustomDebugStringConvertible
-
Undocumented
See moreDeclaration
Swift
public struct AsyncZeroArgFunction<R, E, P> where E : Error, P : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct AsyncSingleArgFunction<A, R, E, P> where E : Error, P : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct AsyncDoubleArgFunction<A, B, R, E, P> where E : Error, P : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct AsyncTripleArgFunction<A, B, C, R, E, P> where E : Error, P : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct ZeroArgFunction<R, E> where E : Error
-
Undocumented
See moreDeclaration
Swift
public struct SingleArgFunction<A, R, E> where E : Error
-
Undocumented
See moreDeclaration
Swift
public struct DoubleArgFunction<A, B, R, E> where E : Error
-
Undocumented
See moreDeclaration
Swift
public struct TripleArgFunction<A, B, C, R, E> where E : Error
-
Undocumented
See moreDeclaration
Swift
public struct BoundZeroArgFunction<R, E, P> where E : Error, P : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct BoundSingleArgFunction<A, R, E, P> where E : Error, P : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct BoundDoubleArgFunction<A, B, R, E, P> where E : Error, P : AsyncBlockPerformer
-
Undocumented
See moreDeclaration
Swift
public struct BoundTripleArgFunction<A, B, C, R, E, P> where E : Error, P : AsyncBlockPerformer
-
The
See moreHoneyBee
struct is the starting point for all HoneyBee processes. Seestart(on:)
for more details.Declaration
Swift
public struct HoneyBee