Package io.micronaut.coherence.data.ops
Interface CoherenceAsyncRepositoryOperations
-
- All Superinterfaces:
io.micronaut.data.operations.async.AsyncRepositoryOperations
public interface CoherenceAsyncRepositoryOperations extends io.micronaut.data.operations.async.AsyncRepositoryOperationsExposesasync repositoryoperations specific to Coherence.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <ID,T>
com.tangosol.net.AsyncNamedMap<ID,T>getAsyncNamedMap()Obtain theAsyncNamedMapassociated with thisrepository.<ID,T>
IDgetId(T entity)Return the id associated with the specified entity.
-
-
-
Method Detail
-
getAsyncNamedMap
<ID,T> com.tangosol.net.AsyncNamedMap<ID,T> getAsyncNamedMap()
Obtain theAsyncNamedMapassociated with thisrepository.- Type Parameters:
ID- the type of the entity idT- the entity type- Returns:
- the
AsyncNamedMapassociated this thisrepository
-
getId
<ID,T> ID getId(T entity)
Return the id associated with the specified entity.- Type Parameters:
ID- the type of the entity idT- the entity type- Parameters:
entity- the entity to interrogate- Returns:
- the id associated with the specified entity
-
-