Uses of Interface
org.apache.ignite.services.Service
-
Packages that use Service Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.internal Contains main implementation.org.apache.ignite.internal.processors.platform.dotnet org.apache.ignite.internal.processors.platform.services org.apache.ignite.internal.processors.resource TODO.org.apache.ignite.internal.processors.service org.apache.ignite.services Contains main Managed Services APIs. -
-
Uses of Service in org.apache.ignite
Methods in org.apache.ignite with parameters of type Service Modifier and Type Method Description voidIgniteServices. deployClusterSingleton(String name, Service svc)Deploys a cluster-wide singleton service.IgniteFuture<Void>IgniteServices. deployClusterSingletonAsync(String name, Service svc)Asynchronously deploys a cluster-wide singleton service.voidIgniteServices. deployKeyAffinitySingleton(String name, Service svc, @Nullable String cacheName, Object affKey)Deploys one instance of this service on the primary node for a given affinity key.IgniteFuture<Void>IgniteServices. deployKeyAffinitySingletonAsync(String name, Service svc, @Nullable String cacheName, Object affKey)Asynchronously deploys one instance of this service on the primary node for a given affinity key.voidIgniteServices. deployMultiple(String name, Service svc, int totalCnt, int maxPerNodeCnt)Deploys multiple instances of the service on the grid.IgniteFuture<Void>IgniteServices. deployMultipleAsync(String name, Service svc, int totalCnt, int maxPerNodeCnt)Asynchronously deploys multiple instances of the service on the grid.voidIgniteServices. deployNodeSingleton(String name, Service svc)Deploys a per-node singleton service.IgniteFuture<Void>IgniteServices. deployNodeSingletonAsync(String name, Service svc)Asynchronously deploys a per-node singleton service. -
Uses of Service in org.apache.ignite.internal
Methods in org.apache.ignite.internal with parameters of type Service Modifier and Type Method Description voidIgniteServicesImpl. deployClusterSingleton(String name, Service svc)Deploys a cluster-wide singleton service.IgniteFuture<Void>IgniteServicesImpl. deployClusterSingletonAsync(String name, Service svc)Asynchronously deploys a cluster-wide singleton service.voidIgniteServicesImpl. deployKeyAffinitySingleton(String name, Service svc, @Nullable String cacheName, Object affKey)Deploys one instance of this service on the primary node for a given affinity key.IgniteFuture<Void>IgniteServicesImpl. deployKeyAffinitySingletonAsync(String name, Service svc, @Nullable String cacheName, Object affKey)Asynchronously deploys one instance of this service on the primary node for a given affinity key.voidIgniteServicesImpl. deployMultiple(String name, Service svc, int totalCnt, int maxPerNodeCnt)Deploys multiple instances of the service on the grid.IgniteFuture<Void>IgniteServicesImpl. deployMultipleAsync(String name, Service svc, int totalCnt, int maxPerNodeCnt)Asynchronously deploys multiple instances of the service on the grid.voidIgniteServicesImpl. deployNodeSingleton(String name, Service svc)Deploys a per-node singleton service.IgniteFuture<Void>IgniteServicesImpl. deployNodeSingletonAsync(String name, Service svc)Asynchronously deploys a per-node singleton service. -
Uses of Service in org.apache.ignite.internal.processors.platform.dotnet
Subinterfaces of Service in org.apache.ignite.internal.processors.platform.dotnet Modifier and Type Interface Description interfacePlatformDotNetServiceMarker interface to denote a service implemented on .Net platform.Classes in org.apache.ignite.internal.processors.platform.dotnet that implement Service Modifier and Type Class Description classPlatformDotNetServiceImplInterop .Net service. -
Uses of Service in org.apache.ignite.internal.processors.platform.services
Subinterfaces of Service in org.apache.ignite.internal.processors.platform.services Modifier and Type Interface Description interfacePlatformServiceBase class for all platform services.Classes in org.apache.ignite.internal.processors.platform.services that implement Service Modifier and Type Class Description classPlatformAbstractServiceBase platform service implementation. -
Uses of Service in org.apache.ignite.internal.processors.resource
Methods in org.apache.ignite.internal.processors.resource with parameters of type Service Modifier and Type Method Description voidGridResourceProcessor. cleanup(Service svc)Cleans up resources from given service.voidGridResourceProcessor. inject(Service svc, ServiceContext svcCtx)Injects resources into service. -
Uses of Service in org.apache.ignite.internal.processors.service
Methods in org.apache.ignite.internal.processors.service that return Service Modifier and Type Method Description ServiceLazyServiceConfiguration. getService()Gets service instance.Methods in org.apache.ignite.internal.processors.service that return types with arguments of type Service Modifier and Type Method Description Class<? extends Service>ServiceInfo. serviceClass()Gets service class.Methods in org.apache.ignite.internal.processors.service with parameters of type Service Modifier and Type Method Description IgniteInternalFuture<?>IgniteServiceProcessor. deployClusterSingleton(ClusterGroup prj, String name, Service srvc)IgniteInternalFuture<?>IgniteServiceProcessor. deployKeyAffinitySingleton(String name, Service srvc, String cacheName, Object affKey)IgniteInternalFuture<?>IgniteServiceProcessor. deployMultiple(ClusterGroup prj, String name, Service srvc, int totalCnt, int maxPerNodeCnt)IgniteInternalFuture<?>IgniteServiceProcessor. deployNodeSingleton(ClusterGroup prj, String name, Service srvc) -
Uses of Service in org.apache.ignite.services
Methods in org.apache.ignite.services that return Service Modifier and Type Method Description ServiceServiceConfiguration. getService()Gets service instance.Methods in org.apache.ignite.services that return types with arguments of type Service Modifier and Type Method Description Class<? extends Service>ServiceDescriptor. serviceClass()Gets service class.Methods in org.apache.ignite.services with parameters of type Service Modifier and Type Method Description ServiceConfigurationServiceConfiguration. setService(Service svc)Sets service instance.
-