diff --git a/apps/jrobin/java/src/org/rrd4j/core/RobinArray.java b/apps/jrobin/java/src/org/rrd4j/core/RobinArray.java index 0ece198c55..79265e57d9 100644 --- a/apps/jrobin/java/src/org/rrd4j/core/RobinArray.java +++ b/apps/jrobin/java/src/org/rrd4j/core/RobinArray.java @@ -8,7 +8,7 @@ import java.io.IOException; * fixed length array of double values. Each double value represents consolidated, archived * value for the specific timestamp. When the underlying array of double values gets completely * filled, new values will replace the oldest ones.
- *
+ * * Robin object does not hold values in memory - such object could be quite large. * Instead of it, Robin reads them from the backend I/O only when necessary. * diff --git a/apps/jrobin/java/src/org/rrd4j/core/RobinMatrix.java b/apps/jrobin/java/src/org/rrd4j/core/RobinMatrix.java index 8035716a5c..715eaa8d75 100644 --- a/apps/jrobin/java/src/org/rrd4j/core/RobinMatrix.java +++ b/apps/jrobin/java/src/org/rrd4j/core/RobinMatrix.java @@ -8,7 +8,7 @@ import java.io.IOException; * fixed length array of double values. Each double value reperesents consolidated, archived * value for the specific timestamp. When the underlying array of double values gets completely * filled, new values will replace the oldest ones.- *
+ * * Robin object does not hold values in memory - such object could be quite large. * Instead of it, Robin reads them from the backend I/O only when necessary. * diff --git a/apps/jrobin/java/src/org/rrd4j/core/RrdBackendFactory.java b/apps/jrobin/java/src/org/rrd4j/core/RrdBackendFactory.java index e5ac6acdf8..b6fb8136e6 100644 --- a/apps/jrobin/java/src/org/rrd4j/core/RrdBackendFactory.java +++ b/apps/jrobin/java/src/org/rrd4j/core/RrdBackendFactory.java @@ -51,12 +51,6 @@ import java.util.regex.Pattern; * {@link org.rrd4j.core.RrdMemoryBackendFactory} class. This backend stores all data in memory. Once * JVM exits, all data gets lost. The backend is extremely fast and memory hungry. * - ** Each backend factory used to be identified by its {@link #getName() name}. Constructors diff --git a/apps/jrobin/java/src/org/rrd4j/core/RrdNioBackendFactory.java b/apps/jrobin/java/src/org/rrd4j/core/RrdNioBackendFactory.java index c3e448c39d..bb7d476def 100644 --- a/apps/jrobin/java/src/org/rrd4j/core/RrdNioBackendFactory.java +++ b/apps/jrobin/java/src/org/rrd4j/core/RrdNioBackendFactory.java @@ -6,7 +6,7 @@ import java.util.concurrent.ScheduledExecutorService; /** * Factory class which creates actual {@link org.rrd4j.core.RrdNioBackend} objects. This is the default factory since * 1.4.0 version. - *
Each RrdNioBackendFactory is optionally backed by a {@link org.rrd4j.core.RrdSyncThreadPool}, which it uses to sync the memory-mapped files to
* disk. In order to avoid having these threads live longer than they should, it is recommended that clients create and
* destroy thread pools at the appropriate time in their application's life time. Failure to manage thread pools
diff --git a/apps/jrobin/java/src/org/rrd4j/core/RrdSyncThreadPool.java b/apps/jrobin/java/src/org/rrd4j/core/RrdSyncThreadPool.java
index de46ef6c1e..facd5e167b 100644
--- a/apps/jrobin/java/src/org/rrd4j/core/RrdSyncThreadPool.java
+++ b/apps/jrobin/java/src/org/rrd4j/core/RrdSyncThreadPool.java
@@ -128,7 +128,7 @@ public class RrdSyncThreadPool
* If there is a SecurityManager, it uses the group of System.getSecurityManager(), else the group
* of the thread instantiating this DaemonThreadFactory. Each new thread is created as a daemon thread
* with priority Thread.NORM_PRIORITY. New threads have names accessible via Thread.getName()
- * of "