Skip to content

Commit

Permalink
docs: format specifications.
Browse files Browse the repository at this point in the history
  • Loading branch information
QwQ-dev committed Dec 27, 2024
1 parent b622127 commit 59dd8f2
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* A flexible multi-level cache service that manages multiple {@link TieredCacheLevel} instances.
*
* @author qwq-dev
* @since 2024-12-27
* @since 2024-12-27 19:15
*/
public class FlexibleMultiLevelCacheService extends AbstractLockableCache<Set<TieredCacheLevel<?, ?>>> {
/**
Expand Down Expand Up @@ -45,8 +45,8 @@ public FlexibleMultiLevelCacheService(Set<TieredCacheLevel<?, ?>> tieredCacheLev

/**
* Applies a function to the underlying cache of a specific level (without lock).
* <p>
* This method looks up the {@link TieredCacheLevel} by the provided level identifier, and if found,
*
* <p>This method looks up the {@link TieredCacheLevel} by the provided level identifier, and if found,
* applies the given function to the cache.
*
* @param level the identifier of the cache level
Expand All @@ -66,8 +66,8 @@ public <L, C, R> R applyFunctionWithoutLock(L level, Function<C, R> cacheMapping

/**
* Applies a function to the underlying cache of a specific level (with lock).
* <p>
* This method obtains the lock from the targeted cache (using the provided function),
*
* <p>This method obtains the lock from the targeted cache (using the provided function),
* then executes the desired operation via {@link #execute(Function, Function, LockSettings)}
* of the parent class {@link AbstractLockableCache}.
*
Expand Down

0 comments on commit 59dd8f2

Please sign in to comment.