• 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/CacheLoadEvent.java
1
package com.alicp.jetcache.event;
2

3
import com.alicp.jetcache.Cache;
4

5
/**
6
 * Created on 2017/2/22.
7
 *
8
 * @author huangli
9
 */
10
public class CacheLoadEvent extends CacheEvent {
11
    private final long millis;
12
    private final Object key;
13
    private final Object loadedValue;
14
    private final boolean success;
15

16
    public CacheLoadEvent(Cache cache, long millis, Object key, Object loadedValue, boolean success) {
17
        super(cache);
×
18
        this.millis = millis;
×
19
        this.key = key;
×
20
        this.loadedValue = loadedValue;
×
21
        this.success = success;
×
22
    }
×
23

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

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

32
    public Object getLoadedValue() {
33
        return loadedValue;
×
34
    }
35

36
    public boolean isSuccess() {
37
        return success;
×
38
    }
39
}
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