Skip to content

Commit 8f34e0c

Browse files
uli-ffmbenhassine
authored andcommitted
fixed class name and grammatical error in docs whatsnew
1 parent 18fe8c7 commit 8f34e0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-batch-docs/modules/ROOT/pages/whatsnew.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ necessary collections in MongoDB in order to save and retrieve batch meta-data.
3939

4040
This implementation requires MongoDB version 4 or later and is based on Spring Data MongoDB.
4141
In order to use this job repository, all you need to do is define a `MongoTemplate` and a
42-
`MongoTransactionManager` which are required by the newly added `MongoDBJobRepositoryFactoryBean`:
42+
`MongoTransactionManager` which are required by the newly added `MongoJobRepositoryFactoryBean`:
4343

4444
```
4545
@Bean
@@ -130,7 +130,7 @@ The https://en.wikipedia.org/wiki/Staged_event-driven_architecture[staged event-
130130
powerful architecture style to process data in stages connected by queues. This style is directly applicable to data
131131
pipelines and easily implemented in Spring Batch thanks to the ability to design jobs as a sequence of steps.
132132

133-
The only missing piece here is how to read and write data to intermediate queues. This release introduces an item reader
133+
The only missing piece here is how to read data from and write data to intermediate queues. This release introduces an item reader
134134
and item writer to read data from and write it to a `BlockingQueue`. With these two new classes, one can design a first step
135135
that prepares data in a queue and a second step that consumes data from the same queue. This way, both steps can run concurrently
136136
to process data efficiently in a non-blocking, event-driven fashion.

0 commit comments

Comments
 (0)