Interface RegionService

    • Method Detail

      • getCancelCriterion

        CancelCriterion getCancelCriterion()
        the cancellation criterion for this service
        Returns:
        the service's cancellation object
      • getRegion

        <K,​V> Region<K,​V> getRegion​(java.lang.String path)
        Return the existing region (or subregion) with the specified path. Whether or not the path starts with a forward slash it is interpreted as a full path starting at a root.
        Type Parameters:
        K - the type of keys in the region
        V - the type of values in the region
        Parameters:
        path - the path to the region
        Returns:
        the Region or null if not found
        Throws:
        java.lang.IllegalArgumentException - if path is null, the empty string, or "/"
      • rootRegions

        java.util.Set<Region<?,​?>> rootRegions()
        Returns unmodifiable set of the root regions that are in the region service. This set is a snapshot; it is not backed by the region service.
        Returns:
        a Set of regions
      • createPdxInstanceFactory

        PdxInstanceFactory createPdxInstanceFactory​(java.lang.String className)
        Returns a factory that can create a PdxInstance.
        Parameters:
        className - the fully qualified class name that the PdxInstance will become when it is fully deserialized unless PdxInstanceFactory.neverDeserialize() is called. If className is the empty string then no class versioning will be done for that PdxInstance and PdxInstanceFactory.neverDeserialize() will be automatically called on the returned factory.
        Returns:
        the factory
        Throws:
        java.lang.IllegalArgumentException - if className is null.
        Since:
        GemFire 6.6.2
      • createPdxEnum

        PdxInstance createPdxEnum​(java.lang.String className,
                                  java.lang.String enumName,
                                  int enumOrdinal)
        Creates and returns a PdxInstance that represents an enum value.
        Parameters:
        className - the name of the enum class
        enumName - the name of the enum constant
        enumOrdinal - the ordinal value of the enum constant
        Returns:
        a PdxInstance that represents the enum value
        Throws:
        java.lang.IllegalArgumentException - if className or enumName are null.
        Since:
        GemFire 6.6.2
      • getQueryService

        QueryService getQueryService()
        Return the QueryService for this region service. For a region service in a client the returned QueryService will execute queries on the server. For a region service not in a client the returned QueryService will execute queries on the local and peer regions.
        Returns:
        the QueryService for this region service
      • getJsonFormatter

        @Deprecated
        JSONFormatter getJsonFormatter()
        Deprecated.
        since GemFire 10.0, please use the getJsonDocumentFactory(StorageFormat) instead.
        Returns the JSONFormatter. In the multi-user case, this will return a JSONFormatter that has the knowledge of the user associated with this region service.
        Returns:
        the JSONFormatter
      • getJsonDocumentFactory

        JsonDocumentFactory getJsonDocumentFactory()
        Returns the JsonDocumentFactory with the default storage format StorageFormat.BSON.
        Returns:
        the default JsonDocumentFactory.
      • getJsonDocumentFactory

        JsonDocumentFactory getJsonDocumentFactory​(StorageFormat storageFormat)
        Returns the JsonDocumentFactory with the specified StorageFormat.
        Parameters:
        storageFormat - the storage format the JsonDocumentFactory will use.
        Returns:
        the JsonDocumentFactory with the specified storage format.
      • close

        void close()
        Terminates this region service and releases all its resources. Calls Region.close() on each region in the service. After this service is closed, any further method calls on this service or any region object obtained from the service will throw CacheClosedException, unless otherwise noted.
        Specified by:
        close in interface java.lang.AutoCloseable
        Throws:
        CacheClosedException - if the service is already closed.
      • isClosed

        boolean isClosed()
        Indicates if this region service has been closed. After a new service is created, this method returns false; After close is called on this service, this method returns true. This method does not throw CacheClosedException if the service is closed.
        Returns:
        true, if this service has just been created or has started to close; false, otherwise