Example usage for io.netty.handler.codec.http.multipart FileUpload retain

List of usage examples for io.netty.handler.codec.http.multipart FileUpload retain

Introduction

In this page you can find the example usage for io.netty.handler.codec.http.multipart FileUpload retain.

Prototype

@Override
    FileUpload retain();

Source Link

Usage

From source file:org.bridje.http.impl.HttpBridletRequestImpl.java

License:Apache License

protected void addFileUpload(FileUpload fileUpload) {
    fileUpload.retain();
    this.uploadedFiles.add(fileUpload);
}