Class PlatformDotNetServiceImpl
- java.lang.Object
-
- org.apache.ignite.internal.processors.platform.services.PlatformAbstractService
-
- org.apache.ignite.internal.processors.platform.dotnet.PlatformDotNetServiceImpl
-
- All Implemented Interfaces:
Externalizable,Serializable,PlatformDotNetService,PlatformService,Service
public class PlatformDotNetServiceImpl extends PlatformAbstractService implements PlatformDotNetService
Interop .Net service.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.ignite.internal.processors.platform.services.PlatformAbstractService
interceptors, platformCtx, ptr, srvKeepBinary, svc
-
-
Constructor Summary
Constructors Constructor Description PlatformDotNetServiceImpl()Default constructor for serialization.PlatformDotNetServiceImpl(Object svc, PlatformContext ctx, boolean srvKeepBinary)Constructor.PlatformDotNetServiceImpl(Object svc, PlatformContext ctx, boolean srvKeepBinary, Object interceptors)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetInterceptors()ObjectgetInternalService()-
Methods inherited from class org.apache.ignite.internal.processors.platform.services.PlatformAbstractService
cancel, execute, init, invokeMethod, pointer, readExternal, setIgniteInstance, writeExternal
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.ignite.internal.processors.platform.services.PlatformService
invokeMethod, pointer
-
-
-
-
Constructor Detail
-
PlatformDotNetServiceImpl
public PlatformDotNetServiceImpl()
Default constructor for serialization.
-
PlatformDotNetServiceImpl
public PlatformDotNetServiceImpl(Object svc, PlatformContext ctx, boolean srvKeepBinary)
Constructor.- Parameters:
svc- Service.ctx- Context.srvKeepBinary- Whether to keep objects binary on server if possible.
-
PlatformDotNetServiceImpl
public PlatformDotNetServiceImpl(Object svc, PlatformContext ctx, boolean srvKeepBinary, Object interceptors)
Constructor.- Parameters:
svc- Service.ctx- Context.srvKeepBinary- Whether to keep objects binary on server if possible.interceptors- Service call interceptors.
-
-