]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/DataSubscriber.java
Version 18.2, December 2015
[GpsPrune.git] / tim / prune / DataSubscriber.java
index d3fc123174635183d0f9008f7c1d86be30ce8c5f..128e35fd9d173bee01547b9c3b3e65f03390c3be 100644 (file)
@@ -13,6 +13,8 @@ public interface DataSubscriber
        public static final byte PHOTOS_MODIFIED       = 16;
        public static final byte UNITS_CHANGED         = 32;
        public static final byte ALL                   = 63;
+       public static final byte MAPSERVER_CHANGED     = 64;
+
 
        /**
         * Inform clients that data has been updated
@@ -20,4 +22,9 @@ public interface DataSubscriber
         */
        public void dataUpdated(byte inUpdateType);
 
+       /**
+        * Inform clients that an action has been completed
+        * @param inMessage message describing action
+        */
+       public void actionCompleted(String inMessage);
 }