实例方法
assert
assertNoFailure(_:file:line:)
当上游发布者失败时引发致命错误,否则重新发布所有接收到的输入。
声明
func assertNoFailure(
_ prefix: String = "",
file: StaticString = #file,
line: UInt = #line
) -> Publishers.AssertNoFailure<Self>
返回值
当上游发布者失败时引发致命错误的发布者。
参数
prefix
在致命错误消息的开头使用的字符串。
file
错误消息中使用的文件名。这默认为
#file
。line
错误消息中使用的行号。这默认为
#line
。
详述
使用assertNoFailure()
进行测试期间处于活动状态的内部完整性检查。但是,重要的是要注意,与 Swift 对应的 fatalError(_:)
一样,assertNoFailure()
运算符在开发和测试期间触发时会断言致命异常,and
在发布的代码版本中。
在下面的示例中,CurrentValueSubject
成功发布了初始值和第二个值。第三个值,包含 genericSubjectError
,导致 assertNoFailure()
运算符断言一个致命异常停止进程:
public enum SubjectError: Error {
case genericSubjectError
}
let subject = CurrentValueSubject<String, Error>("initial value")
subject
.assertNoFailure()
.sink(receiveCompletion: { print ("completion: \($0)") },
receiveValue: { print ("value: \($0).") }
)
subject.send("second value")
subject.send(completion: Subscribers.Completion<Error>.failure(SubjectError.genericSubjectError))
// Prints:
// value: initial value.
// value: second value.
// The process then terminates in the debugger as the assertNoFailure operator catches the genericSubjectError.
可用版本
iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+
相关用法
- Swift Optional.Publisher assign(to:on:)用法及代码示例
- Swift Optional.Publisher assign(to:)用法及代码示例
- Swift Optional.Publisher append(_:)用法及代码示例
- Swift Optional.Publisher reduce(_:_:)用法及代码示例
- Swift Optional.Publisher tryDrop(while:)用法及代码示例
- Swift Optional.Publisher debounce(for:scheduler:options:)用法及代码示例
- Swift Optional.Publisher breakpoint(receiveSubscription:receiveOutput:receiveCompletion:)用法及代码示例
- Swift Optional.Publisher mapError(_:)用法及代码示例
- Swift Optional.Publisher catch(_:)用法及代码示例
- Swift Optional.Publisher tryAllSatisfy(_:)用法及代码示例
- Swift Optional.Publisher zip(_:_:_:)用法及代码示例
- Swift Optional.Publisher sink(receiveValue:)用法及代码示例
- Swift Optional.Publisher scan(_:_:)用法及代码示例
- Swift Optional.Publisher throttle(for:scheduler:latest:)用法及代码示例
- Swift Optional.Publisher collect(_:)用法及代码示例
- Swift Optional.Publisher combineLatest(_:_:_:_:)用法及代码示例
- Swift Optional.Publisher share()用法及代码示例
- Swift Optional.Publisher merge(with:_:_:)用法及代码示例
- Swift Optional.Publisher map(_:_:)用法及代码示例
- Swift Optional.Publisher zip(_:_:_:_:)用法及代码示例
- Swift Optional.Publisher output(in:)用法及代码示例
- Swift Optional.Publisher tryReduce(_:_:)用法及代码示例
- Swift Optional.Publisher map(_:_:_:)用法及代码示例
- Swift Optional.Publisher prepend(_:)用法及代码示例
- Swift Optional.Publisher removeDuplicates()用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional.Publisher assertNoFailure(_:file:line:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。