3225470df5
Revert "BAEL-3275: Using blocking queue for pub-sub"
11 lines
172 B
Java
11 lines
172 B
Java
package com.baeldung;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by johnson on 3/9/17.
|
|
*/
|
|
public interface LedgerServiceInterface {
|
|
List<String> getEntries(int count);
|
|
}
|