public func withSpan<T>( _ operationName: String, context: @autoclosure () -> ServiceContext = .current ?? .topLevel, ofKind kind: SpanKind = .internal, isolation: isolated (any Actor)? = #isolation, function: String = #function, file fileID: String = #fileID, line: UInt = #line, _ operation: (any Span) async throws -> T ) async rethrows -> T { try await InstrumentationSystem.legacyTracer.withAnySpan( operationName, at: DefaultTracerClock.now, context: context(), ofKind: kind, function: function, file: fileID, line: line ) { anySpan in try await operation(anySpan) } }
try await operation(anySpan)
をむき出しにするとエラーになる public func withAnySpan<T, Instant: TracerInstant>( _ operationName: String, at instant: @autoclosure () -> Instant, context: @autoclosure () -> ServiceContext = .current ?? .topLevel, ofKind kind: SpanKind = .internal, isolation: isolated (any Actor)? = #isolation, function: String = #function, file fileID: String = #fileID, line: UInt = #line, _ operation: (any Tracing.Span) async throws -> T ) async rethrows -> T { let span = self.startAnySpan( operationName, at: instant(), context: context(), ofKind: kind, function: function, file: fileID, line: line ) defer { span.end() } do { return try await ServiceContext.$current.withValue(span.context) { try await operation(span) } } catch { span.recordError(error) throw error // rethrow } }
@inlinable final public func withValue<R>(_ valueDuringOperation: Value, operation: () async throws -> R, isolation: isolated (any Actor)? = #isolation, file: String = #fileID, line: UInt = #line) async rethrows -> R
internal func withValueImpl<R>(_ valueDuringOperation: __owned Value, operation: () async throws -> R, isolation: isolated (any Actor)?, file: String = #fileID, line: UInt = #line) async rethrows -> R { _taskLocalValuePush(key: key, value: consume valueDuringOperation) defer { _taskLocalValuePop() } return try await operation() }
func withValueImpl<R>( operation: () async throws -> R, isolation: isolated (any Actor)? ) async rethrows -> R { return try await operation() }