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

ch.softappeal.yass.core.remote.Request Maven / Gradle / Ivy

package ch.softappeal.yass.core.remote;

import ch.softappeal.yass.util.Nullable;

public final class Request extends Message {

    private static final long serialVersionUID = 1L;

    public final int serviceId;

    /**
     * @see MethodMapper.Mapping#id
     */
    public final int methodId;

    public final @Nullable Object[] arguments;

    public Request(final int serviceId, final int methodId, final @Nullable Object[] arguments) {
        this.serviceId = serviceId;
        this.methodId = methodId;
        this.arguments = arguments;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy