Clover icon

Coverage Report

  1. Project Clover database Thu Dec 4 2025 16:11:35 GMT
  2. Package jalview.api

File PollableAlignCalcWorkerI.java

 

Coverage histogram

../../img/srcFileCovDistChart0.png
60% of files have more coverage

Code metrics

0
1
1
1
18
13
1
1
1
1
1

Classes

Class Line # Actions
PollableAlignCalcWorkerI 3 1 1
0.00%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package jalview.api;
2   
 
3    public interface PollableAlignCalcWorkerI extends AlignCalcWorkerI
4    {
 
5  0 toggle @Override
6    public default void run() throws Throwable
7    {
8  0 startUp();
9    }
10   
11    public void startUp() throws Throwable;
12   
13    public boolean poll() throws Throwable;
14   
15    public void cancel();
16   
17    public void done();
18    }