Current changes for region subscriptions.

This commit is contained in:
Lyndon Adams
2013-03-12 16:39:39 +00:00
parent c9c0432971
commit 1f36a55faf
9 changed files with 333 additions and 2 deletions

View File

@@ -12,4 +12,5 @@
<property name="cache" ref="gemfireCache"/>
<property name="dataPolicy" value="REPLICATE_PERSISTENT"/>
</bean>
</beans>

View File

@@ -9,5 +9,5 @@
<gfe:client-region data-policy="NORMAL" name="ChallengeQuestions" id="challengeQuestionsRegion"/>
<gfe:pool>
<gfe:locator host="localhost" port="1234"/>
</gfe:pool>
</gfe:pool>
</beans>

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
default-lazy-init="false"
xmlns:gfe="http://www.springframework.org/schema/gemfire"
xsi:schemaLocation="http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<gfe:cache/>
<gfe:replicated-region id="rr">
<gfe:subscription type="ALL"/>
</gfe:replicated-region>
<gfe:partitioned-region id="pp">
<gfe:subscription type="ALL"/>
</gfe:partitioned-region>
<gfe:client-region id="cc">
<gfe:subscription type="ALL"/>
</gfe:client-region>
</beans>