Interface BulkOperations.BatchProcessor<K,V>

Type Parameters:
K - key type | 键类型
V - value type | 值类型
Enclosing class:
BulkOperations<K,V>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface BulkOperations.BatchProcessor<K,V>
Batch processor functional interface 批处理器函数式接口
Since:
JDK 25, opencode-base-cache V2.0.5
Author:
Leon Soo www.LeonSoo.com
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(Map<K,V> batch)
    Process a batch of entries 处理一批条目
  • Method Details

    • process

      void process(Map<K,V> batch)
      Process a batch of entries 处理一批条目
      Parameters:
      batch - map of key to value | 键到值的映射