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

com.amazonaws.services.lambda.runtime.api.client.util.LambdaOutputStream Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. */

package com.amazonaws.services.lambda.runtime.api.client.util;

import java.io.OutputStream;
import java.io.IOException;

public class LambdaOutputStream extends OutputStream {
    private final OutputStream inner;

    public LambdaOutputStream(OutputStream inner) {
        this.inner = inner;
    }

    @Override
    public void write(int b) throws IOException {
        write(new byte[] {(byte)b});
    }

    @Override
    public void write(byte[] bytes) throws IOException {
        write(bytes, 0, bytes.length);

    }

    @Override
    public void write(byte[] bytes, int offset, int length) throws IOException {
       inner.write(bytes, offset, length);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy