add TX attribute value caching

This commit is contained in:
2021-01-08 20:31:24 +01:00
parent 8700e2fdde
commit af388b2462
6 changed files with 48 additions and 55 deletions

View File

@ -10,13 +10,10 @@
*******************************************************************************/
package com.minres.scviewer.database.tx;
import java.util.List;
import com.minres.scviewer.database.IWaveform;
public interface ITxGenerator {
public Long getId();
public IWaveform getStream();
public String getName();
public List<ITx> getTransactions();
}