• 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/CachePutEvent.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 CachePutEvent extends CacheEvent {
12
    private long millis;
13
    private Object key;
14
    private Object value;
15
    private CacheResult result;
16

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

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

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

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

37
    public Object getValue() {
38
        return value;
×
39
    }
40

41
}
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

© 2026 Coveralls, Inc