File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/io/engagingspaces/vertx/dataloader Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public boolean batchingEnabled() {
90
90
* @param batchingEnabled {@code true} to enable batch loading, {@code false} otherwise
91
91
* @return the data loader options for fluent coding
92
92
*/
93
- public DataLoaderOptions setBatchingEnabled (boolean batchingEnabled ) {
93
+ public DataLoaderOptions < K , V > setBatchingEnabled (boolean batchingEnabled ) {
94
94
this .batchingEnabled = batchingEnabled ;
95
95
return this ;
96
96
}
@@ -110,7 +110,7 @@ public boolean cachingEnabled() {
110
110
* @param cachingEnabled {@code true} to enable caching, {@code false} otherwise
111
111
* @return the data loader options for fluent coding
112
112
*/
113
- public DataLoaderOptions setCachingEnabled (boolean cachingEnabled ) {
113
+ public DataLoaderOptions < K , V > setCachingEnabled (boolean cachingEnabled ) {
114
114
this .cachingEnabled = cachingEnabled ;
115
115
return this ;
116
116
}
@@ -132,7 +132,7 @@ public Optional<CacheKey> cacheKeyFunction() {
132
132
* @param cacheKeyFunction the cache key function to use
133
133
* @return the data loader options for fluent coding
134
134
*/
135
- public DataLoaderOptions setCacheKeyFunction (CacheKey cacheKeyFunction ) {
135
+ public DataLoaderOptions < K , V > setCacheKeyFunction (CacheKey cacheKeyFunction ) {
136
136
this .cacheKeyFunction = cacheKeyFunction ;
137
137
return this ;
138
138
}
You can’t perform that action at this time.
0 commit comments