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

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

6
import java.util.Map;
7

8
/**
9
 * Created on 2017/2/22.
10
 *
11
 * @author huangli
12
 */
13
public class CachePutAllEvent extends CacheEvent {
14
    private final long millis;
15
    /**
16
     * key, value map.
17
     */
18
    private final Map map;
19
    private final CacheResult result;
20

21
    public CachePutAllEvent(Cache cache, long millis, Map map, CacheResult result) {
22
        super(cache);
×
23
        this.millis = millis;
×
24
        this.map = map;
×
25
        this.result = result;
×
26
    }
×
27

28
    public long getMillis() {
29
        return millis;
×
30
    }
31

32
    public Map getMap() {
33
        return map;
×
34
    }
35

36
    public CacheResult getResult() {
37
        return result;
×
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

© 2026 Coveralls, Inc