All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bytekast.stdlib.aws.lambda.LambdaRequest.groovy Maven / Gradle / Ivy

The newest version!
package bytekast.stdlib.aws.lambda

@Singleton
class LambdaRequest {

  private static final InheritableThreadLocal CURRENT = new InheritableThreadLocal()

  void set(RequestContext requestContext) {
    CURRENT.set(requestContext)
  }

  void remove() {
    CURRENT.remove()
  }

  RequestContext get() {
    CURRENT.get()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy