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

com.payu.ratel.context.ServiceInstanceCallEvent Maven / Gradle / Ivy

package com.payu.ratel.context;

/**
 * An event risen when a particular service instance is called on server side.
 */
public class ServiceInstanceCallEvent extends ServiceCallEvent {

    public ServiceInstanceCallEvent(ProcessContext processContext, long nanoTime, ServiceCallInput input) {
        super(processContext, nanoTime, input);
    }

    @Override
    public String toString() {
        return "ServiceCallEvent [processContext=" + getProcessContext() + ", nanoTime=" + getNanoTime() + ", input="
                + getInput()
                + "]";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy