当前位置: 首页>>代码示例>>Java>>正文


Java Tailable类代码示例

本文整理汇总了Java中org.springframework.data.mongodb.repository.Tailable的典型用法代码示例。如果您正苦于以下问题:Java Tailable类的具体用法?Java Tailable怎么用?Java Tailable使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Tailable类属于org.springframework.data.mongodb.repository包,在下文中一共展示了Tailable类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: findWithTailableCursorBy

import org.springframework.data.mongodb.repository.Tailable; //导入依赖的package包/类
@Tailable
Flux<Tweet> findWithTailableCursorBy();
 
开发者ID:orlandovald,项目名称:webflux-twitter-demo,代码行数:3,代码来源:ReactiveTweetRepository.java

示例2: findPeopleBy

import org.springframework.data.mongodb.repository.Tailable; //导入依赖的package包/类
@Tailable
Flux<Event> findPeopleBy();
 
开发者ID:olivergierke,项目名称:spring-five-functional-reactive,代码行数:3,代码来源:EventController.java

示例3: findPeopleBy

import org.springframework.data.mongodb.repository.Tailable; //导入依赖的package包/类
@Tailable
Flux<LoginEvent> findPeopleBy();
 
开发者ID:mp911de,项目名称:reactive-spring,代码行数:3,代码来源:LoginEventRepository.java

示例4: findByMatchIdAndTimestampGreaterThan

import org.springframework.data.mongodb.repository.Tailable; //导入依赖的package包/类
@Tailable
public Flux<MatchComment> findByMatchIdAndTimestampGreaterThan(final String matchId, final String timestamp);
 
开发者ID:danielfernandez,项目名称:reactive-matchday,代码行数:3,代码来源:MatchCommentRepository.java

示例5: findAllBy

import org.springframework.data.mongodb.repository.Tailable; //导入依赖的package包/类
/**
 * <p>
 * Finds all drawings. The produced {@code Flux} is connected to a tailable cursor.
 * </p>
 *
 * @return the publisher
 */
@Tailable
Flux<DrawingInfo> findAllBy();
 
开发者ID:gdrouet,项目名称:nightclazz-spring5,代码行数:10,代码来源:DrawingRepository.java


注:本文中的org.springframework.data.mongodb.repository.Tailable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。