org.rx.net.rpc.protocol.MethodMessage 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.rpc.protocol;
import lombok.RequiredArgsConstructor;
import java.io.Serializable;
@RequiredArgsConstructor
public class MethodMessage implements Serializable {
private static final long serialVersionUID = -1424164254938438910L;
public final int id;
public final String methodName;
public final Object[] parameters;
public final String traceId;
public Object returnValue;
public String errorMessage;
}