
com.amazonaws.services.lambda.runtime.serialization.PojoSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-lambda-java-serialization Show documentation
Show all versions of aws-lambda-java-serialization Show documentation
Serialization logic for the AWS Lambda Java Runtime
The newest version!
/* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. */
package com.amazonaws.services.lambda.runtime.serialization;
import java.io.InputStream;
import java.io.OutputStream;
public interface PojoSerializer {
T fromJson(InputStream input);
T fromJson(String input);
void toJson(T value, OutputStream output);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy