-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new handler protocols + Codable support #351
Conversation
…s. Add closure handlers for StreamingLambdaHandler + NewLambdaHandler. Add Codable adapters.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great progress! We need docs, docs and docs. Take them from the proposal!
…mWriter`, move Foundation import from AWSLambdaRuntimeCore
API breakage check also reports on package access modifiers:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Thank you!
Motivation:
As part of the implementation of the v2 API (#339), we want to add the handler protocols
LambdaHandler
andLambdaWithBackgroundProcessingHandler
.Modifications:
Added the two remaining handler protocols:
LambdaHandler
andLambdaWithBackgroundProcessingHandler
.LambdaHandler
is currently temporarily named asNewLambdaHandler
as there is already an existingLambdaHandler
. This will be sorted out closer to release.Added
LambdaHandlerAdapter
andLambdaCodableAdapter
to allow the two new handler protocols to work with theLambdaRuntime
(asLambdaRuntime
requires aStreamingLambdaHandler
conforming handler).LambdaHandlerAdapter
:LambdaHandler
conforming handler to conform toLambdaWithBackgroundProcessingHandler
by passing the output returned fromLambdaHandler
toLambdaWithBackgroundProcessingHandler
's output writer.LambdaCodableAdapter
:LambdaWithBackgroundProcessingHandler
conforming handler to conform toStreamingLambdaHandler
.ByteBuffer
event intoLambdaWithBackgroundProcessingHandler
s genericEvent
object, and passes this to itshandle(...)
function.LambdaResponseWriter
into aByteBuffer
and send this toStreamingLambdaHandler
'sLambdaResponseStreamWriter
.Added
StreamingClosureHandler
andClosureHandler
structs conforming toStreamingLambdaHandler
andLambdaHandler
protocols respectively.handle(...)
function.Result:
LambdaHandler
andLambdaWithBackgroundProcessingHandler
can be used with the newLambdaRuntime
through the adapters.