jetcache-core/src/main/java/com/alicp/jetcache/event/CacheGetEvent.java [18:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super(cache);
        this.millis = millis;
        this.key = key;
        this.result = result;
    }

    public long getMillis() {
        return millis;
    }

    public Object getKey() {
        return key;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jetcache-core/src/main/java/com/alicp/jetcache/event/CacheRemoveEvent.java [18:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super(cache);
        this.millis = millis;
        this.key = key;
        this.result = result;
    }

    public long getMillis() {
        return millis;
    }

    public Object getKey() {
        return key;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



