Interface IndexedEntityBindingContext
-
- All Superinterfaces:
IndexBindingContext
public interface IndexedEntityBindingContext extends IndexBindingContext
The binding context associated to the root node in the entity tree.- See Also:
IndexBindingContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
explicitRouting()
Inform the backend that documents for the mapped index will always be provided along with an explicit routing key, to be used to route the document to a specific shard.void
idDslConverter(ToDocumentIdentifierValueConverter<?> idConverter)
Order the backend to use the given converter to convert IDs passed to the predicate DSL.-
Methods inherited from interface org.hibernate.search.engine.mapper.mapping.building.spi.IndexBindingContext
addIndexedEmbeddedIfIncluded, createTypeFactory, createTypeFactory, schemaElement, schemaElement
-
-
-
-
Method Detail
-
explicitRouting
void explicitRouting()
Inform the backend that documents for the mapped index will always be provided along with an explicit routing key, to be used to route the document to a specific shard.
-
idDslConverter
void idDslConverter(ToDocumentIdentifierValueConverter<?> idConverter)
Order the backend to use the given converter to convert IDs passed to the predicate DSL.- Parameters:
idConverter
- The ID converter to use in the predicate DSL.
-
-