mirror of
https://github.com/swift-server/swift-aws-lambda-runtime.git
synced 2026-05-03 07:22:27 +00:00
e58d89148c
- Adjust notice, security reporting, code of conduct, contribution process to the standard AWS documents - Adjust GitHub issue templates to AWS standard ones. - Adjust the license header in all source files --------- Co-authored-by: Sebastien Stormacq <stormacq@amazon.lu>
59 lines
1.9 KiB
Swift
59 lines
1.9 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the SwiftAWSLambdaRuntime open source project
|
|
//
|
|
// Copyright SwiftAWSLambdaRuntime project authors
|
|
// Copyright (c) Amazon.com, Inc. or its affiliates.
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of SwiftAWSLambdaRuntime project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import AWSLambdaRuntime
|
|
|
|
#if canImport(FoundationEssentials)
|
|
import FoundationEssentials
|
|
#else
|
|
import Foundation
|
|
#endif
|
|
|
|
struct BackgroundProcessingHandler: LambdaWithBackgroundProcessingHandler {
|
|
struct Input: Decodable {
|
|
let message: String
|
|
}
|
|
|
|
struct Greeting: Encodable {
|
|
let echoedMessage: String
|
|
}
|
|
|
|
typealias Event = Input
|
|
typealias Output = Greeting
|
|
|
|
func handle(
|
|
_ event: Event,
|
|
outputWriter: some LambdaResponseWriter<Output>,
|
|
context: LambdaContext
|
|
) async throws {
|
|
// Return result to the Lambda control plane
|
|
context.logger.debug("BackgroundProcessingHandler - message received")
|
|
try await outputWriter.write(Greeting(echoedMessage: event.message))
|
|
|
|
// Perform some background work, e.g:
|
|
context.logger.debug("BackgroundProcessingHandler - response sent. Performing background tasks.")
|
|
try await Task.sleep(for: .seconds(10))
|
|
|
|
// Exit the function. All asynchronous work has been executed before exiting the scope of this function.
|
|
// Follows structured concurrency principles.
|
|
context.logger.debug("BackgroundProcessingHandler - Background tasks completed. Returning")
|
|
return
|
|
}
|
|
}
|
|
|
|
let adapter = LambdaCodableAdapter(handler: BackgroundProcessingHandler())
|
|
let runtime = LambdaRuntime.init(handler: adapter)
|
|
try await runtime.run()
|