forked from localstack/lambda-runtime-init
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.go
More file actions
20 lines (14 loc) · 600 Bytes
/
Copy pathdoc.go
File metadata and controls
20 lines (14 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/*
Package rendering provides stateful event rendering service.
State of the rendering service should be set from the main event dispatch thread
prior to releasing threads that are registered for the event.
Example of INVOKE event:
[thread] // suspended in READY state
[main] // set renderer for INVOKE event
[main] renderingService.SetRenderer(rendering.NewInvokeRenderer())
[main] // release threads registered for INVOKE event
[thread] // receives INVOKE event
*/
package rendering