org.springframework.data.mongodb.repository.Tailable Java Examples
The following examples show how to use
org.springframework.data.mongodb.repository.Tailable.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MessageRepository.java From Hands-On-Reactive-Programming-in-Spring-5 with MIT License | 4 votes |
@Tailable Flux<Message> findBy();
Example #2
Source File: MessageRepository.java From Hands-On-Reactive-Programming-in-Spring-5 with MIT License | 4 votes |
@Tailable Flux<Message> findByUser(String user);
Example #3
Source File: SensorReadingRepository.java From Hands-On-Reactive-Programming-in-Spring-5 with MIT License | 4 votes |
@Tailable Flux<SensorsReadings> findBy();
Example #4
Source File: EventController.java From spring-five-functional-reactive with Apache License 2.0 | 4 votes |
@Tailable Flux<Event> findPeopleBy();
Example #5
Source File: ReservationRepository.java From spring-5-examples with MIT License | 4 votes |
@Tailable Flux<Reservation> findWithTailableCursorBy();
Example #6
Source File: BlogPostRepository.java From reactive-company with Apache License 2.0 | 4 votes |
@Tailable Flux<BlogPost> findBy();
Example #7
Source File: ReactiveTweetRepository.java From webflux-twitter-demo with MIT License | 4 votes |
@Tailable Flux<Tweet> findWithTailableCursorBy();
Example #8
Source File: MatchCommentRepository.java From reactive-matchday with Apache License 2.0 | 4 votes |
@Tailable public Flux<MatchComment> findByMatchIdAndTimestampGreaterThan(final String matchId, final String timestamp);
Example #9
Source File: LogsRepository.java From tutorials with MIT License | 4 votes |
@Tailable Flux<Log> findByLevel(LogLevel level);
Example #10
Source File: RxJava2PersonRepository.java From spring-data-examples with Apache License 2.0 | 2 votes |
/** * Use a tailable cursor to emit a stream of entities as new entities are written to the capped collection. * * @return */ @Tailable Flowable<Person> findWithTailableCursorBy();
Example #11
Source File: ReactivePersonRepository.java From spring-data-examples with Apache License 2.0 | 2 votes |
/** * Use a tailable cursor to emit a stream of entities as new entities are written to the capped collection. * * @return */ @Tailable Flux<Person> findWithTailableCursorBy();