-
Notifications
You must be signed in to change notification settings - Fork 192
Closed
Labels
status: ideal-for-contributionAn issue that a contributor can help us withAn issue that a contributor can help us withtype: enhancementA general enhancementA general enhancement
Milestone
Description
Hello
In some operationSupport, the values of PersistTo, ReplicateTo or DurabilityLevel are not configurable and the value NONE is always being used.
Lines 45 to 50 in 34f9601
@Override | |
public <T> ReactiveReplaceById<T> replaceById(final Class<T> domainType) { | |
Assert.notNull(domainType, "DomainType must not be null!"); | |
return new ReactiveReplaceByIdSupport<>(template, domainType, null, null, null, PersistTo.NONE, ReplicateTo.NONE, | |
DurabilityLevel.NONE, null, template.support()); | |
} |
Lines 49 to 54 in 62feffa
@Override | |
public ReactiveRemoveById removeById(Class<?> domainType) { | |
return new ReactiveRemoveByIdSupport(template, domainType, OptionsBuilder.getScopeFrom(domainType), | |
OptionsBuilder.getCollectionFrom(domainType), null, PersistTo.NONE, ReplicateTo.NONE, DurabilityLevel.NONE, | |
null); | |
} |
Is there any plan to support these values?
Thank you very much in advance
Metadata
Metadata
Assignees
Labels
status: ideal-for-contributionAn issue that a contributor can help us withAn issue that a contributor can help us withtype: enhancementA general enhancementA general enhancement