gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r5372 - freeway/src/org/gnu/freeway/services


From: gnunet
Subject: [GNUnet-SVN] r5372 - freeway/src/org/gnu/freeway/services
Date: Sun, 29 Jul 2007 13:52:30 -0600 (MDT)

Author: mdonoughe
Date: 2007-07-29 13:52:30 -0600 (Sun, 29 Jul 2007)
New Revision: 5372

Added:
   freeway/src/org/gnu/freeway/services/SQstoreService.java
Removed:
   freeway/src/org/gnu/freeway/services/SqstoreService.java
Log:
renamed to match GNUnet

Copied: freeway/src/org/gnu/freeway/services/SQstoreService.java (from rev 
5371, freeway/src/org/gnu/freeway/services/SqstoreService.java)
===================================================================
--- freeway/src/org/gnu/freeway/services/SQstoreService.java                    
        (rev 0)
+++ freeway/src/org/gnu/freeway/services/SQstoreService.java    2007-07-29 
19:52:30 UTC (rev 5372)
@@ -0,0 +1,51 @@
+ /*
+      This file is part of Freeway
+
+      Freeway is free software; you can redistribute it and/or modify
+      it under the terms of the GNU General Public License as published
+      by the Free Software Foundation; either version 2, or (at your
+      option) any later version.
+
+      Freeway is distributed in the hope that it will be useful, but
+      WITHOUT ANY WARRANTY; without even the implied warranty of
+      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+      General Public License for more details.
+
+      You should have received a copy of the GNU General Public License
+      along with Freeway; see the file COPYING.  If not, write to the
+      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+      Boston, MA 02111-1307, USA.
+ */
+
+package org.gnu.freeway.services;
+
+import org.gnu.freeway.cwrappers.CDatastoreValue;
+import org.gnu.freeway.cwrappers.CHashCode512;
+import org.gnu.freeway.cwrappers.CInt;
+import org.gnu.freeway.cwrappers.CLong;
+import org.gnu.freeway.cwrappers.CUnsignedInt;
+import org.gnu.freeway.util.NativeService;
+
+/**
+ * @file SqstoreService.java
+ * @brief 
+ * @author mdonoughe
+ */
+public interface SQstoreService extends NativeService {
+       public CLong getSize();
+
+       public CInt put(CHashCode512 key, CDatastoreValue value);
+
+       //TODO
+       //public CInt get(CHashCode512 key, CUnsignedInt type, CDatumIterator 
iter, CPluginLoader.Handle closure);
+
+       public CInt update(CHashCode512 key, CDatastoreValue value, CInt delta);
+
+       //public CInt iterateLowPriority(CUnsignedInt type, CDatumIterator 
iter, CPluginLoader.Handle closure);
+
+       //public CInt iterateExpirationTime(CUnsignedInt type, CDatumIterator 
iter, CPluginLoader.Handle closure);
+
+       public CInt del(CHashCode512 key, CDatastoreValue value);
+
+       public void drop();
+}

Deleted: freeway/src/org/gnu/freeway/services/SqstoreService.java
===================================================================
--- freeway/src/org/gnu/freeway/services/SqstoreService.java    2007-07-29 
10:31:33 UTC (rev 5371)
+++ freeway/src/org/gnu/freeway/services/SqstoreService.java    2007-07-29 
19:52:30 UTC (rev 5372)
@@ -1,51 +0,0 @@
- /*
-      This file is part of Freeway
-
-      Freeway is free software; you can redistribute it and/or modify
-      it under the terms of the GNU General Public License as published
-      by the Free Software Foundation; either version 2, or (at your
-      option) any later version.
-
-      Freeway is distributed in the hope that it will be useful, but
-      WITHOUT ANY WARRANTY; without even the implied warranty of
-      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-      General Public License for more details.
-
-      You should have received a copy of the GNU General Public License
-      along with Freeway; see the file COPYING.  If not, write to the
-      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-      Boston, MA 02111-1307, USA.
- */
-
-package org.gnu.freeway.services;
-
-import org.gnu.freeway.cwrappers.CDatastoreValue;
-import org.gnu.freeway.cwrappers.CHashCode512;
-import org.gnu.freeway.cwrappers.CInt;
-import org.gnu.freeway.cwrappers.CLong;
-import org.gnu.freeway.cwrappers.CUnsignedInt;
-import org.gnu.freeway.util.NativeService;
-
-/**
- * @file SqstoreService.java
- * @brief 
- * @author mdonoughe
- */
-public interface SQstoreService extends NativeService {
-       public CLong getSize();
-
-       public CInt put(CHashCode512 key, CDatastoreValue value);
-
-       //TODO
-       //public CInt get(CHashCode512 key, CUnsignedInt type, CDatumIterator 
iter, CPluginLoader.Handle closure);
-
-       public CInt update(CHashCode512 key, CDatastoreValue value, CInt delta);
-
-       //public CInt iterateLowPriority(CUnsignedInt type, CDatumIterator 
iter, CPluginLoader.Handle closure);
-
-       //public CInt iterateExpirationTime(CUnsignedInt type, CDatumIterator 
iter, CPluginLoader.Handle closure);
-
-       public CInt del(CHashCode512 key, CDatastoreValue value);
-
-       public void drop();
-}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]