@@ -108,10 +108,10 @@ public static RedisQueueOutboundChannelAdapterSpec queueOutboundChannelAdapter(
108108 * @param key The key of the Redis collection to build on
109109 * @return the {@link RedisStoreInboundChannelAdapterSpec} instance
110110 */
111- public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec (
111+ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapter (
112112 RedisConnectionFactory connectionFactory , String key ) {
113113
114- return storeInboundChannelAdapterSpec (connectionFactory , new LiteralExpression (key ));
114+ return storeInboundChannelAdapter (connectionFactory , new LiteralExpression (key ));
115115 }
116116
117117 /**
@@ -120,7 +120,7 @@ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec
120120 * @param keyExpression The keyExpression of the Redis collection to build on
121121 * @return the {@link RedisStoreInboundChannelAdapterSpec} instance
122122 */
123- public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec (
123+ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapter (
124124 RedisConnectionFactory connectionFactory , Expression keyExpression ) {
125125
126126 return new RedisStoreInboundChannelAdapterSpec (connectionFactory , keyExpression );
@@ -132,10 +132,10 @@ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec
132132 * @param keySupplier The keySupplier of the Redis collection to build on
133133 * @return the {@link RedisStoreInboundChannelAdapterSpec} instance
134134 */
135- public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec (
135+ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapter (
136136 RedisConnectionFactory connectionFactory , Supplier <Message <?>> keySupplier ) {
137137
138- return storeInboundChannelAdapterSpec (connectionFactory , new SupplierExpression <>(keySupplier ));
138+ return storeInboundChannelAdapter (connectionFactory , new SupplierExpression <>(keySupplier ));
139139 }
140140
141141 /**
@@ -144,10 +144,10 @@ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec
144144 * @param key The key of the Redis collection to build on
145145 * @return the {@link RedisStoreInboundChannelAdapterSpec} instance
146146 */
147- public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec (
147+ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapter (
148148 RedisTemplate <String , ?> redisTemplate , String key ) {
149149
150- return storeInboundChannelAdapterSpec (redisTemplate , new LiteralExpression (key ));
150+ return storeInboundChannelAdapter (redisTemplate , new LiteralExpression (key ));
151151 }
152152
153153 /**
@@ -156,7 +156,7 @@ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec
156156 * @param keyExpression The keyExpression of the Redis collection to build on
157157 * @return the {@link RedisStoreInboundChannelAdapterSpec} instance
158158 */
159- public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec (
159+ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapter (
160160 RedisTemplate <String , ?> redisTemplate , Expression keyExpression ) {
161161
162162 return new RedisStoreInboundChannelAdapterSpec (redisTemplate , keyExpression );
@@ -168,18 +168,18 @@ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec
168168 * @param keySupplier The keySupplier of the Redis collection to build on
169169 * @return the {@link RedisStoreInboundChannelAdapterSpec} instance
170170 */
171- public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapterSpec (
171+ public static RedisStoreInboundChannelAdapterSpec storeInboundChannelAdapter (
172172 RedisTemplate <String , ?> redisTemplate , Supplier <Message <?>> keySupplier ) {
173173
174- return storeInboundChannelAdapterSpec (redisTemplate , new SupplierExpression <>(keySupplier ));
174+ return storeInboundChannelAdapter (redisTemplate , new SupplierExpression <>(keySupplier ));
175175 }
176176
177177 /**
178178 * The factory to produce a {@link RedisStoreOutboundChannelAdapterSpec}.
179179 * @param connectionFactory the {@link RedisConnectionFactory} to build on
180180 * @return the {@link RedisStoreOutboundChannelAdapterSpec} instance
181181 */
182- public static RedisStoreOutboundChannelAdapterSpec storeOutboundChannelAdapterSpec (
182+ public static RedisStoreOutboundChannelAdapterSpec storeOutboundChannelAdapter (
183183 RedisConnectionFactory connectionFactory ) {
184184
185185 return new RedisStoreOutboundChannelAdapterSpec (connectionFactory );
@@ -190,7 +190,7 @@ public static RedisStoreOutboundChannelAdapterSpec storeOutboundChannelAdapterSp
190190 * @param redisTemplate the {@link RedisTemplate} to build on
191191 * @return the {@link RedisStoreOutboundChannelAdapterSpec} instance
192192 */
193- public static RedisStoreOutboundChannelAdapterSpec storeOutboundChannelAdapterSpec (
193+ public static RedisStoreOutboundChannelAdapterSpec storeOutboundChannelAdapter (
194194 RedisTemplate <String , ?> redisTemplate ) {
195195
196196 return new RedisStoreOutboundChannelAdapterSpec (redisTemplate );
@@ -201,7 +201,7 @@ public static RedisStoreOutboundChannelAdapterSpec storeOutboundChannelAdapterSp
201201 * @param redisTemplate the {@link RedisTemplate} to build on
202202 * @return the {@link RedisOutboundGatewaySpec} instance
203203 */
204- public static RedisOutboundGatewaySpec outboundGatewaySpec (RedisTemplate <String , ?> redisTemplate ) {
204+ public static RedisOutboundGatewaySpec outboundGateway (RedisTemplate <String , ?> redisTemplate ) {
205205 return new RedisOutboundGatewaySpec (redisTemplate );
206206 }
207207
@@ -210,10 +210,34 @@ public static RedisOutboundGatewaySpec outboundGatewaySpec(RedisTemplate<String,
210210 * @param connectionFactory the {@link RedisConnectionFactory} to build on
211211 * @return the {@link RedisOutboundGatewaySpec} instance
212212 */
213- public static RedisOutboundGatewaySpec outboundGatewaySpec (RedisConnectionFactory connectionFactory ) {
213+ public static RedisOutboundGatewaySpec outboundGateway (RedisConnectionFactory connectionFactory ) {
214214 return new RedisOutboundGatewaySpec (connectionFactory );
215215 }
216216
217+ /**
218+ * The factory to produce a {@link RedisQueueOutboundGatewaySpec}.
219+ * @param queueName The queueName of the Redis list to build on
220+ * @param connectionFactory the {@link RedisConnectionFactory} to build on
221+ * @return the {@link RedisQueueOutboundGatewaySpec} instance
222+ */
223+ public static RedisQueueOutboundGatewaySpec queueOutboundGateway (String queueName ,
224+ RedisConnectionFactory connectionFactory ) {
225+
226+ return new RedisQueueOutboundGatewaySpec (queueName , connectionFactory );
227+ }
228+
229+ /**
230+ * The factory to produce a {@link RedisQueueInboundGatewaySpec}.
231+ * @param queueName The queueName of the Redis list to build on
232+ * @param connectionFactory the {@link RedisConnectionFactory} to build on
233+ * @return the {@link RedisQueueInboundGatewaySpec} instance
234+ */
235+ public static RedisQueueInboundGatewaySpec queueInboundGateway (String queueName ,
236+ RedisConnectionFactory connectionFactory ) {
237+
238+ return new RedisQueueInboundGatewaySpec (queueName , connectionFactory );
239+ }
240+
217241 private Redis () {
218242 }
219243
0 commit comments