summaryrefslogtreecommitdiff
path: root/src/com/benburwell/planes/sbs/DataSource.java
diff options
context:
space:
mode:
authorBen Burwell <ben.burwell@trifecta.com>2016-11-15 23:43:08 -0500
committerBen Burwell <ben.burwell@trifecta.com>2016-11-15 23:43:08 -0500
commit54b0fab72106672ea1d9ca4d81d782b6bf1c6820 (patch)
tree3928fbfc9e0021d15326caa4500b98db13b0a75b /src/com/benburwell/planes/sbs/DataSource.java
parente2ae5749a522b0d4d2657a2cac571b1524d33cfa (diff)
Implement data table
Diffstat (limited to 'src/com/benburwell/planes/sbs/DataSource.java')
-rw-r--r--src/com/benburwell/planes/sbs/DataSource.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/benburwell/planes/sbs/DataSource.java b/src/com/benburwell/planes/sbs/DataSource.java
index 959e273..961c6e2 100644
--- a/src/com/benburwell/planes/sbs/DataSource.java
+++ b/src/com/benburwell/planes/sbs/DataSource.java
@@ -5,4 +5,6 @@ package com.benburwell.planes.sbs;
*/
public interface DataSource {
void subscribe(DataListener listener);
+ void open();
+ void close();
}