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

Alachisoft.NCache.Common.Extensibility.Client.RPC.IRPCCallBuilder Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
package Alachisoft.NCache.Common.Extensibility.Client.RPC;

import Alachisoft.NCache.Common.Extensibility.Client.RPC.Impl.MultiPartitionMethodCall;

public interface IRPCCallBuilder {
    IRPCConstructorCall BuildConstructorCall(java.lang.Class objectType, String objectUID, Object[] arguments);

    IRPCMethodCall BuildMethodCall(java.lang.Class objectType, String method, int overload, boolean isStatic, Object[] arguments, String objectUID, IMethodArgumentPartitioner agrumentPartitioner, IResponseConsolidator consolidator);

    MultiPartitionMethodCall BuildMultipartionMethodCall(String method, int overload, Object[] arguments, String objectUID);

    IRPCPropertyCall BuildPropertyGetterCall(String property, String objectUID);

    IRPCPropertyCall BuildPropertySetterCall(String property, Object value, String objectUID);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy