You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/Lifecycle/Lifecycle.swift
-23Lines changed: 0 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -37,17 +37,6 @@ public class Lifecycle {
37
37
self.shutdownGroup.enter()
38
38
}
39
39
40
-
/// Starts the provided `LifecycleItem` array and waits (blocking) until a shutdown `Signal` is captured or `Lifecycle.shutdown` is called on another thread.
41
-
/// Startup is performed in the order of items provided.
42
-
///
43
-
/// - parameters:
44
-
/// - shutdownSignal: Defines what, if any, signals to trap for invoking shutdown.
45
-
/// - installBacktrace: Defines if to install a crash signal trap that prints backtraces.
/// Starts the provided `LifecycleItem` array and waits (blocking) until a shutdown `Signal` is captured or `Lifecycle.shutdown` is called on another thread.
52
41
/// Startup is performed in the order of items provided.
53
42
///
@@ -66,18 +55,6 @@ public class Lifecycle {
66
55
self.shutdownGroup.wait()
67
56
}
68
57
69
-
/// Starts the provided `LifecycleItem` array.
70
-
/// Startup is performed in the order of items provided.
71
-
///
72
-
/// - parameters:
73
-
/// - shutdownSignal: Defines what, if any, signals to trap for invoking shutdown.
74
-
/// - installBacktrace: Defines if to install a crash signal trap that prints backtraces.
75
-
/// - callback: The handler which is called after the start operation completes. The parameter will be `nil` on success and contain the `Error` otherwise.
0 commit comments