org.rx.net.http.tunnel.ReceivePack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
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<>();
}