MCPcopy Create free account
hub / github.com/InterviewReady/Low-Level-Design / Write

Class Write

distributed-cache/src/main/java/events/Write.java:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import models.Record;
4
5public class Write<K, V> extends Event<K, V> {
6
7 public Write(Record<K, V> element, long timestamp) {
8 super(element, timestamp);
9 }
10}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected