Interface ISpaceCache
- All Known Implementing Classes:
AbstractSpaceCacheContainer,LocalCacheContainer,LocalViewContainer
public interface ISpaceCache
A space cache implementation provides local cache support such as local view and local cache.
- Since:
- 6.0
- Author:
- kimchy
-
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Closes space cache (the local cache).Returns a direct proxy to the local space.Returns a direct proxy to the remote space.
-
Method Details
-
close
void close()Closes space cache (the local cache). Note, any operations performed on the space cache after it has been closed will result in an error. For example, and event session built on top of the space cache should be closed before the space cache is closed. -
getRemoteSpace
IJSpace getRemoteSpace()Returns a direct proxy to the remote space. -
getLocalSpace
IDirectSpaceProxy getLocalSpace()Returns a direct proxy to the local space.
-