Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • signal-final
  • multiple-ports-final
  • pipeline-with-method-call-final
4 results

IPipe.java

Blame
  • user avatar
    Christian Wulf authored
    349651e5
    History
    IPipe.java 252 B
    package teetime.examples.throughput.methodcall;
    
    public interface IPipe<T> {
    
    	public abstract void add(T element);
    
    	public abstract T removeLast();
    
    	public abstract boolean isEmpty();
    
    	public abstract int size();
    
    	public abstract T readLast();
    
    }