EMMA Coverage Report (generated Tue Oct 27 11:32:50 PDT 2009) |
---|
[all classes][net.spy.memcached.ops] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
LinkedOperationQueueFactory.java | 0% (0/1) | 0% (0/2) | 0% (0/7) | 0% (0/2) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class LinkedOperationQueueFactory | 0% (0/1) | 0% (0/2) | 0% (0/7) | 0% (0/2) |
LinkedOperationQueueFactory (): void | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
create (): BlockingQueue | 0% (0/1) | 0% (0/4) | 0% (0/1) |
1 | package net.spy.memcached.ops; |
2 | |
3 | import java.util.concurrent.BlockingQueue; |
4 | import java.util.concurrent.LinkedBlockingQueue; |
5 | |
6 | /** |
7 | * OperationQueueFactory that creates LinkedBlockingQueue (unbounded) operation |
8 | * queues. |
9 | */ |
10 | public class LinkedOperationQueueFactory implements OperationQueueFactory { |
11 | |
12 | /* (non-Javadoc) |
13 | * @see net.spy.memcached.ops.OperationQueueFactory#create() |
14 | */ |
15 | public BlockingQueue<Operation> create() { |
16 | return new LinkedBlockingQueue<Operation>(); |
17 | } |
18 | |
19 | } |
[all classes][net.spy.memcached.ops] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |