Alachisoft.NCache.Common.Extensibility.Client.RPC.IRPCMethodCall Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
package Alachisoft.NCache.Common.Extensibility.Client.RPC;
public interface IRPCMethodCall {
String GetMethod();
void SetMethod(String value);
int getOverload();
void setOverload(int value);
Object[] getArguments();
void setArguments(Object[] value);
IResponseConsolidator getConsolidator();
void setConsolidator(IResponseConsolidator value);
String getObjectUID();
void setObjectUID(String value);
boolean getIsStatic();
void setIsStatic(boolean value);
java.lang.Class getInstanceType();
void setInstanceType(java.lang.Class value);
}