
com.netflix.evcache.event.EVCacheEvent Maven / Gradle / Ivy
package com.netflix.evcache.event;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import com.netflix.evcache.EVCache.Call;
import com.netflix.evcache.metrics.EVCacheMetricsFactory;
import com.netflix.evcache.EVCacheKey;
import com.netflix.evcache.pool.EVCacheClient;
import com.netflix.evcache.pool.EVCacheClientPool;
import net.spy.memcached.CachedData;
import net.spy.memcached.MemcachedNode;
public class EVCacheEvent {
public static final String CLIENTS = "clients";
private final Call call;
private final String appName;
private final String cacheName;
private final EVCacheClientPool pool;
private final long startTime;
private long endTime = 0;
private String status = EVCacheMetricsFactory.SUCCESS;
private Collection clients = null;
private Collection evcKeys = null;
private int ttl = 0;
private CachedData cachedData = null;
private Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy