org.rx.net.http.tunnel.SocksInfo 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 io.netty.channel.Channel;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
public class SocksInfo {
private final String appName;
private final Channel channel;
public String getId() {
return channel.id().asLongText();
}
}