Browse Source

Update reference documentation for IndexOperations.

Make sure the reference documentation is in line with available methods. Update signatures and remove no longer supported ones.

Closes: #4587
4.1.x
Christoph Strobl 2 years ago
parent
commit
3eb2696117
No known key found for this signature in database
GPG Key ID: E6054036D0C37A4B
  1. 6
      src/main/asciidoc/reference/mongodb.adoc

6
src/main/asciidoc/reference/mongodb.adoc

@ -2518,14 +2518,14 @@ The following listing shows the `IndexOperations` interface: @@ -2518,14 +2518,14 @@ The following listing shows the `IndexOperations` interface:
----
public interface IndexOperations {
void ensureIndex(IndexDefinition indexDefinition);
String ensureIndex(IndexDefinition indexDefinition);
void alterIndex(String name, IndexOptions options);
void dropIndex(String name);
void dropAllIndexes();
void resetIndexCache();
List<IndexInfo> getIndexInfo();
}
----

Loading…
Cancel
Save