• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

alibaba / jetcache / #405

16 Apr 2024 05:58AM UTC coverage: 0.0% (-88.9%) from 88.866%
#405

push

areyouok
add encoding to fix coverage report

0 of 5353 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/jetcache-core/src/main/java/com/alicp/jetcache/event/CacheRemoveEvent.java
1
package com.alicp.jetcache.event;
2

3
import com.alicp.jetcache.Cache;
4
import com.alicp.jetcache.CacheResult;
5

6
/**
7
 * Created on 2017/2/22.
8
 *
9
 * @author huangli
10
 */
11
public class CacheRemoveEvent extends CacheEvent {
12

13
    private long millis;
14
    private Object key;
15
    private CacheResult result;
16

17
    public CacheRemoveEvent(Cache cache, long millis, Object key, CacheResult result) {
18
        super(cache);
×
19
        this.millis = millis;
×
20
        this.key = key;
×
21
        this.result = result;
×
22
    }
×
23

24
    public long getMillis() {
25
        return millis;
×
26
    }
27

28
    public Object getKey() {
29
        return key;
×
30
    }
31

32
    public CacheResult getResult() {
33
        return result;
×
34
    }
35

36
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc