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

org.rx.net.http.tunnel.ReceivePack Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.net.http.tunnel;

import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.rx.io.IOStream;

import java.util.ArrayList;
import java.util.List;

@RequiredArgsConstructor
@Getter
public class ReceivePack {
    private final String socksId;
    private final List binaries = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy